File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 9
9
from luxai_runner .episode import Episode , EpisodeConfig , ReplayConfig
10
10
from luxai_runner .logger import Logger
11
11
from luxai_runner .tournament import Tournament , TournamentConfig
12
- from omegaconf import OmegaConf
13
12
14
13
from luxai_s2 import LuxAI_S2
15
14
@@ -140,7 +139,7 @@ def main():
140
139
141
140
tournament_config = TournamentConfig ()
142
141
tournament_config .agents = args .players
143
- # TODO - in future replace this with OmegaConf or something that can parse these nicely
142
+
144
143
tournament_config .max_concurrent_episodes = getattr (
145
144
args , "tournament_cfg.concurrent"
146
145
)
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ def read(fname):
17
17
long_description = "Code for the Lux AI Challenge Season 2" ,
18
18
packages = find_packages (exclude = "kits" ),
19
19
entry_points = {"console_scripts" : ["luxai-s2 = luxai_runner.cli:main" ]},
20
- version = "2.1.6 " ,
20
+ version = "2.1.7 " ,
21
21
python_requires = ">=3.7" ,
22
22
install_requires = [
23
23
"numpy" ,
@@ -26,7 +26,6 @@ def read(fname):
26
26
"matplotlib" ,
27
27
"pettingzoo" ,
28
28
"vec_noise" ,
29
- "omegaconf" ,
30
29
"gym==0.21.0" ,
31
30
"scipy" ,
32
31
"importlib-metadata<5.0" # fixes bug where they deprecated an endpoint that openai gym uses
You can’t perform that action at this time.
0 commit comments