forked from pandas-dev/pandas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild38.sh
25 lines (20 loc) · 813 Bytes
/
build38.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/bash -e
# Special build for python3.8 until numpy puts its own wheels up
sudo apt-get install build-essential gcc xvfb
pip install --no-deps -U pip wheel setuptools
pip install python-dateutil pytz cython pytest pytest-xdist hypothesis
# Possible alternative for getting numpy:
# pip install --pre -f https://7933911d6844c6c53a7d-47bd50c35cd79bd838daf386af554a83.ssl.cf2.rackcdn.com/ numpy
git clone https://github.com/numpy/numpy
cd numpy
python setup.py build_ext --inplace
python setup.py install
cd ..
rm -rf numpy
python setup.py build_ext -inplace
python -m pip install --no-build-isolation -e .
python -c "import sys; print(sys.version_info)"
python -c "import pandas as pd"
python -c "import hypothesis"
# TODO: Is there anything else in setup_env that we really want to do?
# ci/setup_env.sh