Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

https://github.com/pydata/bottleneck/actions/workflows/ci.yml/badge.svg?branch=master

Bottleneck

Bottleneck is a collection of fast NumPy array functions written in C.

Let’s give it a try. Create a NumPy array:

>>> import numpy as np
>>> a = np.array([1, 2, np.nan, 4, 5])

Find the nanmean:

>>> import bottleneck as bn
>>> bn.nanmean(a)
3.0

Moving window mean:

>>> bn.move_mean(a, window=2, min_count=1)
array([ 1. ,  1.5,  2. ,  4. ,  4.5])

Benchmark

Bottleneck comes with a benchmark suite:

>>> bn.bench()
Bottleneck performance benchmark
    Bottleneck 1.6.0.post0.dev32; Numpy 2.4.2
    Speed is NumPy time divided by Bottleneck time
    NaN means approx one-fifth NaNs; float64 used

            no NaN     no NaN      NaN       no NaN      NaN
            (100,)  (1000,1000)(1000,1000)(1000,1000)(1000,1000)
            axis=0     axis=0     axis=0     axis=1     axis=1
nansum         12.2        0.4        2.0        0.4        2.0
nanmean        29.8        0.8        2.3        0.5        2.2
nanstd         34.2        0.8        2.2        0.7        2.1
nanvar         32.9        0.8        2.2        0.7        2.1
nanmin         12.7        0.1        0.1        0.1        0.1
nanmax         12.8        0.1        0.1        0.1        0.1
median         38.7        1.1        6.7        1.0        6.5
nanmedian      38.4        2.1        2.2        1.9        2.1
ss              5.2        0.3        0.3        0.3        0.3
nanargmin      25.9        1.2        3.2        0.9        2.8
nanargmax      26.0        1.2        3.2        0.9        2.8
anynan          8.1        0.3       42.1        0.3       35.7
allnan         11.6       58.4       58.6       47.1       47.5
rankdata       14.9        1.4        1.4        1.5        1.5
nanrankdata    16.4        1.5        1.4        1.6        1.5
partition       2.0        1.1        1.6        1.0        1.5
argpartition    2.4        1.3        1.8        1.2        1.8
replace         7.4        2.9        2.9        2.9        2.9
push         1453.8       16.2        8.8       24.1       10.3
move_sum     1159.7       89.4      143.3      168.6      192.1
move_mean    2575.8      182.0      171.7      214.2      202.4
move_std     2863.9      137.4      274.5      145.1      310.7
move_var     2792.3      137.9      279.7      154.1      325.8
move_min      690.7        4.1        4.2        5.2        5.2
move_max      659.9        4.2        4.2        5.2        5.2
move_argmin  1369.1       33.7       77.5       35.7       83.5
move_argmax  1344.7       32.8       78.2       35.9       83.3
move_median   686.6      153.5      156.9      156.0      159.8
move_rank     502.0        1.9        2.0        1.8        2.1

You can also run a detailed benchmark for a single function using, for example, the command:

>>> bn.bench_detailed("move_median", fraction_nan=0.3)

Only arrays with data type (dtype) int32, int64, float32, and float64 are accelerated. All other dtypes result in calls to slower, unaccelerated functions. In the rare case of a byte-swapped input array (e.g. a big-endian array on a little-endian operating system) the function will not be accelerated regardless of dtype.

Where

download

https://pypi.python.org/pypi/Bottleneck

docs

https://bottleneck.readthedocs.io

code

https://github.com/pydata/bottleneck

mailing list

https://groups.google.com/group/bottle-neck

License

Bottleneck is distributed under a Simplified BSD license. See the LICENSE file and LICENSES directory for details.

Install

Bottleneck provides binary wheels on PyPI for all the most common platforms. Binary packages are also available in conda-forge. We recommend installing binaries with pip, uv, conda or similar - it’s faster and easier than building from source.

Installing from source

Requirements:

Bottleneck

Python >3.9; NumPy 1.16.0+

Compile

gcc, clang, MinGW or MSVC

Unit tests

pytest

Documentation

sphinx, numpydoc

To install Bottleneck on Linux, Mac OS X, et al.:

$ pip install .

To install bottleneck on Windows, first install MinGW and add it to your system path. Then install Bottleneck with the command:

$ python setup.py install --compiler=mingw32

Unit tests

After you have installed Bottleneck, run the suite of unit tests:

