Skip to content

Commit

Permalink
CI fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
cdiener committed Mar 16, 2017
1 parent 82a67f5 commit ca80bf8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ before_install:
- pip install -U pytest pytest-cov pytest-benchmark codecov

install:
- pip install -U numpy scipy python-libsbml lxml
- pip install -U python-libsbml lxml
- pip install -e .

script:
Expand Down
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ environment:
install:
# We need wheel installed to build wheels
- "%PYTHON%\\python.exe -m pip install -U pip"
- "%PYTHON%\\python.exe -m pip install wheel pytest"
- "%PYTHON%\\python.exe -m pip install cobra numpy"
- "%PYTHON%\\python.exe -m pip install wheel pytest pytest-benchmark"
- "%PYTHON%\\python.exe -m pip install -e ."

build: off

Expand All @@ -31,7 +31,7 @@ test_script:
# Note that you must use the environment variable %PYTHON% to refer to
# the interpreter you're using - Appveyor does not do anything special
# to put the Python evrsion you want to use on PATH.
- "%PYTHON%\\Scripts\\py.test"
- "%PYTHON%\\Scripts\\py.test --benchmark-skip"

after_test:
# This step builds your wheels.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=['cobra>=0.6.0a2'],
install_requires=['cobra>=0.6.0a2', 'numpy>=1.10.0'],

# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
Expand Down

0 comments on commit ca80bf8

Please sign in to comment.