Skip to content

Commit ab03327

Browse files
committed
Merge branch 'master' into dev
2 parents a2b458e + 7e9c088 commit ab03327

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

doc/whatsnew/v0-1-2.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ New features
55
############
66
* new attribute `nominal_power` in :class:`~windpowerlib.wind_farm.WindFarm` and :class:`~windpowerlib.wind_turbine_cluster.WindTurbineCluster` classes (PR #53)
77
* use properties and setters for `nominal_power` and `installed_power` in :class:`~windpowerlib.wind_farm.WindFarm` and :class:`~windpowerlib.wind_turbine_cluster.WindTurbineCluster` classes
8-
* added csv files containing turbine data from `OpenEnergy Database (oedb) <https://openenergy-platform.org/dataedit/>`_ to the repository
8+
* made windpowerlib work offline: added csv files containing turbine data from `OpenEnergy Database (oedb) <https://openenergy-platform.org/dataedit/>`_ to the repository for offline usage (PR #52)
9+
910

1011
Bug fixes
1112
#########
1213
* fixed issue with pandas Multiindex labels and codes attributes (PR #51)
1314

1415
Other changes
1516
#############
16-
* made windpowerlib work offline: turbine data from oedb is stored in csv files for offline usage (PR #52)
1717
* made :py:func:`~windpowerlib.wind_turbine.get_turbine_types` also accessible via `get_turbine_types()` --> from windpowerlib import get_turbine_types
18-
* added kwargs in init of :class:`~windpowerlib.wind_turbine.WindTurbine`, :class:`~windpowerlib.wind_farm.WindFarm` and :class:`~windpowerlib.wind_turbine_cluster.WindTurbineCluster`
18+
* added kwargs in init of :class:`~windpowerlib.wind_turbine.WindTurbine`, :class:`~windpowerlib.wind_farm.WindFarm` and :class:`~windpowerlib.wind_turbine_cluster.WindTurbineCluster`
1919
* we are working with deprecation warnings to draw our user's attention to important changes (PR #53)
2020

2121
Deprecations

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def read(fname):
1818
'windpowerlib': [os.path.join('data', '*.csv')]},
1919
long_description=read('README.rst'),
2020
zip_safe=False,
21-
install_requires=['pandas >= 0.19.1, < 0.25.0',
22-
'requests'],
21+
install_requires=['pandas >= 0.19.1, < 0.25',
22+
'requests < 3.0'],
2323
extras_require={
2424
'dev': ['pytest', 'jupyter', 'sphinx_rtd_theme', 'nbformat']})

0 commit comments

Comments
 (0)