Skip to content

Commit

Permalink
fix: update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kharkevich committed Dec 21, 2024
1 parent acced7f commit b1077cc
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 11 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ The plugin required the following environment variables but also supported `.env
| OIDC_TOKEN_URL | OIDC Token URL (if discovery URL is not defined) |
| OIDC_USER_URL | OIDC User info URL (if discovery URL is not defined) |
| SECRET_KEY | Key to perform cookie encryption |
| OAUTHLIB_INSECURE_TRANSPORT | Development only. Allow to use insecure endpoints for OIDC |
| LOG_LEVEL | Application log level |
| OIDC_USERS_DB_URI | Database connection string |

Expand Down
1 change: 0 additions & 1 deletion docs/configuration/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ The plugin required the following environment variables but also supported `.env
| OIDC_TOKEN_URL | OIDC Token URL (if discovery URL is not defined) |
| OIDC_USER_URL | OIDC User info URL (if discovery URL is not defined) |
| SECRET_KEY | Key to perform cookie encryption |
| OAUTHLIB_INSECURE_TRANSPORT | Development only. Allow to use insecure endpoints for OIDC |
| LOG_LEVEL | Application log level |
| OIDC_USERS_DB_URI | Database connection string |

Expand Down
12 changes: 4 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,19 +24,15 @@ requires-python = ">=3.8"
dependencies = [
"cachelib<1",
"mlflow-skinny<3,>=2.11.1",
"mlflow<3,>=2.11.1",
"oauthlib<4",
"python-dotenv<2",
"requests<3,>=2.31.0",
"sqlalchemy<3,>=1.4.0",
"Flask<4",
"Flask-Session>=0.7.0",
"flask<4",
"flask-session>=0.7.0",
"gunicorn<24; platform_system != 'Windows'",
"alembic<2,!=1.10.0",
"Authlib<2",
"Flask-Caching<3",
"authlib>=1.3.2",
"flask-caching>=2.3.0"
"authlib<2",
"flask-caching<3"
]

[project.optional-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ deps =
pytest
coverage<=7.6
commands =
pip install -e '.[test]'
pip install -e '.[full,test]'
coverage run -m pytest -s mlflow_oidc_auth/tests
coverage xml

Expand Down

0 comments on commit b1077cc

Please sign in to comment.