Skip to content

Commit f5608e2

Browse files
authored
Merge pull request #241 from automl/development
Development
2 parents 5c12496 + 4530fc6 commit f5608e2

File tree

331 files changed

+20776
-317051
lines changed

Some content is hidden

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

331 files changed

+20776
-317051
lines changed

.travis.yml

Lines changed: 23 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ language: python
22

33
sudo: false
44

5+
env:
6+
global:
7+
- OPENBLAS_NUM_THREADS=1
8+
- OMP_NUM_THREADS=1
9+
510
matrix:
611
allow_failures:
712
- os: osx
@@ -12,18 +17,19 @@ matrix:
1217
- os: linux
1318
env: DISTRIB="conda" PYTHON_VERSION="3.5" COVERAGE="true" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh"
1419

20+
# Temporarily disabling OSX builds because thy take too long
1521
# Set language to generic to not break travis-ci
1622
# https://github.com/travis-ci/travis-ci/issues/2312#issuecomment-195620855
1723
# so far, this issue is still open and there is no good solution
1824
# python will then be installed by anaconda
19-
- os: osx
20-
sudo: required
21-
language: generic
22-
env: DISTRIB="conda" PYTHON_VERSION="3.4" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh"
23-
- os: osx
24-
sudo: required
25-
language: generic
26-
env: DISTRIB="conda" PYTHON_VERSION="3.5" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh"
25+
#- os: osx
26+
# sudo: required
27+
# language: generic
28+
# env: DISTRIB="conda" PYTHON_VERSION="3.4" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh"
29+
#- os: osx
30+
# sudo: required
31+
# language: generic
32+
# env: DISTRIB="conda" PYTHON_VERSION="3.5" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh"
2733

2834
cache:
2935
# We use three different cache directory
@@ -57,8 +63,17 @@ before_install:
5763
- conda install --yes libgcc
5864

5965
install:
66+
# Install general requirements the way setup.py suggests
6067
- pip install coverage pep8 python-coveralls
6168
- cat requirements.txt | xargs -n 1 -L 1 pip install
69+
# Install openml dependency for metadata generation unittest
70+
- pip install xmltodict requests
71+
- pip install git+https://github.com/renatopp/liac-arff
72+
- pip install git+https://github.com/openml/openml-python@master --no-deps
73+
- mkdir ~/.openml
74+
- echo "apikey = 610344db6388d9ba34f6db45a3cf71de" > ~/.openml/config
75+
# Debug output to know all exact package versions!
76+
- pip freeze
6277
- python setup.py install
6378

6479
script: bash ci_scripts/test.sh

autosklearn/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@
44

55

66
__MANDATORY_PACKAGES__ = '''
7+
numpy>=1.9,<1.12
78
scikit-learn==0.17.1
8-
smac==0.2.2
9+
smac==0.3.0
910
lockfile>=0.10
10-
ConfigSpace>=0.2.1
11+
ConfigSpace>=0.3.1,<0.4
1112
pyrfr==0.2.0
1213
xgboost==0.4a30
1314
'''

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.2"
4+
__version__ = "0.1.3"

0 commit comments

Comments
 (0)