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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14", "3.14t"]
os: [ubuntu-24.04]
runs-on: ${{ matrix.os }}
name: "${{ matrix.os }} Python: ${{ matrix.python-version }}"
Expand Down Expand Up @@ -45,17 +45,17 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install binutils libproj-dev gdal-bin libmemcached-dev libsqlite3-mod-spatialite
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U "pip>=23.1.1"
pip install -U "tox-gh-actions==3.3.0" coverage
pip install --upgrade "pip>=23.1.1"
pip install --upgrade "tox-gh-actions==3.3.0" coverage
- name: Log versions
run: |
python --version
Expand All @@ -69,8 +69,8 @@ jobs:
PGHOST: localhost
PGPORT: 5432
run: |
psql -U postgres -c 'CREATE DATABASE postgis'
psql -U postgres postgis -c 'CREATE EXTENSION IF NOT EXISTS postgis;'
psql --user postgres -c 'CREATE DATABASE postgis'
psql --user postgres postgis -c 'CREATE EXTENSION IF NOT EXISTS postgis;'
mysql --protocol=TCP --user=root -e 'create database django_prometheus_1;'
- name: Run test and linters via Tox
run: tox
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## v2.5.0 - UNRELEASED

* Drop support for Django 5.0 (EOL)
* Add support for Python 3.13, 3.14, and free threaded 3.14t.

## v2.4.1 - June 25th, 2025

Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ def get_version():
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.14t",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
Expand Down
3 changes: 3 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ min_version = 4.4
envlist =
{py39,py310,py311,py312}-django420-{end2end,unittests}
{py310,py311,py312,py313}-django{510,520}-{end2end,unittests}
{py314,py314t}-django520-{end2end,unittests}
py39-lint
skip_missing_interpreters = True

[gh-actions]
python =
Expand All @@ -12,6 +14,7 @@ python =
3.11: py311
3.12: py312
3.13: py313
3.14: py314,py314t

[testenv]
deps =
Expand Down