Skip to content

Commit

Permalink
update setup and build for python3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
qgallouedec committed Apr 16, 2021
1 parent 91b659d commit 70838eb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]

steps:
- uses: actions/checkout@v2
Expand Down
10 changes: 9 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,15 @@
url="https://github.com/qgallouedec/panda-gym",
packages=find_packages(),
include_package_data=True,
package_data={"panda_gym": ["envs/assets/*.json"]},
package_data={},
version="1.0.0",
install_requires=["gym", "pybullet", "numpy"],
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)

0 comments on commit 70838eb

Please sign in to comment.