Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions .github/requirements/build-requirements.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Must be kept sync with build-system.requires at pyproject.toml
setuptools!=74.0.0
cffi>=1.12; 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'
maturin>=1,<2

# Must be kept sync with build-system.requires at vectors/pyproject.toml
Expand Down
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'",
# 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