Skip to main content


OS Linux OS MacOS PyPI - Python Version PyPI - Implementation PyPI PyPI - Downloads Conda Version Tests Wheels Coverage Code Style

Memray output

Memray is a memory profiler for Python. It can track memory allocations in Python code, in native extension modules, and in the Python interpreter itself. It can generate several different types of reports to help you analyze the captured memory usage data. While commonly used as a CLI tool, it can also be used as a library to perform more fine-grained profiling tasks.

Notable features:

  • 🕵️‍♀️ Traces every function call so it can accurately represent the call stack, unlike sampling profilers.
  • ℭ Also handles native calls in C/C++ libraries so the entire call stack is present in the results.
  • 🏎 Blazing fast! Profiling slows the application only slightly. Tracking native code is somewhat slower, but this can be enabled or disabled on demand.
  • 📈 It can generate various reports about the collected memory usage data, like flame graphs.
  • 🧵 Works with Python threads.
  • 👽🧵 Works with native-threads (e.g. C++ threads in C extensions).

Memray can help with the following problems:

  • Analyze allocations in applications to help discover the cause of high memory usage.
  • Find memory leaks.
  • Find hotspots in code that cause a lot of allocations.

Note Memray only works on Linux and MacOS, and cannot be installed on other platforms.

Help us improve Memray!

We are constantly looking for feedback from our awesome community ❤️. If you have used Memray to solve a problem, profile an application, find a memory leak or anything else, please let us know! We would love to hear about your experience and how Memray helped you.

Please, consider writing your story in the Success Stories discussion page.

It really makes a difference!

Installation

Memray requires Python 3.9+ and can be easily installed using most common Python packaging tools. We recommend installing the latest stable release from PyPI with pip:

    python3 -m pip install memray

Notice that Memray contains a C extension so releases are distributed as binary wheels as well as the source code. If a binary wheel is not available for your system (Linux x86/x64 or macOS), you'll need to ensure that all the dependencies are satisfied on the system where you are doing the installation.

Building from source

If you wish to build Memray from source you need the following binary dependencies in your system:

  • libdebuginfod-dev (for Linux)
  • libunwind (for Linux)
  • liblz4

Check your package manager on how to install these dependencies (for example apt-get install build-essential python3-dev libdebuginfod-dev libunwind-dev liblz4-dev in Debian-based systems or brew install lz4 in MacOS). Note that you may need to teach the compiler where to find the header and library files of the dependencies. For example, in MacOS with brew you may need to run:

export CPPFLAGS="-I$(brew --prefix lz4)/include" LDFLAGS="-L$(brew --prefix lz4)/lib -Wl,-rpath,$(brew --prefix lz4)/lib"

before installing memray. Check the documentation of your package manager to know the location of the header and library files for more detailed information.

If you are building on MacOS, you will also need to set the deployment target.

export MACOSX_DEPLOYMENT_TARGET=10.14

Once you have the binary dependencies installed, you can clone the repository and follow with the normal building process:

git clone git@github.com:bloomberg/memray.git memray
cd memray
python3 -m venv ../memray-env/  # just an example, put this wherever you want
source ../memray-env/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install -e . --group test --group extra

This will install Memray in the virtual environment in development mode (the -e of the last pip install command).

If you plan to contribute back, you should install the prek (pre-commit) hooks:

prek install

This will ensure that your contribution passes our linting checks.

Documentation

You can find the latest documentation available here.

Usage

There are many ways to use Memray. The easiest way is to use it as a command line tool to run your script, application, or library.

usage: memray [-h] [-v] {run,flamegraph,table,live,tree,parse,summary,stats} ...

Memory profiler for Python applications

Run `memray run` to generate a memory profile report, then use a reporter command
such as `memray flamegraph` or `memray table` to convert the results into HTML.

Example:

    $ python3 -m memray run -o output.bin my_script.py
    $ python3 -m memray flamegraph output.bin

positional arguments:
  {run,flamegraph,table,live,tree,parse,summary,stats}
                        Mode of operation
    run                 Run the specified application and track memory usage
    flamegraph          Generate an HTML flame graph for peak memory usage
    table               Generate an HTML table with all records in the peak memory usage
    live                Remotely monitor allocations in a text-based interface
    tree                Generate a tree view in the terminal for peak memory usage
    parse               Debug a results file by parsing and printing each record in it
    summary             Generate a terminal-based summary report of the functions that allocate most memory
    stats               Generate high level stats of the memory usage in the terminal

