Skip to content

Commit

Permalink
Drop support for py3.8, add support for py3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ewjoachim committed Dec 1, 2024
1 parent c2f1bff commit 0c6bf34
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 64 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"

name: "py${{ matrix.python-version }}"
runs-on: ubuntu-latest
Expand Down
2 changes: 0 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,11 @@ repos:
- croniter==5.0.1
- django-stubs==5.1.1
- django==5.1.3
- importlib-resources==6.4.5
- psycopg2-binary==2.9.10
- psycopg[pool]==3.2.3
- python-dateutil==2.9.0.post0
- sphinx==7.1.2
- sqlalchemy==2.0.36
- typing-extensions==4.12.2
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.1
hooks:
Expand Down
59 changes: 2 additions & 57 deletions poetry.lock

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

6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,18 @@ documentation = "https://procrastinate.readthedocs.io/"
procrastinate = 'procrastinate.cli:main'

[tool.poetry.dependencies]
python = "^3.8"
python = "^3.9"
aiopg = { version = "*", optional = true }
anyio = "*"
asgiref = "*"
attrs = "*"
contextlib2 = { version = "*", python = "<3.10" }
croniter = "*"
django = { version = ">=2.2", optional = true }
importlib-resources = { version = ">=1.4", python = "<3.9" }
psycopg = { extras = ["pool"], version = "*" }
psycopg2-binary = { version = "*", optional = true }
python-dateutil = "*"
sqlalchemy = { version = "^2.0", optional = true }
typing-extensions = { version = "*", python = "<3.8" }
sphinx = { version = "*", optional = true }

[tool.poetry.extras]
Expand Down Expand Up @@ -79,7 +77,7 @@ psycopg = [
[tool.poetry.group.django.dependencies]
django = [
{ version = "4.2.*", python = "<3.10" },
{ version = "*", python = "^3.10" },
{ version = "*", python = ">=3.10" },
]

[tool.poetry.group.test.dependencies]
Expand Down

0 comments on commit 0c6bf34

Please sign in to comment.