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 e82d7d8 commit 16a487aCopy full SHA for 16a487a
Makefile
@@ -35,7 +35,11 @@ clean-build: ## Clean project build artifacts.
35
36
install: clean-build ## Install project dependencies.
37
@echo "Installing project in dependencies..."
38
- @pip install -U pip setuptools
+ @pip install -U pip setuptools poetry
39
+ifeq "$(shell uname)" "Darwin"
40
+ @export LDFLAGS="-L/usr/local/opt/openssl/lib"
41
+ @export CPPFLAGS="-I/usr/local/opt/openssl/include"
42
+endif
43
@pip install poetry==1.1.4
44
@poetry install -vvv
45
@poetry update
0 commit comments