Skip to content

Commit 5fb380b

Browse files
authored
Merge pull request openai#1 from WillDudley/WD_patch
Wd patch
2 parents ec23f44 + acdcd39 commit 5fb380b

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Used in the paper [Multi-Agent Actor-Critic for Mixed Cooperative-Competitive En
1616
- To interactively view moving to landmark scenario (see others in ./scenarios/):
1717
`bin/interactive.py --scenario simple.py`
1818

19-
- Known dependencies: Python (3.5.4), OpenAI gym (0.10.5), numpy (1.14.5)
19+
- Known dependencies: Python (3.5.4), OpenAI gym (0.10.5), numpy (1.14.5), pyglet (1.5.27)
2020

2121
- To use the environments, look at the code for importing them in `make_env.py`.
2222

multiagent/__init__.py

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
from gym.envs.registration import register
21
import warnings
32

3+
from gym.envs.registration import register
4+
45
# Multiagent envs
56
# ----------------------------------------
67

@@ -18,8 +19,10 @@
1819
max_episode_steps=100,
1920
)
2021

21-
warnings.warn("This code base is no longer maintained, and is not expected to be maintained again in the future. \n' \
22-
'For the past handful of years, these environments been maintained inside of PettingZoo (see https://pettingzoo.farama.org/environments/mpe/ \n).' \
23-
'This maintained version includes documentation, support for the PettingZoo API, support for current versions of Python, numerous bug fixes, \n'' \
24-
'support for installation via pip, and numerous other large quality of life improvements. We encourage researchers to switch to this \n' \
25-
'maintained version for all purposes other than comparing to results run on this version of the environments.')
22+
warnings.warn("This code base is no longer maintained, and is not expected to be maintained again in the future. \n"
23+
"For the past handful of years, these environments been maintained inside of PettingZoo (see "
24+
"https://pettingzoo.farama.org/environments/mpe/). \nThis maintained version includes documentation, "
25+
"support for the PettingZoo API, support for current versions of Python, numerous bug fixes, \n"
26+
"support for installation via pip, and numerous other large quality of life improvements. \nWe "
27+
"encourage researchers to switch to this maintained version for all purposes other than comparing "
28+
"to results run on this version of the environments. \n")

0 commit comments

Comments
 (0)