Skip to content

Commit

Permalink
Test and support Python 3.8+ (#43)
Browse files Browse the repository at this point in the history
Previously just tested Py 3.7 and 3.8.
But Py 3.7 reached end of life and newer versions should also be supported.
  • Loading branch information
stefanbschneider committed Jul 20, 2023
1 parent 5ec0ded commit 2d4d13d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.7, 3.8]
python-version: ["3.8", "3.9", "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
long_description_content_type="text/markdown",
url="https://github.com/stefanbschneider/mobile-env",
packages=find_packages(),
python_requires=">=3.7.0",
python_requires=">=3.8.0",
install_requires=requirements,
zip_safe=False,
classifiers=[
Expand Down

0 comments on commit 2d4d13d

Please sign in to comment.