graingert / pkgutil-resolve-name

Other
2 stars 4 forks source link

Please update flit depenndency #4

Open kloczek opened 2 years ago

kloczek commented 2 years ago
+ /usr/bin/python3 -sBm build -w --no-isolation
* Getting dependencies for wheel...

ERROR Missing dependencies:
        flit_core >=2,<3
kloczek commented 2 years ago

Looks like below patch fixes the issue

--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,5 +1,5 @@
 [build-system]
-requires = ["flit_core >=2,<3"]
+requires = ["flit_core"]
 build-backend = "flit_core.buildapi"
.
 [tool.flit.metadata]