Skip to content

Commit eda1460

Browse files
authored
chore: add python versions 3.11, 3.12, 3.13 (#1705)
* chore: add python versions 3.11, 3.12, 3.13 * chore: move testing/checking to python 3.12 * test: add python version to tox * docs: add info to CHANGES
1 parent 28504de commit eda1460

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.github/workflows/python-package.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
python-version: [3.8, 3.9, "3.10"]
22+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]
2323

2424
steps:
2525
- uses: actions/[email protected]
@@ -41,26 +41,26 @@ jobs:
4141
tox -e py
4242
4343
- name: Check Distribution
44-
if: ${{ matrix.python-version == '3.9' }}
44+
if: ${{ matrix.python-version == '3.12' }}
4545
run: |
4646
tox -e dist-check
4747
4848
- name: Codestyle
49-
if: ${{ matrix.python-version == '3.9' }}
49+
if: ${{ matrix.python-version == '3.12' }}
5050
run: |
5151
tox -e codestyle
5252
5353
- name: Lint - sort
54-
if: ${{ matrix.python-version == '3.9' }}
54+
if: ${{ matrix.python-version == '3.12' }}
5555
run: |
5656
tox -e sort
5757
5858
- name: Security
59-
if: ${{ matrix.python-version == '3.9' }}
59+
if: ${{ matrix.python-version == '3.12' }}
6060
run: |
6161
tox -e security
6262
6363
- name: Docs
64-
if: ${{ matrix.python-version == '3.9' }}
64+
if: ${{ matrix.python-version == '3.12' }}
6565
run: |
6666
tox -e docs

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ fixes:
1010
- chore: bump actions/checkout version (#1696, #1704)
1111
- chore: optimize Dockerfile (#1679)
1212
- docs: fix telegram install command (#1697)
13+
- chore: add python versions to test (#1705)
1314

1415
v6.2.0 (2024-01-01)
1516
-------------------

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38,py39,py310,codestyle,dist-check,sort,security,docs
2+
envlist = py38,py39,py310,py311,py312,py312,codestyle,dist-check,sort,security,docs
33
skip_missing_interpreters = True
44

55
[testenv]

0 commit comments

Comments
 (0)