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 f17569c commit cfbd3e7Copy full SHA for cfbd3e7
.github/workflows/pypy.yml
@@ -40,7 +40,6 @@ jobs:
40
41
- name: Build
42
run: |
43
- python -m pip install --upgrade pip wheel
44
python -m pip wheel -w wheelhouse .
45
46
test:
@@ -87,7 +86,7 @@ jobs:
87
86
88
89
90
- python setup.py develop
+ python -m pip install -e .
91
92
- name: Test
93
.github/workflows/test.yml
@@ -58,12 +58,12 @@ jobs:
58
- name: Build (Rust)
59
if: matrix.arch == 'x64'
60
61
- python setup.py --rust-backend develop
+ python -m pip install --config-setting='--build-option=--rust-backend' -e .
62
63
- name: Build (No Rust)
64
if: matrix.arch != 'x64'
65
66
67
68
- name: Test C Backend
69
0 commit comments