Skip to content

Commit

Permalink
Update the python version to >=3.8,<3.13 (#111)
Browse files Browse the repository at this point in the history
  • Loading branch information
pseudo-rnd-thoughts authored Nov 1, 2024
1 parent 3c5879f commit 9220cce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
steps:
- uses: actions/checkout@v2
- run: |
Expand Down
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def get_version():
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["Environment", "Agent", "RL", "Gym", "Robotics", "3D"],
python_requires=">=3.7, <3.11",
python_requires=">=3.8",
packages=["miniworld", "miniworld.envs"],
package_data={
"miniworld": [
Expand All @@ -56,20 +56,21 @@ def get_version():
"meshes/*.obj",
]
},
extras_require={"testing": ["pytest==7.0.1", "torch"]},
install_requires=[
"numpy>=1.18.0",
"pyglet==1.5.27",
"gymnasium>=0.26.2",
],
extras_require={"testing": ["pytest==7.0.1", "torch"]},
# Include textures and meshes in the package
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)

0 comments on commit 9220cce

Please sign in to comment.