Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 24 lines 713 B view raw
1commit 72b0ab672d1080049431eeee07ae6d2556ae9e4a 2Author: sternenseemann <sternenseemann@systemli.org> 3Date: Tue Oct 5 18:17:20 2021 +0200 4 5 Don't use pypi distributions of build tools 6 7 We want to use regular cmake and ninja and not the pypi projects which 8 somehow wrap and vendor a version of the proper tool. 9 10diff --git a/setup.py b/setup.py 11index 50deb781..81417971 100644 12--- a/setup.py 13+++ b/setup.py 14@@ -196,9 +196,7 @@ def main(): 15 setup_requires=[ 16 'wheel', 17 'setuptools_scm', 18- 'scikit-build', 19- 'cmake', 20- 'ninja' 21+ 'scikit-build' 22 ], 23 tests_require=[ 24 'pytest',