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
18 changes: 12 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ jobs:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
django-version: ["4.2", "5.0", "5.1", "5.2", "6.0b1"]
exclude:
- django-version: "6.0b1"
python-version: "3.10"
- django-version: "6.0b1"
python-version: "3.11"
- django-version: "4.2"
python-version: "3.14"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
Expand Down Expand Up @@ -62,12 +64,14 @@ jobs:
fail-fast: false
matrix:
django-version: ["4.2", "5.0", "5.1", "5.2"]
exclude:
- django-version: "4.2"
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"
- uses: actions/cache@v4
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -97,12 +101,14 @@ jobs:
fail-fast: false
matrix:
django-version: ["4.2", "5.0", "5.1", "5.2"]
exclude:
- django-version: "4.2"
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"
- uses: actions/cache@v4
with:
path: ~/.cache/pip
Expand Down Expand Up @@ -133,7 +139,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"
- name: Install dependencies
run: |
python -m pip install --upgrade pip build
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Environment :: Web Environment",
"Framework :: Django",
Expand Down