Skip to content

Commit 36d511f

Browse files
committed
ready for version 1.12.0
Signed-off-by: DONNOT Benjamin <[email protected]>
1 parent ac4bceb commit 36d511f

34 files changed

+1006
-7
lines changed

CHANGELOG.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Native multi agents support:
100100
- add detachment
101101
- add change_bus / set_bus
102102

103-
[1.11.1] - 2025-xx-yy
103+
[1.12.0] - 2025-07-24
104104
--------------------------
105105
- [BREAKING] the `info` returned argument of `env.step(...)` function
106106
does not have the unclear `is_redispatching_illegal` key. This key has been

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ WORKDIR /Grid2Op
3535
RUN git pull
3636
RUN git remote update
3737
RUN git fetch --all --tags
38-
RUN git checkout "tags/v1.11.0" -b "v1.11.0-branch"
38+
RUN git checkout "tags/v1.12.0" -b "v1.12.0-branch"
3939
# Install Dependencies
4040
RUN pip3 install .[optional,challenge]
4141
WORKDIR /

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@
2222
author = 'Benjamin Donnot'
2323

2424
# The full version, including alpha/beta/rc tags
25-
release = '1.11.0'
26-
version = '1.11'
25+
release = '1.12.0'
26+
version = '1.12'
2727

2828

2929
# -- General configuration ---------------------------------------------------

grid2op/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Grid2Op a testbed platform to model sequential decision making in power systems.
1212
"""
1313

14-
__version__ = '1.11.0'
14+
__version__ = '1.12.0'
1515

1616
__all__ = [
1717
"Action",
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"ACTIVATE_STORAGE_LOSS": true,
3+
"ALARM_BEST_TIME": 12,
4+
"ALARM_WINDOW_SIZE": 12,
5+
"ALERT_TIME_WINDOW": 12,
6+
"ALLOW_DISPATCH_GEN_SWITCH_OFF": true,
7+
"ENV_DC": false,
8+
"ENV_DOES_REDISPATCHING": true,
9+
"FORECAST_DC": false,
10+
"HARD_OVERFLOW_THRESHOLD": 2.0,
11+
"IGNORE_INITIAL_STATE_TIME_SERIE": 0,
12+
"IGNORE_MIN_UP_DOWN_TIME": true,
13+
"INIT_STORAGE_CAPACITY": 0.5,
14+
"LIMIT_INFEASIBLE_CURTAILMENT_STORAGE_ACTION": false,
15+
"MAX_LINE_STATUS_CHANGED": 1,
16+
"MAX_SIMULATE_PER_EPISODE": -1,
17+
"MAX_SIMULATE_PER_STEP": -1,
18+
"MAX_SUB_CHANGED": 1,
19+
"NB_TIMESTEP_COOLDOWN_LINE": 0,
20+
"NB_TIMESTEP_COOLDOWN_SUB": 0,
21+
"NB_TIMESTEP_OVERFLOW_ALLOWED": 2,
22+
"NB_TIMESTEP_RECONNECTION": 10,
23+
"NO_OVERFLOW_DISCONNECTION": false,
24+
"SOFT_OVERFLOW_THRESHOLD": 1.0,
25+
"STOP_EP_IF_GEN_BREAK_CONSTRAINTS": false
26+
}
292 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"agent_seed": null,
3+
"backend_type": "PandaPowerBackend_rte_case5_examplePandaPowerBackend",
4+
"chronics_max_timestep": "100",
5+
"chronics_path": "/home/donnotben/.local/lib/python3.10/site-packages/grid2op/data/rte_case5_example/chronics/00",
6+
"cumulative_reward": 11.583047866821289,
7+
"env_seed": null,
8+
"env_type": "Environment_rte_case5_examplePandaPowerBackend",
9+
"grid_path": "/home/donnotben/.local/lib/python3.10/site-packages/grid2op/data/rte_case5_example/grid.json",
10+
"nb_timestep_played": 3
11+
}

0 commit comments

Comments
 (0)