Skip to content

Commit

Permalink
Merge pull request #644 from RWTH-EBC/issue643_ahuhum
Browse files Browse the repository at this point in the history
fix wrong assignment of humidity
  • Loading branch information
PRemmen committed Apr 20, 2020
2 parents 268e087 + 998bdc8 commit b06c920
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ models for all libraries supporting the

## Version

TEASER is a ongoing research project, the current version is 0.7.2, which is
TEASER is a ongoing research project, the current version is 0.7.3, which is
still a pre-release.

## How to use TEASER
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
# The short X.Y version.
version = "0.7."
# The full version, including alpha/beta/rc tags.
release = "0.7.1"
release = "0.7.3"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="teaser",
version="0.7.2",
version="0.7.3",
description="Tool for Energy Analysis and Simulation for " "Efficient Retrofit ",
url="https://github.com/RWTH-EBC/TEASER",
author="RWTH Aachen University, E.ON Energy Research Center, "
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def max_relative_humidity_profile(self):
def max_relative_humidity_profile(self, value):
if not isinstance(value, list):
value = [value]
self._min_relative_humidity_profile = value
self._max_relative_humidity_profile = value
self.schedules["max_relative_humidity_profile"] = list(
islice(cycle(value), 8760)
)
Expand Down

0 comments on commit b06c920

Please sign in to comment.