We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 130be8a commit d3817c3Copy full SHA for d3817c3
pyroscope_ffi/python/Makefile
@@ -10,6 +10,11 @@ clean:
10
build: clean
11
python -m build --wheel
12
13
+
14
+.PHONY: bdist_wheel
15
+bdist_wheel: clean
16
+ python setup.py bdist_wheel
17
18
.PHONY: install
19
install: build
20
pip install --force-reinstall dist/*.whl
pyroscope_ffi/python/manylinux.sh
@@ -19,6 +19,7 @@ make install
cd ..
21
# Build wheels
22
+# todo this one is deprecated, use "build" package
23
/opt/python/cp37-cp37m/bin/python setup.py bdist_wheel
24
25
# Audit wheels
pyroscope_ffi/python/setup.py
@@ -37,4 +37,5 @@ def find_dylib():
37
setup(
38
platforms="any",
39
milksnake_tasks=[build_native],
40
+ setup_requires=["pyromilksnakex==0.1.8"],
41
)
0 commit comments