File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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 "
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ def finalize_options(self):
5050TEST_SUITE = "pytest"
5151SETUP_REQS = ['numpy' , 'cython' ]
5252INSTALL_REQS = ['numpy' , 'cython' , 'pyparsing' ]
53- MIN_PYTHON_VERSION = '>=3.5 .*'
53+ MIN_PYTHON_VERSION = '>=3.6 .*'
5454CLASSIFIERS = ['Programming Language :: Python :: 3.6' ,
5555 'Programming Language :: Python :: 3.7' ,
5656 'Programming Language :: Python :: 3.8' ,
You can’t perform that action at this time.
0 commit comments