Skip to content

Commit ca80bf8

Browse files
committed
CI fixes
1 parent 82a67f5 commit ca80bf8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ before_install:
1212
- pip install -U pytest pytest-cov pytest-benchmark codecov
1313

1414
install:
15-
- pip install -U numpy scipy python-libsbml lxml
15+
- pip install -U python-libsbml lxml
1616
- pip install -e .
1717

1818
script:

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ environment:
1818
install:
1919
# We need wheel installed to build wheels
2020
- "%PYTHON%\\python.exe -m pip install -U pip"
21-
- "%PYTHON%\\python.exe -m pip install wheel pytest"
22-
- "%PYTHON%\\python.exe -m pip install cobra numpy"
21+
- "%PYTHON%\\python.exe -m pip install wheel pytest pytest-benchmark"
22+
- "%PYTHON%\\python.exe -m pip install -e ."
2323

2424
build: off
2525

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

3636
after_test:
3737
# This step builds your wheels.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# your project is installed. For an analysis of "install_requires" vs pip's
6262
# requirements files see:
6363
# https://packaging.python.org/en/latest/requirements.html
64-
install_requires=['cobra>=0.6.0a2'],
64+
install_requires=['cobra>=0.6.0a2', 'numpy>=1.10.0'],
6565

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

0 commit comments

Comments
 (0)