Skip to content

Commit

Permalink
Release v0.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BDonnot committed Apr 15, 2020
1 parent e02e6f0 commit 0ab5509
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@ Change Log
- [???] simulate in MultiEnv
- [???] in MultiEnv, when some converter of the observations are used, have each child process to compute
it in parrallel and transfer the resulting data.
- [???] fast implementation of "replay" using PlotPygame and EpisodeData
- [???] fix notebook 3 to include code of new agents, and especially to work consistently with runner and env
(for now if you change default env, it doesn't affect the runner, so it crashes)
- [???] modeled batteries / pumped storage in grid2op (generator but that can be charged / discharged)
- [???] modeled dumps in grid2op (stuff that have a given energy max, and cannot produce more than the available energy)
- [???] fix notebook 5 texts

[0.7.0] - 2020-04-??
[0.7.0] - 2020-04-15
--------------------
- [BREAKING] class `grid2op.Environment.BasicEnv` has been renamed `BaseEnv` for consistency. As this class
should not be used outside of this code base, no backward compatibility has been enforced.
Expand Down Expand Up @@ -59,6 +58,7 @@ Change Log
- [ADDED] a class to replay a logger using `PlotPyGame` class (`grid2op.Plot.EpisodeReplay`)
- [ADDED] a method to parse back the observations with lower memory footprint and faster, when the observations
are serialized into a numpy array by the runner, and only some attributes are necessary.
- [ADDED] fast implementation of "replay" using PlotPygame and EpisodeData
- [UPDATED] overall documentation: more simple theme, easier organization of each section.


Expand Down
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ WORKDIR /Grid2Op
# Use the latest release
RUN git pull
RUN git fetch --all --tags
RUN git checkout "tags/v0.6.1" -b "v0.6.1-branch"
RUN git checkout "tags/v0.7.0" -b "v0.7.0-branch"
# Install Dependencies
RUN pip3 install -U .
RUN pip3 install -e .[optional]
RUN pip3 install -e .[test]
RUN pip3 install -e .[challenge]
RUN pip3 install -U .[optional]
RUN pip3 install -U .[test]
RUN pip3 install -U .[challenge]
WORKDIR /

# Make port 80 available to the world outside this container
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
author = 'Benjamin Donnot'

# The full version, including alpha/beta/rc tags
release = '0.6.1'
version = '0.6'
release = '0.7.0'
version = '0.7'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion grid2op/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Document will be made later on.
"""
__version__ = '0.6.1'
__version__ = '0.7.0'

__all__ = [
"Action",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
warnings.warn("Numba is not available for your platform. You could gain massive speed up if you could install it.")

setup(name='Grid2Op',
version='0.6.1',
version='0.7.0',
description='An environment that allows to perform powergrid optimization.',
long_description='Built with modularity in mind, this package allows to perform the same operations '
'independently of the software used to compute powerflow or method to generate grid '
Expand Down

0 comments on commit 0ab5509

Please sign in to comment.