Skip to content

Commit 94a7586

Browse files
committed
remove omegaconf as dependency
1 parent 0b57295 commit 94a7586

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

luxai_s2/luxai_runner/cli.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
from luxai_runner.episode import Episode, EpisodeConfig, ReplayConfig
1010
from luxai_runner.logger import Logger
1111
from luxai_runner.tournament import Tournament, TournamentConfig
12-
from omegaconf import OmegaConf
1312

1413
from luxai_s2 import LuxAI_S2
1514

@@ -140,7 +139,7 @@ def main():
140139

141140
tournament_config = TournamentConfig()
142141
tournament_config.agents = args.players
143-
# TODO - in future replace this with OmegaConf or something that can parse these nicely
142+
144143
tournament_config.max_concurrent_episodes = getattr(
145144
args, "tournament_cfg.concurrent"
146145
)

luxai_s2/setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def read(fname):
1717
long_description="Code for the Lux AI Challenge Season 2",
1818
packages=find_packages(exclude="kits"),
1919
entry_points={"console_scripts": ["luxai-s2 = luxai_runner.cli:main"]},
20-
version="2.1.6",
20+
version="2.1.7",
2121
python_requires=">=3.7",
2222
install_requires=[
2323
"numpy",
@@ -26,7 +26,6 @@ def read(fname):
2626
"matplotlib",
2727
"pettingzoo",
2828
"vec_noise",
29-
"omegaconf",
3029
"gym==0.21.0",
3130
"scipy",
3231
"importlib-metadata<5.0" # fixes bug where they deprecated an endpoint that openai gym uses

0 commit comments

Comments
 (0)