Skip to content

Commit

Permalink
Merge pull request #695 from jpype-project/release
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
Thrameos authored Apr 21, 2020
2 parents ad098a2 + 19e671f commit 4ef503e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions docker/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/sh
# Pull the required images
#docker pull quay.io/pypa/manylinux1_x86_64
#docker pull quay.io/pypa/manylinux1_i686
Expand All @@ -12,13 +13,15 @@
# cp38-cp38

# Build each wheel
VER=0.7.1
VER=0.7.3
root=`pwd`
root=${root#/mnt}
for PLAT in x86_64 i686
do
DOCKER_IMAGE=quay.io/pypa/manylinux1_$PLAT
# Different versions need different NUMPY as NUMPY support for Python varies by version
docker run --rm -e VER=$VER -e PY=cp35-cp35m -e NUMPY=1.15.0 -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE /io/build.sh
docker run --rm -e VER=$VER -e PY=cp36-cp36m -e NUMPY=1.15.0 -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE /io/build.sh
docker run --rm -e VER=$VER -e PY=cp37-cp37m -e NUMPY=1.15.0 -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE /io/build.sh
docker run --rm -e VER=$VER -e PY=cp38-cp38 -e NUMPY=1.18.0 -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE /io/build.sh
docker run --rm -e VER=$VER -e PY=cp35-cp35m -e NUMPY=1.15.0 -e PLAT=$PLAT -v $root:/io $DOCKER_IMAGE /io/build.sh
docker run --rm -e VER=$VER -e PY=cp36-cp36m -e NUMPY=1.15.0 -e PLAT=$PLAT -v $root:/io $DOCKER_IMAGE /io/build.sh
docker run --rm -e VER=$VER -e PY=cp37-cp37m -e NUMPY=1.15.0 -e PLAT=$PLAT -v $root:/io $DOCKER_IMAGE /io/build.sh
docker run --rm -e VER=$VER -e PY=cp38-cp38 -e NUMPY=1.18.0 -e PLAT=$PLAT -v $root:/io $DOCKER_IMAGE /io/build.sh
done
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='JPype1',
version='0.7.2',
version='0.7.3',
description='A Python to Java bridge.',
long_description=open('README.rst').read(),
license='License :: OSI Approved :: Apache Software License',
Expand Down

0 comments on commit 4ef503e

Please sign in to comment.