Skip to main content

With Uno, finally take full control of your SQP/barrier solver for nonlinearly constrained optimization

Project description

Uno

Uno is a solver for nonlinearly constrained optimization that unifies Lagrange-Newton (essentially SQP and interior-point) methods. It breaks them down into a set of common building blocks (e.g., strategies to compute descent directions and techniques to enforce globalization).

unopy, Uno's Python interface, allows you to solve an optimization model described by callback functions.

Example

An implementation example of the Hock-Schittkowski model hs015 is available in the file example_hs015.py.

Querying the current Uno version

Query the current Uno version with:

unopy.current_uno_version()

Building an optimization model

Building an optimization model is incremental and starts with the information about the variables:

model = unopy.Model(problem_type, number_variables,
   variables_lower_bounds, variables_upper_bounds, base_indexing)

The following optional elements can be added to the model separately:

  • the objective function (and its gradient). It is 0 otherwise;
model.set_objective(optimization_sense, objective_function, objective_gradient)
  • constraint functions (and their Jacobian);
model.set_constraints(number_constraints, constraint_functions,
   constraints_lower_bounds, constraints_upper_bounds, number_jacobian_nonzeros,
   jacobian_row_indices, jacobian_column_indices, jacobian)
  • the Lagrangian Hessian;
model.set_lagrangian_hessian(number_hessian_nonzeros, hessian_triangular_part, 
   hessian_row_indices, hessian_column_indices, lagrangian_hessian)
  • a Jacobian operator (performs Jacobian-vector products);
model.set_jacobian_operator(jacobian_operator)
  • a Jacobian-transposed operator (performs Jacobian-transposed-vector products);
model.set_jacobian_transposed_operator(jacobian_transposed_operator)
  • a Hessian operator (performs Hessian-vector products);
model.set_lagrangian_hessian_operator(lagrangian_hessian_operator)
  • a Lagrangian sign convention (default is unopy.MULTIPLIER_NEGATIVE);
model.set_lagrangian_sign_convention(lagrangian_sign_convention)
  • user data of an arbitrary type;
model.set_user_data(user_data)
  • an initial primal point;
model.set_initial_primal_iterate(initial_primal_iterate)
  • an initial dual point.
model.set_initial_dual_iterate(initial_dual_iterate)

Each of these functions throws an exception upon failure.

Creating an instance of the Uno solver

Create an instance of the Uno solver with a simple function call:

uno_solver = unopy.UnoSolver()

Passing options to the Uno solver

Options can be passed to the Uno solver:

uno_solver.set_option("print_solution", True)

Uno mimics the state-of-the-art solvers filterSQP and IPOPT via presets:

uno_solver.set_preset("filtersqp")
# or
uno_solver.set_preset("ipopt")

Solving the model

The model can then be solved by Uno:

result = uno_solver.optimize(model)

Inspecting the result

To inspect the result of the optimization, read the attributes of the result object:

  • the optimization status (UNO_SUCCESS, UNO_ITERATION_LIMIT, UNO_TIME_LIMIT, UNO_EVALUATION_ERROR, UNO_ALGORITHMIC_ERROR): result.optimization_status
  • the solution status (UNO_NOT_OPTIMAL, UNO_FEASIBLE_KKT_POINT, UNO_FEASIBLE_FJ_POINT, UNO_INFEASIBLE_STATIONARY_POINT, UNO_FEASIBLE_SMALL_STEP, UNO_INFEASIBLE_SMALL_STEP, UNO_UNBOUNDED): result.solution_status
  • the objective value of the solution: result.solution_objective
  • the primal solution: result.primal_solution
  • the dual solution associated with the general constraints: result.constraint_dual_solution
  • the dual solution associated with the lower bounds: result.lower_bound_dual_solution
  • the dual solution associated with the upper bounds: result.upper_bound_dual_solution
  • the primal feasibility residual at the solution: result.solution_primal_feasibility
  • the stationarity residual at the solution: result.solution_stationarity
  • the complementarity residual at the solution: result.solution_complementarity
  • the number of (outer) iterations: result.number_iterations
  • the CPU time (in seconds): result.cpu_time
  • the number of objective evaluations: result.number_objective_evaluations
  • the number of constraint evaluations: result.number_constraint_evaluations
  • the number of objective gradient evaluations: result.number_objective_gradient_evaluations
  • the number of Jacobian evaluations: result.number_jacobian_evaluations
  • the number of Hessian evaluations: result.number_hessian_evaluations
  • the number of subproblems solved: result.number_subproblems_solved

