diff options
| author | 2023-03-21 16:22:36 +0200 | |
|---|---|---|
| committer | 2023-03-21 16:31:57 +0200 | |
| commit | a1a8e49f097739bbd2c989e1568fe4fe18946bbf (patch) | |
| tree | 0660e01117b1a179e7115484ec44ca53f38437f2 /pyproject.toml | |
| parent | Fix filter serializers for false-y values (diff) | |
| parent | Merge pull request #908 from python-discord/fix-ci (diff) | |
Merge branch 'main' into new-filter-schema
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 47 |
1 files changed, 26 insertions, 21 deletions
diff --git a/pyproject.toml b/pyproject.toml index 88606f5c..d044ba63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,43 +7,48 @@ license = "MIT" [tool.poetry.dependencies] python = "3.10.*" -django = "4.1.5" -django-environ = "0.9.0" + +django = "4.1.7" +django-distill = "3.0.2" +django-environ = "0.10.0" django-filter = "22.1" -djangorestframework = "3.14.0" -psycopg2-binary = "2.9.5" +django-prometheus = "2.2.0" django-simple-bulma = "2.5.0" -whitenoise = "6.3.0" -httpx = "0.23.3" -pyyaml = "6.0" +djangorestframework = "3.14.0" gunicorn = "20.1.0" -sentry-sdk = "1.13.0" +httpx = "0.23.3" markdown = "3.4.1" -python-frontmatter = "1.0.0" -django-prometheus = "2.2.0" -django-distill = "3.0.2" +psycopg2-binary = "2.9.5" PyJWT = {version = "2.6.0", extras = ["crypto"]} -pymdown-extensions = "9.9.1" +pymdown-extensions = "9.10" +python-frontmatter = "1.0.0" +pyyaml = "6.0" +sentry-sdk = "1.16.0" +whitenoise = "6.4.0" -[tool.poetry.dev-dependencies] -coverage = "7.0.5" +[tool.poetry.group.dev.dependencies] +python-dotenv = "1.0.0" +taskipy = "1.10.3" + +[tool.poetry.group.lint.dependencies] flake8 = "6.0.0" -flake8-annotations = "2.9.1" +flake8-annotations = "3.0.0" flake8-bandit = "4.1.1" -flake8-bugbear = "23.1.17" -flake8-docstrings = "1.6.0" +flake8-bugbear = "23.3.12" +flake8-docstrings = "1.7.0" flake8-import-order = "0.18.2" flake8-tidy-imports = "4.8.0" flake8-string-format = "0.3.0" flake8-todo = "0.7" pep8-naming = "0.13.3" -pre-commit = "2.21.0" +pre-commit = "3.1.1" + +[tool.poetry.group.test.dependencies] +coverage = "7.2.1" pyfakefs = "5.1.0" -taskipy = "1.10.3" -python-dotenv = "0.21.0" [build-system] -requires = ["poetry-core>=1.0.0"] +requires = ["poetry-core>=1.2.0"] build-backend = "poetry.core.masonry.api" [tool.taskipy.tasks] |