Skip to content

Commit

Permalink
Sample-level parallelizm with cython
Browse files Browse the repository at this point in the history
  • Loading branch information
mwojcikowski committed Jun 1, 2018
1 parent b978cf2 commit 326fa97
Show file tree
Hide file tree
Showing 8 changed files with 20,273 additions and 2,066 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ MANIFEST
TARGETS
*.pyc
*.so
.pytest_cache/
25 changes: 18 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,29 @@
sudo: false
language: python
python:
- "2.7"
- "3.5"
- "3.6"
language: c
# compiler:
# - gcc
# - clang
os:
- osx
- linux
env:
matrix:
- CONDA_PY=2.7
- CONDA_PY=3.5
- CONDA_PY=3.6
before_install:
- wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh
- ulimit -n 2048
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then CONDA_FLAVOUR='Linux'; else CONDA_FLAVOUR='MacOSX'; fi;
- wget http://repo.continuum.io/miniconda/Miniconda3-latest-${CONDA_FLAVOUR}-x86_64.sh -O miniconda.sh;
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda update --yes conda
- conda create --name test_env --yes python=$TRAVIS_PYTHON_VERSION
- conda create --name test_env --yes python=$CONDA_PY
- source activate test_env
# - if [[ "$CC" == "gcc" && "$TRAVIS_OS_NAME" == "osx" ]]; then conda install --yes gcc; fi;
- conda install --yes scipy nose scikit-learn joblib six
- pip install coverage codecov
- $CC --version
install:
- python setup.py build_ext --inplace
script:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ install:
- conda install -q six numpy scikit-learn joblib nose
- conda install -q -c msys2 m2w64-toolchain m2w64-dlfcn pywin32
- pip install coverage codecov
- set "CXX=gcc -pthread"
- set "CXX=g++ -pthread"
- python setup.py build_ext --inplace --compiler=mingw32 -llibdl

build: false
Expand Down
Loading

0 comments on commit 326fa97

Please sign in to comment.