Skip to content

Commit

Permalink
Test and support Python 3.8+
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 2b075b3 commit de02e39
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@

setup(
name="mobile-env",
version="2.0.1",
version="2.0.2",
author="Stefan Schneider, Stefan Werner",
description="mobile-env: An Open Environment for Autonomous Coordination in "
"Wireless Mobile Networks",
long_description=long_description,
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 de02e39

Please sign in to comment.