Skip to content

Commit 6fbc869

Browse files
authored
Merge pull request #126 from aliceinwire/tests
tox: Add python 3.10 3.13
2 parents 980b57e + 0f8bb59 commit 6fbc869

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/poetry.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,15 @@ on: [push, pull_request]
55
jobs:
66
ci:
77
runs-on: ubuntu-latest
8+
strategy:
9+
matrix:
10+
python-version: ["3.10", "3.11", "3.12", "3.13"]
811
steps:
912
- uses: actions/checkout@v4
10-
- name: Install Python
13+
- name: Install Python ${{ matrix.python-version }}
1114
uses: actions/setup-python@v5
1215
with:
13-
python-version: '3.11'
16+
python-version: ${{ matrix.python-version }}
1417
- name: Install poetry
1518
uses: abatilo/actions-poetry@v3
1619
- name: Install shellcheck

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,10 @@ classifiers = [
2121
'Topic :: Software Development :: Libraries',
2222
'Programming Language :: Python',
2323
'Programming Language :: Python :: 3',
24-
'Programming Language :: Python :: 3.8',
25-
'Programming Language :: Python :: 3.9',
2624
'Programming Language :: Python :: 3.10',
25+
'Programming Language :: Python :: 3.11',
26+
'Programming Language :: Python :: 3.12',
27+
'Programming Language :: Python :: 3.13',
2728
'Programming Language :: Python :: Implementation :: CPython',
2829
'Programming Language :: Python :: Implementation :: PyPy'
2930
]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
env_list = py311,py312
2+
env_list = py310,py311,py312,py313
33

44
[testenv]
55
allowlist_externals = poetry

0 commit comments

Comments
 (0)