mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00
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:
parent
2ad7f6afc6
commit
6a83654718
2 changed files with 5 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
nose2
|
||||
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
|
||||
# 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
|
||||
black
|
||||
|
|
|
@ -11,4 +11,7 @@ typing
|
|||
protobuf
|
||||
mypy==0.750
|
||||
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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue