Skip to main content
Yanked

This release has been yanked by its maintainers, and will be ignored by installers, except when explicitly specified.
Consider using release 3.3.1 instead.
Reason given by maintainers: manylinux x86_64 and Windows wheels crash the interpreter on first solve (missing MKL dispatch kernels), see cvxgrp/scs#423

scs-python

Build Status Documentation PyPI Downloads Conda Downloads

Python interface for SCS 3.0.0 and higher. The full documentation is available here.

Installation

pip install scs

To install from source:

git clone --recursive https://github.com/bodono/scs-python.git
cd scs-python
pip install .

Linear solver backends

SCS supports several linear solver backends. The default is AUTO, which selects the best available solver for the platform:

  • macOS: QDLDL (Apple Accelerate is available via LinearSolver.ACCELERATE)
  • Linux / Windows: MKL Pardiso if available, otherwise QDLDL
# Auto-detect best backend (default)
solver = scs.SCS(data, cone)

# Explicitly select a solver
solver = scs.SCS(data, cone, linear_solver=scs.LinearSolver.QDLDL)

Available values: AUTO, QDLDL, CPU_INDIRECT, MKL, ACCELERATE, CPU_DENSE, GPU_INDIRECT, CUDSS.

The pre-built wheels (pip install scs) include MKL on x86_64 Linux and Windows, and Apple Accelerate on macOS. When installing from source, additional backends can be enabled with build-time flags:

# MKL Pardiso direct solver
pip install . -Csetup-args=-Dlink_mkl=true

# Use 64-bit BLAS/LAPACK integers (ILP64 / BLAS64)
pip install . -Csetup-args=-Duse_blas64=true

# GPU direct solver (cuDSS)
pip install . -Csetup-args=-Dlink_cudss=true -Csetup-args=-Dint32=true

# Dense direct solver (LAPACK)
pip install . -Csetup-args=-Duse_lapack=true

# Spectral cones (logdet, nuclear norm, ell-1, sum-of-largest)
pip install . -Csetup-args=-Duse_spectral_cones=true

Notes:

  • Linux x86_64 wheels are built and tested against threaded MKL, and CI asserts a libiomp5 dependency on the packaged _scs_mkl extension. Windows currently falls back to sequential MKL because Intel's conda pkg-config metadata for the threaded variant is still broken.
  • BLAS64 is a general SCS build mode for ILP64 BLAS/LAPACK libraries, not an MKL-only feature.
  • For the MKL Pardiso backend specifically, BLAS64 must be paired with 64-bit SCS integers (DLONG / int32=false), and SCS now fails early if another library in the process has already fixed MKL to an incompatible LP64/ILP64 interface layer.

Usage

import numpy as np
import scipy.sparse as sp
import scs

m, n = 4, 2
A = sp.random(m, n, density=0.5, format="csc")
b = np.random.randn(m)
c = np.random.randn(n)
P = sp.eye(n, format="csc")

cone = {"l": m}  # non-negative cone
data = {"P": P, "A": A, "b": b, "c": c}

solver = scs.SCS(data, cone, verbose=False)
sol = solver.solve()

print(sol["info"]["status"])  # 'solved'
print(sol["info"]["aa_stats"])  # Anderson acceleration diagnostics
print(sol["x"])               # primal solution

Anderson acceleration tuning

SCS applies Anderson acceleration (AA) on top of ADMM. The defaults work well for most problems, but the following settings can be tuned:

Setting Default Description
acceleration_lookback 10 AA memory size; 0 disables AA.
acceleration_interval 10 Apply AA every N ADMM iterations.
acceleration_type_1 1 1 = type-I AA, 0 = type-II AA.
acceleration_regularization 1e-8 Tikhonov regularization for the AA least-squares solve. Tuned for type-I; type-II typically prefers 1e-12.
acceleration_relaxation 1.0 Relaxation factor in [0, 2]; 1.0 is vanilla AA.
# Type-II AA with tighter regularization
solver = scs.SCS(data, cone,
                 acceleration_type_1=0,
                 acceleration_regularization=1e-12)

See the acceleration docs for the underlying algorithm.

