Stefan Sullivan
Stefan Sullivan
so... I'm not sure about the original intention behind this ticket, but to me the most obvious reason to allow pyproject.toml has nothing to do with the superiority of toml...
Looks like the pyproject.toml is missing from the .tar.gz on pypi. I guess the solution might be to add it to the manifest file. https://github.com/jazzband/pip-tools/issues/1296#issuecomment-754400079
Oh, I see now. It looks like the pyproject.toml was added since the last release. The whole purpose of PEP 517 was to address this situation with build-time requirements. My...
It's fixed in master by https://github.com/CPJKU/madmom/commit/3b60128d626e37a0b0ebb8d2df4e3567eafe2393, but it hasn't been released on pypi yet.
FYI there's a relationship between `build-system.requires` and `setup_requires` that's a little less than obvious. For PEP517 builds I noticed that I needed to _already_ have my dependencies installed by declaring...
Oh thanks for the feedback. Those are some good pointers I didn't know. I have never seen setup_requires install any dependencies. It's a catch-22 that's solved by pep517. You can't...
This looks great. 👍 Can I contribute to its implementation? Some introductory info on where to dive into code would be great 😁
Came here to see a solution. Looks like they've added documentation based on @luggie's solution https://plotly.com/python/shapes/#circles-positioned-relative-to-the-axis-data
I can't imagine any use case where somebody wants an absolute scale, but not absolute in both axes. What I would use is a fixed radius, which means, r =...
I'm getting this same "CBLAS library not found" error when trying to build in a conda environment. I've tried setting `-DCMAKE_PREFIX_PATH=$CONDA_PREFIX` and cmake still won't find libcblas. Has anybody successfully...