Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.9, "3.10", "3.11", "3.12"]
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -324,9 +324,9 @@ certain pattern.
Compatibility
=============

* Python 3.8, 3.9, 3.10 & 3.11
* Python 3.9, 3.10, 3.11, 3.12 & 3.13

* Django 3.2, 4.1 & 4.2
* Django 3.2, 4.1, 4.2, 5.0, 5.1 & 5.2

Check out the `tox.ini`_ file for more up-to-date compatibility by
test coverage.
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
url="https://github.com/peterbe/django-cache-memoize",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.8",
python_requires=">=3.9",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment :: Mozilla",
Expand All @@ -27,10 +27,11 @@
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: WWW/HTTP",
],
Expand Down
11 changes: 8 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,18 @@ envlist =
readme-py311,
docs-py311,
py39-django{32,41,42},
py310-django{32,41,42},
py311-django{41,42},
py312-django{41,42},
py310-django{32,41,42,50,51,52},
py311-django{41,42,50,51,52},
py312-django{41,42,50,51,52},
py313-django{51,52},

[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311, lint, restlint
3.12: py312
3.13: py313

[testenv]
usedevelop = true
Expand All @@ -25,6 +27,9 @@ deps =
django32: Django>=3.2,<4.0
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1
django51: Django>=5.1,<5.2
django52: Django>=5.2,<6.0
commands =
pytest {posargs:tests}

Expand Down