mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
Updates the requirements on [maturin](https://github.com/pyo3/maturin) to permit the latest version. Updates `maturin` to 1.14.1 - [Release notes](https://github.com/pyo3/maturin/releases) - [Changelog](https://github.com/PyO3/maturin/blob/main/Changelog.md) - [Commits](https://github.com/pyo3/maturin/compare/v1.4.0...v1.14.1) --- updated-dependencies: - dependency-name: maturin dependency-version: 1.13.1 dependency-type: direct:development dependency-group: per-dependency ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
24 lines
814 B
TOML
24 lines
814 B
TOML
[build-system]
|
|
requires = ["maturin>=1.14.1,<2.0"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "regorus"
|
|
requires-python = ">=3.8"
|
|
license = { text = "MIT AND Apache-2.0 AND BSD-3-Clause" }
|
|
classifiers = [
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"License :: OSI Approved :: BSD License",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Rust",
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
"Programming Language :: Python :: Implementation :: PyPy",
|
|
]
|
|
dynamic = ["version"]
|
|
|
|
[tool.maturin]
|
|
binding = ["cffi"]
|
|
# See https://github.com/mayeut/pep600_compliance?tab=readme-ov-file#distro-compatibility
|
|
# GLIBC releases: https://www.sourceware.org/glibc/wiki/Glibc%20Timeline
|
|
compatibility = "manylinux_2_34"
|
|
features = ["pyo3/extension-module"] |