Skip to content

Commit f763e69

Browse files
authored
Merge pull request #283 from automl/development
Development
2 parents 2e29eba + 7f891fa commit f763e69

File tree

703 files changed

+55487
-11735
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

703 files changed

+55487
-11735
lines changed

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ matrix:
1616
env: DISTRIB="conda" PYTHON_VERSION="3.4" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh"
1717
- os: linux
1818
env: DISTRIB="conda" PYTHON_VERSION="3.5" COVERAGE="true" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh"
19+
- os: linux
20+
env: DISTRIB="conda" PYTHON_VERSION="3.6" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh"
1921

2022
# Temporarily disabling OSX builds because thy take too long
2123
# Set language to generic to not break travis-ci
@@ -56,20 +58,20 @@ before_install:
5658
- conda update --yes conda
5759
- conda create -n testenv --yes python=$PYTHON_VERSION pip wheel nose
5860
- source activate testenv
59-
- conda install --yes gcc
61+
- conda install --yes gcc swig
6062
- echo "Using GCC at "`which gcc`
6163
- export CC=`which gcc`
6264
# Fixes version `GLIBCXX_3.4.21' not found (on Ubuntu 16.04)
6365
- conda install --yes libgcc
6466

6567
install:
6668
# Install general requirements the way setup.py suggests
67-
- pip install coverage pep8 python-coveralls
69+
- pip install pep8 codecov
6870
- cat requirements.txt | xargs -n 1 -L 1 pip install
6971
# Install openml dependency for metadata generation unittest
7072
- pip install xmltodict requests
7173
- pip install git+https://github.com/renatopp/liac-arff
72-
- pip install git+https://github.com/openml/openml-python@master --no-deps
74+
- pip install git+https://github.com/openml/openml-python@0b9009b0436fda77d9f7c701bd116aff4158d5e1 --no-deps
7375
- mkdir ~/.openml
7476
- echo "apikey = 610344db6388d9ba34f6db45a3cf71de" > ~/.openml/config
7577
# Debug output to know all exact package versions!

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Status for master branch:
88

99
[![Build Status](https://travis-ci.org/automl/auto-sklearn.svg?branch=master)](https://travis-ci.org/automl/auto-sklearn)
1010
[![Code Health](https://landscape.io/github/automl/auto-sklearn/master/landscape.png)](https://landscape.io/github/automl/auto-sklearn/master)
11-
[![Coverage Status](https://coveralls.io/repos/automl/auto-sklearn/badge.svg?branch=master&service=github)](https://coveralls.io/github/automl/auto-sklearn?branch=master)
11+
[![codecov](https://codecov.io/gh/automl/auto-sklearn/branch/master/graph/badge.svg)](https://codecov.io/gh/automl/auto-sklearn)
1212

1313
Status for development branch
1414

1515
[![Build Status](https://travis-ci.org/automl/auto-sklearn.svg?branch=development)](https://travis-ci.org/automl/auto-sklearn)
1616
[![Code Health](https://landscape.io/github/automl/auto-sklearn/development/landscape.png)](https://landscape.io/github/automl/auto-sklearn/development)
17-
[![Coverage Status](https://coveralls.io/repos/automl/auto-sklearn/badge.svg?branch=development&service=github)](https://coveralls.io/github/automl/auto-sklearn?branch=development)
17+
[![codecov](https://codecov.io/gh/automl/auto-sklearn/branch/development/graph/badge.svg)](https://codecov.io/gh/automl/auto-sklearn)

autosklearn/__init__.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,12 @@
44

55

66
__MANDATORY_PACKAGES__ = '''
7-
numpy>=1.9,<1.12
8-
scikit-learn==0.17.1
9-
smac==0.3.0
7+
numpy>=1.9
8+
scikit-learn==0.18.1
9+
smac==0.5.0
1010
lockfile>=0.10
11-
ConfigSpace>=0.3.1,<0.4
12-
pyrfr==0.2.0
13-
xgboost==0.4a30
11+
ConfigSpace>=0.3.3,<0.4
12+
pyrfr>=0.4.0,<0.5
1413
'''
1514

1615
dependencies.verify_packages(__MANDATORY_PACKAGES__)

autosklearn/__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.1.3"
4+
__version__ = "0.2.0"

0 commit comments

Comments
 (0)