10000 Pandas27 Release v0.24.3 by Tuxprogrammer · Pull Request #1 · Tuxprogrammer/pandas · GitHub
[go: up one dir, main page]

Skip to content

Pandas27 Release v0.24.3 #1

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

Open
wants to merge 2 commits into
base: 0.24.x
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Auto build wheel files.
  • Loading branch information
Tuxprogrammer committed Aug 28, 2019
commit e7fc5e84b812c7da9be11d08e8adfb75281dcf49
7 changes: 1 addition & 6 deletions build-manylinux.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,4 @@
#!/bin/bash
#

docker run --rm -e PLAT=manylinux1_x86_64 -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh
ls wheelhouse/
docker run --rm -e PLAT=manylinux1_i686 -v `pwd`:/io quay.io/pypa/manylinux1_i686 linux32 /io/build-wheels.sh
ls wheelhouse/
docker run --rm -e PLAT=manylinux2010_x86_64 -v `pwd`:/io quay.io/pypa/manylinux2010_x86_64 /io/build-wheels.sh
ls wheelhouse/
docker run -e PLAT=manylinux2010_x86_64 -v /home/callicott/work/pandas:/io quay.io/pypa/manylinux2010_x86_64 /io/build-wheels.sh
14 changes: 11 additions & 3 deletions build-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,24 @@ set -e -x

# Compile wheels
for PYBIN in /opt/python/*/bin; do
"${PYBIN}/pip" install -r /io/requirements-dev.txt
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
"${PYBIN}/pip" install -r /io/dev-requirements.txt &
done
wait
for PYBIN in /opt/python/*/bin; do
"${PYBIN}/pip" wheel /io/ -w wheelhouse/ &
done
wait

ls wheelhouse

# Bundle external shared libraries into the wheels
for whl in wheelhouse/*.whl; do
auditwheel repair "$whl" --plat $PLAT -w /io/wheelhouse/
done

ls /io/wheelhouse

# Install packages and test
for PYBIN in /opt/python/*/bin/; do
"${PYBIN}/pip" install pandas27 --no-index -f /io/wheelhouse
done
done
3 changes: 3 additions & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
numpy>=1.13.3
python-dateutil>=2.5.0
pytz>=2015.4
0