We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e907cd2 commit 5f30823Copy full SHA for 5f30823
1 file changed
conda-recipe/meta.yaml
@@ -22,6 +22,7 @@ build:
22
host:
23
- python
24
- pip
25
+ - setuptools
26
- scikit-build
27
run:
28
@@ -33,12 +34,8 @@ build:
33
34
cmake --build . --parallel ${CPU_COUNT:-1}
35
cmake --install . --prefix $PREFIX
36
cd ..
- python -m pip install . \
37
- --no-deps \
38
- --ignore-installed \
39
- --no-build-isolation \
40
- --no-use-pep517 \
41
- -vv
+ # This bypasses PEP 517 and uses setuptools directly
+ python setup.py install --single-version-externally-managed --record=record.txt
42
43
about:
44
home: <PLACEHOLDER>
0 commit comments