Skip to content

Commit

Permalink
Merge pull request #241 from automl/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
mfeurer authored Feb 24, 2017
2 parents 5c12496 + 4530fc6 commit f5608e2
Show file tree
Hide file tree
Showing 331 changed files with 20,776 additions and 317,051 deletions.
31 changes: 23 additions & 8 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ language: python

sudo: false

env:
global:
- OPENBLAS_NUM_THREADS=1
- OMP_NUM_THREADS=1

matrix:
allow_failures:
- os: osx
Expand All @@ -12,18 +17,19 @@ matrix:
- os: linux
env: DISTRIB="conda" PYTHON_VERSION="3.5" COVERAGE="true" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh"

# Temporarily disabling OSX builds because thy take too long
# Set language to generic to not break travis-ci
# https://github.com/travis-ci/travis-ci/issues/2312#issuecomment-195620855
# so far, this issue is still open and there is no good solution
# python will then be installed by anaconda
- os: osx
sudo: required
language: generic
env: DISTRIB="conda" PYTHON_VERSION="3.4" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh"
- os: osx
sudo: required
language: generic
env: DISTRIB="conda" PYTHON_VERSION="3.5" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh"
#- os: osx
# sudo: required
# language: generic
# env: DISTRIB="conda" PYTHON_VERSION="3.4" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh"
#- os: osx
# sudo: required
# language: generic
# env: DISTRIB="conda" PYTHON_VERSION="3.5" MINICONDA_URL="https://repo.continuum.io/miniconda/Miniconda3-latest-MacOSX-x86_64.sh"

cache:
# We use three different cache directory
Expand Down Expand Up @@ -57,8 +63,17 @@ before_install:
- conda install --yes libgcc

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

script: bash ci_scripts/test.sh
Expand Down
5 changes: 3 additions & 2 deletions autosklearn/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@


__MANDATORY_PACKAGES__ = '''
numpy>=1.9,<1.12
scikit-learn==0.17.1
smac==0.2.2
smac==0.3.0
lockfile>=0.10
ConfigSpace>=0.2.1
ConfigSpace>=0.3.1,<0.4
pyrfr==0.2.0
xgboost==0.4a30
'''
Expand Down
2 changes: 1 addition & 1 deletion autosklearn/__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.2"
__version__ = "0.1.3"
Loading

0 comments on commit f5608e2

Please sign in to comment.