diff options
author | 2023-05-15 12:26:52 +0200 | |
---|---|---|
committer | 2023-05-15 12:26:52 +0200 | |
commit | f5a46dc1bcb8b8678d848e2ae2e07587ec9ce259 (patch) | |
tree | 38f2be31264a3e64e2e1728ab782e7eb2b256087 /pyproject.toml | |
parent | Merge pull request #972 from python-discord/fix-psycopg3-compatibility-in-met... (diff) | |
parent | Bump ruff to latest (diff) |
Merge pull request #973 from python-discord/Python-3.11
Python 3.11
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml index 0e7c2834..2bc81e75 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ authors = ["Python Discord <[email protected]>"] license = "MIT" [tool.poetry.dependencies] -python = "3.10.*" +python = "3.11.*" django = "4.2.1" django-distill = "3.1.3" @@ -24,12 +24,12 @@ python-frontmatter = "1.0.0" pyyaml = "6.0" sentry-sdk = "1.22.2" whitenoise = "6.4.0" -psycopg = {extras = ["binary"], version = "^3.1.9"} +psycopg = {extras = ["binary"], version = "3.1.9"} [tool.poetry.group.dev.dependencies] python-dotenv = "1.0.0" taskipy = "1.10.4" -ruff = "^0.0.265" +ruff = "0.0.267" [tool.poetry.group.lint.dependencies] pre-commit = "3.3.1" @@ -42,7 +42,7 @@ requires = ["poetry-core>=1.2.0"] build-backend = "poetry.core.masonry.api" [tool.ruff] -target-version = "py310" +target-version = "py311" extend-exclude = [".cache"] ignore = [ "ANN002", "ANN003", "ANN101", "ANN102", "ANN204", "ANN206", "ANN401", |