fix 32 bit Linux builds

if you're reusing a venv, run 'make clean' and 'pip uninstall maturin'
before building again.
This commit is contained in:
Damien Elmes 2019-12-27 08:42:48 +10:00
parent 2ad7f6afc6
commit 6a83654718
2 changed files with 5 additions and 2 deletions

View file

@ -1,7 +1,7 @@
nose2 nose2
mock mock
# fixme: when isort 5.0 is released, switch to pypy # fixme: when isort 5.0 is released, switch to pypi
git+https://github.com/dae/isort#egg=isort git+https://github.com/dae/isort#egg=isort
# fixme: when pylint supports isort 5.0, switch to pypy # fixme: when pylint supports isort 5.0, switch to pypi
git+https://github.com/dae/pylint#egg=pylint git+https://github.com/dae/pylint#egg=pylint
black black

View file

@ -11,4 +11,7 @@ typing
protobuf protobuf
mypy==0.750 mypy==0.750
mypy_protobuf mypy_protobuf
# fixme: when maturin fixes 32 bit support, switch back to pypi
git+https://github.com/dae/maturin#egg=maturin; sys_platform == "linux" and platform_machine != "x86_64"
maturin; sys_platform != "linux" or platform_machine == "x86_64"