Skip to content

Commit

Permalink
Fix travis wheel uploads
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHalford committed May 24, 2018
1 parent 6696745 commit 7b48615
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 13 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ env:
matrix:
- DISTRIB="conda" PYTHON_VERSION="3.5" COVERAGE="false"
NUMPY_VERSION="1.10.4" SCIPY_VERSION="0.17.0" CYTHON_VERSION="0.23.4"
CIBW_SKIP=*
- DISTRIB="conda" PYTHON_VERSION="3.6" COVERAGE="true"
NUMPY_VERSION="1.14.3" SCIPY_VERSION="1.1.0" CYTHON_VERSION="0.28.2"
CIBW_SKIP=cp27-*

install: source ci_scripts/travis/install.sh
script: bash ci_scripts/travis/test.sh
Expand Down
13 changes: 0 additions & 13 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,23 +1,10 @@
from __future__ import print_function
import sys
from setuptools import Extension, setup, find_packages

with open('requirements.txt') as f:
INSTALL_REQUIRES = [l.strip() for l in f.readlines() if l]


try:
import numpy
except ImportError:
print('numpy is required during installation')
sys.exit(1)

try:
import scipy
except ImportError:
print('scipy is required during installation')
sys.exit(1)

setup(name='xgp',
version='0.0.2',
description='XGP Python package with a scikit-learn interface',
Expand Down

0 comments on commit 7b48615

Please sign in to comment.