diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 61636cef..00000000 --- a/.travis.yml +++ /dev/null @@ -1,28 +0,0 @@ -os: linux -dist: - - bionic - - xenial -language: python -python: - - "3.8" - - "3.6" -cache: pip - -install: - - pip3 install -r requirements.txt - - pip3 install -e . -script: - - pytest - -jobs: - include: - - name: "Deploy" - stage: deploy - script: skip - deploy: - provider: pypi - user: AWehrhahn - on: - tags: true - password: - secure: uCE8iM+VsNe5s1q/4/rcebhCG2p3rXfwff5cDEWK66YSKzW6TPDabwJ9tvTZPJbsAKXcZua8puy3Su/D8hElkUlGc1gv8W/YBA+E8hdW6cz0H9ZggOjmHVyxZQhgqZZOfq5Vs0YYnbKFV7PcA9NxG6pKWB1SqJqG/oen4vbnCxAybxc2zjqMe1dpC2+VjZeLF1+LGzsNMQ+jfJ8XoaRZ5xiqUDa4p9ohAXSVjxYAF0vnltYQYOpuNZq9jVyRrrYdGngDGdmizCOUI2y6KDVpHtdTeIDOdOCWzva/9iLhtwdjR2D+i7F7ByWcbKRqhyGfrdAwaYeZQy7Cn03WtxfSeVfsFh7uWxf4n8URWJ648VCzKVHO0Nxh7eE6XrekdATQTyNi1CSEmu0E0ATvHwwfCMdSj/HM4b9i5m69pg8Wmn2u+gB28gMAz4a5oGpdxx+cCAMEBmTJojf50PIJTaK1Q6311rP8XhTPH/LVJW4u3RoQ+3/0KICkhjxZ5dByRW7kj59OzJAZ+ZJKAPFq8nBMa3d52cQsaRDzrh6lhx6Ij8IIWGdjGdM57PJhh/PX4jXK8P2i+573Q0S2Ebbot6rj9dOE8Aru46BHBQo6ZzDfBnPA09ppjnrysdsb14pGp10wjZbjDi95df7c7VzUquj7k4JPHN5IMuLS5JitbBzGMGA= diff --git a/wheels/build-wheels.sh b/wheels/build-wheels.sh deleted file mode 100755 index 3a3e6f82..00000000 --- a/wheels/build-wheels.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash -set -e -x - -# Install a system package required by our library -# yum install -y atlas-devel - -# Compile wheels -for PYBIN in /opt/python/*/bin; do - "${PYBIN}/pip" install -r /io/dev-requirements.txt - "${PYBIN}/pip" wheel /io/ -w wheelhouse/ -done - -# Bundle external shared libraries into the wheels -for whl in wheelhouse/*.whl; do - auditwheel repair "$whl" --plat $PLAT -w /io/wheelhouse/ -done - -# Install packages and test -for PYBIN in /opt/python/*/bin/; do - "${PYBIN}/pip" install python-manylinux-demo --no-index -f /io/wheelhouse - (cd "$HOME"; "${PYBIN}/nosetests" pymanylinuxdemo) -done diff --git a/wheels/make.sh b/wheels/make.sh deleted file mode 100644 index b0a4c015..00000000 --- a/wheels/make.sh +++ /dev/null @@ -1,5 +0,0 @@ -export DOCKER_IMAGE=quay.io/pypa/manylinux2010_x86_64 -export PLAT=manylinux2010_x86_64 - -docker pull $DOCKER_IMAGE -docker run --rm -e PLAT=$PLAT -v `pwd`:/io $DOCKER_IMAGE $PRE_CMD /io/travis/build-wheels.sh