From 56c7c2fee3a927dd07879b20006efcf34ddaaba1 Mon Sep 17 00:00:00 2001 From: EddyCMWF Date: Mon, 12 May 2025 13:40:33 +0100 Subject: [PATCH 1/3] remove unsupported python version from actions --- .github/workflows/check-and-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-and-publish.yml b/.github/workflows/check-and-publish.yml index 24972d1..aacab18 100644 --- a/.github/workflows/check-and-publish.yml +++ b/.github/workflows/check-and-publish.yml @@ -35,7 +35,7 @@ jobs: fail-fast: false matrix: platform: [windows-latest, ubuntu-latest, macos-latest] - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] exclude: - platform: macos-latest python-version: "3.8" From 7491754c4adecce6847068163d7d5543a780cfa1 Mon Sep 17 00:00:00 2001 From: EddyCMWF Date: Mon, 12 May 2025 13:46:33 +0100 Subject: [PATCH 2/3] update metadata --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 27c5ceb..b766232 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def read(fname): long_description=read("README.rst"), packages=setuptools.find_packages(), include_package_data=True, - python_requires=">=3.8", + python_requires=">=3.9", install_requires=[ "ecmwf-datastores-client", "requests>=2.5.0", @@ -56,7 +56,6 @@ def read(fname): "Intended Audience :: Developers", "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", From cd54ad86d097c5f78b2942a11aad6e639e999da7 Mon Sep 17 00:00:00 2001 From: EddyCMWF Date: Mon, 12 May 2025 13:49:23 +0100 Subject: [PATCH 3/3] python requires >=3.8 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index b766232..5b7a8b9 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ def read(fname): long_description=read("README.rst"), packages=setuptools.find_packages(), include_package_data=True, - python_requires=">=3.9", + python_requires=">=3.8", install_requires=[ "ecmwf-datastores-client", "requests>=2.5.0",