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/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: 3.13
python-version: 3.14

- name: Install uv
uses: astral-sh/setup-uv@v6
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

- uses: actions/setup-python@v5
with:
python-version: "3.13"
python-version: "3.14"

- name: Build release distributions
run: |
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/python-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v3
with:
python-version: 3.13
python-version: 3.14

- name: Install uv
uses: astral-sh/setup-uv@v6
Expand All @@ -44,7 +44,7 @@ jobs:
fail-fast: true
matrix:
os: ["ubuntu-latest", "windows-latest"]
python-version: ["3.9", "3.13", "3.14.0-rc.2"]
python-version: ["3.9", "3.13", "3.14"]
django-version: ["4.2.*", "5.2.*"]
exclude:
# Django 5.2 only supports Python 3.10 and above
Expand All @@ -54,7 +54,7 @@ jobs:
- os: "ubuntu-latest"
python-version: "3.9"
- os: "ubuntu-latest"
python-version: "3.14.0-rc.2"
python-version: "3.13"
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:

- name: Upload coverage and test reports
# Upload coverage report only once to avoid redundancy
if: ${{ matrix.os == 'windows-latest' && matrix.python-version == '3.13' && matrix.django-version == '5.2.*' }}
if: ${{ matrix.os == 'windows-latest' && matrix.python-version == '3.14' && matrix.django-version == '5.2.*' }}
uses: actions/upload-artifact@v4.6.2
with:
name: test-report
Expand All @@ -101,10 +101,10 @@ jobs:
# No shallow clone for a better analysis
fetch-depth: 0

- name: Set up Python 3.13
- name: Set up Python 3.14
uses: actions/setup-python@v3
with:
python-version: 3.13
python-version: 3.14
- name: Install Mypy
run: |
python -m pip install mypy django-stubs types-pywin32
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Django",
"Intended Audience :: Developers",
"Operating System :: Microsoft :: Windows",
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sonar.projectName=Django WindowsAuthToken
sonar.projectKey=django-windowsauthtoken
sonar.python.version=3.9, 3.10, 3.11, 3.12, 3.13
sonar.python.version=3.9, 3.10, 3.11, 3.12, 3.13, 3.14
sonar.sources = src
sonar.tests = tests
sonar.python.coverage.reportPaths=coverage.xml
Expand Down
Loading