Skip to content

Commit

Permalink
build: removed 3.7 python check
Browse files Browse the repository at this point in the history
- Somehow, it's not available for macos build in github actions
  • Loading branch information
koulanurag committed Apr 30, 2024
1 parent bb3747e commit a080e6d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
python-version: [3.7, 3.8, 3.9, '3.10', '3.11']
python-version: [3.8, 3.9, '3.10', '3.11']

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,10 +45,8 @@
install_requires=["gymnasium>=0.28", "pygame>=2.1.0", "scipy", "matplotlib"],
extras_require=extras,
tests_require=extras["test"],
python_requires=">=3.6, <3.12",
python_requires=">=3.8, <3.12",
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down

0 comments on commit a080e6d

Please sign in to comment.