diff --git a/README.md b/README.md index cddf1f5a..868150c1 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 b9cbbc67..da0703f0 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 8a82261c..89c8140f 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",