box2d kengz vs py (#1120)

* try build with box2d-kengz

* test box2d envs

* use box2d-py in tox.ini for tests

* box2d-py instead of box2d-kengz in box2d dependencies

* test dependencies in tox.ini use dependencies in setup.py

* further cleanups of tox.ini

* further cleanups

* added scipy to list of requirements

* added a note about box2d-kengz into README

* build box2d from scratch, add a note to README about it

* use box2d-py>=2.3.4

* removed box2d installation instructions from README
This commit is contained in:
pzhokhov
2018-08-09 10:13:34 -07:00
committed by GitHub
parent 5c116fb3c9
commit c306b4e5a9
2 changed files with 1 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ from version import VERSION
# Environment-specific dependencies. # Environment-specific dependencies.
extras = { extras = {
'atari': ['atari_py>=0.1.1', 'Pillow', 'PyOpenGL'], 'atari': ['atari_py>=0.1.1', 'Pillow', 'PyOpenGL'],
'box2d': ['box2d-py'], 'box2d': ['box2d-py>=2.3.4'],
'classic_control': ['PyOpenGL'], 'classic_control': ['PyOpenGL'],
'mujoco': ['mujoco_py>=1.50', 'imageio'], 'mujoco': ['mujoco_py>=1.50', 'imageio'],
'robotics': ['mujoco_py>=1.50', 'imageio'], 'robotics': ['mujoco_py>=1.50', 'imageio'],

View File

@@ -16,12 +16,3 @@ deps =
commands = commands =
pytest {posargs} pytest {posargs}
[testenv:py27]
whitelist_externals=make
passenv=DISPLAY TRAVIS*
deps =
pytest
mock
-e .[all]
commands =
pytest {posargs}