Skip to content

Commit 409a61d

Browse files
committed
Return --no-use-pep517
1 parent f2e816c commit 409a61d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
pip install -r requirements-dev.txt
6969
- name: Build hivemind
7070
run: |
71-
HIVEMIND_BUILDGO=1 pip install .
71+
HIVEMIND_BUILDGO=1 pip install . --no-use-pep517
7272
- name: Test
7373
run: |
7474
cd tests

modal_ci.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@ def setup_environment(*, build_p2pd=False):
7575

7676
if build_p2pd:
7777
environment["HIVEMIND_BUILDGO"] = "1"
78-
install_cmd = ["pip", "install", "--no-cache-dir", "."]
78+
install_cmd = ["pip", "install", "--no-cache-dir", ".", "--no-use-pep517"]
7979
else:
80-
install_cmd = ["pip", "install", "-e", "."]
80+
install_cmd = ["pip", "install", "-e", ".", "--no-use-pep517"]
8181

8282
subprocess.run(install_cmd, check=True, env=environment)
8383

0 commit comments

Comments
 (0)