Cone types

The cone dict supports the following keys:

Key Type Description
z int Zero cone
l int Non-negative cone
bu, bl array Box cone bounds
q list[int] Second-order cone lengths
s list[int] PSD cone matrix dimensions
cs list[int] Complex PSD cone matrix dimensions
ep int Primal exponential cone triples
ed int Dual exponential cone triples
p list[float] Power cone parameters

With -Duse_spectral_cones=true:

Key Type Description
d list[int] Log-determinant cone matrix dimensions
nuc_m, nuc_n list[int] Nuclear norm cone row/column dimensions
ell1 list[int] ell-1 norm cone dimensions
sl_n, sl_k list[int] Sum-of-largest-eigenvalues dimensions and k values

See the cone documentation for mathematical definitions and data layout details.

Testing

pip install pytest
pytest test/

Download files

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

Source Distribution

scs-3.3.0.tar.gz (2.2 MB view details)

Uploaded Source

Built Distributions

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

scs-3.3.0-cp315-cp315t-win_amd64.whl (16.2 MB view details)

Uploaded CPython 3.15tWindows x86-64

scs-3.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

scs-3.3.0-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

scs-3.3.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (52.4 MB view details)

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

scs-3.3.0-cp315-cp315t-macosx_11_0_arm64.whl (234.4 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

scs-3.3.0-cp315-cp315-win_amd64.whl (16.2 MB view details)

Uploaded CPython 3.15Windows x86-64

scs-3.3.0-cp315-cp315-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

scs-3.3.0-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

scs-3.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (52.4 MB view details)

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

scs-3.3.0-cp315-cp315-macosx_11_0_arm64.whl (231.7 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

scs-3.3.0-cp314-cp314t-win_amd64.whl (16.2 MB view details)

Uploaded CPython 3.14tWindows x86-64

scs-3.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

scs-3.3.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

scs-3.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (52.4 MB view details)

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

scs-3.3.0-cp314-cp314t-macosx_11_0_arm64.whl (234.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

scs-3.3.0-cp314-cp314-win_amd64.whl (16.2 MB view details)

Uploaded CPython 3.14Windows x86-64

scs-3.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

scs-3.3.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

scs-3.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (52.4 MB view details)

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

scs-3.3.0-cp314-cp314-macosx_11_0_arm64.whl (231.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

scs-3.3.0-cp313-cp313-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.13Windows x86-64

scs-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

scs-3.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

scs-3.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (52.4 MB view details)

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

scs-3.3.0-cp313-cp313-macosx_11_0_arm64.whl (231.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

scs-3.3.0-cp312-cp312-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.12Windows x86-64

scs-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

scs-3.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

scs-3.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (52.4 MB view details)

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

scs-3.3.0-cp312-cp312-macosx_11_0_arm64.whl (232.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

scs-3.3.0-cp311-cp311-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.11Windows x86-64

scs-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

scs-3.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

scs-3.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (52.4 MB view details)

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

scs-3.3.0-cp311-cp311-macosx_11_0_arm64.whl (231.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

scs-3.3.0-cp310-cp310-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.10Windows x86-64

scs-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

scs-3.3.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

scs-3.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (52.4 MB view details)

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

scs-3.3.0-cp310-cp310-macosx_11_0_arm64.whl (231.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

scs-3.3.0-cp39-cp39-win_amd64.whl (15.8 MB view details)

Uploaded CPython 3.9Windows x86-64

scs-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

scs-3.3.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

scs-3.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (52.4 MB view details)

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

scs-3.3.0-cp39-cp39-macosx_11_0_arm64.whl (231.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

File details

Details for the file scs-3.3.0.tar.gz.

File metadata

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

File hashes

Hashes for scs-3.3.0.tar.gz
Algorithm Hash digest
SHA256 0e00310171592dc07ea0ba66c1864a99b514223913df0f98d2bfc75c727d3039
MD5 94e8b473570b8471bbec66810aa7cd70
BLAKE2b-256 2ae1bc29708008f650f339f0264e3546733f3b4ad682131cf5b6fb485db9601b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0.tar.gz:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: scs-3.3.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 37febb9eebea1375aaa35f89e60a9ee30f1eb09edac636709e2fcdde04a99999
MD5 e159bf4607486d06c9094292be08e673
BLAKE2b-256 a75e92cbd386afeb955eccd7c25e29fe03447ffd5b315e1233ce7ad1e1389f80

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp315-cp315t-win_amd64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e9a4530439f895ca343de37ff61ccaedee7686e542708d6d9725db49b9a2bf2f
MD5 8f56c72524b87bb666edce7b30148d7d
BLAKE2b-256 37030bca50e43a3b141886726fdf52a378aa5422e6ddf37e02366691361013d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9730cce41320a28e240576cc566c224c17fe805a7dfde796672d91b78a8fac31
MD5 541537a749a2feefd33bb351602121bf
BLAKE2b-256 680f6e6a12714483d9dcd4dd514ebbc44956bfdc5031c676e5a221da01050792

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp315-cp315t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 924b1eea0a63e7df258054d7b80217f5750303aab6df5d931b414a5fcda0879e
MD5 da5be254c8b9a04860f5230624e14a43
BLAKE2b-256 d9a84c37553984399f71c35b3d6b2210a9ed7e5d91b5e18ce008563883f31cf2

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: scs-3.3.0-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 234.4 kB
  • Tags: CPython 3.15t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1806dbfd65d186a334c56ed1c395bb4ef6b1a92f0ec5b5dcbe98a2883b272744
MD5 ef8450ee0dd5b794822b1c7fc542c1b8
BLAKE2b-256 c3435c1f6553c249075486fc33c5726d8a02f35dae34eb0819f70bb514f32e00

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: scs-3.3.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 10caf745e84c71aa39057dc4e9e1972d0b2baa160a8849318f3103e812a58e8a
MD5 bda46eed105f246a3f2739d269a85609
BLAKE2b-256 7df6f58df50af92f5656dac193bb29de981d7fe96feb97605a8b9bd614645534

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp315-cp315-win_amd64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: scs-3.3.0-cp315-cp315-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.15, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47d8460f10c002dda0b8c7443624d8747b12871cf95079eaa6f5e30516a032df
MD5 11e079381b9f42de92da8ebceb4734f4
BLAKE2b-256 34ad1e53cf52d5dfbbb9e757800e412e7a78552b487d8b70dcc081798b4247cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 74801981af96c9789bfa9698a18861844ebc8a377476f3b96a61eb2e95d4eed7
MD5 78b3cd0277ee93dd3341aef588b0a067
BLAKE2b-256 33db43cf223eaa5a401fc13afb96349677494071ffd2ba829dac173ba7dd81ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp315-cp315-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ea4119a22f362479e2557051fb6a69db7dcfb4cf8d9e804171a86141378c06c6
MD5 6e4888ae84647715a7f6b5d9ded8ccff
BLAKE2b-256 5e0fb4cea31406c2aeda001354767f809cb38df24eb800d53e4d162115fe5903

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: scs-3.3.0-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 231.7 kB
  • Tags: CPython 3.15, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 429fa709a5dd40d6d1ac37904a6bb8aefbefc4972a7941c0aab20e16d190f585
MD5 d21cdaddc9dd7cb9025757fc00b55e9c
BLAKE2b-256 ee72630627d41580410289fa699285c609a188ad914956fce4ee29e28b0e3a47

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: scs-3.3.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 37ba6ca26803fd663585839fe9b44c57f9d4f4ad62f43a5303a46e80bb1908bb
MD5 641c37a3399b1177c40789f49985c4d9
BLAKE2b-256 8a8e8e9ec31ddca11cbf3fe68e26e8fc19e9f501903b26c08a0133059e414f0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp314-cp314t-win_amd64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94a63a5a3c176295023c8fcc9e00592bcc8ceb48aefe5e6b26110dfdba4faf87
MD5 0190680c333f8199b8df1592358f264b
BLAKE2b-256 060b5496c456d7d346d318e5d144a4268925805fdc5195c3fc67e44cf2c026f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a12096420cceaf3758610fcc0aa8fa4b8480e079b21544c07a99531ca6e5b46d
MD5 29cb5a8026cec80c3307f45c42b9a940
BLAKE2b-256 cd423372d087eb90df00160cb1a8312e540f17fc666e4cc06c3a4aea983cbd53

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 990b40319d743416f3b6b4ce812808b4ea97e4fa067191c0d4cad3e38e8f36a5
MD5 e86ea0e0c59de3b9439b456f7f4b1ba5
BLAKE2b-256 5e9d8b2f7036b44b6e9f114da9d45995bdc61ace3f4eee044ce336b897255f22

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: scs-3.3.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 234.5 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5d78f8a9267df83089f354f339dfdb799d9bf0101d9d8e1ad5bee60596476ca
MD5 d07eaebb9eb120dade15c2bd4c63cc2f
BLAKE2b-256 78d06d21380f7bd0e2f3e56949880aebf1e321a4e493e770d8eca7d5b164e9cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: scs-3.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ed96bd548caf5751e1d2cecc13f46f5f705ee9f6a006845c0e71dccfa8e37a82
MD5 4932d2a8a991b8301fadd952b4f592e9
BLAKE2b-256 58fd559fc94249c97ca1548c75db274ca67680a096b9e15789a6ff180bf65b80

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp314-cp314-win_amd64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: scs-3.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab0de364c3c910cdf7157462c135a30c75240f77164d27fb357f0b84123e53c3
MD5 81abdfb4c2d48e4fade7922e273e8540
BLAKE2b-256 eb3e0d5b5c503808efe709197e498bb9cc4ec7d2c5e096df83d184397d03f9ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e988d29e4df9cc785ed05c17af99b53e6e17cea47a40e890487da0bf2a6edcc
MD5 7940311ad5781639a9d0c098a605ca10
BLAKE2b-256 0e16db864fb337e1f4ac3933410e9e458417e8ea70f0f2e64cf06048a732accf

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6ea7cc07c4f0e4d42b607a934485292c4a9e233caeaf5b9520edb9301327d958
MD5 5a064246409cbe7a48df6adbb0315560
BLAKE2b-256 deb78a5a3548ff3da4c545071b5409fb515278da351e9b16b1ce3a1299020294

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: scs-3.3.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 231.7 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9e29a13b1e5d46f82029f9680c05237f49b88a45b1c9ae56c6e039b5dc72427
MD5 9c6b1e44c3283d9e38e13daba79d0f77
BLAKE2b-256 2689bf5d32bee45271570d18d138633e3a22b234da06d9cd5933295b3a86a849

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: scs-3.3.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6231b89575ff8de69ebc97c53a9dbc22ab34db9d5a245db9bfecc19dcf24fa66
MD5 f8181cef1f09a6acc8e5de4fb33b7923
BLAKE2b-256 3d6be897b86fdd16de171f34b53a93290bdc8c1fd4a0ea49f2f2ade60a54c937

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: scs-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0d45f37ff0ab648378fc7b20bf036be4fe7f9f9e39ded7e9eb99e61c5f5703a
MD5 13d03a4260d5340f0f902a12c8736d29
BLAKE2b-256 cd6e3953181dbc5514885cce02a8ad0cbf932b3d7576936371a0990faf0f586f

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 074d53e1b4d6bfd33119684f8d807f9bdc6bb2c172a65b0af064f5ba0b2ebbab
MD5 e412bcdd777d62d65c0c9b0a9e9bbcea
BLAKE2b-256 f6c2b95d05979f101fabd04b18cda7b30e5d4fa73b7a19b436520a9b5f3ce846

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eeb0fbdd767680e26c9f63eb87f3826e6377d56fa2b7787e9236aeb7d984f285
MD5 3b7913aea2b40058c20a47c42d7cce13
BLAKE2b-256 2fd04776675494e5e9a22c0c0aed62497cc233d0f48e96048a0d92e2fc469c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: scs-3.3.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 231.7 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bcd5dc8e97c52a92294417dff94b8fd0e70801d63badeab44db438d7592d5de
MD5 8cfb9e5cb99641d87a6ef8b64b0e4789
BLAKE2b-256 5c6762bc472a0fb93a5adab7a50cca532aacb350f38cf962d23d4dc7dd2b0cc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: scs-3.3.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f82b815e72e726d9ac891f39c3de8586c645c967757ad485afc1b051fb28d05c
MD5 2e656948aee0846679520c6a3285428e
BLAKE2b-256 69d0bf0d48f2d40301a600d1fd6afb67f25b89bb6e2d1b7aee9c8e0a2a7eed21

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: scs-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5250ddf1debe185a572b9557606cea0a04cb45a8297e3f1f86d57a7e4bd37c55
MD5 d400d55192281f8d683c2f4503b7eb18
BLAKE2b-256 0640c42e471fc241d8f27ba14fe16cac44847bf75b74de34569bd95151b4efe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3c3c056685befcea3f8b8a0f3e1a80b917fc9e969f14daecf81b7adaccb9c3cc
MD5 f796fed6824a4a98b2bd10a67fd45c7c
BLAKE2b-256 448430d31480e2fea430e62e105357918d2cc8ad7d30fe37399b9a98fc714612

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 45b71a85526d7bda4daa0255a4833a620c7830859fa2ed91ae54dfb70b3b1706
MD5 520a9d70aa0345fde2070ead7feb20a5
BLAKE2b-256 71bafa9e86fbb023513e6deb902ba2077d9359d802718bfa38131ab1e941e61d

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: scs-3.3.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 232.3 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 594501951fbf1e664cd34c0391c0bdd9ec5d8c0a0ef815da31d7f2c8ef8eb8fc
MD5 cd9f1a08ee863df84b81d41f05f6cf41
BLAKE2b-256 339b3ddc190297b3fba1a35887d5c4cb400073b5bed92e430ffc586a03ef3c21

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: scs-3.3.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 edbfe2f5bf9d0cb43cea66e68964d489d1e84d4c7abff9783399f547d05cca1f
MD5 20844780e318c09775d5eb0cde5eda31
BLAKE2b-256 5c375961ff853a34051ba9f6b88fef2f7900092acd523d1be196733b3b734605

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: scs-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15dfca3589c35dfb48a9a0d41f29bee54f92ebd3c5fcec6d29e20f3f821a3348
MD5 f78814b0daf977f3793ba88113174763
BLAKE2b-256 91dc5690e5b5f78d7dfec1721cedc968f23ab4932508865277178e194cec7cc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a24c5d690beb0fb562abc01ef5b2230249bf07268c4af52c04073b49b0b01db6
MD5 3799c8979babcd380a4d4f770a59b2c9
BLAKE2b-256 a5ea9c10f9dd7ec0e7b3d516e1886bff139fa4570af54d5c1295bf9cf30786db

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b342d9afcc6b906a8cd4ef409cea621c2482756cf0dcf6eccca253d661ad782
MD5 13f3b4f68fb663f66594b7ae543f4cd1
BLAKE2b-256 dce3cc4ec5783546777542f8665b9f841cbd55c53bdcf50dccb047813e08838b

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: scs-3.3.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 231.7 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1d8246f778f00145c185893276ab3cebb0d7aa03fe8168f6bcb7bc2dd856c70
MD5 f60f4b7c60713b77c3a770e05f611325
BLAKE2b-256 585b8dad4f5a6fed6ff832f00b66403a3e124cb65d6da1bb31a774f4c8dc23c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: scs-3.3.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 220c2bfc79eceac97c9debf3e4f2ecf9e4ad6eba2aae8641db524fac274733e3
MD5 e3bfe21572a71880396c48ac66a8115a
BLAKE2b-256 44c9d871482bdbeb32b25995b2a2967781dc81f83984f14756d4242b44768823

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: scs-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6412fe7503ca065971531a9e7a8d60ce07b4eb32099fb5c03b02d9eb47e592ed
MD5 938eff59d2b116ec21c8dab3b3d09e4d
BLAKE2b-256 b123943c967c17ef0e9cb0a1850e791fe47a80621cd816a7663d0430bdfa5f12

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa79d55f4d80843278437420c00b558e1f5c0f3639341d7d28ca4867fe68e226
MD5 9ee429076a9752e5fb0c80261c608aa7
BLAKE2b-256 c6d44ca5e9897c1d352203b9fa6ea537ace4ca9c287cda5ee64476546ebb03fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 19dc1e92cc32cc84dabd4930b1be00c3ad7f321efb2fb511a994bf6cb0ad5ebb
MD5 c82c1b998a7deb2615d64f8f2ec606a1
BLAKE2b-256 4cd9d38f7bcb4feb4800064f237b637d7497f7519cdc00685fd92556df897c69

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: scs-3.3.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 231.7 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f160fd6b7d621a131e136d3256a8c15dd76f207eb753b3861479d8d23836036b
MD5 bd57a4bda4e6651d6dbcb09b88761b70
BLAKE2b-256 c5405a52e096b8c1e668f00d8a8957efe0df6eb8ff3af4778151386a82df0bae

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: scs-3.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 15.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6c8b58b4cc22319aa2499c08c02399b5e407da1d045efa8e2d1416339babbf53
MD5 a2b576f35370e8843ad4e59c76b1c9b0
BLAKE2b-256 d4d6b70d8ec903611bda57fec6d0a55f7eaf2a611dd5227a4df33d67bd634ba7

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: scs-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 12.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c96d181451eb342048e951bc49db4102ba4363238ef0a22ade813302c64c2ef9
MD5 e0d9aaf0e699862b65ba41d62c4742ca
BLAKE2b-256 7fb2318b54194e89a2b69405916770441f8a789829222b9eb1f1cf764ce31a84

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a0f55f08f64e0792117319198d1cbed27d8c806d1786b58ebf03a0fb455813e
MD5 eb5b04d1dfd0f5161ac267cb25615424
BLAKE2b-256 4ba7cef6745b027bc71e8f804601f7fbaba393eeb978b458c2b5d612651bd9da

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for scs-3.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e23e1d8e76b8ca57d9faba537438155116c3ed6accaf1ab345559105efb2be8
MD5 52dc9d8c666fd0a004f407e80d15e627
BLAKE2b-256 e5d4349c88cad0a0ecdd30259a2c85f6ca20e68994930b2bd485780eca85bed3

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build.yml on bodono/scs-python

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

File details

Details for the file scs-3.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: scs-3.3.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 231.8 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for scs-3.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2db5ddc1e8fb73bcd08f4c7db728e27836dcdac9bf14967845798204a04c6347
MD5 e137734e425cdf058bb11c1d6049bde1
BLAKE2b-256 cc365326f480e76ec8c141a98780ca79fe3b433d80d8ebae63f4aa728f0ac743

See more details on using hashes here.

Provenance

The following attestation bundles were made for scs-3.3.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build.yml on bodono/scs-python

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

Release history Release notifications | RSS feed

3.3.1

46 files

This release

3.3.0 This release

46 files

3.2.11

36 files

3.2.10

36 files

3.2.9

36 files

3.2.8

43 files

3.2.7.post2

40 files

3.2.7

43 files

3.2.6

23 files

3.2.5

23 files

3.2.4.post3

23 files

3.2.4.post2

23 files

3.2.4.post1

20 files

3.2.4

20 files

3.2.3

16 files

3.2.2

19 files

3.2.0

16 files

3.1.0

16 files

3.0.1

16 files

3.0.0

16 files

2.1.4

1 file

2.1.3

1 file

2.1.2

1 file

2.1.1-2

2 files

2.1.1-1

1 file

2.1.1

2 files

2.1.0

2 files

2.0.2

2 files

2.0.1

2 files

1.2.7

1 file

1.2.6

1 file

1.2.5

1 file

1.2.4

1.2.3

1 file

1.2.2

1 file

1.2.1

1 file

1.2.0

1.1.7

1 file

1.1.4

1 file

1.1.3

1 file

1.1.2

1 file

1.1.1

1 file

1.0.7

1 file

1.0.6

1 file

1.0.5

1 file

1.0.3

1 file

1.0.2

1 file

1.0.1

1 file

1.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