Skip to content

Commit

Permalink
[RELEASE] Changes for release v0.2 (#446)
Browse files Browse the repository at this point in the history
* change to version 0.2

* add flaky for failing test
  • Loading branch information
ravinkohli committed Jul 12, 2022
1 parent 6484bf8 commit ff9dcac
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion autoPyTorch/__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.1.1"
__version__ = "0.2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# noinspection PyInterpreter
setuptools.setup(
name="autoPyTorch",
version="0.1.1",
version="0.2",
author="AutoML Freiburg",
author_email="eddiebergmanhs@gmail.com",
description=("Auto-PyTorch searches neural architectures using smac"),
Expand Down
3 changes: 3 additions & 0 deletions test/test_pipeline/test_tabular_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
UniformIntegerHyperparameter,
)

from flaky import flaky

import numpy as np

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

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

0 comments on commit ff9dcac

Please sign in to comment.