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
15 changes: 12 additions & 3 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,27 @@ jobs:
strategy:
matrix:
# run static analysis on bleeding and trailing edges
python-version: [ '3.9', '3.13' ]
python-version: [ '3.9', '3.11', '3.14' ]
django-version:
- '3.2' # LTS April 2024
- '4.2' # LTS April 2026
- '5.2' # LTS April 2028
exclude:
- python-version: '3.9'
django-version: '4.2'
- python-version: '3.13'
django-version: '3.2'
- python-version: '3.9'
django-version: '5.2'

- python-version: '3.11'
django-version: '3.2'
- python-version: '3.11'
django-version: '5.2'

- python-version: '3.14'
django-version: '3.2'
- python-version: '3.14'
django-version: '4.2'

env:
RDBMS: sqlite
TEST_PYTHON_VERSION: ${{ matrix.python-version }}
Expand All @@ -53,6 +61,7 @@ jobs:
id: sp
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
Expand Down
47 changes: 32 additions & 15 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14.0-rc.3']
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
postgres-version: ['9.6', '12', 'latest']
psycopg-version: ['psycopg2', 'psycopg3']
django-version:
Expand Down Expand Up @@ -81,15 +81,15 @@ jobs:
psycopg-version: 'psycopg2'


- python-version: '3.14.0-rc.3'
- python-version: '3.14'
django-version: '3.2'
- python-version: '3.14.0-rc.3'
- python-version: '3.14'
django-version: '4.2'

- python-version: '3.14.0-rc.3'
- python-version: '3.14'
django-version: '5.1'
# https://github.com/psycopg/psycopg2/pull/1695
- python-version: '3.14.0-rc.3'
- python-version: '3.14'
psycopg-version: 'psycopg2'

env:
Expand Down Expand Up @@ -130,6 +130,7 @@ jobs:
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
Expand Down Expand Up @@ -174,16 +175,18 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.13']
python-version: [ '3.9', '3.14']
django-version:
- '3.2' # LTS April 2024
- '4.2' # LTS April 2026
- '5.2' # LTS April 2028
exclude:
- python-version: '3.9'
django-version: '5.2'
- python-version: '3.13'
- python-version: '3.14'
django-version: '3.2'
- python-version: '3.14'
django-version: '4.2'

steps:
- uses: actions/checkout@v5
Expand All @@ -192,6 +195,7 @@ jobs:
id: sp
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
Expand Down Expand Up @@ -231,18 +235,20 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.13']
python-version: [ '3.9', '3.14']
mysql-version: ['5.7', 'latest']
mysqlclient-version: ['1.4.3', '']
django-version:
- '3.2' # LTS April 2024
- '4.2' # LTS April 2026
- '5.2' # LTS April 2028
exclude:
- python-version: '3.13'
- python-version: '3.14'
django-version: '3.2'
- python-version: '3.9'
django-version: '5.2'
- python-version: '3.14'
django-version: '4.2'


- django-version: '3.2'
Expand Down Expand Up @@ -291,6 +297,7 @@ jobs:
id: sp
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install Emacs
if: ${{ github.event.inputs.debug == 'true' }}
run: |
Expand Down Expand Up @@ -340,7 +347,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.13']
python-version: [ '3.9', '3.14']
mysqlclient-version: ['1.4.3', '']
mariadb-version: ['10.2', 'latest']
mariadb-healthcheck: ["mysqladmin ping", "healthcheck.sh --connect --innodb_initialized"]
Expand All @@ -349,10 +356,12 @@ jobs:
- '4.2' # LTS April 2026
- '5.2' # LTS April 2028
exclude:
- python-version: '3.13'
- python-version: '3.14'
django-version: '3.2'
- python-version: '3.9'
django-version: '5.2'
- python-version: '3.14'
django-version: '4.2'

- django-version: '3.2'
mariadb-version: 'latest'
Expand Down Expand Up @@ -396,6 +405,7 @@ jobs:
id: sp
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install Emacs
if: ${{ github.event.inputs.debug == 'true' }}
run: |
Expand Down Expand Up @@ -497,6 +507,7 @@ jobs:
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install Emacs
if: ${{ github.event.inputs.debug == 'true' }}
run: |
Expand Down Expand Up @@ -551,15 +562,17 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.13']
python-version: [ '3.9', '3.14']
django-version:
- '3.2' # LTS April 2024
- '5.2' # LTS April 2028
exclude:
- python-version: '3.9'
django-version: '5.2'
- python-version: '3.13'
- python-version: '3.14'
django-version: '3.2'
- python-version: '3.14'
django-version: '4.2'

steps:
- uses: actions/checkout@v5
Expand All @@ -568,6 +581,7 @@ jobs:
id: sp
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
Expand Down Expand Up @@ -612,15 +626,17 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [ '3.9', '3.13']
python-version: [ '3.9', '3.14']
django-version:
- '3.2' # LTS April 2024
- '5.2' # LTS April 2028
exclude:
- python-version: '3.9'
django-version: '5.2'
- python-version: '3.13'
- python-version: '3.14'
django-version: '3.2'
- python-version: '3.14'
django-version: '4.2'

steps:
- uses: actions/checkout@v5
Expand All @@ -629,6 +645,7 @@ jobs:
id: sp
with:
python-version: ${{ matrix.python-version }}
allow-prereleases: true
- name: Install uv
uses: astral-sh/setup-uv@v6
with:
Expand Down
24 changes: 12 additions & 12 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading