Skip to content

Commit

Permalink
Relax versions of install_requires packages in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mwydmuch committed May 2, 2023
1 parent 0f037c3 commit 9c11b10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,11 +206,10 @@ def run(self):
author="Marek Wydmuch, Michał Kempka, Wojciech Jaśkowski, Grzegorz Runc, Jakub Toczek, and the respective contributors",
author_email="[email protected]",
extras_require={
"gym": ["gym==0.26.0", "pygame==2.3.0"],
"gym": ["gym>=0.26.0", "pygame>=2.1.3"],
"test": ["pytest", "psutil"],
},
install_requires=["numpy", "tqdm", "gymnasium==0.28.1", "pygame==2.3.0"],
tests_require=["pytest", "psutil"],
install_requires=["numpy", "gymnasium>=0.28.0", "pygame>=2.1.3"],
packages=["vizdoom"],
package_dir={"vizdoom": package_path},
package_data={"vizdoom": package_data},
Expand All @@ -224,6 +223,7 @@ def run(self):
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand Down

0 comments on commit 9c11b10

Please sign in to comment.