How to cite Uno

We have submitted our paper to the Mathematical Programming Computation journal. The preprint is available on ResearchGate.

Until it is published, you can use the following bibtex entry:

@unpublished{VanaretLeyffer2024,
  author = {Vanaret, Charlie and Leyffer, Sven},
  title = {Implementing a unified solver for nonlinearly constrained optimization},
  year = {2024},
  note = {Submitted to Mathematical Programming Computation}
}

Project details


Download files

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

Source Distribution

unopy-0.4.4.tar.gz (1.8 MB view details)

Uploaded Source

Built Distributions

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

unopy-0.4.4-cp314-cp314t-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

unopy-0.4.4-cp314-cp314t-musllinux_1_2_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

unopy-0.4.4-cp314-cp314t-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

unopy-0.4.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.0 MB view details)

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

unopy-0.4.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

unopy-0.4.4-cp314-cp314t-macosx_15_0_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

unopy-0.4.4-cp314-cp314t-macosx_15_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

unopy-0.4.4-cp314-cp314-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.14Windows x86-64

unopy-0.4.4-cp314-cp314-musllinux_1_2_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unopy-0.4.4-cp314-cp314-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

unopy-0.4.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.0 MB view details)

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

unopy-0.4.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

unopy-0.4.4-cp314-cp314-macosx_15_0_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

unopy-0.4.4-cp314-cp314-macosx_15_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

unopy-0.4.4-cp313-cp313-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.13Windows x86-64

unopy-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unopy-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

unopy-0.4.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.0 MB view details)

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

unopy-0.4.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

unopy-0.4.4-cp313-cp313-macosx_15_0_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

unopy-0.4.4-cp313-cp313-macosx_15_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

unopy-0.4.4-cp312-cp312-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.12Windows x86-64

unopy-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unopy-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

unopy-0.4.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.0 MB view details)

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

unopy-0.4.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

unopy-0.4.4-cp312-cp312-macosx_15_0_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

unopy-0.4.4-cp312-cp312-macosx_15_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

unopy-0.4.4-cp311-cp311-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.11Windows x86-64

unopy-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unopy-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

unopy-0.4.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.0 MB view details)

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

unopy-0.4.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

unopy-0.4.4-cp311-cp311-macosx_15_0_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

unopy-0.4.4-cp311-cp311-macosx_15_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

unopy-0.4.4-cp310-cp310-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.10Windows x86-64

unopy-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unopy-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

unopy-0.4.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.0 MB view details)

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

unopy-0.4.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

unopy-0.4.4-cp310-cp310-macosx_15_0_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

unopy-0.4.4-cp310-cp310-macosx_15_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

unopy-0.4.4-cp39-cp39-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.9Windows x86-64

unopy-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unopy-0.4.4-cp39-cp39-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

unopy-0.4.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.0 MB view details)

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

unopy-0.4.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

unopy-0.4.4-cp39-cp39-macosx_15_0_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

unopy-0.4.4-cp39-cp39-macosx_15_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

unopy-0.4.4-cp38-cp38-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.8Windows x86-64

unopy-0.4.4-cp38-cp38-musllinux_1_2_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

unopy-0.4.4-cp38-cp38-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

unopy-0.4.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.0 MB view details)

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

unopy-0.4.4-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.2 MB view details)

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

unopy-0.4.4-cp38-cp38-macosx_15_0_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

