Skip to content

Commit

Permalink
release 0.4.13
Browse files Browse the repository at this point in the history
  • Loading branch information
mfeurer committed May 25, 2020
1 parent 23c84b5 commit 73ef3d3
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ConfigSpace/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Version information."""

# The following line *must* be the last in the module, exactly as formatted:
__version__ = "0.4.12"
__version__ = "0.4.13"
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Version 0.4.13

* ADD Python3.8 support, drop Python3.5 support (#144, #153)
* FIX copy weights of `CategoricalHyperparameter` (#148)
* FIX store weights of `CategoricalHyperparameter`, raise an error message
for the other output writers (#152).
* FIX correct types in util function `fix_types` (#134)
* MAINT unit test of the source distribution (#154)

# Version 0.4.12

* ADD #135: Add weights to the sampling of categorical hyperparameters.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def finalize_options(self):
TEST_SUITE = "pytest"
SETUP_REQS = ['numpy', 'cython']
INSTALL_REQS = ['numpy', 'cython', 'pyparsing']
MIN_PYTHON_VERSION = '>=3.5.*'
MIN_PYTHON_VERSION = '>=3.6.*'
CLASSIFIERS = ['Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down

0 comments on commit 73ef3d3

Please sign in to comment.