Skip to content

Commit 927a203

Browse files
pull request Dev/jan into experimental (#7)
* added exp branch to test workflow * Merge changes from experimental into master (#5) * added pyplot * bumped pillow * Fixed failing tests. Added run_experiments.py to root dir * trying to fix missing roms * rar name * adding atari-py to toml * removed manual rom fix * trying gym 0.14 for tests" * undo install req of matplotlib Co-authored-by: Jan Ole von Hartz <[email protected]>
1 parent 3b7d32e commit 927a203

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

pyproject.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@ classifiers = [
3535
[tool.poetry.dependencies]
3636
python = "^3.6"
3737
numpy = "^1.19.5"
38+
matplotlib = "^3.3.4"
39+
atari-py = "0.2.5"
3840

39-
gym = { version = "^0.18.0", extras = ["atari"] }
41+
gym = { version = "0.14.0", extras = ["atari"] }
4042

4143

4244
pandas = { version = "0.25.0", optional = true }
@@ -57,7 +59,7 @@ scipy = { version = "^1.3.0", optional = true }
5759
# { version = "2.2.0", optional = true, markers = "extra == 'extras_disc'" }
5860
# ]
5961

60-
pillow = { version = "6.1.0", optional = true }
62+
pillow = { version = "^6.1.0", optional = true }
6163
tensorflow-probability = { version = "0.9.0", optional = true }
6264
mujoco-py = { version = "2.0.2.13", optional = true }
6365
tensorflow = { version = "2.2.0", optional = true }

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@
1414
extras_require = [
1515
'ray[default,rllib,debug]==1.3.0',
1616
'tensorflow==2.2.0',
17-
'pillow==6.1.0',
17+
'pillow>=6.1.0',
1818
'pandas==0.25.0',
1919
'requests==2.22.0',
2020
'configspace==0.4.10',
2121
'scipy>=1.3.0',
2222
'pandas==0.25.0',
23-
'gym[atari]==0.18'
23+
'gym[atari]==0.18',
2424
]
2525

2626
extras_require_disc = [
2727
'ray[rllib,debug]==0.7.3',
2828
'tensorflow==1.13.0rc1',
29-
'pillow==6.1.0',
29+
'pillow>=6.1.0',
3030
'pandas==0.25.0',
3131
'requests==2.22.0',
3232
'configspace==0.4.10',

0 commit comments

Comments
 (0)