In [1]: import bottleneck as bn

In [2]: bn.test()
============================= test session starts =============================
platform linux -- Python 3.7.4, pytest-4.3.1, py-1.8.0, pluggy-0.12.0
hypothesis profile 'default' -> database=DirectoryBasedExampleDatabase('/home/chris/code/bottleneck/.hypothesis/examples')
rootdir: /home/chris/code/bottleneck, inifile: setup.cfg
plugins: openfiles-0.3.2, remotedata-0.3.2, doctestplus-0.3.0, mock-1.10.4, forked-1.0.2, cov-2.7.1, hypothesis-4.32.2, xdist-1.26.1, arraydiff-0.3
collected 190 items

bottleneck/tests/input_modification_test.py ........................... [ 14%]
..                                                                      [ 15%]
bottleneck/tests/list_input_test.py .............................       [ 30%]
bottleneck/tests/move_test.py .................................         [ 47%]
bottleneck/tests/nonreduce_axis_test.py ....................            [ 58%]
bottleneck/tests/nonreduce_test.py ..........                           [ 63%]
bottleneck/tests/reduce_test.py ....................................... [ 84%]
............                                                            [ 90%]
bottleneck/tests/scalar_input_test.py ..................                [100%]

========================= 190 passed in 46.42 seconds =========================
Out[2]: True

