diff options
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/pyproject.toml b/pyproject.toml index 037f837c..15e39a57 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,22 +7,22 @@ license = "MIT" [tool.poetry.dependencies] python = "3.9.*" -django = "~=4.0" -django-environ = "~=0.4.5" -django-filter = "~=21.1" -djangorestframework = "~=3.13" -psycopg2-binary = "~=2.8.0" -django-simple-bulma = "~=2.4" -whitenoise = "~=5.0" -httpx = "~=0.23.0" -pyyaml = "~=5.1" -gunicorn = "~=20.0.4" -sentry-sdk = "~=0.19" -markdown = "~=3.3.4" -python-frontmatter = "~=1.0" -django-prometheus = "~=2.1" -django-distill = "~=2.9.0" -PyJWT = {version = "~=2.4.0", extras = ["crypto"]} +django = "4.0" # 4.1 blocked by upstream bug, wait for 4.1.1: https://code.djangoproject.com/ticket/33919 +django-environ = "0.9.0" +django-filter = "22.1" +djangorestframework = "3.13.1" +psycopg2-binary = "2.9.3" +django-simple-bulma = "2.5.0" +whitenoise = "6.2.0" +httpx = "0.23.0" +pyyaml = "6.0" +gunicorn = "20.1.0" +sentry-sdk = "1.9.5" +markdown = "3.4.1" +python-frontmatter = "1.0.0" +django-prometheus = "2.2.0" +django-distill = "3.0.1" +PyJWT = {version = "2.4.0", extras = ["crypto"]} [tool.poetry.dev-dependencies] coverage = "~=5.0" |