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 6106a3b commit 6427dc0Copy full SHA for 6427dc0
1 file changed
Makefile
@@ -1,4 +1,10 @@
1
2
+ifeq ($(shell uname -m),x86_64)
3
+PYPY53 = pypy-5.3-src
4
+else
5
+PYPY53 = pypy-5.3
6
+endif
7
+
8
help:
9
@echo " env install all production dependencies"
10
@echo " dev install all dev and production dependencies (virtualenv is assumed)"
@@ -15,8 +21,8 @@ dev: env
15
21
pip install -Ur requirements.testing.txt
16
22
pyenv install -s 2.7.11
17
23
pyenv install -s 3.5.2
18
- pyenv install -s pypy-5.3
19
- pyenv local 2.7.11 3.5.2 pypy-5.3
24
+ pyenv install -s $(PYPY53)
25
+ pyenv local 2.7.11 3.5.2 $(PYPY53)
20
26
27
info:
28
@python --version
0 commit comments