If developing in the git repo, simply run py.test

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bottleneck-1.6.1rc2.tar.gz (105.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

bottleneck-1.6.1rc2-cp314-cp314t-win_arm64.whl (107.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

bottleneck-1.6.1rc2-cp314-cp314t-win_amd64.whl (121.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

bottleneck-1.6.1rc2-cp314-cp314t-win32.whl (111.5 kB view details)

Uploaded CPython 3.14tWindows x86

bottleneck-1.6.1rc2-cp314-cp314t-musllinux_1_2_x86_64.whl (403.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bottleneck-1.6.1rc2-cp314-cp314t-musllinux_1_2_aarch64.whl (393.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bottleneck-1.6.1rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (402.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bottleneck-1.6.1rc2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (409.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

bottleneck-1.6.1rc2-cp314-cp314t-macosx_11_0_arm64.whl (108.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

bottleneck-1.6.1rc2-cp314-cp314t-macosx_10_15_x86_64.whl (123.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

bottleneck-1.6.1rc2-cp314-cp314-win_arm64.whl (106.0 kB view details)

Uploaded CPython 3.14Windows ARM64

bottleneck-1.6.1rc2-cp314-cp314-win_amd64.whl (120.1 kB view details)

Uploaded CPython 3.14Windows x86-64

bottleneck-1.6.1rc2-cp314-cp314-win32.whl (110.5 kB view details)

Uploaded CPython 3.14Windows x86

bottleneck-1.6.1rc2-cp314-cp314-musllinux_1_2_x86_64.whl (387.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bottleneck-1.6.1rc2-cp314-cp314-musllinux_1_2_aarch64.whl (377.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bottleneck-1.6.1rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (384.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bottleneck-1.6.1rc2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (392.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

bottleneck-1.6.1rc2-cp314-cp314-macosx_11_0_arm64.whl (107.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bottleneck-1.6.1rc2-cp314-cp314-macosx_10_15_x86_64.whl (122.5 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

bottleneck-1.6.1rc2-cp313-cp313-win_arm64.whl (103.5 kB view details)

Uploaded CPython 3.13Windows ARM64

bottleneck-1.6.1rc2-cp313-cp313-win_amd64.whl (118.2 kB view details)

Uploaded CPython 3.13Windows x86-64

bottleneck-1.6.1rc2-cp313-cp313-win32.whl (108.3 kB view details)

Uploaded CPython 3.13Windows x86

bottleneck-1.6.1rc2-cp313-cp313-musllinux_1_2_x86_64.whl (387.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bottleneck-1.6.1rc2-cp313-cp313-musllinux_1_2_aarch64.whl (377.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bottleneck-1.6.1rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (384.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bottleneck-1.6.1rc2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (392.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

bottleneck-1.6.1rc2-cp313-cp313-macosx_11_0_arm64.whl (107.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bottleneck-1.6.1rc2-cp313-cp313-macosx_10_13_x86_64.whl (122.2 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

bottleneck-1.6.1rc2-cp312-cp312-win_arm64.whl (103.5 kB view details)

Uploaded CPython 3.12Windows ARM64

bottleneck-1.6.1rc2-cp312-cp312-win_amd64.whl (118.2 kB view details)

Uploaded CPython 3.12Windows x86-64

bottleneck-1.6.1rc2-cp312-cp312-win32.whl (108.3 kB view details)

Uploaded CPython 3.12Windows x86

bottleneck-1.6.1rc2-cp312-cp312-musllinux_1_2_x86_64.whl (387.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bottleneck-1.6.1rc2-cp312-cp312-musllinux_1_2_aarch64.whl (376.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bottleneck-1.6.1rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (383.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bottleneck-1.6.1rc2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (391.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

bottleneck-1.6.1rc2-cp312-cp312-macosx_11_0_arm64.whl (107.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bottleneck-1.6.1rc2-cp312-cp312-macosx_10_13_x86_64.whl (122.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

bottleneck-1.6.1rc2-cp311-cp311-win_arm64.whl (103.4 kB view details)

Uploaded CPython 3.11Windows ARM64

bottleneck-1.6.1rc2-cp311-cp311-win_amd64.whl (117.4 kB view details)

Uploaded CPython 3.11Windows x86-64

bottleneck-1.6.1rc2-cp311-cp311-win32.whl (108.0 kB view details)

Uploaded CPython 3.11Windows x86

bottleneck-1.6.1rc2-cp311-cp311-musllinux_1_2_x86_64.whl (381.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bottleneck-1.6.1rc2-cp311-cp311-musllinux_1_2_aarch64.whl (372.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bottleneck-1.6.1rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (378.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bottleneck-1.6.1rc2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (384.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

bottleneck-1.6.1rc2-cp311-cp311-macosx_11_0_arm64.whl (109.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bottleneck-1.6.1rc2-cp311-cp311-macosx_10_9_x86_64.whl (121.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

bottleneck-1.6.1rc2-cp310-cp310-win_amd64.whl (117.4 kB view details)

Uploaded CPython 3.10Windows x86-64

bottleneck-1.6.1rc2-cp310-cp310-win32.whl (108.0 kB view details)

Uploaded CPython 3.10Windows x86

bottleneck-1.6.1rc2-cp310-cp310-musllinux_1_2_x86_64.whl (376.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bottleneck-1.6.1rc2-cp310-cp310-musllinux_1_2_aarch64.whl (367.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bottleneck-1.6.1rc2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (373.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bottleneck-1.6.1rc2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (380.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

bottleneck-1.6.1rc2-cp310-cp310-macosx_11_0_arm64.whl (109.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bottleneck-1.6.1rc2-cp310-cp310-macosx_10_9_x86_64.whl (121.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file bottleneck-1.6.1rc2.tar.gz.

File metadata

  • Download URL: bottleneck-1.6.1rc2.tar.gz
  • Upload date:
  • Size: 105.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for bottleneck-1.6.1rc2.tar.gz
Algorithm Hash digest
SHA256 9154ac35e73ade110d14dbd21cd70884586338b317af85735e0a0b4b421938f7
MD5 ac6408cc447f590ed0cb53500d0eb380
BLAKE2b-256 94203197b0b08b7973dcd7dd952df1ca898f98927393531d02e9e6587dd32c29

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2.tar.gz:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 a48966f6ed5ffb332788c609165ca223f6818632781b1c4a77c2645d4689c56a
MD5 634a8318e3a117a7708196d1cf40b2ec
BLAKE2b-256 8c310f8b1c0e10c29274e60cfda07b90b98ab49a52211edcb57dc77bc44003aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314t-win_arm64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 fc7d1f1fa3f12ac34ef38a8a67eac8907b714fb4547ee2412223efe9c7a802ac
MD5 e57f15eedd309f732a7d31522eafedec
BLAKE2b-256 4cd7acf5bfbac7929c7fb12a00e2fa8ed26d9cddb9e3b6a2d1d38b5037be80c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: bottleneck-1.6.1rc2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 111.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 f1e09e78426befb233c303a87cb01218d7234d547f4943d5c5c2bea204ccbb26
MD5 40101c227a4e43a9a1a08e1c46f55d85
BLAKE2b-256 4a8fba0b21fb4230146b7bce41ece6eab657c3528339a5cf64c67d43dae53781

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314t-win32.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f67c88fd0115c3eec978e42b2fbb0fd4dca23907b0cec31e90946fb7d2a27e6
MD5 93fcdab1b66eecc902ad35118f3ff103
BLAKE2b-256 a98768c904cdb41b6c04916d95cbff6627509a81e9d0eff514719c2829974c11

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7b7f02bb2bb748330a5563de76d661af3d465c61f7a7648ca9e4b9a5dd2c285
MD5 b8f4fc3a7d1382a828bc6254d21aa47c
BLAKE2b-256 eb1e358404327ad9cb56bd33268805414696784f546985c7cd829a2d401be11e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a051c224f25f415c0b6cd1e41716548be036130fcd8dba1c734b6f10b2bc03f
MD5 37639d4b634ffd4a2b1ebbb9ee036c9f
BLAKE2b-256 7f742d9042043efa5243e36373a431a87f628e38fc658cf087acc3858ff1cb37

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 80b5f406ed79c9bdad6bc798d0caaf4713884dc3fdaef4b46cd9d2323a67cb44
MD5 8a93f551d0676f93b51802e654631872
BLAKE2b-256 299aa797f80c81384950c0d4cd9cf82106adfd53d395e624441e5069ac5c96f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e79b9a6a70a8e0cb392b4fdb675ef8ff887808873423458319479faaa42cf0ec
MD5 089dc7d62520163fb48ba42e6b5965b1
BLAKE2b-256 6af3a65dc08ae5cec873ad71122987ee0e6730861ce4c38725be705c5096ca8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 287a793f291e9ce20d80ce0406d585e5ad9609e74cb8165ec53e93c50c0ca10a
MD5 f6536c36d7390ced6c4e69af1de76a83
BLAKE2b-256 1e226ed281c092a13d0f5106ad7f5c65886e9b57c8cd97bc74c09e69ae3c122d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 88d06de86c753e2acd6a54a3dba904179ccfa769b188af9758d6ef3d6ea1170b
MD5 5b747344bc95a89113a023c7e2c1720b
BLAKE2b-256 5abbda6b92119687b492029552416337f96f67d394682a2abe14bb7204bdb2cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314-win_arm64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 adacbe1283671925d6fd96a8df68b7def99ddbec49af338e24ff5d8e04ce04b6
MD5 008a1ddd8e1b71fc083c54f0df5d1a39
BLAKE2b-256 81d0d1efceb1d10d5d38b0b79aac6d35e54ec7ec623cc2d6751e62def43842a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314-win32.whl.

File metadata

  • Download URL: bottleneck-1.6.1rc2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 110.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 200f29cfd2b0feb9134d6b1fd7d3300a3827b78c43ab1be01d9d677527928106
MD5 fb503907a6acc65e0b05759f05e50316
BLAKE2b-256 eece9e554157aa36aebc241097d57ea78f43fbb3cc40f3f88c7a80441e0a0fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314-win32.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb41b01e35c003389980c0dbf6f7439003ec92407ae14c43edcff560fc95bb25
MD5 c1563d1cbfd048033f9ba9719bb8277d
BLAKE2b-256 7f810af627ac4946a0ba9bd8bb1ca5ddceb5cd0ac2407c50a9e6b997309ee0a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0e8988cf10cad4b302c75a28d6dd72c375c394d1624b9606674fb192fc21653
MD5 6a692fdd71c801de65293e59e0b47a76
BLAKE2b-256 38dfc7b25b2244efa4c7b1ddbf8a171e80c3eef9c9765fed78f53c8c6fe3cd69

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3915ed9fb932aedc53dcf8e73d7a73dee582a58f38a7da59b337c922ad5e72f5
MD5 484db0bace977d608e7a0f35d31630c6
BLAKE2b-256 5217fc7f54593725cf57aed817de4347417bc459ab1b113f4cef7013ec5ca08c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 97d8eba46c24bac66164069a51430fea132d5744c2b204771b2949a1fc676972
MD5 52a91ef41df890a5d86122ba0d8a94a2
BLAKE2b-256 0b7ccb2e9c326868e6d93f42323b13e5b47d37bd286538b9b9d65c6954410e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d53be082362a1c8b0acf2fe0359fd7593d8c4a6ac845c5fc0e82dfd4a1566cb1
MD5 b6b2335135d595b5e9c39ebf69508db4
BLAKE2b-256 bef59779fd11a81e6af5adda65032d5be9cb7e0d23809fbf4d937d73b02ebb86

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4c35c7a923f8439e25d26b15c625fc1b40766dd2086ac4a5ca02b41ea03e1f18
MD5 dd8cafe95caddad534a337373983890b
BLAKE2b-256 d62871f9e3a13263e14469bd8c9766dcaefacf67f21020ee49d66e4ca4c58f0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5a700112625ac1722c65d95e2d4f8b1e9b8e020ddfadf4127fcbc40a052df0da
MD5 9f9ac95620088bc7d5ca511286760098
BLAKE2b-256 a04235c6408f5b6843e1b8ff664af3a191fdb113e6f65eaf4f5f7e122e6e9e2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp313-cp313-win_arm64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 109b73531b0071f375b3ff7440e28933403c80870e0133ba6b88f34b5ad6a2a7
MD5 99a234ef4afa9bc66f4259c4019e191c
BLAKE2b-256 4bd749540d29392e6a9b0f4d7162d385b33db74e5a7f4aa91841fd52fc9e3bd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp313-cp313-win32.whl.

File metadata

  • Download URL: bottleneck-1.6.1rc2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 108.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for bottleneck-1.6.1rc2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d6b64c08c21cf6eaede0a04b273de98cc877d8e597ba0e5d024985b179b5a2c6
MD5 2e2d024f64c9d708450fa60913b4d0a2
BLAKE2b-256 fab8866aa92f216c0af30f05087cff023ddc0f731fdf5972040ef5713c328d54

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp313-cp313-win32.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2649262ca2f33cf311660cfe10f6998c1dbb99acc5a0843a654c9ab8051c1aef
MD5 587c98b1c56ed8405e64aa09f92f6062
BLAKE2b-256 ad3c0b1d88f17ef247d7a1446b5dc8f77166e688c2c72b35b82fe3cfc35b5728

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb44896f66b0d3a68c4379814800b8e8294ef3cd57d4ed2dfefec71f62af0df1
MD5 70172a3931537494f532e92f9dc1fc4d
BLAKE2b-256 d3e50a1ff896cbfdbf67169d88416ed00a0976dae577412b8bdc6fcd69b3aa40

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 48311a3872a59779a643f22f324a1e469b4eac8f09205ea7415ecb43da117700
MD5 529a90f52a9e4f205ae3e5e2491ac676
BLAKE2b-256 84593ed772dc831aee04dea7ad970ebe3871010c0f5637acf0874a784fa1b34f

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a6f6df70bdf4c0b76527157530cdb03c1172cc3d9979d854b2b066a13412956d
MD5 72e8af76d73de053e8d14ed88d35abe9
BLAKE2b-256 85164ec9c790215333e5c697a44f190d6685c5334f84f2c2306e625a2b47e2a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff12f8a9629a29a9c6bc4e5e2d975230d44da7b60abd5112d48c3054246ba142
MD5 19ff926d483f2bd7b9fcf1551fe59f9e
BLAKE2b-256 f98791fad8c2dfc350fade17b03a8e11a046261c531ba193d61d2571096b2201

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 528f4d2379626c337011a95ed97c7151dac719f4c69a0cf76d975e04af20fc35
MD5 321ce859f1480f327938b64540010539
BLAKE2b-256 8727ef0bcb48ddac7b4a34dccebc3af311024e9389ae358b57a0de7734b0b184

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f62b17d2dbf30036043cbf1dc241d2b02d917b5b3565131b72d107acf60f2159
MD5 f8e5e88946ea690d14deecf586eb931b
BLAKE2b-256 4e123c4e45dc4a7f387edcf41a61bda8dba9f679d498e7846fe729176bfc384e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp312-cp312-win_arm64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6246d90b27f3efeb414004afefc5bf30746cf4f1747b79117f062c92361fa8ce
MD5 5b3ce3bba7d2cc8996d7970e30db9688
BLAKE2b-256 da4166f08832d4da23ccacfc79bb5ce8070002b902cb4e2915b6aceb5e277440

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp312-cp312-win32.whl.

File metadata

  • Download URL: bottleneck-1.6.1rc2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 108.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for bottleneck-1.6.1rc2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 194cae52cb7eeefaedfb8eddffbcf8b0ca0370301767e9cbaee7cb58bf94e8f0
MD5 63d2c2e119e0854587718cc07c923eb5
BLAKE2b-256 bb902c7dbc2a94ac735e87d4b8d9f4dfb8b2eefe552ce10e77bf5310cf64e3e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp312-cp312-win32.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aea2969069444e181cacc407bb6697003cbec30aac0073026abc97a5da8055e4
MD5 f2515eae20da5be168b835337b738f21
BLAKE2b-256 a64d22442e622f11e1c100f3c6753e6d72bb33d78f566c2bbeac48c1f6218933

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aea7d93eb4ed7dcd66f99e11023bc2a7b1d22917eeaa76eda1d0d58573600a73
MD5 d0f70b638785af72a5f3f776b47f19e7
BLAKE2b-256 c8af27a3ce5331d780b72552572ba35435af69d323f9e1d8268606f2631933f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 26c33a6e27c26f101569df54cad72c72eee475eea37259244a0899d563b64cae
MD5 98ad1bdaa9077b41622571a556e13831
BLAKE2b-256 3d9a72a6a9721d09dabb31c6d67868680095f2d94dbe654ffb839144851c6fa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3e7d7fdb0767056ef7a7762da2c4715723799e2ac774074c0b6af6c97a1fa47b
MD5 ea9888302ca2bc26278c9782503efbc5
BLAKE2b-256 3f0787e877273b4ea0cf95094e558396e82b900bf075f54b7a0626520ec9c202

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87728d91d39d1ee84f902dc93a8efd6e4f68da93a9ac5f65315c04fdbc3931f9
MD5 c909e362abe0398308037df186165149
BLAKE2b-256 ef328006ea5a41dc2e8c241fb445d370c0cb234d963b59940b9752c2e62c9c2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c7cf3917f6e69b601120637c0401d2387e2632c260b3aa9212891c4dc23d46bd
MD5 1ca2003efc2a906d061d35ccca81cb64
BLAKE2b-256 aa94117066689b68c256813cd7750eba6a7626954f69ba607dd227fcd9529bdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2a881593bcfe727f3daeaf0a188b2a7ebef624933cc91f023c5116ae21d320c8
MD5 89822f72991cb8344c387fd5b843f047
BLAKE2b-256 5ae6bcc119e04fec49632676b5d003adfccf2c798a2b4f16f8d9fb04be352c19

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp311-cp311-win_arm64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cf073bda52bfecdfc3cb3474b14a9427820ba3cdfb0ee8c5730d94e5b8d4b603
MD5 07e26bec3632d9b0ea94f4a3b9328844
BLAKE2b-256 13f71f2b542f96fdcda89f2693e7774aec0a9979faddb015239d960f1595d9a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp311-cp311-win32.whl.

File metadata

  • Download URL: bottleneck-1.6.1rc2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 108.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for bottleneck-1.6.1rc2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 538bb0d9930bdacde19057d037b618859959abad0fb655281bb051662407bb1a
MD5 867ac113fe6e2a048284c99fed7f5a7f
BLAKE2b-256 62f3ea46626858890419d03f016fbce2326a9f3c0f0f07abfe80012b32ca2dfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp311-cp311-win32.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f920241d13aeef1de9f5604b5fab9e4df64cbd92f20c1bcf600596333b59a9c2
MD5 468e7c28aaf4cce7ab5cea4b00c0ca05
BLAKE2b-256 fd6d5300b988d2f9317576d09a3a1ce7e18226e4d48bcffe45e71cf6671ce8e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05e462dcd1e92c3bbfea40c2f8e414de6db0c60732d9669f8460c80bd3621257
MD5 ffa77b2b79b5d48d348adf66655eeb0a
BLAKE2b-256 621e7c1e79b5d4444deddcd5a1a89ec152a3665aee72ea744609ba5d12cbe232

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6571b76a3c114f03d0ab2c18c59aa6db73ac9d46d08c8b09b0f66e39330a9523
MD5 b96a33dc31f40eb4700d2a0d91333c6d
BLAKE2b-256 9ad1805bd66de8b4f3a077c5ad34ea27e558eaad3e1c6c937e46f0f1bb198fc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0590d9431b9f1bf4a08888527314a51dd9339e69a73eb88d428521a61300a02f
MD5 c9e499dbb52546ec301eaa2b33b234da
BLAKE2b-256 6cf026e2d5b9639fb1bc3a663da77eb0236932a01c954964fe4440ef492e154b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 89c634ad5042402b4ebcd3a822e36c00a7eadbdedd1295d778d33db8e01710b1
MD5 85dadfdc1df5987b404dfba86c5c468f
BLAKE2b-256 90a373ae2ce9be7e3ffaaf52816180213edcd01ace066ae2b49386d449e714d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 aebbbeea5c77d85a20b7ccbdc843091a5067dec28d9343f0a88b25742bf16587
MD5 77e1e1e8ed76dc061d7db606855edb68
BLAKE2b-256 0c387ffd308aedc1aff80a86c27cef7e500a9747a02bce8e4c5f6ce4b87de99b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2e0e8f6f150715dbb5dc3b67672078947eba21f79f606078ebb3b01e183d84e7
MD5 59b4e8ebe84b6ad0ed31de871fac1484
BLAKE2b-256 41441aa4ca08a722548b77501f89d32f0c673c37f87676246a1a527ab9f81223

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp310-cp310-win32.whl.

File metadata

  • Download URL: bottleneck-1.6.1rc2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 108.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for bottleneck-1.6.1rc2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7d14ada3560756f7795286b5c29bc8ab4ae850b0f63f4caa832bd1315bfe2334
MD5 36fb5186bd1976db1d0c67169ad479e6
BLAKE2b-256 5d0ed0f887c5e0cf332f0bd3ec3cb9c283ba02946a542841d3a19a2ca2279b55

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp310-cp310-win32.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 944e4ae0db066805777798fb68eb85597fe3029a35951ba609ed1877565f3912
MD5 db685b1940f4c50a0ca6ef9e695702fc
BLAKE2b-256 37c3947ea52df1e65d4e899db6d795e87a3cbc5d7e6a20ac6a4c10db02f72df6

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 511e84626ada45ff0ac26e4992f2deac82b732d5c8daaea213657eb2426651bb
MD5 f4f149a8bc99db7007820a9844883a5b
BLAKE2b-256 9a73017f29ec8e89041e32eff776c8eb730b710bb2871cd9a7871928cd283fbe

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ee8ef50d06a57fa1379561a62f9b3b90be721894d66fba4173ee2dbd19bda57c
MD5 86cbacb0f56c39260212c822b7c20a17
BLAKE2b-256 e537f39fc66e92afb166ad2153c64acbdbe0f2a5bd45cc6aaa212753cbdc069b

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 67503e301cbe1a8f250ffbb46611bba110e79d52113c7fdac313d65dc513f99c
MD5 01ca9e4749b94c292d4c8c1f25c4d22d
BLAKE2b-256 0dec071b68aa4be4b0f6c032d95d0337693a77e803f26b48ffd7c5491b570c61

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 071d98bf153db9abcc8989b66b7c92b12a25e0b2c9823e868a9cc9889c4139c5
MD5 4c58ecb1a3f55028e06bff5ee6d95f27
BLAKE2b-256 f32c9daa2c68a7d3c3c915c7d334c02315bdfcafdb3ba163844d0936e3883747

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file bottleneck-1.6.1rc2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bottleneck-1.6.1rc2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37d26d633d4da88f594b759e2189ece2eeffd534fabcb5b5dfb5ee8f73956993
MD5 3814fad2ba410c5e3c9ffcd92bc92581
BLAKE2b-256 f0ede65929c70ae4b15bae3c1f28c5aabb84f92ff53445c6d70cf72eaa37c32e

See more details on using hashes here.

Provenance

The following attestation bundles were made for bottleneck-1.6.1rc2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci.yml on pydata/bottleneck

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.6.1rc2 This release

54 files

1.6.0

50 files

1.5.0

43 files

1.4.2

36 files

1.4.1

36 files

1.4.0

42 files

1.4.0rc4

42 files

1.3.8

43 files

1.3.7

43 files

1.3.6

36 files

1.3.5

36 files

1.3.4

16 files

1.3.3

16 files

1.3.2

1 file

1.3.1

1 file

1.3.0

1 file

1.2.1

1 file

1.2.0

1 file

1.1.0

1 file

1.0.0

1 file

0.8.0

1 file

0.7.0

1 file

0.6.0

1 file

0.5.0

1 file

0.4.3

2 files

0.4.2

2 files

0.4.1

2 files

0.4.0

2 files

0.3.0

1 file

0.2.0

1 file

0.1.0

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page