unopy-0.4.4-cp38-cp38-macosx_15_0_arm64.whl (5.1 MB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

Details for the file unopy-0.4.4.tar.gz.

File metadata

  • Download URL: unopy-0.4.4.tar.gz
  • Upload date:
  • Size: 1.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unopy-0.4.4.tar.gz
Algorithm Hash digest
SHA256 934f7692e1d327bf1444bc9e1e642b6482cae3f2dbaa7e66acde572caff3362b
MD5 3edd3c4618289d135814314161899695
BLAKE2b-256 65342bd36be4462d73be12a9034ec4c5af2e1cba4ee7b738cdae5c3f78db2560

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4.tar.gz:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unopy-0.4.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d0b9b8d1ecd83555ff9892f7cf5e87f55caeb0cfaada602bc714b1fdb9858a3d
MD5 053f9519b1634fa5eaf88fcedc84f849
BLAKE2b-256 46b6bb74a931189b73f6b786e39f1b0427af1b4ade12c330814cdda600c76c01

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314t-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2b402c81d1be729695e86fe8baaf48e8c3a29fd014f07fc3cf339a4af4252d7
MD5 0db3205685854c2004f4ebf4a054d6f8
BLAKE2b-256 5576ddcedaa40efb308002bc57f8c79746a71f6606705d03a7ef7447885c31ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9a9d4829c5e3c90d15fb6025393253ff3b1cf2600789c2f2ed3f70358ca1c92
MD5 f18ace03c68d18fc281879e0f98ec2a9
BLAKE2b-256 d7cf2c22fe7c97a44bb01bb742e154c0782f0e74c00c9f13108e5b4ad67fa927

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8ca3e0a8ae69306125d64f6cec09d5daa5a427391318f2c1b995b9fb00b0db6e
MD5 bfe58104bdcb1c3453034268fed0cfbf
BLAKE2b-256 bce4268b0e9dc28d83be839a7f50ea9096c91fcea7efd1ffe12c11d4bd893e02

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6d74f6e1214fed1fb8d6510c43ffaaf4da52f23917b34d56dfad89c0f5c40b5
MD5 777db28bf700216c967257c10f02a4d2
BLAKE2b-256 47041e816d3994a2b89d1250a5680324ff8f7cab3f1d8ae19e2b357999abbda4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 b0021a901acb44d793b02bb9fcd61ddba378465e908121c31c593160cd36dad0
MD5 1d91a7459d49530d4471a5044eb34cf8
BLAKE2b-256 a32297ae6b3fce1dc90956f17845ba2371f235a1708f3ee13c5a49531815a229

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314t-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1c54521913f754ff04bf26ca2c05547861634fdedabb92771237e0f14dcc530b
MD5 58f7a1bbfeee0cb3074ed05aee653def
BLAKE2b-256 28cfc7f23bcedc2b10d7dabd4d976c5f324dcc40660c90ca03f302f50afd6528

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314t-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unopy-0.4.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 34ea4ddd969dc88ba7c9c33902004e901186f6c2ee81f5189f573461360ad64e
MD5 889baaeda3663adb5ab95587dc35667a
BLAKE2b-256 c85643803b8133e13fabec7acea6871ef1994e22b8c7c4d1c938099815bd255b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae095a448a8be9a2649a86eedbebf45e157d21ea1962244017c4be03233f540d
MD5 37d759d54edf3495575c1da959c22990
BLAKE2b-256 51cc9f55cecf8c494367a2ada79a045834b2c450d2d75a888bc2d599b0cfab60

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bbc79fc92d9b94bccf50dec73f0299d71b35eaff8bcbac05e17356f8b3213987
MD5 d10c7f868e25087790cdbca5b63edf16
BLAKE2b-256 b16b413eb14c10524429998f60a068fdbe344df16c91cc996ef0f6c659116938

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 953976f854ae6679ec0eacb71f73f3666c61841c5e04bbf858b4e9469cb46a3a
MD5 1502c1888ba4ad584d48b5132f895eab
BLAKE2b-256 90d16b16035a8bacc99b1a2c7d9a6a08a8165a6d39af595d6e8429ca7483b3f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 07f27ff80404b8d1331f5630ace531b2db1cfd0fa5569a5f4cd96587486e2b19
MD5 ab50021bec80faed21084208f8cc005b
BLAKE2b-256 6b886aa0cf080606591a4b863f485fda19d23ebeca984ca3d3a88345a56206cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 98350249f55e9c3df90509d29cf56bbc5d7d0af773e7efbaadfecfedaf48876b
MD5 bf22e5ba52388ed95404362054a31b58
BLAKE2b-256 d17f5ba9936628a4d86147bc954934122fb9bee0c04df6aa6b82f35e2ab50d01

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7d1ae5c75ccb406d410c7603e4c8edcc64947bed4960557c6f8b54e70ffe038d
MD5 3aced9609491253d18f45107bc0328c1
BLAKE2b-256 da98b3561c261f9c39a564ca6824c7e643168eadd38c16c718eecbae829ae6eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unopy-0.4.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d2c42857c5160101375c6d84c8bb35f4974c4e5ca9e09d18c707e64944ad645
MD5 1189e1e38181dc84020e96a2116645da
BLAKE2b-256 a455ba17a1756ccba67822c8437a03a0e95d2f763287d8d0889805a4bd9dbd93

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp313-cp313-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96708d1992888e051d1f3aec8b566582e558d9b2a34ed6f2ec0ecb7c7b53f8a7
MD5 a131372e61d049904ef404aca72216ae
BLAKE2b-256 1095ea7e4bbd50ffb3e44022e696b4584cdf8478a60eadc7e7155c785d1b09ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 044a46437da791843197610f056fab1291aadad2b143ca494d9c1997c6e34d3c
MD5 9eb9917b84b9d4f58542f105ea241007
BLAKE2b-256 b131f7bbe75178b2917b000b73389390427ee3bbdcb34084538af30a189b50f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa5685059efd297647f8c73d78a31c0f074366de0cf66f61e3ad853d20af5907
MD5 51cfa42589190c7bb910fed62dc9026d
BLAKE2b-256 0f6b39abd0baa7ac3c906caa09f37aed174d7d39ea573bb20b894129c8949762

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2676e9cc4e2fee95b548cddfaf9001a8d340e4c38c6f5bc2a7c30937f5845ebb
MD5 5c5a10ec9fe98da4df39da89c6523c81
BLAKE2b-256 a5177a330a2d7e7aed60dcf39e2579b0907282c7aeed2a1a66c095e9693e78cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6e31cc7caa18d9da34f946e4d6a74b64b29015e57945faf5c57e2df9f95e3c87
MD5 c33710337d5641bcb87f2a12bd364c63
BLAKE2b-256 7f23a1aee531ef6ec7b8390b9fc8a4e123e86a74a680ac37dfab8256709df164

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d91129b32e6d0110a78dd21e78028ffa007d003596a532b2ce86b5eee7ccb821
MD5 3958424d5165e4492ffffdbacb447970
BLAKE2b-256 ed5db09e6339b5c50a778dd8e382128a99b786ac6e32438dfee93f16a50e586a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unopy-0.4.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d7054cc9c06391b062c5028405517625dd904f378ad6a58fe63a90bbc0184716
MD5 85baead6286575c9c2e48cd70a1000bb
BLAKE2b-256 49f4abd9e0ecd741a36e2dbbffee23a0252c8670dd3940a1b8ff8c4d9b0037d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp312-cp312-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 612989c8d5f4bd079e2383a1a71ccaed035f5147577d82c270016d02e2314019
MD5 f8d87dac46c2fe843d38170fde827f33
BLAKE2b-256 5dec1e718645a8546f79b95befb59c8b459aadd391ccd34de0e886367e3dfcd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91eba4c74ede8a0266e262b56289eb848fcbdcdaf328976441da7984768cce23
MD5 6e51bce044852ca62e61330ac983c8e2
BLAKE2b-256 0a5cf475803bdf69baeed54f36283b12f19b5888caa7df7a6f4cfccaca5b45c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 070c956ca95e9cfad2775c66d4b3ad4f9ae614ea3a4784ca4f67de1962523cea
MD5 d48a5e1576adc87a9469ac03ce7099ea
BLAKE2b-256 df82bab6bad01a3aa83aa4000c78c091c3c059326cddc912388733c64a47c10f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3884553e5d3ae19fc0c302e0587dfd1379db22f34aeb6f157ee6ea55978b1dd2
MD5 e84fa9c617e3954055e97117136b7420
BLAKE2b-256 c7fc84eb54231f3f429433629fb281a21b008601f711992ce2ae840a52e15c75

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 29037a3e83a36c8c90faa2989e82685d8d0405b5a71993784936070c89399381
MD5 584c40bc81f0e9021010d464b7668564
BLAKE2b-256 81ffe43a97df93f799c00f4f46e092de2de8149ad87ee0da363f730c69287ae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 92400c33ec944e74905396875d87c798e89ae86f1a501bf0f2ed126d64fa13fe
MD5 511fa359402e4c455470a0d26862e820
BLAKE2b-256 402648ba89520b20690866bf2ce09ab4ff01f428033a2409bb0b1060ac4cb89f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unopy-0.4.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7f4902747e92c310118f2d5d83192392d1f58969f518ecc3567ce7f0a8554ede
MD5 97e4e2bb16db392994a6174c4de780fc
BLAKE2b-256 9d7997d5dad1bacfca92c495d9e6f8038a97248eab37d637af44fd2a520856de

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp311-cp311-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67e5bc32b7ecb59fed1f61e3c95e250bfccc68b9ed59700b22c6971f0cadbab6
MD5 697291496e12bc759a4ef22edeeabc14
BLAKE2b-256 ad0f8ea39db077d7757f382327ff492d13d5b34b72d21894c3e7efb8a3bde0e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 041aec1c123ecb819b81e0b0df034cf344ea059ea8c12fcae5df5a5d916aa318
MD5 8cfca21fa5ecd87803df1354260724af
BLAKE2b-256 746557727ae4db828c1e23d5d90e79c2ba5c8ec02b74b677ba09f9f54371b803

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f00f95df5f366140646e886e788faa8d67e53d4412663d07c3eeb83dfed2d7eb
MD5 49674079d95d82e4062945cecc02894b
BLAKE2b-256 1002216e764943adac985f2f7a8695f7bb20538739dc3531a32ac051aabf6477

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 429459dfa79effed7b18b95789a9249aaca29d80af04b56ea56c1caa5f71f9e2
MD5 822ffd9c1d8657405aefb3f5e5b9e6b9
BLAKE2b-256 9b71ccb40b067f30acdad56beab148cf31c0327b49205c141f30e5f8a724b52a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 402b693978af6d79de1a7341d5d54f4882033d4ce322a365def4080b9dd70265
MD5 1ec29d5fd3091ba5cc1a4b1c3e0bdbf9
BLAKE2b-256 4eb28fe7a8d101c8a25f762bff25cc25ebbc7e98c7c57154ab985d00b2070324

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d2ccdf78c223da649bce49944dd24a5958bee0faab01d389d59f88c034474bc3
MD5 34d714cb7499ad3f5a80a5d73d320559
BLAKE2b-256 6d3a94fbc8563d444f05798b41863905a061d284bbc8eb64bf8fbdb402a0de33

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unopy-0.4.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b0b28f6c6703afd78ca464cdc6587c07731984ecd0856ec19016ac800d7332de
MD5 52091e88f184a7f7319c233f60cae21a
BLAKE2b-256 29fdae8cf15592f7785d7180171994c732da8d660562b4add50e859717970baf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp310-cp310-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5f227310d345890c2306ae48c892740952f00c219d1bbf9b1aa352a7917c166
MD5 3e43d040a7a74585bc00a5cb839ab787
BLAKE2b-256 e3af1c6e280829b71b98777f08acd5428d1e2095f7fd8f3a78c0967d521aabda

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de8190791a58707807e779b1b91b3fb20d2d544816471dea3e406c1071c54cf1
MD5 15f5e0409431dd1d1b7fadf18da1ca2a
BLAKE2b-256 e639620d5da5c2e1663c5c6e9a44ad4bbfa82d46c91a28614abf978bd078e053

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 979c3afdc9320de419b0425b56619918c2a05a19669bcb19a4653bdcd0ff5229
MD5 4ac8daf8370c2e70af8854aa663e89ae
BLAKE2b-256 d205b9c9cb096f7cb3434aac72639b18e6586c64c7bd6bf8616bd6f241e2fca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4250df2f2797e4b19fd2bd4ce05a4f1a3f8eab7dfdc516924374bbc8d9511334
MD5 49f20afcbb230c0d89b0f41ae50f9ce1
BLAKE2b-256 5dc339190e82ae27d1b69224623103736d82d9bb2fb8db7002974144c9fd5dcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 e9569e80379341b2ca49f3205351204c7014d7be607327f2a635ed852b61ff46
MD5 b0d776941c2757e6eb63a3bbcc9437db
BLAKE2b-256 14cda7a91086789540ac6265c811f8ec13114d8690ecee5d194256671c89858f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 401d0264bb456e5d8b0fa57ee6f445c8486ce21fb84978c1164154019881fb70
MD5 3d494776cd0d4bfc9ca9b0ac6f9853fd
BLAKE2b-256 bef27c085f066d4c6ae2da1d83557e4acb3847848be4bfa6689ff25cc7582c60

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unopy-0.4.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c30b3ea1fb53eb68a8c769e76eb685b1e8e2fbd0da2fd6b29f1f90a8ac393b72
MD5 0c324e911b78c1e97c2f6033a74f0a86
BLAKE2b-256 efe367681f76dcd16165ae99598acbfb4744ff62e3f3bbe6ac432d3df8fcad89

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp39-cp39-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1536470c5ae5ea08eaed81458e8f4648758ee34bcf812a4ce3d3be0d2bc3cd46
MD5 5bf9e9f5a8dd36dc5c65979b62627776
BLAKE2b-256 255c435bc9cb4688ecc4928542c9397622865673cf738d5a80ca685a6391f478

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f81f07b4af4b70bb95afe5368f6ff659d84af5ec108a8799571a358174e7d48e
MD5 2a85b6795acde7d4c47c876bb8f484e8
BLAKE2b-256 db3b123d5e6dfbe32d51a8c26802d47b82caa11b8ba110f0fb1acbf0b24c55d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 60211623d1a9174f01efb3087e194eacb85f8dae2733e9c0f5c91e51fb4e3bf3
MD5 62b2cd88aa476c552ff5d9023776573f
BLAKE2b-256 df533028821c387a473eeacd8cd2a3058eca18b7e8951bca80326b90bf190483

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9eb92d1409c9dc1c4986cc33fcae444dd42489a1df7d81f47518af83d75cac15
MD5 3f6a22a2758ae961c77f6cbde054994e
BLAKE2b-256 2b8f0292ce0fca54099dc517e239fece1c6a8140ec9859cf3958dd695993b643

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 a2c5eeed6d45c68ae9c3a0e6ff9670c637b69ad84d8badfa9129d91edba67e83
MD5 cb9caa1e9b09666de232981c9520f5ee
BLAKE2b-256 eddf590754607cc71fc468ca8c622b0e2c388d7d6b27a360494869526a43f927

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp39-cp39-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

  • Download URL: unopy-0.4.4-cp39-cp39-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.9, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unopy-0.4.4-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 163dfc6b1f079d506ba881f25f05302b1085a2c1ec383f9a43ba85319a5d5bd1
MD5 203c5925050e42c7ddf99bf600f0aa02
BLAKE2b-256 1461b6fca103668c1880ebf440f3a632414ba2f006806d30eee318f4c43dc448

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp39-cp39-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 7.3 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unopy-0.4.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 145fd006691c6d9649eafeac036714a207b60426d0cc75a5f27ca566e2296fde
MD5 881483e5a851e4ef2a29c0605bb07cda
BLAKE2b-256 61b4d8abf52d73498228801994c0062b15c831802fd00feff443afbb298d09cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp38-cp38-win_amd64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d4f0cee65f4c1978d611fd079d27b2878ca9df2c6a13c1c8cc6fa77955dab94
MD5 794d6d52237acb3c04be68e8549cb9a1
BLAKE2b-256 a1d1f5087d57af730ee1209f71379d084061da69ee45f13c1952abf5f0538c6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a79f32e1c7e761278d6e367591511a281b9e74a825c64e910dec9a987479ea5d
MD5 672c4eee871109b26889398a1f26906d
BLAKE2b-256 5c5193ec2a10eb614e89477fe70f66914ed1ce3472de5daf0ba30a0e83d1f13a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a9ec6fdb2614ed60b937723c9db6e68d438c001573ec5b38ae057f342e1702b
MD5 7726c28651a241aa30ebec998f2df023
BLAKE2b-256 c785b48b7992e961e23828bba3522e7836501ee9482d0635a52fab779d9120a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9e0eed4a48ae4c8d23f5dba2db287be83b94f4bcf06d2b1a8549ca37aad8fff9
MD5 16b5cb6f9a3ed0dad4841301f2973e60
BLAKE2b-256 75810089117bdec42684a2500e730acdbbf4429ef09aeab91249a604b319d24f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp38-cp38-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.4-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 5efbce7528f087c8019c351ca4c09576ca3cfc3f1b6ddd45976f894adfd0a52c
MD5 0aa009f48ac47e3ea6029272ea00504b
BLAKE2b-256 bc846ffca14bcc1d045db80b0a39fc0e14c5fd9c37a9880fc5aaf02c2d871d9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp38-cp38-macosx_15_0_x86_64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

File details

Details for the file unopy-0.4.4-cp38-cp38-macosx_15_0_arm64.whl.

File metadata

  • Download URL: unopy-0.4.4-cp38-cp38-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 5.1 MB
  • Tags: CPython 3.8, macOS 15.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unopy-0.4.4-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f94d5638a65da159ab243f73378518eec58583be9f17b402b3dd7d87bfc5df25
MD5 b212fe792ea0d7806ed5e32a0bed4499
BLAKE2b-256 4961738660a3009ba044fdaa54ca87f843fd40f6c9e472a3e4d9b5a0091f9435

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.4-cp38-cp38-macosx_15_0_arm64.whl:

Publisher: build-python-wheels.yml on cvanaret/Uno

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

Supported by

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