Skip to content

Commit

Permalink
Update to Python 3.13 and Django 5.1
Browse files Browse the repository at this point in the history
Update to Python 3.13 and Django 5.1
  • Loading branch information
andrewgy8 authored Dec 27, 2024
2 parents 78a3085 + 7194995 commit e005c31
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,19 @@ 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"
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"
- django-version: "5.1" # django 5.1 supports python >=3.10
python-version: "3.9"
steps:
- uses: actions/checkout@v3
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
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,22 @@ 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",
"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 +59,6 @@ def rel(*xs):
"twine",
]
},
python_requires=">=3.8",
python_requires=">=3.9",
include_package_data=True,
)

0 comments on commit e005c31

Please sign in to comment.