Merge pull request #323 from PyPSA/fix/deprecation-warning-pandas-1.4
Fix deprecation warning for 'closed' with pandas 1.4
This commit is contained in:
commit
8d072a0169
@ -25,7 +25,7 @@ countries: ['AL', 'AT', 'BA', 'BE', 'BG', 'CH', 'CZ', 'DE', 'DK', 'EE', 'ES', 'F
|
|||||||
snapshots:
|
snapshots:
|
||||||
start: "2013-01-01"
|
start: "2013-01-01"
|
||||||
end: "2014-01-01"
|
end: "2014-01-01"
|
||||||
closed: 'left' # end is not inclusive
|
inclusive: 'left' # include start, not end
|
||||||
|
|
||||||
enable:
|
enable:
|
||||||
prepare_links_p_nom: false
|
prepare_links_p_nom: false
|
||||||
|
@ -24,7 +24,7 @@ countries: ['BE']
|
|||||||
snapshots:
|
snapshots:
|
||||||
start: "2013-03-01"
|
start: "2013-03-01"
|
||||||
end: "2013-04-01"
|
end: "2013-04-01"
|
||||||
closed: 'left' # end is not inclusive
|
inclusive: 'left' # include start, not end
|
||||||
|
|
||||||
enable:
|
enable:
|
||||||
prepare_links_p_nom: false
|
prepare_links_p_nom: false
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
,Unit,Values,Description
|
,Unit,Values,Description
|
||||||
start,--,"str or datetime-like; e.g. YYYY-MM-DD","Left bound of date range"
|
start,--,"str or datetime-like; e.g. YYYY-MM-DD","Left bound of date range"
|
||||||
end,--,"str or datetime-like; e.g. YYYY-MM-DD","Right bound of date range"
|
end,--,"str or datetime-like; e.g. YYYY-MM-DD","Right bound of date range"
|
||||||
closed,--,"One of {None, ‘left’, ‘right’}","Make the time interval closed to the ``left``, ``right``, or open on both sides ``None``."
|
inclusive,--,"One of {'neither', 'both', ‘left’, ‘right’}","Make the time interval closed to the ``left``, ``right``, or both sides ``both`` or neither side ``None``."
|
||||||
|
|
@ -10,12 +10,21 @@ Release Notes
|
|||||||
Upcoming Release
|
Upcoming Release
|
||||||
================
|
================
|
||||||
|
|
||||||
* Carriers of generators can now be excluded from aggregation in clustering network and simplify network.
|
|
||||||
|
|
||||||
* Fix EQ constraint for the case no hydro inflow is available
|
* Fix EQ constraint for the case no hydro inflow is available
|
||||||
|
|
||||||
* Bugfix in the reserve constraint will increase demand related reserve requirements
|
* Bugfix in the reserve constraint will increase demand related reserve requirements
|
||||||
|
|
||||||
|
**New Features**
|
||||||
|
|
||||||
|
* Carriers of generators can now be excluded from aggregation in clustering network and simplify network.
|
||||||
|
|
||||||
|
**Breaking Changes**
|
||||||
|
|
||||||
|
* The config entry ``snapshots["closed"]`` was renamed to ``snapshots["inclusive"]`` to address the upstream deprecation with ``pandas=1.4``.
|
||||||
|
The previous setting ``None`` is no longer supported and replaced by ``both``, see the `pandas documentation <https://pandas.pydata.org/docs/reference/api/pandas.date_range.html>`_.
|
||||||
|
Minimum ``pandas`` version now required is `>= 1.4`.
|
||||||
|
|
||||||
|
|
||||||
PyPSA-Eur 0.6.1 (20th September 2022)
|
PyPSA-Eur 0.6.1 (20th September 2022)
|
||||||
=====================================
|
=====================================
|
||||||
|
|
||||||
|
@ -24,9 +24,9 @@ dependencies:
|
|||||||
- yaml
|
- yaml
|
||||||
- pytables
|
- pytables
|
||||||
- lxml
|
- lxml
|
||||||
- powerplantmatching>=0.5.5
|
- powerplantmatching>=0.5.4
|
||||||
- numpy<1.24
|
- numpy<1.24
|
||||||
- pandas
|
- pandas>=1.4
|
||||||
- geopandas>=0.11.0
|
- geopandas>=0.11.0
|
||||||
- xarray
|
- xarray
|
||||||
- netcdf4
|
- netcdf4
|
||||||
|
@ -22,7 +22,7 @@ countries: ['BE']
|
|||||||
snapshots:
|
snapshots:
|
||||||
start: "2013-03-01"
|
start: "2013-03-01"
|
||||||
end: "2013-03-08"
|
end: "2013-03-08"
|
||||||
closed: 'left' # end is not inclusive
|
inclusive: 'left' # include start, not end
|
||||||
|
|
||||||
enable:
|
enable:
|
||||||
prepare_links_p_nom: false
|
prepare_links_p_nom: false
|
||||||
|
Loading…
Reference in New Issue
Block a user