We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 99910a3 + 20b0f4e commit 4dd4e22Copy full SHA for 4dd4e22
ci/install.sh
@@ -28,12 +28,6 @@ function edit_init()
28
29
edit_init
30
31
-# Install Dependencies
32
-# as of pip 1.4rc2, wheel files are still being broken regularly, this is a
33
-# known good commit. should revert to pypi when a final release is out
34
-pip_commit=42102e9deaea99db08b681d06906c2945f6f95e2
35
-pip install -I git+https://github.com/pypa/pip@$pip_commit#egg=pip
36
-
37
python_major_version="${TRAVIS_PYTHON_VERSION:0:1}"
38
[ "$python_major_version" == "2" ] && python_major_version=""
39
@@ -96,6 +90,8 @@ fi
96
90
97
91
98
92
# build and install pandas
99
-time python setup.py build_ext install
93
+time python setup.py sdist
94
+pip uninstall cython -y
95
+time pip install $(find dist | grep gz | head -n 1)
100
101
true
0 commit comments