Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue12 update install error #13

Merged
merged 5 commits into from
Sep 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,7 @@
- Adjust based on ebcpy v 0.2.0
- Add examples and fix tutorial
- Improve validation output
- Fix version of SALib as 1.4 is not working
- Fix version of SALib as 1.4 is not working

- **v0.2.1**
- Unfix version of SALib as 1.4.0.2 and 1.4.4 are not working
2 changes: 1 addition & 1 deletion aixcalibuha/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
from .data_types import CalibrationClass, TunerParas, Goals
from .calibration import Calibrator, MultipleClassCalibrator
from .sensitivity_analysis import SobolAnalyzer, MorrisAnalyzer
__version__ = "0.2.0"
__version__ = "0.2.1"
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
# The short X.Y version.
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.2.0'
release = '0.2.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
numpy>=1.19.5
matplotlib>=3.3.4
pandas>=1.1.5
SALib==1.3.12
SALib==1.4.5
ebcpy>=0.2.1
toml>=0.10.2
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@
'numpy>=1.19.5',
'matplotlib>=3.3.4',
'pandas>=1.1.5',
'SALib==1.3.12',
'SALib>=1.3.12',
'ebcpy>=0.2.1',
'toml>=0.10.2'
]

setuptools.setup(
name='aixcalibuha',
version='0.2.0',
version='0.2.1',
description='Framework used for sensitivity-analysis'
'and calibration for models of HVAC '
'components.',
url='https://github.com/RWTH-EBC/AixCaliBuHA',
download_url='https://github.com/RWTH-EBC/AixCaliBuHA/archive/refs/tags/0.2.0.tar.gz',
download_url='https://github.com/RWTH-EBC/AixCaliBuHA/archive/refs/tags/0.2.1.tar.gz',
license='MIT',
author='RWTH Aachen University, E.ON Energy Research Center, Institute '
'of Energy Efficient Buildings and Indoor Climate',
Expand Down