Skip to content

Commit 84665d2

Browse files
committed
Preparation of v1.0.0
1 parent d5822a1 commit 84665d2

File tree

9 files changed

+18
-16
lines changed

9 files changed

+18
-16
lines changed

doc/rtd/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
author = 'Detlef Arend, Steve Yuwono, Laxmikant Shrikant Baheti et al'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '0.1.0'
25+
release = '1.0.0'
2626

2727

2828
# -- General configuration ---------------------------------------------------

doc/rtd/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
mlpro[full]
2-
pettingzoo>=1.22.3
32
pygame>=2.1.3
43
pymunk>=6.4.0
4+
pettingzoo>=1.22.3
55

66
sphinxcontrib-napoleon
77
sphinx-copybutton

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mlpro[full]>=1.3.1
2-
pettingzoo>=1.22.3
1+
mlpro[full]>=1.4.0
32
pygame>=2.1.3
4-
pymunk>=6.4.0
3+
pymunk>=6.4.0
4+
pettingzoo>=1.22.3

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = mlpro-int-pettingzoo
3-
version = 0.1.0
3+
version = 1.0.0
44
author = MLPro Team
55
author_email = mlpro@listen.fh-swf.de
66
description = MLPro: Integration PettingZoo
@@ -26,8 +26,8 @@ where = src
2626

2727
[options.extras_require]
2828
full =
29-
mlpro[full]>=1.3.1
30-
pettingzoo>=1.22.3
29+
mlpro[full]>=1.4.0
3130
pygame>=2.1.3
3231
pymunk>=6.4.0
32+
pettingzoo>=1.22.3
3333

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from mlpro_int_pettingzoo.wrappers import *

src/mlpro_int_pettingzoo/wrappers/basics.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,11 @@
4646
## -- 2023-03-26 2.2.0 DA Class WrEnvPZOO2MLPro: refactoring of persistence
4747
## -- 2024-01-23 2.3.0 SY Debug due to introduction of PettingZoo version 1.24.3
4848
## -- 2024-02-16 2.3.1 SY Wrapper Relocation from MLPro to MLPro-Int-PettingZoo
49+
## -- 2024-04-19 2.4.0 DA Alignment with MLPRO 1.4.0
4950
## -------------------------------------------------------------------------------------------------
5051

5152
"""
52-
Ver. 2.3.1 (2024-02-16)
53+
Ver. 2.4.0 (2024-04-19)
5354
5455
This module provides wrapper classes for PettingZoo multi-agent environments.
5556
@@ -61,7 +62,7 @@
6162
import gymnasium
6263
from pydoc import locate
6364
import numpy as np
64-
from mlpro.wrappers.models import Wrapper
65+
from mlpro.wrappers import Wrapper
6566
from mlpro.rl import *
6667
from pettingzoo import AECEnv
6768
from pettingzoo.utils import agent_selector

src/setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
setup(name='mlpro-int-pettingzoo',
5-
version='0.1.0',
5+
version='1.0.0',
66
description='MLPro: Integration PettingZoo',
77
author='MLPro Team',
88
author_mail='mlpro@listen.fh-swf.de',
@@ -12,10 +12,10 @@
1212
# Package dependencies for full installation
1313
extras_require={
1414
"full": [
15-
"mlpro[full]>=1.3.1",
16-
"pettingzoo>=1.22.3",
15+
"mlpro[full]>=1.4.0",
1716
"pygame>=2.1.3",
18-
"pymunk>=6.4.0"
17+
"pymunk>=6.4.0",
18+
"pettingzoo>=1.22.3"
1919
],
2020
},
2121

test/howtos/rl/howto_rl_wp_001_mlpro_environment_to_petting_zoo_environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929

3030
from mlpro.bf.various import Log
31-
from mlpro_int_pettingzoo.wrappers import WrEnvMLPro2PZoo
31+
from mlpro_int_pettingzoo import WrEnvMLPro2PZoo
3232
from mlpro.rl.pool.envs.bglp import BGLP
3333
from pettingzoo.test import api_test
3434

test/howtos/rl/howto_rl_wp_002_run_multiagent_with_own_policy_on_petting_zoo_environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
from pettingzoo.classic import connect_four_v3
5454
from mlpro.bf.math import *
5555
from mlpro.rl import *
56-
from mlpro_int_pettingzoo.wrappers import WrEnvPZOO2MLPro
56+
from mlpro_int_pettingzoo import WrEnvPZOO2MLPro
5757
from mlpro.rl.pool.policies.randomgenerator import RandomGenerator
5858

5959

0 commit comments

Comments
 (0)