Replies: 6 comments
-
Hi @kloczek, sorry about that. I didn't intend to use whey as the build backend for any of its dependencies but must have forgotten that at some point. I have updated the dependencies to use a different build backend so there shouldn't be any issues building whey from source now. Let me know if you're still having issues. |
Beta Was this translation helpful? Give feedback.
-
As nothing has changed in code of any of those modules which I've listed still I cannot boostrap If you know how to build some exact modules without |
Beta Was this translation helpful? Give feedback.
-
I'm in the middle of moving all my python packages (+12.4k) from python 3.8 to 3.9 and found another loop in build dependencies. It is possible to build I've stumped on issue with build/install dependencies of BTW I think that modules like |
Beta Was this translation helpful? Give feedback.
-
No advice? 🤔 |
Beta Was this translation helpful? Give feedback.
-
I think that I found kind of solution for how to solve build dependencies loop. [build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "myproject"
version = "0.1.0dev1"
dynamic = ["dependencies"]
[tool.setuptools.dynamic]
dependencies = { file = ["./requirements.txt"] } that would solve issue with build dependencies. Comments? 🤔 |
Beta Was this translation helpful? Give feedback.
-
Other thing is that separating those dependencies in file seems is another layer of slight overkill. |
Beta Was this translation helpful? Give feedback.
-
Hi,
Looks like it is some chicken and egg issue with building from scratch
whey
.It is possiblet obuild
whey
however to install it you needdom-toml
,domdf-python-tools
,consolekit
andshippinglabel
and all those modules needswhey
to build.How can I boostrap
whey
?Beta Was this translation helpful? Give feedback.
All reactions