Skip to content

Commit da492e3

Browse files
committed
TST, fix for issue pandas-dev#17978.
Remove hypothesis requirement from *.run files.
1 parent f70c7b0 commit da492e3

15 files changed

+14
-25
lines changed

ci/install_circle.sh

+1
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ fi
6565
echo "[create env: ${REQ_BUILD}]"
6666
time conda create -n pandas -q --file=${REQ_BUILD} || exit 1
6767
time conda install -n pandas pytest>=3.1.0 || exit 1
68+
time conda install -n pandas hypothesis>=3.46.0 || exit 1
6869

6970
source activate pandas
7071
time pip install moto || exit 1

ci/install_travis.sh

+1
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ if [ -e ${REQ} ]; then
104104
fi
105105

106106
time conda install -n pandas pytest>=3.1.0
107+
time conda install -n pandas hypothesis>=3.46.0
107108
time pip install -q pytest-xdist moto
108109

109110
if [ "$LINT" ]; then

ci/requirements-2.7.run

-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@ patsy
1818
pymysql=0.6.3
1919
jinja2=2.8
2020
xarray=0.8.0
21-
hypothesis>=3.46.0

ci/requirements-2.7_COMPAT.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,4 @@ psycopg2
1111
pymysql=0.6.0
1212
sqlalchemy=0.7.8
1313
xlsxwriter=0.5.2
14-
jinja2=2.8
15-
hypothesis>=3.46.0
14+
jinja2=2.8

ci/requirements-2.7_LOCALE.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,4 @@ bottleneck=1.0.0
99
matplotlib=1.4.3
1010
sqlalchemy=0.8.1
1111
lxml
12-
scipy
13-
hypothesis>=3.46.0
12+
scipy

ci/requirements-2.7_WIN.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,4 @@ s3fs
1515
bottleneck
1616
html5lib
1717
beautifulsoup4
18-
jinja2=2.8
19-
hypothesis>=3.46.0
18+
jinja2=2.8

ci/requirements-3.5.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,4 @@ pymysql
1717
psycopg2
1818
s3fs
1919
beautifulsoup4
20-
ipython
21-
hypothesis>=3.46.0
20+
ipython

ci/requirements-3.5_ASCII.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
python-dateutil
22
pytz
3-
numpy
4-
hypothesis>=3.46.0
3+
numpy

ci/requirements-3.5_OSX.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,4 @@ jinja2
1313
bottleneck
1414
xarray
1515
s3fs
16-
beautifulsoup4
17-
hypothesis>=3.46.0
16+
beautifulsoup4

ci/requirements-3.6.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,4 @@ fastparquet
2222
beautifulsoup4
2323
s3fs
2424
xarray
25-
ipython
26-
hypothesis>=3.46.0
25+
ipython

ci/requirements-3.6_LOCALE.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ psycopg2
1919
beautifulsoup4
2020
s3fs
2121
xarray
22-
ipython
23-
hypothesis>=3.46.0
22+
ipython

ci/requirements-3.6_LOCALE_SLOW.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,4 @@ psycopg2
1919
beautifulsoup4
2020
s3fs
2121
xarray
22-
ipython
23-
hypothesis>=3.46.0
22+
ipython

ci/requirements-3.6_NUMPY_DEV.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
pytz
2-
hypothesis>=3.46.0
1+
pytz

ci/requirements-3.6_SLOW.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,4 @@ s3fs
1616
psycopg2
1717
pymysql
1818
html5lib
19-
beautifulsoup4
20-
hypothesis>=3.46.0
19+
beautifulsoup4

ci/requirements-3.6_WIN.run

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,4 @@ matplotlib
1414
blosc
1515
thrift=0.10*
1616
fastparquet
17-
pyarrow
18-
hypothesis>=3.46.0
17+
pyarrow

0 commit comments

Comments
 (0)