Skip to content

Commit 583aa9a

Browse files
committed
upgrade to numpy 1.12.1
1 parent e244cc8 commit 583aa9a

File tree

4 files changed

+43
-43
lines changed

4 files changed

+43
-43
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,31 +8,31 @@ matrix:
88
# test installing bottleneck tarball before installing numpy;
99
# start this test first because it takes the longest
1010
- os: linux
11-
env: TEST_DEPS="numpy==1.11.3 nose" PYTHON_VERSION="2.7" PYTHON_ARCH="64" TEST_RUN="sdist"
11+
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="2.7" PYTHON_ARCH="64" TEST_RUN="sdist"
1212

1313
# flake8
1414
- os: linux
1515
env: TEST_DEPS="flake8" PYTHON_VERSION="2.7" PYTHON_ARCH="64" TEST_RUN="style"
1616

1717
# python 3.4
1818
- os: linux
19-
env: TEST_DEPS="numpy==1.11.3 nose" PYTHON_VERSION="3.4" PYTHON_ARCH="64" TEST_RUN="sdist"
19+
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.4" PYTHON_ARCH="64" TEST_RUN="sdist"
2020

2121
# python 3.5
2222
- os: linux
23-
env: TEST_DEPS="numpy==1.11.3 nose" PYTHON_VERSION="3.5" PYTHON_ARCH="64"
23+
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.5" PYTHON_ARCH="64"
2424

2525
# python 2.7
2626
- os: osx
27-
env: TEST_DEPS="numpy==1.11.3 nose" PYTHON_VERSION="2.7" PYTHON_ARCH="64" TEST_RUN="sdist"
27+
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="2.7" PYTHON_ARCH="64" TEST_RUN="sdist"
2828

2929
# python 3.4
3030
- os: osx
31-
env: TEST_DEPS="numpy==1.11.3 nose" PYTHON_VERSION="3.4" PYTHON_ARCH="64"
31+
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.4" PYTHON_ARCH="64"
3232

3333
# python 3.5
3434
- os: osx
35-
env: TEST_DEPS="numpy==1.11.3 nose" PYTHON_VERSION="3.5" PYTHON_ARCH="64"
35+
env: TEST_DEPS="numpy==1.12.1 nose" PYTHON_VERSION="3.5" PYTHON_ARCH="64"
3636

3737
before_install:
3838
- uname -a

README.rst

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -31,42 +31,42 @@ Bottleneck comes with a benchmark suite::
3131

3232
>>> bn.bench()
3333
Bottleneck performance benchmark
34-
Bottleneck 1.3.0.dev0; Numpy 1.11.3
34+
Bottleneck 1.3.0.dev0; Numpy 1.12.1
3535
Speed is NumPy time divided by Bottleneck time
3636
NaN means approx one-fifth NaNs; float64 used
3737

