Skip to content

Commit

Permalink
[CI] Fix: force maturin<1.7.6
Browse files Browse the repository at this point in the history
maturin 1.7.6 adds Metadata-Version: 2.4 which breaks twine upload due
to pinned package pkginfo<1.11

See https://www.maturin.rs/changelog#176 and pypa/twine#1146
  • Loading branch information
grydz committed Nov 29, 2024
1 parent 4440dc5 commit b7eba0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["maturin>=1.0,<2.0"]
requires = ["maturin>=1.0,<1.7.6"]
build-backend = "maturin"

[project]
Expand Down

0 comments on commit b7eba0e

Please sign in to comment.