Skip to content

Commit

Permalink
🤖 Update dependencies (#189)
Browse files Browse the repository at this point in the history
Co-authored-by: mrharpo <[email protected]>
  • Loading branch information
github-actions[bot] and mrharpo authored Feb 27, 2024
1 parent de1caff commit 18dd45c
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 82 deletions.
123 changes: 62 additions & 61 deletions pdm.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 36 additions & 21 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ dynamic = ['version']
description = 'A CLAMS processing application'
authors = [{ name = 'WGBH-MLA', email = '[email protected]' }]
dependencies = [
"fastapi~=0.104",
"starlette-admin~=0.12",
"fastapi~=0.110",
"starlette-admin~=0.13",
"sqlmodel~=0.0",
"pydantic[email]~=2.6",
"sonyci~=0.2",
"psycopg2~=2.9",
"metaflow~=2.10",
"alembic~=1.12",
"metaflow~=2.11",
"alembic~=1.13",
"python-dotenv~=1.0",
"authlib~=1.2",
"authlib~=1.3",
"itsdangerous~=2.1",
"httpx~=0.25",
"rich~=13.6",
"httpx~=0.27",
"rich~=13.7",
"pyjwt~=2.8",
]
requires-python = '>=3.8.1,<4.0'
Expand All @@ -33,24 +33,32 @@ documentation = 'https://WGBH-MLA.github.io/chowda/'
repository = 'https://github.com/WGBH-MLA/chowda'

[project.optional-dependencies]
production = ["uvicorn[standard]~=0.24", "gunicorn~=21.2"]
production = [
"uvicorn[standard]~=0.27",
"gunicorn~=21.2",
]
test = [
"factory-boy~=3.3",
"pytest~=7.4",
"pytest~=8.0",
"pytest-cov~=4.1",
"pytest-sugar~=0.9",
"pytest-xdist~=3.4",
"httpx~=0.25",
"nbmake~=1.4",
"vcrpy~=5.1",
"pytest-sugar~=1.0",
"pytest-xdist~=3.5",
"httpx~=0.27",
"nbmake~=1.5",
"vcrpy~=6.0",
"pytest-vcr~=1.0",
"urllib3~=1.26",
"pytest-mock~=3.12",
"pytest-asyncio~=0.21",
"trio~=0.23",
"pytest-asyncio~=0.23",
"trio~=0.24",
]
locust = [
"locust~=2.23",
"pydantic-factories~=1.17",
]
development = [
"kubernetes~=29.0",
]
locust = ["locust~=2.18", "pydantic-factories~=1.17"]
development = ["kubernetes~=28.1"]

[tool.black]
extend-exclude = 'migrations'
Expand Down Expand Up @@ -94,13 +102,20 @@ version = { source = 'file', path = 'chowda/_version.py' }
includes = []

[tool.pdm.dev-dependencies]
dev = ["uvicorn~=0.24", "black~=23.11", "ruff~=0.1", "pre-commit~=3.5"]
dev = [
"uvicorn~=0.27",
"black~=24.2",
"ruff~=0.2",
"pre-commit~=3.5",
]
docs = [
"mkdocs~=1.5",
"mkdocs-material~=9.4",
"mkdocs-material~=9.5",
"mkdocs-git-revision-date-localized-plugin~=1.2",
"mike~=2.0",
"mkdocstrings[python]~=0.24",
"mkdocs-jupyter~=0.24",
]
ci = ["setuptools~=68.2"]
ci = [
"setuptools~=69.1",
]

0 comments on commit 18dd45c

Please sign in to comment.