Skip to content

Commit

Permalink
Merge pull request #180 from oemof/release/v0.0.5
Browse files Browse the repository at this point in the history
Release/v0.0.5
  • Loading branch information
p-snft authored Nov 15, 2021
2 parents b904800 + a3de988 commit af4d51b
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 10 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.0.4"
__version__ = "0.0.5"
1 change: 1 addition & 0 deletions docs/whats_new.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Discover noteable new features and improvements in each release.
:local:
:backlinks: top

.. include:: whats_new/v0-0-5.rst
.. include:: whats_new/v0-0-4.rst
.. include:: whats_new/v0-0-3.rst
.. include:: whats_new/v0-0-2.rst
Expand Down
18 changes: 18 additions & 0 deletions docs/whats_new/v0-0-5.rst
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
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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=(
Expand All @@ -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'])
20 changes: 19 additions & 1 deletion src/oemof/thermal/__init__.py
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",
]
10 changes: 5 additions & 5 deletions tests/test_functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,7 @@ def test_calc_characteristic_temp_Kuehn():
"""Test characteristic temperature calculation for chiller 'Kuehn'."""
filename_charpara = os.path.join(
os.path.dirname(__file__),
'../examples/absorption_heatpumps_and_chiller/'
'../examples/absorption_heatpump_and_chiller/'
'data/characteristic_parameters.csv')
charpara = pd.read_csv(filename_charpara)

Expand All @@ -465,7 +465,7 @@ def test_calc_characteristic_temp_Braod_01():
"""Test characteristic temperature calculation for chiller 'Broad_01'."""
filename_charpara = os.path.join(
os.path.dirname(__file__),
'../examples/absorption_heatpumps_and_chiller/'
'../examples/absorption_heatpump_and_chiller/'
'data/characteristic_parameters.csv')
charpara = pd.read_csv(filename_charpara)

Expand All @@ -485,7 +485,7 @@ def test_calc_characteristic_temp_Braod_02():
"""Test characteristic temperature calculation for chiller 'Broad_02'."""
filename_charpara = os.path.join(
os.path.dirname(__file__),
'../examples/absorption_heatpumps_and_chiller/'
'../examples/absorption_heatpump_and_chiller/'
'data/characteristic_parameters.csv')
charpara = pd.read_csv(filename_charpara)

Expand All @@ -505,7 +505,7 @@ def test_calc_characteristic_temp_Rotartica():
"""Test characteristic temperature calculation for chiller 'Rotartica'."""
filename_charpara = os.path.join(
os.path.dirname(__file__),
'../examples/absorption_heatpumps_and_chiller/'
'../examples/absorption_heatpump_and_chiller/'
'data/characteristic_parameters.csv')
charpara = pd.read_csv(filename_charpara)

Expand All @@ -525,7 +525,7 @@ def test_calc_characteristic_temp_Safarik():
"""Test characteristic temperature calculation for chiller 'Safarik'."""
filename_charpara = os.path.join(
os.path.dirname(__file__),
'../examples/absorption_heatpumps_and_chiller/'
'../examples/absorption_heatpump_and_chiller/'
'data/characteristic_parameters.csv')
charpara = pd.read_csv(filename_charpara)

Expand Down

0 comments on commit af4d51b

Please sign in to comment.