- name: Set up Python
uses: actions/setup-python@v4
with:
- python-version: "3.12"
+ python-version: "3.13"
- name: Set up Go
uses: actions/setup-go@v4
with:
matrix:
# NOTE: If you add a version here, don't forget to update the
# '[gh-actions]' section in tox.ini
- python: ["3.9", "3.10", "3.11", "3.12"]
+ python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
db: [postgres, mysql, sqlite3]
env:
DATABASE_TYPE: "${{ matrix.db }}"
- name: Set up Python
uses: actions/setup-python@v4
with:
- python-version: "3.12"
+ python-version: "3.13"
- name: Install dependencies
run: python -m pip install tox
- name: Build docs (via tox)
- name: Set up Python
uses: actions/setup-python@v4
with:
- python-version: "3.12"
+ python-version: "3.13"
- name: Build docker-compose service
run: |
docker compose build --build-arg UID=$(id -u) --build-arg GID=$(id -g)
[tox]
minversion = 3.2
-envlist = pep8,docs,py{39,310,311}-django42,py{310,311,312}-django{50,51}
+envlist = pep8,docs,py{39,310,311}-django42,py{310,311,312}-django{50,51},py313-django51
[testenv]
skip_install = true
3.10: py310
3.11: py311
3.12: py312
+ 3.13: py313