3838
no NaN no NaN NaN no NaN NaN
3939
(100,) (1000,1000)(1000,1000)(1000,1000)(1000,1000)
4040
axis=0 axis=0 axis=0 axis=1 axis=1
41-
nansum 62.3 1.6 2.0 2.3 2.5
42-
nanmean 230.7 2.4 2.4 3.5 2.9
43-
nanstd 260.2 2.1 2.2 2.7 2.6
44-
nanvar 250.5 2.1 2.3 2.8 2.6
45-
nanmin 43.3 0.7 1.9 0.8 2.6
46-
nanmax 45.9 0.7 2.1 1.0 3.3
47-
median 108.6 1.3 6.2 1.1 6.2
48-
nanmedian 108.8 5.7 6.6 5.5 6.6
49-
ss 27.2 1.2 1.2 1.6 1.6
50-
nanargmin 80.8 3.1 5.4 2.3 6.0
51-
nanargmax 95.0 3.2 5.4 2.3 6.0
52-
anynan 18.1 0.3 34.5 0.5 29.6
53-
allnan 39.7 146.3 126.9 117.0 96.3
54-
rankdata 56.1 2.5 2.5 2.8 2.9
55-
nanrankdata 60.8 2.7 2.7 3.1 3.0
56-
partition 4.1 1.2 1.6 1.0 1.4
57-
argpartition 3.0 1.1 1.4 1.1 1.6
58-
replace 12.3 1.4 1.4 1.4 1.4
59-
push 3363.6 7.6 9.1 20.2 15.7
60-
move_sum 5046.7 67.5 147.9 192.9 211.7
61-
move_mean 12277.3 111.8 180.0 252.9 261.6
62-
move_std 10677.3 97.0 196.6 145.1 258.0
63-
move_var 13537.3 123.7 235.5 214.7 324.8
64-
move_min 2474.2 20.0 36.9 23.5 41.9
65-
move_max 2416.5 20.2 37.1 23.7 42.3
66-
move_argmin 3876.9 38.9 72.4 39.6 80.7
67-
move_argmax 3910.2 40.3 73.9 41.2 81.0
68-
move_median 2087.3 148.2 161.9 148.4 160.7
69-
move_rank 1312.5 1.8 2.1 2.3 2.7
41+
nansum 67.3 0.3 0.7 2.5 2.4
42+
nanmean 194.8 1.9 2.1 3.4 3.1
43+
nanstd 241.5 1.6 2.1 2.7 2.6
44+
nanvar 229.7 1.7 2.1 2.7 2.5
45+
nanmin 34.1 0.7 1.1 0.8 2.6
46+
nanmax 45.6 0.7 2.7 1.0 3.7
47+
median 111.0 1.3 5.6 1.0 4.8
48+
nanmedian 108.8 5.9 6.7 5.6 6.7
49+
ss 16.3 1.1 1.2 1.6 1.6
50+
nanargmin 89.2 2.9 5.1 2.2 5.6
51+
nanargmax 107.4 3.0 5.4 2.2 5.8
52+
anynan 19.4 0.3 35.0 0.5 29.9
53+
allnan 39.9 146.6 128.3 115.8 75.6
54+
rankdata 55.0 2.6 2.3 2.9 2.8
55+
nanrankdata 59.8 2.8 2.2 3.2 2.5
56+
partition 4.4 1.2 1.6 1.0 1.4
57+
argpartition 3.5 1.1 1.4 1.1 1.6
58+
replace 17.7 1.4 1.4 1.3 1.4
59+
push 3440.0 7.8 9.5 20.0 15.5
60+
move_sum 4743.0 75.7 156.1 195.4 211.1
61+
move_mean 8760.9 116.2 167.4 252.1 258.8
62+
move_std 8979.9 96.1 196.3 144.0 256.3
63+
move_var 11216.8 127.3 243.9 225.9 321.4
64+
move_min 2245.3 20.6 36.7 23.2 42.1
65+
move_max 2223.7 20.5 37.2 24.1 42.4
66+
move_argmin 3664.0 48.2 73.3 40.2 83.9
67+
move_argmax 3916.9 42.0 75.4 41.5 81.2
68+
move_median 2023.3 166.8 173.7 153.8 154.3
69+
move_rank 1208.5 1.9 1.9 2.5 2.8
7070

7171
You can also run a detailed benchmark for a single function using, for
7272
example, the command::
@@ -101,7 +101,7 @@ Install
101101
Requirements:
102102

103103
======================== ====================================================
104-
Bottleneck Python 2.7, 3.4, 3.5; NumPy 1.11.3
104+
Bottleneck Python 2.7, 3.4, 3.5; NumPy 1.12.1
105105
Compile gcc, clang, MinGW or MSVC
106106
Unit tests nose
107107
======================== ====================================================

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ shallow_clone: true # download the zip instead of the whole history
33
environment:
44

55
global:
6-
DEPS: "numpy=1.11.3 nose"
6+
DEPS: "numpy=1.12.1 nose"
77
CONDA_VENV: "testy"
88
# SDK v7.0 MSVC Express 2008's SetEnv.cmd script will fail if the
99
# /E:ON and /V:ON options are not enabled in the batch script

tox.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
# Tox (http://tox.testrun.org/) configuration
22

33
[tox]
4-
envlist = py27_np1113, py35_np1113
4+
envlist = py27_np1121, py35_np1121
55

66
[testenv]
77
changedir={envdir}
88
commands={envpython} {toxinidir}/tools/test-installed-bottleneck.py {posargs:}
99

10-
[testenv:py27_np1113]
10+
[testenv:py27_np1121]
1111
basepython = python2.7
1212
deps =
1313
nose
14-
numpy==1.11.3
14+
numpy==1.12.1
1515

16-
[testenv:py35_np1113]
16+
[testenv:py35_np1121]
1717
basepython = python3.5
1818
deps =
1919
nose
20-
numpy==1.11.3
20+
numpy==1.12.1
2121

2222
# Not run by default. Use 'tox -e py27_npmaster' to call it
2323
[testenv:py27_npmaster]

0 commit comments

Comments
 (0)