Skip to content

Commit 6aae619

Browse files
[Versioning] 1.1.0 (#61)
* Amend * Amend * Amend * Amend * Amend * Amend
1 parent 0305223 commit 6aae619

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

2-
pip install "pettingzoo[all]==1.24.1"
2+
pip install "pettingzoo[all]==1.24.3"
33
sudo apt-get update
44
sudo apt-get install python3-opengl xvfb

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ def package_files(directory):
2727

2828
setup(
2929
name="benchmarl",
30-
version="1.0.0",
30+
version="1.1.0",
3131
description="BenchMARL",
3232
url="https://github.com/facebookresearch/BenchMARL",
3333
author="Matteo Bettini",
3434
author_email="[email protected]",
35-
install_requires=["torchrl>=0.2.0", "tqdm", "hydra-core"],
35+
install_requires=["torchrl>=0.3.0", "tqdm", "hydra-core"],
3636
extras_require={
3737
"vmas": ["vmas>=1.3.4"],
38-
"pettingzoo": ["pettingzoo[all]>=1.24.1"],
38+
"pettingzoo": ["pettingzoo[all]>=1.24.3"],
3939
"gnn": ["torch_geometric"],
4040
},
4141
packages=find_packages(),

test/test_pettingzoo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_all_algos(
4343
if (prefer_continuous and not algo_config.supports_continuous_actions()) or (
4444
not prefer_continuous and not algo_config.supports_discrete_actions()
4545
):
46-
return
46+
pytest.skip()
4747

4848
# To not run unsupported algo-task pairs
4949
if (
@@ -53,7 +53,7 @@ def test_all_algos(
5353
not task.supports_discrete_actions()
5454
and not algo_config.supports_continuous_actions()
5555
):
56-
return
56+
pytest.skip()
5757

5858
task = task.get_from_yaml()
5959
experiment_config.prefer_continuous_actions = prefer_continuous
@@ -119,7 +119,7 @@ def test_reloading_trainer(
119119
experiment_config.prefer_continuous_actions = prefer_continuous
120120
algo_config = algo_config.get_from_yaml()
121121
if isinstance(algo_config, VdnConfig):
122-
# There are some bugs currently in TorchRL
122+
# There are some bugs currently in TorchRL https://github.com/pytorch/rl/issues/1593
123123
return
124124
ExperimentUtils.check_experiment_loading(
125125
algo_config=algo_config,

test/test_vmas.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_all_algos(
4343
if (prefer_continuous and not algo_config.supports_continuous_actions()) or (
4444
not prefer_continuous and not algo_config.supports_discrete_actions()
4545
):
46-
return
46+
pytest.skip()
4747

4848
task = task.get_from_yaml()
4949
experiment_config.prefer_continuous_actions = prefer_continuous
@@ -108,7 +108,7 @@ def test_reloading_trainer(
108108
):
109109
algo_config = algo_config.get_from_yaml()
110110
if isinstance(algo_config, VdnConfig):
111-
# There are some bugs currently in TorchRL
111+
# There are some bugs currently in TorchRL https://github.com/pytorch/rl/issues/1593
112112
return
113113
ExperimentUtils.check_experiment_loading(
114114
algo_config=algo_config,

0 commit comments

Comments
 (0)