From edfb04a618b9e2bbe6a684c0fc2e53174c8e8750 Mon Sep 17 00:00:00 2001 From: Jean-Marie Burel Date: Thu, 21 Nov 2024 13:25:25 +0000 Subject: [PATCH 1/3] Drop Python 3.8 from testing matrix --- .github/workflows/test_and_deploy.yml | 2 +- tox.ini | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index fe015c2..f169e03 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: platform: [ubuntu-latest, windows-latest, macos-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: [ "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 diff --git a/tox.ini b/tox.ini index 566f638..a2947c1 100644 --- a/tox.ini +++ b/tox.ini @@ -1,10 +1,9 @@ # For more information about tox, see https://tox.readthedocs.io/en/latest/ [tox] -envlist = py{38,39,310,311,312}-{linux,macos,windows} +envlist = py{39,310,311,312}-{linux,macos,windows} [gh-actions] python = - 3.8: py38 3.9: py39 3.10: py310 3.11: py311 From deb6d296117ebbd5c8fa0ca85690a60fb8537a6f Mon Sep 17 00:00:00 2001 From: Jean-Marie Burel Date: Thu, 21 Nov 2024 13:26:25 +0000 Subject: [PATCH 2/3] Make 3.9 the minimum version --- setup.cfg | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 52e1139..c02f007 100644 --- a/setup.cfg +++ b/setup.cfg @@ -14,7 +14,6 @@ classifiers = Topic :: Software Development :: Testing Programming Language :: Python Programming Language :: Python :: 3 - Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Programming Language :: Python :: 3.11 @@ -30,7 +29,7 @@ project_urls = [options] packages = find: -python_requires = >=3.7 +python_requires = >=3.9 setup_requires = setuptools_scm # add your package requirements here install_requires = From 2611c125f6d7450f3dcdea59b95f4c16b6ca50a3 Mon Sep 17 00:00:00 2001 From: Jean-Marie Burel Date: Thu, 21 Nov 2024 13:31:09 +0000 Subject: [PATCH 3/3] Remove space --- .github/workflows/test_and_deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index f169e03..ee437ef 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -24,7 +24,7 @@ jobs: fail-fast: false matrix: platform: [ubuntu-latest, windows-latest, macos-latest] - python-version: [ "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4