From c79df7c8c86bf466aa920e1d45f555ad649d7381 Mon Sep 17 00:00:00 2001 From: marc-vdm Date: Wed, 28 Aug 2024 15:10:32 +0200 Subject: [PATCH] Fix python version support --- .github/workflows/install-canary.yaml | 2 +- setup.py | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/install-canary.yaml b/.github/workflows/install-canary.yaml index edfc46dea..ec46d9932 100644 --- a/.github/workflows/install-canary.yaml +++ b/.github/workflows/install-canary.yaml @@ -15,7 +15,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest, macos-13] - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ["3.10", "3.11"] defaults: run: shell: bash -l {0} diff --git a/setup.py b/setup.py index 888b1fecc..e07469512 100644 --- a/setup.py +++ b/setup.py @@ -53,8 +53,7 @@ "Operating System :: POSIX", "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", "Topic :: Scientific/Engineering :: Information Analysis", "Topic :: Scientific/Engineering :: Mathematics",