Skip to content
Snippets Groups Projects
Commit f8ebc2c1 authored by Marc Troelitzsch's avatar Marc Troelitzsch Committed by Adam Williamson
Browse files

feat: add python 3.13 classifier, start testing with 3.14-alpha

parent 63c1395a
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ jobs: ...@@ -17,7 +17,7 @@ jobs:
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v5.2.0 uses: actions/setup-python@v5.2.0
with: with:
python-version: '3.12' python-version: '3.13'
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
......
...@@ -18,7 +18,8 @@ jobs: ...@@ -18,7 +18,8 @@ jobs:
- "3.10" - "3.10"
- "3.11" - "3.11"
- "3.12" - "3.12"
- "3.13.0-alpha - 3.13" - "3.13"
- "3.14.0-alpha - 3.14"
include: include:
- os: "ubuntu-latest" - os: "ubuntu-latest"
- os: "ubuntu-22.04" - os: "ubuntu-22.04"
...@@ -41,8 +42,8 @@ jobs: ...@@ -41,8 +42,8 @@ jobs:
- name: Test with tox - name: Test with tox
run: tox run: tox
- name: Produce coverage.lcov for coveralls - name: Produce coverage.lcov for coveralls
if: matrix.python-version == '3.12' if: matrix.python-version == '3.13'
run: coverage lcov run: coverage lcov
- name: Coveralls - name: Coveralls
if: matrix.python-version == '3.12' if: matrix.python-version == '3.13'
uses: coverallsapp/github-action@v2 uses: coverallsapp/github-action@v2
...@@ -21,6 +21,7 @@ classifiers = [ ...@@ -21,6 +21,7 @@ classifiers = [
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",
] ]
......
[tox] [tox]
envlist = py36,py37,py38,py39,py310,py311,py312,py313,flake,mypy envlist = py36,py37,py38,py39,py310,py311,py312,py313,py314,flake,mypy
isolated_build = true isolated_build = true
[gh-actions] [gh-actions]
...@@ -10,8 +10,9 @@ python = ...@@ -10,8 +10,9 @@ python =
3.9: py39 3.9: py39
3.10: py310 3.10: py310
3.11: py311 3.11: py311
3.12: py312, flake, integration, mypy 3.12: py312
3.13: py313 3.13: py313, flake, integration, mypy
3.14: py314
[testenv] [testenv]
extras = testing extras = testing
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment