Skip to content

Commit

Permalink
Merge pull request #22 from RWTH-EBC/issue21_RMTestsFromSetupPy
Browse files Browse the repository at this point in the history
setup.py does not exclude tests

closes #21
  • Loading branch information
tstorek authored Oct 27, 2021
2 parents 1951f39 + e8805ef commit bf35911
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,7 @@
- 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
- Unfix version of SALib as 1.4.0.2 and 1.4.4 are not working

- **v0.2.2**
- Issue 21: Fix setup.py by removing the tests packages
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.1"
__version__ = "0.2.2"
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.1'
release = '0.2.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@

setuptools.setup(
name='aixcalibuha',
version='0.2.1',
version='0.2.2',
description='Framework used for sensitivity-analysis'
'and calibration for models of HVAC '
'components.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/RWTH-EBC/AixCaliBuHA',
download_url='https://github.com/RWTH-EBC/AixCaliBuHA/archive/refs/tags/0.2.1.tar.gz',
download_url='https://github.com/RWTH-EBC/AixCaliBuHA/archive/refs/tags/0.2.2.tar.gz',
license='MIT',
author='RWTH Aachen University, E.ON Energy Research Center, Institute '
'of Energy Efficient Buildings and Indoor Climate',
Expand All @@ -44,6 +44,6 @@
'calibration', 'building', 'energy',
'black-box optimization', 'sensitivity_analysis'
],
packages=setuptools.find_packages(exclude=['img']),
packages=setuptools.find_packages(exclude=['tests', 'tests.*', 'img']),
install_requires=INSTALL_REQUIRES
)

0 comments on commit bf35911

Please sign in to comment.