File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 14
14
- $HOME/.cache/pip
15
15
env :
16
16
global :
17
- - DEPENDS="six numpy scipy matplotlib h5py pillow pydicom"
17
+ - DEPENDS="six numpy scipy matplotlib h5py pillow pydicom hypothesis "
18
18
- OPTIONAL_DEPENDS=""
19
19
- INSTALL_TYPE="setup"
20
20
- EXTRA_WHEELS="https://5cf40426d9f06eb7461d-6fe47d9331aba7cd62fc36c7196769e4.ssl.cf2.rackcdn.com"
@@ -95,7 +95,7 @@ before_install:
95
95
- source venv/bin/activate
96
96
- python --version # just to check
97
97
- pip install -U pip wheel # needed at one point
98
- - retry pip install nose flake8 mock # always
98
+ - retry pip install nose flake8 mock hypothesis # always
99
99
- pip install $EXTRA_PIP_FLAGS $DEPENDS $OPTIONAL_DEPENDS
100
100
- if [ "${COVERAGE}" == "1" ]; then
101
101
pip install coverage;
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ install:
21
21
22
22
# Install the dependencies of the project.
23
23
- pip install numpy scipy matplotlib nose h5py mock
24
+ - pip install hypothesis
24
25
- pip install pydicom
25
26
- pip install .
26
27
- SET NIBABEL_DATA_DIR=%CD%\nibabel-data
Original file line number Diff line number Diff line change 10
10
Helper utilities to be used in cmdline applications
11
11
"""
12
12
13
-
14
13
# global verbosity switch
15
14
import re
16
15
from io import StringIO
@@ -49,7 +48,7 @@ def table2string(table, out=None):
49
48
Where to print. If None -- will print and return string
50
49
51
50
Returns
52
- -------
51
+ -------
53
52
string if out was None
54
53
"""
55
54
You can’t perform that action at this time.
0 commit comments