optional arguments:
  -h, --help            Show this help message and exit
  -v, --verbose         Increase verbosity. Option is additive and can be specified up to 3 times
  -V, --version         Displays the current version of Memray

Please submit feedback, ideas, and bug reports by filing a new issue at https://github.com/bloomberg/memray/issues

To use Memray over a script or a single python file you can use:

python3 -m memray run my_script.py

If you normally run your application with python3 -m my_module, you can use the -m flag with memray run:

python3 -m memray run -m my_module

You can also invoke Memray as a command line tool without having to use -m to invoke it as a module:

memray run my_script.py
memray run -m my_module

The output will be a binary file (like memray-my_script.2369.bin) that you can analyze in different ways. One way is to use the memray flamegraph command to generate a flame graph:

memray flamegraph my_script.2369.bin

This will produce an HTML file with a flame graph of the memory usage that you can inspect with your favorite browser. There are multiple other reporters that you can use to generate other types of reports, some of them generating terminal-based output and some of them generating HTML files. Here is an example of a Memray flamegraph:

Pytest plugin

If you want an easy and convenient way to use memray in your test suite, you can consider using pytest-memray. Once installed, this pytest plugin allows you to simply add --memray to the command line invocation:

pytest --memray tests/

And will automatically get a report like this:

python3 -m pytest tests --memray
=============================================================================================================================== test session starts ================================================================================================================================
platform linux -- Python 3.8.10, pytest-6.2.4, py-1.10.0, pluggy-0.13.1
rootdir: /mypackage, configfile: pytest.ini
plugins: cov-2.12.0, memray-0.1.0
collected 21 items

tests/test_package.py .....................                                                                                                                                                                                                                      [100%]


================================================================================================================================= MEMRAY REPORT ==================================================================================================================================
Allocations results for tests/test_package.py::some_test_that_allocates

	 📦 Total memory allocated: 24.4MiB
	 📏 Total allocations: 33929
	 📈 Peak memory usage: 10.431MB
	 📊 Histogram of allocation sizes: |▂   █    |
	 🥇 Biggest allocating functions:
		- parse:/opt/bb/lib/python3.8/ast.py:47 -> 3.0MiB
		- parse:/opt/bb/lib/python3.8/ast.py:47 -> 2.3MiB
		- _visit:/opt/bb/lib/python3.8/site-packages/astroid/transforms.py:62 -> 576.0KiB
		- parse:/opt/bb/lib/python3.8/ast.py:47 -> 517.6KiB
		- __init__:/opt/bb/lib/python3.8/site-packages/astroid/node_classes.py:1353 -> 512.0KiB

You can also use some of the included markers to make tests fail if the execution of said test allocates more memory than allowed:

@pytest.mark.limit_memory("24 MB")
def test_foobar():
    # do some stuff that allocates memory

To learn more on how the plugin can be used and configured check out the plugin documentation.

Native mode

Memray supports tracking native C/C++ functions as well as Python functions. This can be especially useful when profiling applications that have C extensions (such as numpy or pandas) as this gives a holistic vision of how much memory is allocated by the extension and how much is allocated by Python itself.

To activate native tracking, you need to provide the --native argument when using the run subcommand:

memray run --native my_script.py

This will automatically add native information to the result file and it will be automatically used by any reporter (such the flamegraph or table reporters). This means that instead of seeing this in the flamegraphs:

You will now be able to see what's happening inside the Python calls:

Reporters display native frames in a different color than Python frames. They can also be distinguished by looking at the file location in a frame (Python frames will generally be generated from files with a .py extension while native frames will be generated from files with extensions like .c, .cpp or .h).

Live mode

Memray output

Memray's live mode runs a script or a module in a terminal-based interface that allows you to interactively inspect its memory usage while it runs. This is useful for debugging scripts or modules that take a long time to run or that exhibit multiple complex memory patterns. You can use the --live option to run the script or module in live mode:

    memray run --live my_script.py

or if you want to execute a module:

    memray run --live -m my_module

This will show the following TUI interface in your terminal:

Sorting results

The results are displayed in descending order of total memory allocated by a function and the subfunctions called by it. You can change the ordering with the following keyboard shortcuts:

  • t (default): Sort by total memory

  • o: Sort by own memory

  • a: Sort by allocation count

In most terminals you can also click the "Sort by Total", "Sort by Own", and "Sort by Allocations" buttons on the footer.

The sorted column's heading is underlined.

Viewing different threads

By default, the live command will present the main thread of the program. You can look at different threads of the program by pressing the greater than and less than keys, < and >. In most terminals you can also click the "Previous Thread" and "Next Thread" buttons on the footer.

