11 lines
560 B
Plaintext
11 lines
560 B
Plaintext
# We use `scipy` in our project, which relies on `numpy`. `pip` apparently
|
|
# installs packages in a two-step process, where it will first try to build
|
|
# all packages, and then try to install all packages. As a result, if we simply
|
|
# added these packages to the top of `requirements.txt`, `pip` would try to
|
|
# build `scipy` before `numpy` has been installed, and it would fail. By
|
|
# separating this out into a `pre-requirements.txt` file, we can make sure
|
|
# that `numpy` is built *and* installed before we try to build `scipy`.
|
|
|
|
numpy==1.6.2
|
|
distribute>=0.6.28
|