From 43bd3538f4214a6ba2d30c555702c94ecba6bebf Mon Sep 17 00:00:00 2001 From: Sijis Aviles Date: Fri, 25 Oct 2024 22:45:33 -0500 Subject: [PATCH 1/4] chore: add python versions 3.11, 3.12, 3.13 --- .github/workflows/python-package.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 994afaddc..ac75e3cdf 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 From 4edf2159d245824eaca1db0581e60df67443002f Mon Sep 17 00:00:00 2001 From: Sijis Aviles Date: Fri, 25 Oct 2024 22:51:18 -0500 Subject: [PATCH 2/4] chore: move testing/checking to python 3.12 --- .github/workflows/python-package.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index ac75e3cdf..2dc820ec3 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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 From cb2138bc35369988d039a9dfd0d6b618c7095745 Mon Sep 17 00:00:00 2001 From: Sijis Aviles Date: Fri, 25 Oct 2024 23:36:16 -0500 Subject: [PATCH 3/4] test: add python version to tox --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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] From 56d0f550aaa244aa1c97e9864ea900f98c915d3a Mon Sep 17 00:00:00 2001 From: Sijis Aviles Date: Fri, 25 Oct 2024 23:59:58 -0500 Subject: [PATCH 4/4] docs: add info to CHANGES --- CHANGES.rst | 1 + 1 file changed, 1 insertion(+) 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) -------------------