From cf90ff407ff83663fed3e9ac28234552d1a0b9e3 Mon Sep 17 00:00:00 2001 From: Dacheng Xu Date: Tue, 16 Jan 2024 07:38:02 -0500 Subject: [PATCH] Drop 3.11 support for now (#1321) * Drop 3.11 support for now * Add comments --- .github/workflows/pytest.yml | 4 ++-- setup.py | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 2210fc834..97c7ef4be 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -33,9 +33,9 @@ jobs: strategy: fail-fast: False matrix: - python-version: [ "3.9", "3.10", "3.11" ] + python-version: [ "3.9", "3.10" ] test: [ 'coveralls', 'pytest', 'pytest_no_database' ] - # Only run on py3.8. Py3.10 is quite slow, so no coveralls + # Drop some not crucial tests for python 3.10 and 3.11 exclude: - python-version: "3.11" test: coveralls diff --git a/setup.py b/setup.py index c4927fe5c..4a70a38c7 100644 --- a/setup.py +++ b/setup.py @@ -53,7 +53,6 @@ def open_requirements(path): "Natural Language :: English", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", - "Programming Language :: Python :: 3.11", "Intended Audience :: Science/Research", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Scientific/Engineering :: Physics",