Skip to content

Commit

Permalink
Fix requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertTLange committed Apr 21, 2024
1 parent 221c3cc commit 88fef69
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### [v0.0.8] - 21/04/2024

Fix import errors for `matplotlib` and `seaborn` visualization.

### [v0.0.7] - 04/04/2024

1. Fixed most of the typing issues under pylint --strict.
Expand Down
2 changes: 1 addition & 1 deletion gymnax/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version file."""

__version__ = "0.0.7"
__version__ = "0.0.8"
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,17 @@ def parse_requirements(path: str) -> List[str]:
raise RuntimeError("Unable to find version string in %s." % (VERSIONFILE,))
git_tar = f"https://github.com/RobertTLange/gymnax/archive/v{verstr}.tar.gz"

requires = ["jax", "jaxlib", "chex", "flax", "pyyaml", "gym>=0.26", "gymnasium"]
requires = [
"jax",
"jaxlib",
"chex",
"flax",
"pyyaml",
"gym>=0.26",
"gymnasium",
"matplotlib",
"seaborn",
]
test_requires = ["bsuite", "minatar", "brax"]

setup(
Expand Down

0 comments on commit 88fef69

Please sign in to comment.