From 926d97abd11c4505f7d204cf5e3a0d6334cdfff6 Mon Sep 17 00:00:00 2001 From: Rebecca Chen Date: Tue, 11 Jul 2023 16:56:54 -0700 Subject: [PATCH] Remove 3.7 from build wheels workflow and version requirements. --- .github/workflows/build.yml | 4 ++-- requirements.txt | 1 - setup.cfg | 4 +--- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 249a5a699..9541b823c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: platform: - manylinux2014_x86_64 - manylinux2014_aarch64 - pyver: ['cp37-cp37m', 'cp38-cp38', 'cp39-cp39', 'cp310-cp310'] + pyver: ['cp38-cp38', 'cp39-cp39', 'cp310-cp310'] steps: - uses: actions/checkout@v3 with: @@ -58,7 +58,7 @@ jobs: runs-on: macos-latest strategy: matrix: - python_version: ['3.7', '3.8', '3.9', '3.10'] + python_version: ['3.8', '3.9', '3.10'] steps: - uses: actions/checkout@v3 with: diff --git a/requirements.txt b/requirements.txt index 55f7d568e..12b554228 100644 --- a/requirements.txt +++ b/requirements.txt @@ -12,5 +12,4 @@ pydot>=1.4.2 pylint>=2.14.4 tabulate>=0.8.10 toml>=0.10.2 -typed_ast==1.5.4; python_version < '3.8' typing-extensions>=4.3.0 diff --git a/setup.cfg b/setup.cfg index 4585dfc4a..ebb619e78 100644 --- a/setup.cfg +++ b/setup.cfg @@ -17,7 +17,6 @@ classifiers = Intended Audience :: Developers License :: OSI Approved :: Apache Software License Programming Language :: Python - Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 @@ -27,7 +26,7 @@ classifiers = [options] zip_safe = False -python_requires = >=3.7, <3.11 +python_requires = >=3.8, <3.11 packages = find: install_requires = @@ -40,7 +39,6 @@ install_requires = pydot>=1.4.2 tabulate>=0.8.10 toml>=0.10.2 - typed_ast==1.5.4; python_version < '3.8' typing-extensions>=4.3.0 [options.packages.find]