Skip to content

Commit

Permalink
Update to python 3.13. Drop python 3.8. Update django 5.2. Drop djang…
Browse files Browse the repository at this point in the history
…o 3.2
  • Loading branch information
andrewgy8 committed Dec 27, 2024
1 parent 78a3085 commit 320f889
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,17 @@ jobs:
os:
- "ubuntu-latest"
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
django-version:
- "3.2" # LTS
- "4.1"
- "4.2" # LTS
- "5.0"
- "5.1"
- "5.2"
exclude:
- django-version: "5.0" # django 5.0 supports python >=3.10
python-version: "3.8"
- django-version: "5.0" # django 5.0 supports python >=3.10
python-version: "3.9"
steps:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

## Requirements

* [Python][python] 3.8+
* [Django][django] 3.2+
* [Python][python] 3.9+
* [Django][django] 4.2+
* [Dramatiq][dramatiq] 1.11+


Expand Down
12 changes: 7 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,23 @@ def rel(*xs):
"django_dramatiq.migrations",
],
install_requires=[
"django>=3.2",
"django>=4.2",
"dramatiq>=1.11",
],
classifiers=[
"Environment :: Web Environment",
"Operating System :: OS Independent",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
],
extras_require={
"dev": [
Expand All @@ -58,6 +60,6 @@ def rel(*xs):
"twine",
]
},
python_requires=">=3.8",
python_requires=">=3.9",
include_package_data=True,
)

0 comments on commit 320f889

Please sign in to comment.