8000 MAINT: Constrain `pip` and `setuptools` versions (Python 3.2 support) (NumPy 1.9.x Backport) by jakirkham · Pull Request #7080 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

MAINT: Constrain pip and setuptools versions (Python 3.2 support) (NumPy 1.9.x Backport) #7080

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# After changing this file, check it on:
# http://lint.travis-ci.org/
sudo: true
language: python
python:
- 2.6
Expand Down Expand Up @@ -38,8 +39,9 @@ before_install:
- pip install nose
# pip install coverage
- python -V
- pip install --upgrade pip setuptools
- pip install --upgrade "pip<8.0.0" "setuptools<19.0"
- pip install --find-links http://wheels.astropy.org/ --find-links http://wheels2.astropy.org/ --use-wheel Cython
- sudo apt-get update -yq
- sudo apt-get install -qq libatlas-dev libatlas-base-dev gfortran
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the line where it fails.

- popd

Expand Down
0