From ca7b66ffcce53cb539941351c5627d82db0937f7 Mon Sep 17 00:00:00 2001 From: DONNOT Benjamin Date: Thu, 25 Jan 2024 17:25:59 +0100 Subject: [PATCH] bugs in CI is skipped, kept a note in the readme [skip ci] --- README.md | 4 ++++ docs/conf.py | 2 +- grid2op/__init__.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cddf1f5a9..868150c19 100644 --- a/README.md +++ b/README.md @@ -312,6 +312,10 @@ but it is currently not on our priorities. A quick fix that is known to work include to set the `experimental_read_from_local_dir` when creating the environment with `grid2op.make(..., experimental_read_from_local_dir=True)` (see doc for more information) +Sometimes, on some configuration (python version) we do not recommend to use grid2op with pandas>=2.2 +If you encounter any trouble, please downgrade to pandas<2.2. This behaviour occured in our continuous +integration environment for python >=3.9 but could not be reproduced locally. + ### Perform tests locally Provided that Grid2Op is installed *from source*: diff --git a/docs/conf.py b/docs/conf.py index b9cbbc67d..da0703f09 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -22,7 +22,7 @@ author = 'Benjamin Donnot' # The full version, including alpha/beta/rc tags -release = '1.9.8.dev0' +release = '1.9.8.dev1' version = '1.9' diff --git a/grid2op/__init__.py b/grid2op/__init__.py index 8a82261c0..89c8140fe 100644 --- a/grid2op/__init__.py +++ b/grid2op/__init__.py @@ -11,7 +11,7 @@ Grid2Op """ -__version__ = '1.9.8.dev0' +__version__ = '1.9.8.dev1' __all__ = [ "Action",