Skip to content

Commit bcd4927

Browse files
committed
Test lint with python 3.13 and switch to use 3.11 during tests
1 parent 58680e8 commit bcd4927

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- uses: actions/checkout@v4
2020
with:
2121
fetch-depth: 0 # needed by setuptools-scm
22-
- name: Switch to using Python 3.9 by default
22+
- name: Switch to using Python 3.11 by default
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: "3.9"
25+
python-version: "3.11"
2626
- name: Install dependencies
2727
run: |
2828
python -m pip install --upgrade pip

.github/workflows/tox.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
strategy:
2525
fail-fast: false
2626
matrix:
27-
python-version: ["3.9", "3.10", "3.11"]
27+
python-version: ["3.9", "3.10", "3.11", "3.13"]
2828
steps:
2929
- uses: actions/checkout@v4
3030
- name: Set up Python ${{ matrix.python-version }}
@@ -46,10 +46,10 @@ jobs:
4646
toxenv: [docs, packaging, py39]
4747
steps:
4848
- uses: actions/checkout@v4
49-
- name: Set up Python 3.9
49+
- name: Set up Python 3.11
5050
uses: actions/setup-python@v5
5151
with:
52-
python-version: "3.9"
52+
python-version: "3.11"
5353
- name: Install dependencies
5454
run: |
5555
python -m pip install --upgrade pip

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ classifiers =
2121
Programming Language :: Python :: 3.9
2222
Programming Language :: Python :: 3.10
2323
Programming Language :: Python :: 3.11
24+
Programming Language :: Python :: 3.12
25+
Programming Language :: Python :: 3.13
2426
Topic :: Software Development :: Testing
2527
Topic :: System :: Systems Administration
2628
Framework :: Pytest

0 commit comments

Comments
 (0)