Skip to content

Commit

Permalink
Update build.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jannikmi committed Aug 15, 2022
1 parent 3e17ef9 commit ae4843c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
try:
import setuptools
except ImportError:
subprocess.run(["pip", "install", "setuptools"])
subprocess.run(["poetry", "run", "pip", "install", "setuptools"])

try:
import cffi
except ImportError:
subprocess.run(["pip", "install", "cffi"])
subprocess.run(["poetry", "run", "pip", "install", "cffi"])

import setuptools
from cffi import FFI
Expand Down

0 comments on commit ae4843c

Please sign in to comment.