Skip to main content

faiss-wheels 🎡

Build PyPI

Faiss Python wheel packages.

Overview

This repository provides CI scripts to build wheel packages for the faiss library.

Features

The PyPI distributed wheels include the following extentions.

Platform Arch Extensions BLAS backend
Linux x86_64 generic, avx2, avx512 OpenBLAS
Linux arm64 generic, sve OpenBLAS
macOS x86_64 generic, avx2 Accelerate framework
macOS arm64 generic Accelerate framework
Windows x86_64 generic, avx2 OpenBLAS
Windows arm64 generic OpenBLAS

Note GPU binary package is discontinued as of 1.7.3 release. Build a custom wheel to support GPU features.

Install

Install the CPU-only package by:

pip install faiss-cpu

Note that the package name is faiss-cpu.

Usage

Check the official documentation at the upstream for general usage.

Index portability

One caveat is that faiss indices built in a specific environment is not always compatible in the other environment. For example, indices built and saved in the x86_64 architecture is not always compatible in the arm64 environment. In addition, SIMD features can lead to incompatibility. Indices built in the AVX2 extension are not compatible in the generic extension. Faiss automatically detects the CPU instruction set and loads extensions. This tends to be an issue in the containerized environment where CPU features are not correctly detected due to driver issues.

If you encounter a segfault or weird argument errors, set the following environment variable to force or disable the specific SIMD extension:

export FAISS_OPT_LEVEL="generic"

Building customized wheels

The PyPI wheels do not support GPU by default. To support GPU methods or use faiss with a different build configuration, build a custom wheel. For building a wheel package, there are a few requirements.

  • BLAS: There must be a BLAS implementation available on the Linux and Windows platforms.
  • OpenMP: macOS requires libomp (available via Homebrew).
  • CUDA or ROCm: A GPU development toolkit is necessary to support GPU features.

See scripts/install_* scripts for details.

Build instruction

Clone the repository with submodules.

git clone --recursive https://github.com/kyamagu/faiss-wheels.git
cd faiss-wheels

You can use a standard Python environment manager like pipx to build a wheel.

pipx run build --wheel

Any build backend supporting scikit-build-core can build wheels. For example, you can use uv to build wheels.

uv build --wheel

Build options

You can set environment variables to customize the build options. The following example builds a wheel with AVX2 and CUDA support.

export FAISS_OPT_LEVELS=avx2
export FAISS_GPU_SUPPORT=CUDA
pipx run build --wheel

Alternatively, you may directly pass CMake options via the command line. See the scikit-build-core documentation for details on how to specify CMake defines.

pipx run build --wheel \
    -Ccmake.define.FAISS_OPT_LEVELS=avx2 \
    -Ccmake.define.FAISS_GPU_SUPPORT=CUDA

The following options are available for configuration.

  • FAISS_OPT_LEVELS: Optimization levels. You may set a semicolon-separated list of values from <generic|avx2|avx512|avx512_spr|sve>. For example, setting generic,avx2 will include both generic and avx2 binary extensions in the resulting wheel. This option offers more flexibility than the upstream config variable FAISS_OPT_LEVEL, which cannot specify arbitrary combinations.
  • FAISS_GPU_SUPPORT: GPU support. You may set a value from <OFF|CUDA|CUVS|ROCM>. For example, setting CUDA will enable CUDA support. For CUDA, you will need the CUDA toolkit installed on the system. For ROCm, you will need the ROCm.
  • FAISS_ENABLE_MKL: Intel MKL support. Default is OFF. Setting FAISS_ENABLE_MKL=ON links Intel oneAPI Math Kernel Library on Linux. You will need to install Intel oneAPI MKL before building a wheel. When OFF, the system needs a BLAS backend that CMake can find, such as OpenBLAS.
  • FAISS_USE_LTO: Enable link time optimization. Default is ON. Set FAISS_USE_LTO=OFF to disable.

See also the list of supported build-time options in the upstream documentation. Do not directly set FAISS_OPT_LEVEL and FAISS_ENABLE_GPU when building a wheel via this project, as that will confuse the build process.

You might want to overwrite the default wheel package name faiss-cpu depending on the build option. Manually rewrite the name field in pyproject.toml file, or launch the following script to update the project name in pyproject.toml.

./scripts/rename_project.sh faiss-gpu

Development

This repository is intended to support PyPI distribution for the official faiss library. The repository contains the CI workflow based on cibuildwheel. Feel free to make a pull request to fix packaging problems.

Currently, GPU wheels result in a large binary size that exceeds the file size limit of PyPI.

Other relevant resources:

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

faiss_cpu-1.13.0-cp314-cp314-win_arm64.whl (8.5 MB view details)

Uploaded CPython 3.14Windows ARM64

faiss_cpu-1.13.0-cp314-cp314-win_amd64.whl (18.7 MB view details)

Uploaded CPython 3.14Windows x86-64