API

In addition to tracking Python processes from a CLI using memray run, it is also possible to programmatically enable tracking within a running Python program.

import memray

with memray.Tracker("output_file.bin"):
    print("Allocations will be tracked until the with block ends")

For details, see the API documentation.

License

Memray is Apache-2.0 licensed, as found in the LICENSE file.

Code of Conduct

This project has adopted a Code of Conduct. If you have any concerns about the Code, or behavior that you have experienced in the project, please contact us at opensource@bloomberg.net.

Security Policy

If you believe you have identified a security vulnerability in this project, please send an email to the project team at opensource@bloomberg.net, detailing the suspected issue and any methods you've found to reproduce it.

Please do NOT open an issue in the GitHub repository, as we'd prefer to keep vulnerability reports private until we've had an opportunity to review and address them.

Contributing

We welcome your contributions to help us improve and extend this project!

Below you will find some basic steps required to be able to contribute to the project. If you have any questions about this process or any other aspect of contributing to a Bloomberg open source project, feel free to send an email to opensource@bloomberg.net and we'll get your questions answered as quickly as we can.

Contribution Licensing

Since this project is distributed under the terms of an open source license, contributions that you make are licensed under the same terms. In order for us to be able to accept your contributions, we will need explicit confirmation from you that you are able and willing to provide them under these terms, and the mechanism we use to do this is called a Developer's Certificate of Origin (DCO). This is very similar to the process used by the Linux kernel, Samba, and many other major open source projects.

To participate under these terms, all that you must do is include a line like the following as the last line of the commit message for each commit in your contribution:

Signed-Off-By: Random J. Developer <random@developer.example.org>

The simplest way to accomplish this is to add -s or --signoff to your git commit command.

You must use your real name (sorry, no pseudonyms, and no anonymous contributions).

Steps

  • Create an Issue, select 'Feature Request', and explain the proposed change.
  • Follow the guidelines in the issue template presented to you.
  • Submit the Issue.
  • Submit a Pull Request and link it to the Issue by including "#" in the Pull Request summary.

Please read the CONTRIBUTING.md for more info.

Download files

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

Source Distribution

memray-1.20.0.tar.gz (2.4 MB view details)

Uploaded Source

Built Distributions

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

memray-1.20.0-cp315-cp315t-musllinux_1_2_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

memray-1.20.0-cp315-cp315t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

memray-1.20.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

memray-1.20.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

