-
This is probably not an issue with I've been using I have the following [project]
name = "XXX"
dynamic = ['version']
dependencies = [
"typing-extensions",
"pydantic",
]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.maturin]
python-source = "src"
module-name = "XXX.XXX" and my pipelines are now failing with:
Any ideas? Manually adding |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
maturin declares |
Beta Was this translation helpful? Give feedback.
Seems like an issue with
tox
, at least upgrading from4.11.3
to4.24.1
makes it work again.