Skip to content

Commit 73ef3d3

Browse files
committed
release 0.4.13
1 parent 23c84b5 commit 73ef3d3

3 files changed

Lines changed: 11 additions & 2 deletions

File tree

ConfigSpace/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""Version information."""
22

33
# The following line *must* be the last in the module, exactly as formatted:
4-
__version__ = "0.4.12"
4+
__version__ = "0.4.13"

changelog.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# Version 0.4.13
2+
3+
* ADD Python3.8 support, drop Python3.5 support (#144, #153)
4+
* FIX copy weights of `CategoricalHyperparameter` (#148)
5+
* FIX store weights of `CategoricalHyperparameter`, raise an error message
6+
for the other output writers (#152).
7+
* FIX correct types in util function `fix_types` (#134)
8+
* MAINT unit test of the source distribution (#154)
9+
110
# Version 0.4.12
211

312
* ADD #135: Add weights to the sampling of categorical hyperparameters.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def finalize_options(self):
5050
TEST_SUITE = "pytest"
5151
SETUP_REQS = ['numpy', 'cython']
5252
INSTALL_REQS = ['numpy', 'cython', 'pyparsing']
53-
MIN_PYTHON_VERSION = '>=3.5.*'
53+
MIN_PYTHON_VERSION = '>=3.6.*'
5454
CLASSIFIERS = ['Programming Language :: Python :: 3.6',
5555
'Programming Language :: Python :: 3.7',
5656
'Programming Language :: Python :: 3.8',

0 commit comments

Comments
 (0)