memray-1.20.0-cp315-cp315t-manylinux2014_i686.manylinux_2_17_i686.whl (9.8 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

memray-1.20.0-cp315-cp315t-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

memray-1.20.0-cp315-cp315t-macosx_10_15_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

memray-1.20.0-cp315-cp315-musllinux_1_2_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

memray-1.20.0-cp315-cp315-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

memray-1.20.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (9.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

memray-1.20.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

memray-1.20.0-cp315-cp315-manylinux2014_i686.manylinux_2_17_i686.whl (9.9 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

memray-1.20.0-cp315-cp315-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

memray-1.20.0-cp315-cp315-macosx_10_15_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

memray-1.20.0-cp314-cp314t-musllinux_1_2_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

memray-1.20.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (9.8 MB view details)

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

memray-1.20.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (9.6 MB view details)

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

memray-1.20.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

memray-1.20.0-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl (9.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

memray-1.20.0-cp314-cp314t-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

memray-1.20.0-cp314-cp314t-macosx_10_15_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

memray-1.20.0-cp314-cp314-musllinux_1_2_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

memray-1.20.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (9.8 MB view details)

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

memray-1.20.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (9.6 MB view details)

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

memray-1.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

memray-1.20.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl (9.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

memray-1.20.0-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

memray-1.20.0-cp314-cp314-macosx_10_15_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

memray-1.20.0-cp313-cp313-musllinux_1_2_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

memray-1.20.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (9.8 MB view details)

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

memray-1.20.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (9.6 MB view details)

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

memray-1.20.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

memray-1.20.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl (9.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

memray-1.20.0-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

memray-1.20.0-cp313-cp313-macosx_10_14_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

memray-1.20.0-cp312-cp312-musllinux_1_2_x86_64.whl (12.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

memray-1.20.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (9.8 MB view details)

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

memray-1.20.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (9.6 MB view details)

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

memray-1.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

memray-1.20.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl (9.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

memray-1.20.0-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

memray-1.20.0-cp312-cp312-macosx_10_14_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

memray-1.20.0-cp311-cp311-musllinux_1_2_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

memray-1.20.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (9.6 MB view details)

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

memray-1.20.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (9.4 MB view details)

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

memray-1.20.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (10.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

memray-1.20.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl (9.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

memray-1.20.0-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

memray-1.20.0-cp311-cp311-macosx_10_14_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

memray-1.20.0-cp310-cp310-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

memray-1.20.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (9.6 MB view details)

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

memray-1.20.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (9.4 MB view details)

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

memray-1.20.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

memray-1.20.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl (9.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

memray-1.20.0-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

memray-1.20.0-cp310-cp310-macosx_10_14_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

memray-1.20.0-cp39-cp39-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

memray-1.20.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ x86-64manylinux: glibc 2.28+ x86-64

memray-1.20.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl (9.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.26+ ARM64manylinux: glibc 2.28+ ARM64

memray-1.20.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

memray-1.20.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl (9.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

memray-1.20.0-cp39-cp39-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

memray-1.20.0-cp39-cp39-macosx_10_14_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 10.14+ x86-64

File details

Details for the file memray-1.20.0.tar.gz.

File metadata

  • Download URL: memray-1.20.0.tar.gz
  • Upload date:
  • Size: 2.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for memray-1.20.0.tar.gz
Algorithm Hash digest
SHA256 ce1f1d900948d57d7db5b5d8d81f4ebfcb798eff674493503ce5bfaafcea84dc
MD5 c20838dd19515d1b486ae434f101197a
BLAKE2b-256 993b8f9736cbf698e62cb7efb0e1715a30d6d06b3cffd980b435209eb522d5f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0.tar.gz:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c19934e6b713dbbf35f15d3c84f289e048be613e85039913a500393f10272b9f
MD5 47dd3ea1eca5b3ef39647f71a9448500
BLAKE2b-256 435076598b0e0bf727f4bcdd1a65ac50d609d4952c7d736c27da6a4196468b61

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 734a082db18947f8afa609b2b4daca20a8b45100a3e6b6c0e4321d59ed781288
MD5 19e6f9390d2efc5468952f42efaf2ae8
BLAKE2b-256 89c62eb1717d80308240aa41d97915fa5fb372c1f71ef68c844f162350295a4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c8c6ee6c3df06abf2d4230d0f2c0440e91e0c8fd51c1fe9b32599485254d1f56
MD5 d7b48a549f4f732b9cccdde1bc55d4e9
BLAKE2b-256 85260873448e1445a67679a7168a32890dd75b0d63dfe7f07bca3a58d11fe72b

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b9ec82a31783a6e468135a6f8a7a996fbc31530a5b725faffb5a8be7e2431a2b
MD5 a458b851221d4d27d01b48ce941ec512
BLAKE2b-256 2cbfb7bff1759a95230bf4191b7ee4a66867fd4e78e02849fa7032464edf853d

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315t-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315t-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 7e106a6dfd3823194a5ecd0b147ea7cffae900e422402cfac9ff4b2c774b4695
MD5 63dd479d37fe570d488721c33c62e198
BLAKE2b-256 287d607c4dda5f3752d0696bc2c1f5f24970542bb82ccc337244b2b6a7831885

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315t-manylinux2014_i686.manylinux_2_17_i686.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdf08e64a9bcb598ae76ca467273b580b4658de49b73bd78dd8345a736d78816
MD5 2604fc82e556074a6374448b2b1ca47a
BLAKE2b-256 f06c71d39e6ebd1ee3ebb3c0037c1b0c32460bd413623fc67ac50ebfb4ee936a

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9d0c12433fde039a594b6bc254758c236db5532a4ee2ed758b9ec73f8fc78f62
MD5 fb1489f9d822f7968e1603454bcfdc4c
BLAKE2b-256 b0faaf4f576cce0516e8eec2d25ed83106bbf1da866a6d275b9ea6a6d64efa81

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315t-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25e4a802488d54030c30a6bdb969fd79f701228db35e6a834eac75259c69018b
MD5 35c124893a2a3925188bb18001aca3e9
BLAKE2b-256 8fa19be6ff8023790e2e89f6882add459e6aceb45ea7d8170f460e3431c95fd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 27dc015d1bfb9e43dc0030b412ba435ccff89cd5b7b28d7da9c8e630e7cfe3ec
MD5 4cb75b6024ac8812ae88b9e23fccb36a
BLAKE2b-256 8224cae0361d483c6816ad4e2607aaa8864902c6d7cd808dafc6c0ad9c5f99c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab77856a592b04586ffb4a87e26d4de440ee3aba6facbaeabdb20855950fdebc
MD5 56b9ead07a911068f76fb9773898c117
BLAKE2b-256 a688a426f7229b8e72b5d45a51781018d6c696330633bee149a5b2effbc7d426

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b71fe846cbabce7f33017ac94ba2f157b39e22dbc4f723aad0407dd38520f855
MD5 da9166c0e7995a91a7c4bbc8367751d7
BLAKE2b-256 f140451ac23a92d9cd0e11901c00377589ba64b0b8c5cfd595ae403dd14f1a88

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 08b4d1e17219caabc2a01aa17e8e602b9db67a6aad3ba88b134dfc22bace420d
MD5 e2d1eda1056d903f605462b11617c6bd
BLAKE2b-256 6c2e6713da0bec71d2074c6c6a2269b9c69a209090591f277a6db1982cc580a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315-manylinux2014_i686.manylinux_2_17_i686.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5fc5251b02d99a98eb5874cabfcb74b492ab28e1d5c8b55d481ba0d5e273bf0
MD5 88a94448b1ccbde92ccafb234148583a
BLAKE2b-256 14785c481eecbbe2b954631dfa9fea383971aa34d186743f74279df644287649

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a6b79c356f7caeed51cbd25dee85485b6210803199f769da8bc3d061bd0e0ada
MD5 6b6af8704b2e55e06f381b4a4feb9a6a
BLAKE2b-256 42d7e76c9efcc466273294a5ec41a518de77c8a2e9ee6ac05049f69fff087bc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp315-cp315-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3270aad45dfa0bc7d32bb86b352aefabee765a8658aace8fb9dc8112a07f2e3c
MD5 6db9ff7b4f8b0275aedb0ab82ab281b0
BLAKE2b-256 13c3ffbba95b0c468d831c63aa6e7dc9e7bb21074d1899c310604567d10ca204

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70010acd3d07dbf41aaca0787de3c81c5d8e22e07a6c0fdf04d66c4a376c0193
MD5 d447e37cbcba7e7c5c0f4896b6042d7a
BLAKE2b-256 9ccc6b682e4287dfb4bba6d0e0fd8e685fc3b1f0b769707f09c6305217cf8e1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314t-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac9a5dd9bef7f44331d98174625167bf0a8f61785ed05440d99f581c93790acf
MD5 c66b0f47cadef53228d1567546f8685b
BLAKE2b-256 f23727da92dcca4c19ca19fdd5c43de474755eac9d16255a0d8f2104d5976998

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314t-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 ffd3c7c53419465922be92654c17ebff577708fa1f74168dbef9eb5efa6bcb02
MD5 2c62cdef19c72b07cffe0603da813802
BLAKE2b-256 316613ec31746d61855bbe05a090b26a0a9aa6fd741bb3a9a2c0122061d3b985

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 59e44042f2495698f6a17fe0a831051ea515242e567f08457ee8546283372993
MD5 e5d1983c19132bd9f9d572186c21438e
BLAKE2b-256 72eea04a21557e50d76eef59f0fd4d5f293a2334142540a7180bb627d8ef5b73

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314t-manylinux2014_i686.manylinux_2_17_i686.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 420bc47528fedf1a92832290c7a7b8a940c2e30bd9337a85811da18a27e07220
MD5 2cb03fcf1d0034d39e8abd0d994da8c3
BLAKE2b-256 02e4f3981abfecc1572fd24274386f3cbbc36b861704a3e3a10aebe2775aa1a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 610643cfa186f7958a476e5589f6e8a1b0b7b3008ab10250a0f02575a692ef1d
MD5 55e487160582bcc3336617a8468b2630
BLAKE2b-256 27713560aa204af1771cb25ab91489c48643dfe1ca0ce93783fb70ad677ca058

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f51218744259983ad0ca66366ca2ff80158513132ca9bd835b1874a453199dd
MD5 19036600ab1960bfe0880d811d3348bf
BLAKE2b-256 6bd37d59a88509a301aa02c033b95460266553a689fc99f5b1b0d0f138675fc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5588174a24ac150100faa7ee60b535b0f09eae82bf672133443425a00704b769
MD5 d0d3c156b7a1545212d7dea1a22b0813
BLAKE2b-256 b9353a972ce61e83648f970dbff8d54dcb0a6a54ab298e283cce139c40c8615b

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 83cfa504ed4e1061b85af4b3c40228616a852851ebf5968ff1c3d85e363f8d24
MD5 aec014ee440151bd43ce253a8ef34d14
BLAKE2b-256 9618b70db3a617ba0be54730a0ddf72822df62551d503bba5c131afea1b47da1

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 37bc107afee942f162d30160dfd7f28c2b989251c574570f2f920f5bbbb323e4
MD5 13c7ba961a226cf81f1a04ef80d457b1
BLAKE2b-256 54b6d0b4eb7324bf47b52165aea947bb8942807a40684a64f9decdf4b2a34387

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 d92692fb5266aca4322e2001e18810207b170dfc7ce2e8f0570c7ee181574063
MD5 96f52ee2ac48b6c4cb1ebbcda4937aca
BLAKE2b-256 ff0945b74d8750ddccb9ad76a8ed639b46b2c3990f99dbe77f800f6f524257fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1503ac18928d2493662af95935b9ccaadbf9f2579d86f6757304c23291a077b
MD5 7ddff2ea994be0ffb79bbb6071445b0f
BLAKE2b-256 af1a0f44b1b626169d40defaa2ae9286a70d40653ac26865f0604a882a10ffb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 90fc0ebfc6a264fe3b77d5c263678eaf4a47a0f4288e1b6a04ae3439743cd4be
MD5 77d11c41d2949ea78702dac40d193564
BLAKE2b-256 6e637976092700eecf4e36ae5793020d18f3feab96aabc2f50d8c7669f751326

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c18705b70d20161616d3fc9d0b0c7796211b3ab16499dfb29c8f3ab7ece46c2
MD5 b5bec38bd6c2edab82f27b7458084116
BLAKE2b-256 140e65901e28faeb25a27655a43dfdf0e4a36dae5b12f3ee66d7ad849ae8754c

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c3aec7a4d0b0d0eb55d72e815a492ff060a3a46b014f6ae216ae68a006ea304
MD5 632d0c9ebdbc01cc0b8613a99d2a2f47
BLAKE2b-256 a1a6d31b07fa7aa757c3d2cf9bc4850eb4cbfbbd3bff1f6dd710620248b57739

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp313-cp313-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 97539fd71c565c55e208df9ea28ac158cd156b8c33564853685688595c5a991b
MD5 8b2ea0b010b603601e67b37bcf3ffa62
BLAKE2b-256 3b911aa88c9f9dda541265aac80bcdddffcc641374b8fe05a8caa6b3f02245bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp313-cp313-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d2f3f681ce8acd713a7216d6c362387e70122527e741685e82f85cfdf6aedf0b
MD5 fcc1aa10a1b01760323afad86d802f3e
BLAKE2b-256 248be59d5144428046bd43f6f7fbfd04cbbebdba94ca42798fc370abd9b833da

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 546a60027fc9c8a5fbeea62dce45e830d78769a45192098469ee39b2d75c97fc
MD5 f25ae8c1dddfb32bbb828f07a581b294
BLAKE2b-256 9a45b6fe8e3120a28013709b34de654ce90b0fec1c89dec4392cd1f3d8d8a1c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60f3bf8762adc15a2214f44ad631cddb9e4fa4f4a0dda6aa0ccac6ea71239283
MD5 bfc94cd8b5b242740fa9796bc9eb826d
BLAKE2b-256 bbf2351f0d534b8df45ac3cea2c90a14050351304f47a019db5ceab3363aa090

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 359824cc26c9a208e83ab058850e9bf16592d7928307e8c2dc6c7b55e6b6cfa6
MD5 8a4c51e91860890e89677e3e1dc50ec9
BLAKE2b-256 2551f9f775da2a08e6bf877b38c9ad83ae140852e2f98a23685f6a04ff4bda2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp313-cp313-macosx_10_14_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b40bf09977f84afe815cca1f34f8a29040a9e757b55467d513ecb9262e6bd809
MD5 e78702c649b5b243953a28b443696064
BLAKE2b-256 c28eb35e61137dac319394809cabfb5405c98bade1f129368aef2d81990706e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68dca0caa0b1d1b8474ee54efb98eeb33f548d28bb246113caac45125da7b9c3
MD5 756f09ffae33efd8c603e2639f94094e
BLAKE2b-256 a0f354f218a7c7d604f6b11cf23ae74988bc7749e861e7e91dab5ee615d3293a

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp312-cp312-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2a6d63a3df7eb96809b82cbd9445033ec1d51574be0f9b3eddf4d64632af7162
MD5 4309c994895119f74d67bb692b335444
BLAKE2b-256 e73eae31597901b5e3bffeca5c5db916f3ad6d1a45ec1547f72821025bd98501

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp312-cp312-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 57981abd8c526d4375c7f640a9d27d5e319b888e79b51688a8fae2f947fe8294
MD5 2eff0b9ab2b143606b00eeb2a2c58198
BLAKE2b-256 3ab6807399cc9e4e733b15206be18244a34b5c7606c47a803cca2c55062ce487

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 f6653ac2fbd49e66e2883575fa8c5dde127f4699205415d1170a8cf7d1db1c86
MD5 d20bf6b6bc529c13538d0f2a902221e4
BLAKE2b-256 c56da1afee889818ba9633638707bea93ef0db644dd4ad6be13bcd4bcaa3b739

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bcd5094cbb9bd1d11a5dfcc523daaa99f743e645a8b0b0805beaa2bbddbf356
MD5 79145f241eaaa1502730a7e5a536aad5
BLAKE2b-256 fec9b5b7e0ed44298d521ac0d6d334fae7d934f7a7b63be5c52933ebfcf7403d

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f5d6980770a2d5d1a4f3e8d04d6f92309119671c1f830959a8bea868fab0b01f
MD5 4f9fff5845919623a80b3da84fbbda51
BLAKE2b-256 83393038dd5a10a1512ab7a0ad30c09e13ea1ad26e09ee70d319d037dafbe63c

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp312-cp312-macosx_10_14_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d55e9627b6d6a868aa45995a965f3396c56ac7df5bc567b5293068412049557
MD5 9f2c4b978a36fe2681be2d1b2188fd42
BLAKE2b-256 d3d96481df3b019e3b10661be7216bc457c79c819542a58cad4682cf065b6fc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e64121d1b3ca248e0af39df09593bd2b04779ff8ee5261ea9b46ae5e47bc1c7e
MD5 739c39395aadbfee908de15a1a5446a0
BLAKE2b-256 d0ac8a969428762b0264efdfe81d101d4d2b5e07452258908e570b22e3221d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp311-cp311-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0601310f1be3fd5012d888fa73354c204d7eb85cd42a89bd91160d3b8a1ada9e
MD5 39e028f446628afea7aaedb317434432
BLAKE2b-256 50725179062328a85a00e8733b00b894828a47ba1635003edb7ec81e36bf28bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp311-cp311-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 53231e49d55b10ac10ac8739a2592230f0794320892756f957e0026f99f38618
MD5 94ecb249dc2185b2b4ab919c81a55679
BLAKE2b-256 99203ed35c62736666602c8f025f9c8fc5651effb710f1e03bb142071e06ec57

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 3d40d606d0f1d248bb5a00701de84d8faab8ec5b6b383305a36f14c1849a7125
MD5 40c0093fe4de62aee47b337401c368d4
BLAKE2b-256 215b2c9bfc4a3cbf88fb8c1763fa8f2866232737814dde55172a55e2b0f0398e

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5edcfdd7071628dbcfe5334875cb1d615e26f39a613a2cc2767c193a544b91de
MD5 8d9bd30ace1cd29074d8ff8cad154493
BLAKE2b-256 24d5a742f55f70d36c2a88ba644a8fea0933dbe77a5ca65f679ba531a36daba0

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 996db26e0451301ed935d357854bf84ff1e41bc43580901bf37528a09a8dac3c
MD5 d0c15dc658ab0e7fbcafc57fecabeb47
BLAKE2b-256 a21e88237bdf1a6cdff01a07ec6cf46a5816eadd1ac5a72924a87485ebf471e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp311-cp311-macosx_10_14_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b41289728ec76b48e83a1af9e1e45e997c4e4b692bfbdeb07cfd814bccb24c40
MD5 0b8320841cc466afddb7eccc280ee654
BLAKE2b-256 00f3d924067be6716782b3a2978b00cce03383b033396e788d5453546f687198

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5dd0d4220b607d85aaf6a7275d032915ad43a170b6ae9c73943952d39c224b9b
MD5 fac9219d4bf4ba12770cea26ffa7feda
BLAKE2b-256 fe77a169cfdaf4bab551150f1e70ae7c3aa7fc85f3107b0a9a4ce7a6adbd8a4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp310-cp310-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c80ecc9259acd888647a385a2f429f453f7ba5c0b1af363babd1ad8a1210da6
MD5 ca5f9d5037654b408b68d9d529ddf1b5
BLAKE2b-256 312f37f33be92bad8197f15915f4b49b6484981f1018b591fe52ccde720e9f5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp310-cp310-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e430f8f8533d17bbf45ad0e0c2f16c0e0b767729234771b06745670b61ea5f26
MD5 f063d17a38761248077d15610a15b26f
BLAKE2b-256 26ad3871c5b92312f16c00bf1c445f2b9d65386ea44c0ff3a581a315c6849fa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 9b21b9cb85699f9b8df664f6c1633e2a9ce9072e8a7ca15700075e4111b001ed
MD5 7c7deb70b15ee73442030da7242b9236
BLAKE2b-256 fd36df611ca2dc051830e2bcc71aec3295e1aabc6b6733335029b4a435401b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83eeeadb3a14ecd8180fe53fe7f0287a84d4146f7fdca986291a5fc1f4eeee97
MD5 6913523066e7ca43c291da97bea8770b
BLAKE2b-256 2a9956a08b6f4534d54888f5455b7f31ba752c6ba264c927941554e2cc431e98

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e073ef4685c7f7c2e9c5dabcff8ff46cae66daf6aeaea4d017239b2940b4ca82
MD5 cb2fe5c2e630e545112ba6fcbd5d2f9e
BLAKE2b-256 ec652d782edb420aa21ab1a27de559a82f67a9ebb0eb09c49b9f254debb27b6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp310-cp310-macosx_10_14_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b33c58a7bb6b04d9767249924c0d342a9c33ec3526aeb52f95a0185b0f30aca
MD5 906a25345eda39c19a5628d15793cb10
BLAKE2b-256 b24e691475d57f218ac2dd5a524e6f813a81e248ac8da6109cecac32a841c4ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1a4735275b385d6a962f4123facfe98ab306b39b084ba10ecda4d1df930d1990
MD5 1ee1cd8a91ea9d157f4cfaccd07d1d13
BLAKE2b-256 c451d959dd2d448c9f987c3b9f006ec886ab043921aa4a88857683df69ed88e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp39-cp39-manylinux_2_26_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f2b2e3640bcff1d2e20f431fb93d17ac03236b28d53087d5e16c87139b4865e
MD5 58022f90d8357a3ede5c8ba10310b455
BLAKE2b-256 794cadbad6dacfad287c6e088a64fd4cdbac686a2597dec0b335b7e23cd2a3a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp39-cp39-manylinux_2_26_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8001648aeabd15235337b907a61bc8f26483633057dc987199f50a8977a72d7e
MD5 35621080ca31549fdadea0b5e8a3a163
BLAKE2b-256 b9056e0a085b6a832622e70578855a0db373b565a00839008166a7ee0efcdcb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 a9e3db4952fe56d74036a4e1bcafd6c8c257390021f752d932394fbf3b389a67
MD5 2ada723f797240efd1fc1fbb25c86842
BLAKE2b-256 6d6a63658280138cc6c0fa3270e0ad76b459be16834112c4c48bce4a19419482

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e76806fa8e0fdf0c83285afac2b0a661a48f9ce03d746638fe2e43433a4e67c
MD5 bf871917d992273fd24d2ebb7ffdf4db
BLAKE2b-256 e805e1d46883a4de777e1c2866c33875a1cc1e3b2a72251314efcacec367cc56

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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

File details

Details for the file memray-1.20.0-cp39-cp39-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for memray-1.20.0-cp39-cp39-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 bab7e524faeb76c607d364ed341592cadc1e39beb634da5cf58f77f9a0f68001
MD5 698554b34973fe07015cc42e59c49c72
BLAKE2b-256 b91d93096bae9cd747980af0cc9e32b0e662a0be210896a8ac4438812f9addae

See more details on using hashes here.

Provenance

The following attestation bundles were made for memray-1.20.0-cp39-cp39-macosx_10_14_x86_64.whl:

Publisher: build_wheels.yml on bloomberg/memray

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.20.0 This release

64 files

1.19.3

49 files

1.19.2

49 files

1.19.1

49 files

1.19.0

49 files

1.18.0

49 files

1.17.2

43 files

1.17.1

43 files

1.17.0

43 files

1.16.0

43 files

1.15.0

43 files

1.14.0

43 files

1.13.4

37 files

1.13.3

37 files

1.13.2

37 files

1.13.1

37 files

1.13.0

37 files

1.12.0

37 files

1.11.0

37 files

1.10.0

35 files

1.9.1

34 files

1.9.0

29 files

1.8.1

24 files

1.8.0

24 files

1.7.0

19 files

1.6.0

19 files

1.5.0

19 files

1.4.1

19 files

1.4.0

19 files

1.3.1

19 files

1.3.0

19 files

1.2.0

9 files

1.1.0

9 files

1.0.3

9 files

1.0.2

9 files

1.0.0

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page