aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
diff options
context:
space:
mode:
authorGravatar Chris Lovering <[email protected]>2023-05-13 14:27:16 +0100
committerGravatar Chris Lovering <[email protected]>2023-05-13 14:34:32 +0100
commit193353b7afef0bea875c5c91b16b5bdc078fc59f (patch)
tree587f21b29de3e02a36c98c7c0ae984831de6dc26 /pyproject.toml
parentMerge pull request #972 from python-discord/fix-psycopg3-compatibility-in-met... (diff)
Upgrade to Python 3.11
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml8
1 files changed, 4 insertions, 4 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 0e7c2834..3aad7053 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.265"
[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",