faiss_cpu-1.13.0-cp313-cp313-win_arm64.whl (8.5 MB view details)

Uploaded CPython 3.13Windows ARM64

faiss_cpu-1.13.0-cp313-cp313-win_amd64.whl (18.7 MB view details)

Uploaded CPython 3.13Windows x86-64

faiss_cpu-1.13.0-cp312-cp312-win_arm64.whl (8.5 MB view details)

Uploaded CPython 3.12Windows ARM64

faiss_cpu-1.13.0-cp312-cp312-win_amd64.whl (18.7 MB view details)

Uploaded CPython 3.12Windows x86-64

faiss_cpu-1.13.0-cp311-cp311-win_arm64.whl (8.5 MB view details)

Uploaded CPython 3.11Windows ARM64

faiss_cpu-1.13.0-cp311-cp311-win_amd64.whl (18.7 MB view details)

Uploaded CPython 3.11Windows x86-64

faiss_cpu-1.13.0-cp310-cp310-win_amd64.whl (18.7 MB view details)

Uploaded CPython 3.10Windows x86-64

faiss_cpu-1.13.0-cp39-cp39-win_amd64.whl (18.7 MB view details)

Uploaded CPython 3.9Windows x86-64

faiss_cpu-1.13.0-cp39-abi3-musllinux_1_2_x86_64.whl (24.8 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ x86-64

faiss_cpu-1.13.0-cp39-abi3-musllinux_1_2_aarch64.whl (13.3 MB view details)

Uploaded CPython 3.9+musllinux: musl 1.2+ ARM64

faiss_cpu-1.13.0-cp39-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (23.6 MB view details)

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

faiss_cpu-1.13.0-cp39-abi3-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (11.3 MB view details)

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

faiss_cpu-1.13.0-cp39-abi3-macosx_14_0_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.9+macOS 14.0+ x86-64

faiss_cpu-1.13.0-cp39-abi3-macosx_14_0_arm64.whl (3.4 MB view details)

Uploaded CPython 3.9+macOS 14.0+ ARM64

File details

Details for the file faiss_cpu-1.13.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: faiss_cpu-1.13.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for faiss_cpu-1.13.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 917bddfd45553c54517f12c7ebfccefdee1dcf01defb7e9fd5dba711af391320
MD5 b74c65f177648958e56ba1f9fcb8673b
BLAKE2b-256 0e085356ed534efaac08d94ee7b79df6141e0cfa11f6d92dc501871eeb105202

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp314-cp314-win_arm64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.13.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 18.7 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for faiss_cpu-1.13.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1bafa485809121c8a7da69c3d31e2f176ec8ab5c8ea78eba772aa5a81c29fd0a
MD5 2111a96b38934513f8dcb62938d27a09
BLAKE2b-256 72932124384b8100f637754615b3bcb1df6a291b03787b7a7a1acdc822127585

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp314-cp314-win_amd64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: faiss_cpu-1.13.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for faiss_cpu-1.13.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d8714f8dad5da31ea235584a07e9671216072b78edddf31b352f96e798f9aac5
MD5 37a6036773d930c191c3a870cfed6355
BLAKE2b-256 6349f28a5e81b4f3a427222a8bc806215a809912fe8d04ddfae3ab7444e4d332

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp313-cp313-win_arm64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.13.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 18.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for faiss_cpu-1.13.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 43be41c086413faa480460aea6fe0f5d3bc119d88405d4e95793e89612300b41
MD5 37abb174f0c113d5e5d2b2649a0b05ab
BLAKE2b-256 6e6d8ee3d113709520573a9a0d7a8a63f6fc87e760f75f117a5cb17505c1a0e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: faiss_cpu-1.13.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for faiss_cpu-1.13.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 aeffee29c00316e3de11d8646703814f9c2110c199efc7874369bfaf961447b3
MD5 70aae35ce5bdb34e0565ce3dcb8d7254
BLAKE2b-256 70bfbfae2cf03af55762a4c4c075d63ef07e8faa5f6a91869b0160f3d359bf21

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp312-cp312-win_arm64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.13.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 18.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for faiss_cpu-1.13.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 152877176ff5f84e1690fd19fbad8931c8a47ec77a310ffae4e7ca738851d4d5
MD5 ded7d71566ff382ea11a5dd06614cacb
BLAKE2b-256 2c4732855caf247584eb2b7ca4a567312340896974a7b0407e7ffcbee9d8fe5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: faiss_cpu-1.13.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 8.5 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for faiss_cpu-1.13.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 98880cb99bf4fa7a89e81dd0e1c8daab0975eabcc006fc33437d9e3f43493a0e
MD5 ccb16422683ac4e889a146e96ec17447
BLAKE2b-256 0b96ff59c5c92234948958826709c9f3ef4801066ad05c229e71a14579487507

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp311-cp311-win_arm64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.13.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 18.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for faiss_cpu-1.13.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4bdc39b1bd7cbb6bb98cce3affc6c0b54e216b8ff57f22b4a8aa81cfde778417
MD5 c94400dfe217f1b5608090deee0929ba
BLAKE2b-256 5e9c3018e755701023789af060ad926bf99f147fa76488ddf1e181735afe93eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.13.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 18.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for faiss_cpu-1.13.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0ccd33708f71607b6859c6d7a5a9e7f0f59f1741ccf6b70597f2276769886768
MD5 9d12cfd5aecaa0d17ec5c9c43bc7463e
BLAKE2b-256 fb5d149a36d662d38f13985f246774556b49eabff6fac3dec1f6e5a4ccfa7ad6

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: faiss_cpu-1.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 18.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for faiss_cpu-1.13.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f15a82e66f43528173debda57dc0111ef563e069b40f3dca8583eafb77ca544d
MD5 ffed515e7d0915194218bb3c10e5aa57
BLAKE2b-256 2d91d486da8b5966b610ce2826bf604285ecb7ca60d6142e19845dc25d43e6db

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp39-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.13.0-cp39-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cffbac3a89da937d6415e2183379360787baf0b783e1d2b155533df2ab3e1d1
MD5 2a04fb1f4cb54018d538ef9a822774b4
BLAKE2b-256 6586a466b64fdd6d5864d5b08cbebb342bfc3ea43903ba38fa40d580823c8e70

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp39-abi3-musllinux_1_2_x86_64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp39-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.13.0-cp39-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb264703092b5f7bd27188edd00ca50d319c9c08f4c743be5df11c6c3bf4bfcb
MD5 eb58a956c4394363f58553976a0c479f
BLAKE2b-256 e8be592e8e1d79e48556b8ef5c2310340831c4057ddf61de2e992a7458b87eb9

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp39-abi3-musllinux_1_2_aarch64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp39-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.13.0-cp39-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 15f7fe4bbfa0ee05fb95947f6eaf520cef451a4dfe2d15a00a8cf34f8ba67840
MD5 4223a0f7eef1cf57fabeaa5a7d874046
BLAKE2b-256 687f8d50370b748052e60bff0df3f283331cce24331ddb2e1bbc4743bc35dcd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp39-abi3-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp39-abi3-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.13.0-cp39-abi3-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fc555157ba69bddfab9142245632b7c0ad7ec20d48b6046ffcef6d9397fd034
MD5 c27e09aef0e7ab3c6a5eb60a1dee329c
BLAKE2b-256 503fd26e6c5d14b2b72db9235ad265315dd8744a2674f3293aba1fc9f73bfed0

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp39-abi3-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp39-abi3-macosx_14_0_x86_64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.13.0-cp39-abi3-macosx_14_0_x86_64.whl
Algorithm Hash digest
SHA256 9603840474749a7fc3e0a7a6d700d16ab99f947b803537449bbcc66c3f90bfce
MD5 2b6ab4651df629bb079b1c17505c9c0c
BLAKE2b-256 eb12f4b6be2689764653b016e4990ec5317bf25ce47385af20e1a8d43dec3540

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp39-abi3-macosx_14_0_x86_64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

File details

Details for the file faiss_cpu-1.13.0-cp39-abi3-macosx_14_0_arm64.whl.

File metadata

File hashes

Hashes for faiss_cpu-1.13.0-cp39-abi3-macosx_14_0_arm64.whl
Algorithm Hash digest
SHA256 5867f6731d45ab596812de1d8f0f5f171103d41fb5642ad9dc8deb30c41a699a
MD5 5fb105127d5734d3cf82e527dae2d99c
BLAKE2b-256 dbd0e7ad47d630d0a0140fb0324238c8761b692c5713e598cf253daa65bfd32e

See more details on using hashes here.

Provenance

The following attestation bundles were made for faiss_cpu-1.13.0-cp39-abi3-macosx_14_0_arm64.whl:

Publisher: build.yml on faiss-wheels/faiss-wheels

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

Release history Release notifications | RSS feed

1.15.0

11 files

1.14.3

11 files

1.14.2

9 files

1.13.2

15 files

1.13.1

15 files

This release

1.13.0 This release

16 files

1.12.0

55 files

1.11.0.post1

38 files

1.11.0

25 files

1.10.0

25 files

1.9.0.post1

25 files

1.9.0

20 files

1.8.0.post1

25 files

1.8.0

25 files

1.7.4

24 files

1.7.3

24 files

1.7.2

23 files

1.7.1.post3

23 files

1.7.1.post2

12 files

1.7.1.post1

12 files

1.7.1

12 files

1.7.0

12 files

1.6.5

11 files

1.6.4.post2

11 files

1.6.4

11 files

1.6.3

12 files

1.6.1

20 files

1.6.0

17 files

1.5.3

16 files

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