From defa51bec5486169bc625b857d8cd40afaf8b831 Mon Sep 17 00:00:00 2001 From: "Felix M. Riese" Date: Sat, 8 Jul 2023 16:18:40 +0200 Subject: [PATCH] REMOVE python 3.7, ADD python 3.11 --- .github/workflows/tests_and_linting.yml | 2 +- meta.yaml | 4 ++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests_and_linting.yml b/.github/workflows/tests_and_linting.yml index cd9c526..27af620 100644 --- a/.github/workflows/tests_and_linting.yml +++ b/.github/workflows/tests_and_linting.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: # Python versions need to be strings (otherwise: 3.10 -> 3.1) - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 diff --git a/meta.yaml b/meta.yaml index fb7547a..337efed 100644 --- a/meta.yaml +++ b/meta.yaml @@ -18,11 +18,11 @@ build: requirements: host: - pip - - python >=3.7 + - python >=3.8 run: - joblib >=0.13.0 - numpy >=1.18.5 - - python >=3.7 + - python >=3.8 - scikit-learn >=0.21.1 - scipy >=1.3.1 - tqdm >=4.45.0 diff --git a/setup.py b/setup.py index 373531e..d3134c0 100644 --- a/setup.py +++ b/setup.py @@ -40,10 +40,10 @@ packages=setuptools.find_packages(), classifiers=[ "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", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Education",