From 3e9b429565c2e704aa97fb5b486e86cd34126b30 Mon Sep 17 00:00:00 2001 From: "Brandon T. Willard" Date: Tue, 16 May 2023 23:50:18 -0500 Subject: [PATCH] Remove Python 3.7 support and flaky Actions PyPy testing --- .github/workflows/tests.yml | 3 +-- setup.py | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2923026..d6ef0ee 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -62,11 +62,10 @@ jobs: strategy: matrix: python-version: - - 3.7 - 3.8 - 3.9 - '3.10' - - pypy3 + - '3.11' steps: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 diff --git a/setup.py b/setup.py index 3b4142a..793d3b0 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ ], long_description=open("README.md").read() if exists("README.md") else "", long_description_content_type="text/markdown", - python_requires=">=3.6", + python_requires=">=3.8", classifiers=[ "Development Status :: 4 - Beta", "Intended Audience :: Science/Research", @@ -29,10 +29,10 @@ "License :: OSI Approved :: Apache Software License", "Programming Language :: Python", "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", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ],