From b6ee1544b74c9e247e8798f263e9521319d4d38b Mon Sep 17 00:00:00 2001 From: Luca Grillotti Date: Tue, 18 Feb 2025 10:13:45 +0000 Subject: [PATCH 1/3] hotfix: remove useless dependencies (#210) Removing the following useless dependencies from requirements.txt: gym, ipython, jupyter --- requirements.txt | 3 --- setup.py | 1 - 2 files changed, 4 deletions(-) diff --git a/requirements.txt b/requirements.txt index f6dea29a5..9422741a1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,12 +2,9 @@ absl-py==1.0.0 brax==0.10.4 chex==0.1.86 flax==0.8.5 -gym==0.26.2 -ipython jax==0.4.28 jaxlib==0.4.28 jumanji==0.3.1 -jupyter numpy==1.26.4 optax==0.1.9 protobuf==3.19.5 diff --git a/setup.py b/setup.py index cd7d2b131..8d651e102 100644 --- a/setup.py +++ b/setup.py @@ -25,7 +25,6 @@ "brax>=0.10.4", "chex>=0.1.86", "flax>=0.8.5", - "gym>=0.26.2", "jax>=0.4.28", "jaxlib>=0.4.28", # necessary to build the doc atm "jinja2>=3.1.4", From d17755b72b77cedf58b6965230a2710b88b3027a Mon Sep 17 00:00:00 2001 From: Luca Grillotti Date: Tue, 25 Feb 2025 18:27:56 +0000 Subject: [PATCH 2/3] chore: add 'notebooks verification' checks to pull request template --- .github/pull_request_template.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 94721bc75..d16bf21fe 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -6,14 +6,14 @@ This PR introduces: - [modification 1] - [modification 2] - ## Checks - [ ] a clear description of the PR has been added - [ ] sufficient tests have been written -- [ ] relevant section added to the documentation -- [ ] example notebook added to the repo +- [ ] example notebook have been added to the repo +- [ ] all example notebooks have been verified to execute without errors - [ ] clean docstrings and comments have been written +- [ ] relevant section have been added to the documentation - [ ] if any issue/observation has been discovered, a new issue has been opened ## Future improvements From 480f81ea335e25c15fa459c0a15b8ba034091328 Mon Sep 17 00:00:00 2001 From: Luca Grillotti Date: Tue, 25 Feb 2025 18:29:09 +0000 Subject: [PATCH 3/3] chore: update qdax version to 0.4.1 --- qdax/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qdax/__init__.py b/qdax/__init__.py index 6a9beea82..3d26edf77 100644 --- a/qdax/__init__.py +++ b/qdax/__init__.py @@ -1 +1 @@ -__version__ = "0.4.0" +__version__ = "0.4.1"