-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #180 from oemof/release/v0.0.5
Release/v0.0.5
- Loading branch information
Showing
6 changed files
with
47 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = "0.0.4" | ||
__version__ = "0.0.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
v0.0.5 (November 12, 2021) | ||
========================== | ||
|
||
API Changes | ||
----------- | ||
|
||
* Explicitly define public API | ||
|
||
Other changes | ||
------------- | ||
|
||
* Updated dependencies | ||
|
||
Contributors | ||
------------ | ||
|
||
* Patrik Schönfeldt | ||
* Sasan Rasti |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ def read(fname): | |
|
||
|
||
setup(name='oemof.thermal', | ||
version='0.0.4', | ||
version='0.0.5', | ||
author='oemof developer group', | ||
author_email='[email protected]', | ||
description=( | ||
|
@@ -24,5 +24,5 @@ def read(fname): | |
install_requires=['oemof.solph', | ||
'matplotlib', | ||
'pvlib', | ||
'numpy >= 1.7.0, < 1.18', | ||
'pandas >= 0.18.0, < 0.26']) | ||
'numpy >= 1.16.5', | ||
'pandas >= 0.18.0']) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,20 @@ | ||
__version__ = '0.0.4' | ||
__version__ = '0.0.5' | ||
__project__ = 'oemof.thermal' | ||
|
||
from . import absorption_heatpumps_and_chillers | ||
from . import compression_heatpumps_and_chillers | ||
from . import facades | ||
from . import stratified_thermal_storage | ||
from . import cogeneration | ||
from . import concentrating_solar_power | ||
from . import solar_thermal_collector | ||
|
||
__all__ = [ | ||
"absorption_heatpumps_and_chillers", | ||
"compression_heatpumps_and_chillers", | ||
"facades", | ||
"stratified_thermal_storage", | ||
"cogeneration", | ||
"concentrating_solar_power", | ||
"solar_thermal_collector", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters