Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
Merge pull request #818 from mozilla-services/fix/669
Browse files Browse the repository at this point in the history
fix: try to avoid build failures on pypy w/ with_gmp=no
  • Loading branch information
pjenvey authored Feb 15, 2017
2 parents feccb86 + ebaeeb3 commit 1fbda03
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ HERE = $(shell pwd)
PTYPE=pypy
ifneq ($(PTYPE), python)
REQS=$(PTYPE)-requirements.txt
# avoids pycrypto build issues w/ pypy + libgmp-dev or libmpir-dev
export with_gmp=no
else
REQS=requirements.txt
endif
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ install_command = pip install --pre {opts} {packages}
[testenv:pypy]
basepython = pypy
deps = -rpypy-test-requirements.txt
# avoids pycrypto build issues w/ pypy + libgmp-dev or libmpir-dev
setenv = with_gmp=no

[testenv:flake8]
commands = flake8 autopush
Expand Down

0 comments on commit 1fbda03

Please sign in to comment.