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)

or (for an unconstrained model):

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

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

  • lower bounds for the variables:
model.set_variables_lower_bounds(variables_lower_bounds)
  • upper bounds for the variables:
model.set_variables_upper_bounds(variables_upper_bounds)
  • a lower bound for a given variable:
model.set_variable_lower_bound(variable_index, lower_bound)
  • an upper bound for a given variable:
model.set_variable_upper_bound(variable_index, upper_bound)
  • 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)
  • lower bounds for the constraints:
model.set_constraints_lower_bounds(constraints_lower_bounds)
  • upper bounds for the constraints:
model.set_constraints_upper_bounds(constraints_upper_bounds)
  • a lower bound for a given constraint:
model.set_constraint_lower_bound(constraint_index, lower_bound)
  • an upper bound for a given constraint:
model.set_constraint_upper_bound(constraint_index, upper_bound)
  • 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)

The Uno solver also accepts a callback that is called on trial iterates upon acceptance:

uno_solver.set_notify_acceptable_iterate_callback(notify_acceptable_iterate_callback)

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.7.tar.gz (1.9 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.7-cp314-cp314t-musllinux_1_2_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

unopy-0.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

unopy-0.4.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

unopy-0.4.7-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

unopy-0.4.7-cp314-cp314t-macosx_15_0_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

unopy-0.4.7-cp314-cp314t-macosx_15_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

unopy-0.4.7-cp314-cp314-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.14Windows x86-64

unopy-0.4.7-cp314-cp314-musllinux_1_2_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unopy-0.4.7-cp314-cp314-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

unopy-0.4.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

unopy-0.4.7-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

unopy-0.4.7-cp314-cp314-macosx_15_0_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

unopy-0.4.7-cp314-cp314-macosx_15_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

unopy-0.4.7-cp313-cp313-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.13Windows x86-64

unopy-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unopy-0.4.7-cp313-cp313-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

unopy-0.4.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

unopy-0.4.7-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

unopy-0.4.7-cp313-cp313-macosx_15_0_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

unopy-0.4.7-cp313-cp313-macosx_15_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

unopy-0.4.7-cp312-cp312-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.12Windows x86-64

unopy-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unopy-0.4.7-cp312-cp312-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

unopy-0.4.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

unopy-0.4.7-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

unopy-0.4.7-cp312-cp312-macosx_15_0_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

unopy-0.4.7-cp312-cp312-macosx_15_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

unopy-0.4.7-cp311-cp311-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.11Windows x86-64

unopy-0.4.7-cp311-cp311-musllinux_1_2_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unopy-0.4.7-cp311-cp311-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

unopy-0.4.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

unopy-0.4.7-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

unopy-0.4.7-cp311-cp311-macosx_15_0_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

unopy-0.4.7-cp311-cp311-macosx_15_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

unopy-0.4.7-cp310-cp310-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.10Windows x86-64

unopy-0.4.7-cp310-cp310-musllinux_1_2_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unopy-0.4.7-cp310-cp310-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

unopy-0.4.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

unopy-0.4.7-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

unopy-0.4.7-cp310-cp310-macosx_15_0_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

unopy-0.4.7-cp310-cp310-macosx_15_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

unopy-0.4.7-cp39-cp39-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.9Windows x86-64

unopy-0.4.7-cp39-cp39-musllinux_1_2_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unopy-0.4.7-cp39-cp39-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

unopy-0.4.7-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

unopy-0.4.7-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

unopy-0.4.7-cp39-cp39-macosx_15_0_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.9macOS 15.0+ x86-64

unopy-0.4.7-cp39-cp39-macosx_15_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.9macOS 15.0+ ARM64

unopy-0.4.7-cp38-cp38-win_amd64.whl (7.5 MB view details)

Uploaded CPython 3.8Windows x86-64

unopy-0.4.7-cp38-cp38-musllinux_1_2_x86_64.whl (7.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

unopy-0.4.7-cp38-cp38-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

unopy-0.4.7-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

unopy-0.4.7-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (5.3 MB view details)

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

unopy-0.4.7-cp38-cp38-macosx_15_0_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.8macOS 15.0+ x86-64

unopy-0.4.7-cp38-cp38-macosx_15_0_arm64.whl (5.2 MB view details)

Uploaded CPython 3.8macOS 15.0+ ARM64

File details

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

File metadata

  • Download URL: unopy-0.4.7.tar.gz
  • Upload date:
  • Size: 1.9 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.7.tar.gz
Algorithm Hash digest
SHA256 9697560287a725f2ab485ebeec9e2c4d26f1a8282fca15d15ccc4bfdf7ed97c1
MD5 082dd63acaad44912902e75f0fdfed11
BLAKE2b-256 87506dd01217567b86a64e26bf6330d4417fa9d37098edceed9ff890b9b1d013

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7.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.7-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2fff690ef504d488c6246d6c5633c510365550360c5272479d4e83b988f6a19
MD5 2d7304676a7b294de621afbc44fb3842
BLAKE2b-256 0ec0a94287ed56b050598eb8b6003bcce477d7299bc8ca408fe771c9dfeabe32

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 422729b0c05db31dd87f49d81f66f03cb6e3ae28dc7b43af78b0fe799836d45f
MD5 fb576adeccea3f6d0c25c97e1eab7346
BLAKE2b-256 66d4740475de0512110474adb6a159d25c8b8ffd768b27305591fbd1eaa5291b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b3db154527a625604cae1f0ecf16efad01d1fdf60bc49551e11bc7f9318b023d
MD5 6fb0f0661fe5ba86044f22fffff1b8b1
BLAKE2b-256 e99d14b18673f9f7bc8f0782e92e790abc73c29434e0b6c845147b43c9fffd50

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a39ba9f690eda0f84959a0fdecc53c88d7d7241771a6f16c3fd8bdea93390360
MD5 e426d3949e1bda52ac43177da65a6fde
BLAKE2b-256 c92085cbbd35034111af1fa9953f4ef6dc4c9bcdbf89680b4bfdc5dce17a246b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6c650b209d97a5141b723328117ba2c64c24f5e46abccaf4e4881ae6b0673382
MD5 8c8dd750c744d59d45e9df81a91f2359
BLAKE2b-256 ed0536416d3b0f8b37f8d109dbf6d537956ffa4f5d7619fe9ecbd6cbe79c5d08

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a5510051711d0475c30bc06d6cedebd983e2fd9203a6c15661a797296b55a4b9
MD5 ec5d931236a400ed62d7a184055065fe
BLAKE2b-256 6b87186d2e2ff0978e4ee624ab520716c7b9f9ca597630d0b98c627c07096fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.5 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.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4f10f872d3e980a3adbf60ec7fa04ffc3a82ef98763fa4214bad081c4f41ea87
MD5 87221bd12c9e92e023e748b7b2ad11b6
BLAKE2b-256 9dbf9f6449ce9190fc780a8044612263ab67f423e07fc280a588eddf7d18a323

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc6c477a61f42e399794c5c792e7ed53bef4eab64badb322bf683d0ea4f9da3e
MD5 e59f4d796d29a4b43d7298fffe0b9d08
BLAKE2b-256 75901be8a3b5ddd7cee36761f495b216ecd9d1e5384331d89eda8d18f6066e46

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 69d69041b500aa125c446c3df38a54d28907e0a35a7c1d484a16b29eb319a2d9
MD5 4e1ba663cc55f85b6fa06a8d3290eba5
BLAKE2b-256 83ab050af2eccf84dc4e8cf51a78e5a11a63bc9277bb1b9206db46fc330db1ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4b4a603f21e9a2b3143cb8a38ffa24aa42ee67dd02ba696a1aea8db908d7ea9
MD5 5c25ab42cf12bac8fcb44a2aa83b520c
BLAKE2b-256 26b4637f04cc6932af031417f65a20fa501993953adcaf1812529e47f1609328

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d2f7c988d4ea99bb3a82986d0fe8f1487fac14e7349ccc4d5ea154a7bdca30fa
MD5 6c0c18244b999ff5e6aeb2cac3de0a94
BLAKE2b-256 1a18dce58881852aac1143eb359f5a540a008da47c970d18295c4b84b602f638

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 62d720d0192f3f9d87dcee34fac15f647fd311ae1a72ff3aaed9a9cb996a825b
MD5 e0aad09646f0e7ea90d0a58c0e194007
BLAKE2b-256 2699b69ed4e11be8ace76c67da2ccbc53387354348ea87ae8d40a3aea283a769

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 ecb6e3db103364da3323acc462767d676dc3e0c2e4537bf1f72283353dea9adb
MD5 b0c023029fda14b52fcfc7cf34828b01
BLAKE2b-256 c3b6ef3c4c695dc2caf1364183b221c54520cf054aae391d0ae02332b320170e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.5 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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4244ac7a56f81f3c05a851f31451ef153e35080c633a90b0f22e2e46465a7f8e
MD5 fd39e90d6082883fcf5412a4db5ac5bb
BLAKE2b-256 6fb9d8a4f0ac202b441040443e05d869ecbb1b2da947b47aaec00cd5fb61e94c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ab8733be39529658823ef59b1573969783451967075edd4c9d030294cf47393
MD5 b11590a6999750b7cbcfb67861d87138
BLAKE2b-256 420f185586e13f2a1e1a76297f440092e3ec8cf0370ceac4e133f6f4e833702e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e975e01afb2141750cae38442acd862ff5d3032a49401296db6a6f6d9c3a6c8b
MD5 3fcea95042f714fe6e643ad37b9cfef6
BLAKE2b-256 50751d13c7645ea024d1decf1a4e9f807d0f09cddfc31f89acc299f55d33d752

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2e1b850cf81d70018d6d8d3b80fed6988f57655575c9bb0a3e6090429b286eca
MD5 21fa940755987fcc4b4da2f6fdd03ba5
BLAKE2b-256 77f9b8fdf80feb74a68ce481eb2563585e28711ca34914af87e49e06322f5fcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e6381d900fdd2c00b4ec8b3110be3b2b69b7031e2a8c7a445226f3edcb869012
MD5 1e599bd2a5426d1aaa730b49c7761b35
BLAKE2b-256 3ae8299b6ac4d565ad33190b39e24fbd484412df4ae717b5de96659970f1e7c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 6fc40f01d3fae5d401e403f4a73a5bcc3e5b46f2548a9fe3cee30c07e4bfa962
MD5 b10f78281a868b6431fbca350b89bd50
BLAKE2b-256 40eab8cd8ae55a21df0517f9d6be274e6b07c807d06b65595d1b46bfc16bfae8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e7592b0747b9988d19b35550691cc1d14941e383de6cacf8c70cb2d11b8c6ddb
MD5 a38e3852d4ac48e4c2c7403a40a26346
BLAKE2b-256 b84ab4add6c10ed7b7d79d83b6ac02de2fe21f0ada5152cb611202973eda0011

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.7-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.5 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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 856168610a658b4e8d57086802966f566d63aaa315eefb2773eef61b1da283c8
MD5 9540bf8cec90fb1af5db3e18804447f9
BLAKE2b-256 3dad3ac0021cb5156ce9291aeb7088bf1e556e5cd8e4e3f15b72d129c1323919

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6429505555d34bb3ca7d6b91b6f6a9f77e4431ff309cdac9715fd251f61787eb
MD5 415e2fc5d7169899e4d5cb17b6e51d4a
BLAKE2b-256 97fb2a033805903ad3b13ed712c746070c7f5c4ec2a85c692e6104fef69385d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbf080143e56a35926d97d5a181d5e99ee76724e06f4240b7a98baed42047510
MD5 413689b8a8cf9305ced1f160858460d0
BLAKE2b-256 366ecc20ebcd609ddee3066e64f8b5ee80cfdf54af7a043cafc935679f9fd982

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8e0a62293a6c48579c01d7d9bb0ff2af86908c7353cae27e6a69598a58a47d25
MD5 92fb6de88abed81317049cec8811ed64
BLAKE2b-256 a21c846a6cc45eafe514dd7db367546bcc57de4fc5174e6ffcb04b17890f034a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 683f3e5865eafa764d00e9aff6127e3315f47335e5143b3061bec992b4b27062
MD5 292f96b6924465fbf542d53e47bf2c08
BLAKE2b-256 96739418497273ed90bd564892c61c46f2418213898cc7097f84ff5af0a3da5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8499586ffcb609ae834e2c603c133df9e6eea9b4f25435cff10c1b15b0ec79bf
MD5 eba310f3235719c818a1748f2c9c513d
BLAKE2b-256 094fff9b7c00a147c4d455ab5f7cf7fae2188918ddf987da10c3b1ed2bda9bd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 e203b2252d2d56ef58e4ca08ff5575661343569aae0b0686ae5aa72340aadc74
MD5 3baf526016749cfc869e374108adcea2
BLAKE2b-256 38209460b5fee7d4c8c4081ea352bff0184e0005acccb461bad7458e610101f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 7.5 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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5a7b263434b25c0ad03ccb53d4ef7f399d2d0d10ab7325eb046d2c429fdb4276
MD5 61b45c9f01966e65a343211301fc0b9c
BLAKE2b-256 864979c22ff06b2490b69629d46383f9a2bf0c470907bbbc47f525e362dd9e1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8eece2fd723e11891a886aae168345055d5ca3d639b09744ef938678531f2cbb
MD5 31e2219206cd9895dad5a04cdae5c2c1
BLAKE2b-256 344afdd2f259ddb0958b9bdc4cdaa29509c42693ff7afa38e312cafc68b136cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c1f08654b95101283cc9020941995d45418acb5468cd6e4f39c5938dec78065
MD5 036143523df78db0fce02eac518e43aa
BLAKE2b-256 65a29bb0bc7b6161acb6cce54b7e27d469d0e699aa41469bb503c5c1012a419f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cf614944f6f4d4db25d8af68d43204b82df22c0650508ab575cad951438c1fa4
MD5 b6ad206beb85fe5b7b565df0aedb4496
BLAKE2b-256 d57c3fc1a68c8cc6a567bf44e19c0c9c8d2faf49cb256769ad24f2a5abf9315f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e7d306358ba08d59d1675ca027b2fde58a09fcfaa9061ee731dd7a96429b1d92
MD5 f40b17df6b37dc232cf2ab1fadd0997f
BLAKE2b-256 b52c0dc56de13d591640f0f282a1a5b9c27309dd465c2300e45cd19563fa863c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f3af9fe2b99c6d5292bdc4e08671cead561c499b93d32de39fd5c0b5af90315e
MD5 fa510c8271479411b64eda03d4857ed2
BLAKE2b-256 360e26328e2548c136d72702314e4ef27d6483ca79547f366b476ac91fdf9a25

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1e691096c195fe832a1d63e17ac0aa93b7c486640f09d3a126e627fbf16c2b54
MD5 566d8f0e912d48505f3f3842955cd4e3
BLAKE2b-256 9bb4f1f65406f7ebc224a0fe23a29a3472ae06863c294b8a907cf18658140ae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 7.5 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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8d49b4daabff7758db74bc282b48cc46e2dec9f54bb84b86929100944d3965ac
MD5 dbf0e7374ffddb22b03f54f6b1ad29ea
BLAKE2b-256 cf17195a449d96b57c114aca57c0631904aeb00ec5e5e333d05dea197a0ca17e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2923f9c4f6d5a40fcaf2042fcd2ea5ca69a0cc4bb5791c2bfbd79d0fd3e8c769
MD5 f16712c54cedfc54b31df91d2ec5954d
BLAKE2b-256 915b47f7cc060e08fe18e6a3e41c68d7f114c17b44d9d47cb3e5429f9ee02f2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 415c95ea72a79aedc331e1e01df9445b2835f09dcd41f77d4de7147177a6e48d
MD5 aca92000f431ecda41a6e3ecc91ee2b1
BLAKE2b-256 3b8d09195f2025af625b0f9f74dabed9173653fe1be2b7b8f31b780909cabd33

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 50423c15a614bd284257c70018f8d0daa6aef317e5eb63cddf494ebeeef9f2b5
MD5 704cfe8d0a30b09079551351c52f5870
BLAKE2b-256 d338942cddf62e26091dc1603b984d759cc2a98ef998b89a74640b2e16800507

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d6ca173413941d4438af44e922aecb837f0b4c62be9ccfa78ed8820be8b7514e
MD5 587ce48a063b6332107080a08cd71d5c
BLAKE2b-256 dabe8a49ba821bbbe9db2b25be3ff8a7051135eab4c582db191ae7128e4fc2e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 eba70babc475aac50ea3b895024b868e62cbcce96e3c07d07a825484858e97a8
MD5 83d9784c2811a6189986fb55cebaba81
BLAKE2b-256 73876fd9847ff18d5353a2d929b8c7ee2372aba9192f41135f90bad52df8d6ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 80624d978537537831836f1f0576c9917b8919681067cc25728e8b4090f7ec5e
MD5 a17bb47ec46544129cc3066398fa830c
BLAKE2b-256 7038f983da830bc4bd6361c35567776834a32e8747503bf7976192594667fd49

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 7.5 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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b635ab0cc2e5fa3c14b830bd8967f104162d40ebe690cf6c0ec1d3531d1263ad
MD5 2d4896fa8d0098c0feb8bcf9ea4bd9e0
BLAKE2b-256 4b49819356c5c507d21b277237e59b32a0b7a6d5f8894d5077989ee768f65c39

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 164be0911cb9c4c90a77205e2f7bafcd33f62774c4f3e147377308194c5f6b7d
MD5 221e7979639ff6fd29869875e123f61d
BLAKE2b-256 ab882e3a7e839dde3440b22b33c39e8cdb334ce3a8ab4f352ce8a7381ef59301

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a29181d9216a65ddb97ce7db0986b6797310066959c75aaad9698b547822d9b
MD5 90ff1cfc50f7c90a139f8fb85aa1d99a
BLAKE2b-256 eaa518c840003a96f443165293d91562e94361fb6f98f402657e1dba85d8afcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 be469c7760ae9e5bfcb85d9b1b1b185ddf09b8de554baf34cc238936d9d93118
MD5 c56c9a7e2c838643b38cbb8e53a1843a
BLAKE2b-256 2e44c3820d5f7f4405ec5731389f6a1346cb4755a00a82f2577f84efbaeb66c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d53cf12205897bb79c6e6cee5a94512eb693dae306a8522acf9c96859647f32
MD5 8da8345d7fa032fc93cca49329de8a58
BLAKE2b-256 fe50705c2fd3b2b8a080669340008393a7754a35f865c32d83bf763150df74cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp39-cp39-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp39-cp39-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 73006cef890df42d2b09de5d8746b4258e496ea0853bb6366debb6316381f091
MD5 0abac51c4a6c4cbb51561706cc11845b
BLAKE2b-256 c433e9dce39be1bb89706fa4e28b9e842032f324c1ebbc08d558f3aab35588fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp39-cp39-macosx_15_0_arm64.whl.

File metadata

  • Download URL: unopy-0.4.7-cp39-cp39-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 5.2 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.7-cp39-cp39-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1c902fbf80e465c7c7d0586255c936ed064ee8265fcbbe3afa93ff13701c6699
MD5 2054aa1cffd68191671dfe107ee2347d
BLAKE2b-256 6f1b1aade0d7b3799b91ec775c077e4541dc7dbfad98846621119c631a1c7631

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: unopy-0.4.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 7.5 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.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f19751a0c0815745f70b911f551a4995d5a8b340da57c3b03913926f1afd7f7e
MD5 2f33bb3fc11518c2faa930c78e29ee78
BLAKE2b-256 7f24eae0335b04145f50f8506d79a998b6a1ec66c1f3cd280b84609be6e45395

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcef63047809afc901736cdcaaae442738e6a611c67376eb9d22dc49e08ca67d
MD5 0b867fe922ca8576045b2da848a905fb
BLAKE2b-256 ac487c8963694a4226543be0b9a16e1b1982fbe4ec75012b6d652bdc64d455a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9c38ae22de7464970cc49d3490c1b6483a2d24fd65072608300d94dda5822cc0
MD5 9233cabfbca445eb50a3adeee1462396
BLAKE2b-256 65958a8bc59aadf972f09893244df87befa8cba87812828ad0ee2065bb8ca7fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d37ff4413d7935553ce0f804528f5f3114dc68dde757f22ed0efe71631d283c4
MD5 6af01e9c9cf5f0733331f601f21d254c
BLAKE2b-256 317305d1261a9e4098b8586acb6ba7c02f32f1f546c725beffd8627221956807

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp38-cp38-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d9d3592a22e00c329db16058df1d8acc69d0925a7ee3cdbc4aeb49b741b83bf
MD5 438a63a29418395ecd3bfc9a760fa3bd
BLAKE2b-256 61178e29983e1f53a946c8e3df469abf8b44ef605c1ab41036e57517cd327ed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp38-cp38-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for unopy-0.4.7-cp38-cp38-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 57709eb2955fda494b3bdbe8c3ce711239484f3e0439c3c7ad17ea48dc2674f1
MD5 562879136759ae20c7feb8ab351428c6
BLAKE2b-256 69d8daccb9f5d39cf73cf4e9071e20cb25d90a585b441c44c8611829bd86761c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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.7-cp38-cp38-macosx_15_0_arm64.whl.

File metadata

  • Download URL: unopy-0.4.7-cp38-cp38-macosx_15_0_arm64.whl
  • Upload date:
  • Size: 5.2 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.7-cp38-cp38-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 42a21390e7ca603a1dbaa206da30ea85665cc7d034c74150e0f788dbb9ca0c3e
MD5 3624e64c8b290a4ee3893d47a37f149e
BLAKE2b-256 40105ddbd8ebef6c67c307350f37778f3c1dd31cf15d99e5bb62528443677527

See more details on using hashes here.

Provenance

The following attestation bundles were made for unopy-0.4.7-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