Skip to content

Commit

Permalink
Remove 3.7 from build wheels workflow and version requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
rchen152 committed Jul 12, 2023
1 parent ee6ea3d commit 926d97a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 =
Expand All @@ -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]
Expand Down

0 comments on commit 926d97a

Please sign in to comment.