Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
cache: "pip"
cache-dependency-path: "requirements/*.txt"
- name: Run tox
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
cache: "pip"
cache-dependency-path: "requirements/*.txt"
- uses: actions/download-artifact@v8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
python-version: "3.14"
- name: Build packages
run: |
pip install -r requirements/testing.txt
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@ classifiers = [
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.2',
'Framework :: Django :: 5.2',
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion requirements/local.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
-r testing.txt

bump-my-version==1.3.0
Django>=4.2,<5.0
Django>=5.2,<6.0
tox==4.50.3
tox-uv==1.33.4
8 changes: 5 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ env_list =
lint
py310-django3.2
py{310,311,312}-django4.2
py{310,311,312,313,314}-django5.2
coverage
no_package = true

Expand All @@ -12,18 +13,19 @@ deps =
-rrequirements/testing.txt
django3.2: Django>=3.2,<4.0
django4.2: Django>=4.2,<5.0
django5.2: Django>=5.2,<6.0
allowlist_externals = make
commands = make test
package = editable

[testenv:check]
basepython = python3.13
base_python = python3.14
commands = make check

[testenv:lint]
basepython = python3.13
base_python = python3.14
commands = make lint

[testenv:coverage]
basepython = python3.13
base_python = python3.14
commands = make coverage-report