multi-agent-rlenv 3.7.2__tar.gz → 3.7.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/PKG-INFO +3 -4
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/pyproject.toml +5 -6
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/adapters/smac_adapter.py +1 -1
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/test_adapters.py +1 -1
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/.github/workflows/ci.yaml +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/.github/workflows/docs.yaml +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/.gitignore +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/LICENSE +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/README.md +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/__init__.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/adapters/__init__.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/adapters/gym_adapter.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/adapters/pettingzoo_adapter.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/adapters/pymarl_adapter.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/catalog/__init__.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/catalog/connectn/__init__.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/catalog/connectn/board.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/catalog/connectn/env.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/catalog/coordinated_grid.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/catalog/deepsea.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/catalog/matrix_game.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/catalog/two_steps.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/env_builder.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/env_pool.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/exceptions.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/mock_env.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/models/__init__.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/models/env.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/models/episode.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/models/observation.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/models/spaces.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/models/state.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/models/step.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/models/transition.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/py.typed +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/utils/__init__.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/utils/cached_property_collector.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/utils/import_placeholders.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/utils/schedule.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/__init__.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/action_randomizer.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/agent_id_wrapper.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/available_actions_mask.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/available_actions_wrapper.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/blind_wrapper.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/centralised.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/delayed_rewards.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/last_action_wrapper.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/paddings.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/penalty_wrapper.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/potential_shaping.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/rlenv_wrapper.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/state_counter.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/time_limit.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/video_recorder.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/__init__.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/test_catalog.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/test_deepsea.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/test_episode.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/test_models.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/test_others.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/test_pool.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/test_schedules.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/test_serialization.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/test_spaces.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/test_wrappers.py +0 -0
- {multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/tests/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: multi-agent-rlenv
|
|
3
|
-
Version: 3.7.
|
|
3
|
+
Version: 3.7.3
|
|
4
4
|
Summary: A strongly typed Multi-Agent Reinforcement Learning framework
|
|
5
5
|
Project-URL: repository, https://github.com/yamoling/multi-agent-rlenv
|
|
6
6
|
Author-email: Yannick Molinghen <yannick.molinghen@ulb.be>
|
|
@@ -17,9 +17,8 @@ Requires-Dist: laser-learning-environment>=2.6.1; extra == 'all'
|
|
|
17
17
|
Requires-Dist: overcooked>=0.1.0; extra == 'all'
|
|
18
18
|
Requires-Dist: pettingzoo>=1.20; extra == 'all'
|
|
19
19
|
Requires-Dist: pymunk>=6.0; extra == 'all'
|
|
20
|
-
Requires-Dist: pysc2; extra == 'all'
|
|
21
20
|
Requires-Dist: scipy>=1.10; extra == 'all'
|
|
22
|
-
Requires-Dist:
|
|
21
|
+
Requires-Dist: smacv2; extra == 'all'
|
|
23
22
|
Requires-Dist: torch>=2.0; extra == 'all'
|
|
24
23
|
Provides-Extra: gym
|
|
25
24
|
Requires-Dist: gymnasium>=0.29.1; extra == 'gym'
|
|
@@ -33,7 +32,7 @@ Requires-Dist: pymunk>=6.0; extra == 'pettingzoo'
|
|
|
33
32
|
Requires-Dist: scipy>=1.10; extra == 'pettingzoo'
|
|
34
33
|
Provides-Extra: smac
|
|
35
34
|
Requires-Dist: pysc2; extra == 'smac'
|
|
36
|
-
Requires-Dist:
|
|
35
|
+
Requires-Dist: smacv2; extra == 'smac'
|
|
37
36
|
Provides-Extra: torch
|
|
38
37
|
Requires-Dist: torch>=2.0; extra == 'torch'
|
|
39
38
|
Description-Content-Type: text/markdown
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "multi-agent-rlenv"
|
|
3
|
-
version = "3.7.
|
|
3
|
+
version = "3.7.3"
|
|
4
4
|
description = "A strongly typed Multi-Agent Reinforcement Learning framework"
|
|
5
5
|
authors = [
|
|
6
6
|
{ "name" = "Yannick Molinghen", "email" = "yannick.molinghen@ulb.be" },
|
|
@@ -17,7 +17,7 @@ dependencies = ["numpy>=2.0.0", "opencv-python>=4.0", "typing_extensions>=4.0"]
|
|
|
17
17
|
|
|
18
18
|
[project.optional-dependencies]
|
|
19
19
|
gym = ["gymnasium>=0.29.1"]
|
|
20
|
-
smac = ["
|
|
20
|
+
smac = ["smacv2", "pysc2"]
|
|
21
21
|
pettingzoo = ["pettingzoo>=1.20", "pymunk>=6.0", "scipy>=1.10"]
|
|
22
22
|
overcooked = ["overcooked>=0.1.0"]
|
|
23
23
|
lle = ["laser-learning-environment>=2.6.1"]
|
|
@@ -26,8 +26,7 @@ all = [
|
|
|
26
26
|
"gymnasium>0.29.1",
|
|
27
27
|
"pettingzoo>=1.20",
|
|
28
28
|
"overcooked>=0.1.0",
|
|
29
|
-
"
|
|
30
|
-
"pysc2",
|
|
29
|
+
"smacv2",
|
|
31
30
|
"laser-learning-environment>=2.6.1",
|
|
32
31
|
"pymunk>=6.0",
|
|
33
32
|
"scipy>=1.10",
|
|
@@ -52,8 +51,8 @@ pythonpath = "src"
|
|
|
52
51
|
filterwarnings = "ignore::DeprecationWarning"
|
|
53
52
|
|
|
54
53
|
[tool.uv.sources]
|
|
55
|
-
|
|
56
|
-
pysc2 = { git = "https://github.com/google-deepmind/pysc2.git" }
|
|
54
|
+
smacv2 = { git = "https://github.com/oxwhirl/smacv2.git", rev = "577ab5a" }
|
|
55
|
+
pysc2 = { git = "https://github.com/google-deepmind/pysc2.git", rev = "0df53d3" }
|
|
57
56
|
|
|
58
57
|
|
|
59
58
|
[dependency-groups]
|
|
@@ -3,7 +3,7 @@ from typing import overload
|
|
|
3
3
|
|
|
4
4
|
import numpy as np
|
|
5
5
|
import numpy.typing as npt
|
|
6
|
-
from
|
|
6
|
+
from smacv2.env import StarCraft2Env
|
|
7
7
|
|
|
8
8
|
from marlenv.models import MARLEnv, Observation, State, Step, MultiDiscreteSpace, DiscreteSpace
|
|
9
9
|
|
|
@@ -114,7 +114,7 @@ def _check_env_3m(env):
|
|
|
114
114
|
|
|
115
115
|
@pytest.mark.skipif(skip_smac, reason="SMAC is not installed")
|
|
116
116
|
def test_smac_from_class():
|
|
117
|
-
from
|
|
117
|
+
from smacv2.env import StarCraft2Env # pyright: ignore[reportMissingImports]
|
|
118
118
|
from marlenv.adapters import SMAC
|
|
119
119
|
|
|
120
120
|
env = SMAC(StarCraft2Env("3m"))
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/adapters/pettingzoo_adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/catalog/connectn/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/utils/cached_property_collector.py
RENAMED
|
File without changes
|
{multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/utils/import_placeholders.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/action_randomizer.py
RENAMED
|
File without changes
|
{multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/agent_id_wrapper.py
RENAMED
|
File without changes
|
{multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/available_actions_mask.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/last_action_wrapper.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{multi_agent_rlenv-3.7.2 → multi_agent_rlenv-3.7.3}/src/marlenv/wrappers/potential_shaping.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|