Skip to content

Commit

Permalink
chore: add python versions 3.11, 3.12, 3.13 (#1705)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
sijis authored Oct 26, 2024
1 parent 28504de commit eda1460
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/[email protected]
Expand All @@ -41,26 +41,26 @@ jobs:
tox -e py
- name: Check Distribution
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e dist-check
- name: Codestyle
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e codestyle
- name: Lint - sort
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e sort
- name: Security
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e security
- name: Docs
if: ${{ matrix.python-version == '3.9' }}
if: ${{ matrix.python-version == '3.12' }}
run: |
tox -e docs
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ fixes:
- chore: bump actions/checkout version (#1696, #1704)
- chore: optimize Dockerfile (#1679)
- docs: fix telegram install command (#1697)
- chore: add python versions to test (#1705)

v6.2.0 (2024-01-01)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38,py39,py310,codestyle,dist-check,sort,security,docs
envlist = py38,py39,py310,py311,py312,py312,codestyle,dist-check,sort,security,docs
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit eda1460

Please sign in to comment.