Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ requires = [
"maturin>=1.9.4,<2",

# Must be kept in sync with `project.dependencies`
"cffi>=1.14; platform_python_implementation != 'PyPy' and python_version < '3.14'",
"cffi>=2.0.0; platform_python_implementation != 'PyPy' and python_version >= '3.14'",
"cffi>=1.14; platform_python_implementation != 'PyPy' and python_version == '3.8'",
"cffi>=2.0.0; platform_python_implementation != 'PyPy' and python_version > '3.9'",
# Used by cffi (which import distutils, and in Python 3.12, distutils has
# been removed from the stdlib, but installing setuptools puts it back) as
# well as our build.rs for the rust/cffi bridge.
Expand Down Expand Up @@ -51,8 +51,8 @@ classifiers = [
requires-python = ">=3.8,!=3.9.0,!=3.9.1"
dependencies = [
# Must be kept in sync with `build-system.requires`
"cffi>=1.14; platform_python_implementation != 'PyPy' and python_version < '3.14'",
"cffi>=2.0.0; platform_python_implementation != 'PyPy' and python_version >= '3.14'",
"cffi>=1.14; platform_python_implementation != 'PyPy' and python_version == '3.8'",
"cffi>=2.0.0; platform_python_implementation != 'PyPy' and python_version > '3.9'",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should be >=, right?

# Must be kept in sync with ./.github/requirements/build-requirements.{in,txt}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these files need to be updated for this

"typing-extensions>=4.13.2; python_version < '3.11'",
]
Expand Down
Loading