From 3c4e78f1ccc28cb0ee8924b98780c64cfff6687b Mon Sep 17 00:00:00 2001 From: flabbamann Date: Fri, 25 Oct 2024 21:32:21 +0200 Subject: [PATCH 1/3] Run tests on python 3.13 --- .github/workflows/test.yml | 6 ++---- setup.cfg | 3 +-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 214de73..78358aa 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,10 +10,6 @@ jobs: strategy: matrix: include: - - python-version: "3.7" - os: ubuntu-latest - - python-version: "3.8" - os: ubuntu-latest - python-version: "3.9" os: ubuntu-latest - python-version: "3.10" @@ -22,6 +18,8 @@ jobs: os: ubuntu-latest - python-version: "3.12" os: ubuntu-latest + - python-version: "3.13" + os: ubuntu-latest - python-version: "pypy3.9" os: windows-latest diff --git a/setup.cfg b/setup.cfg index 04df847..816375b 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,12 +13,11 @@ license_file = LICENSE classifiers = License :: OSI Approved :: MIT License Programming Language :: Python :: 3 - Programming Language :: Python :: 3.7 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 Programming Language :: Python :: 3.12 + Programming Language :: Python :: 3.13 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy From 5808b9f839a4d9672ac504418acedbd6b559dc62 Mon Sep 17 00:00:00 2001 From: Michael <35783820+mib1185@users.noreply.github.com> Date: Sun, 12 Jan 2025 22:34:46 +0100 Subject: [PATCH 2/3] keep python 3.7 and 3.8 --- .github/workflows/test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 78358aa..7aa8f40 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,6 +10,10 @@ jobs: strategy: matrix: include: + - python-version: "3.7" + os: ubuntu-20.04 + - python-version: "3.8" + os: ubuntu-20.04 - python-version: "3.9" os: ubuntu-latest - python-version: "3.10" From 66d09d282fea806c887920abdfed283910c5f4c4 Mon Sep 17 00:00:00 2001 From: Michael <35783820+mib1185@users.noreply.github.com> Date: Sun, 12 Jan 2025 22:35:27 +0100 Subject: [PATCH 3/3] keep python 3.7 and 3.8 --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index 816375b..a099330 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,6 +13,8 @@ license_file = LICENSE classifiers = License :: OSI Approved :: MIT License Programming Language :: Python :: 3 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11