diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 994afaddc..2dc820ec3 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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/checkout@v4.2.2 @@ -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 diff --git a/CHANGES.rst b/CHANGES.rst index 8567bea57..aa519d75c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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) ------------------- diff --git a/tox.ini b/tox.ini index 9a4841e59..41454bfb5 100644 --- a/tox.ini +++ b/tox.ini @@ -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]