Skip to content

Commit ff9dcac

Browse files
authored
[RELEASE] Changes for release v0.2 (#446)
* change to version 0.2 * add flaky for failing test
1 parent 6484bf8 commit ff9dcac

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

autoPyTorch/__version__.py

+1-1
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.1.1"
4+
__version__ = "0.2"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# noinspection PyInterpreter
2222
setuptools.setup(
2323
name="autoPyTorch",
24-
version="0.1.1",
24+
version="0.2",
2525
author="AutoML Freiburg",
2626
author_email="eddiebergmanhs@gmail.com",
2727
description=("Auto-PyTorch searches neural architectures using smac"),

test/test_pipeline/test_tabular_classification.py

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99
UniformIntegerHyperparameter,
1010
)
1111

12+
from flaky import flaky
13+
1214
import numpy as np
1315

1416
import pytest
@@ -59,6 +61,7 @@ def _assert_pipeline_search_space(self, pipeline, search_space_updates):
5961
elif isinstance(hyperparameter, CategoricalHyperparameter):
6062
assert update.value_range == hyperparameter.choices
6163

64+
@flaky(max_runs=3)
6265
def test_pipeline_fit(self, fit_dictionary_tabular, exclude):
6366
"""This test makes sure that the pipeline is able to fit
6467
given random combinations of hyperparameters across the pipeline"""

0 commit comments

Comments
 (0)