Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hotfix: dependencies in requirements.txt and setup.py are out of sync #165

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qdax/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.2.3"
__version__ = "0.2.4"
15 changes: 8 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,16 @@
long_description_content_type="text/markdown",
install_requires=[
"absl-py>=1.0.0",
"jax>=0.3.16",
"jaxlib>=0.3.15", # necessary to build the doc atm
"jax>=0.4.16",
"jaxlib>=0.4.16", # necessary to build the doc atm
"jinja2<3.1.0",
"jumanji>=0.1.3",
"flax>=0.6, <0.6.2",
"brax>=0.0.15",
"jumanji>=0.3.1",
"flax>=0.7.4",
"chex>=0.1.83",
"brax>=0.9.2",
"gym>=0.23.1",
"numpy>=1.22.3",
"optax>=0.1, <0.1.5",
"optax>=0.1.7",
"scikit-learn>=1.0.2",
"scipy>=1.8.0",
],
Expand All @@ -45,7 +46,7 @@
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)
Loading