Browse Source

Use xenial and py36 for manylinux (#38)

* [ci skip] Use xenial and py36 for manylinux
anonswap
Ofek Lev 6 years ago
committed by GitHub
parent
commit
124ff56772
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 22
      .travis.yml
  2. 2
      .travis/install.sh

22
.travis.yml

@ -69,27 +69,27 @@ matrix:
osx_image: xcode10.1
python: 3.7
env: TOXENV=py37 TRAVIS_PYTHON_VERSION=3.7
- os: linux
language: python
python: 3.5
sudo: required
services:
- docker
env: TOXENV=py35 BUILD_LINUX_WHEELS=1
- python: 3.6
env: TOXENV=py36 BUILD_LINUX_WHEELS=1
services: docker
before_install:
- chmod +x .travis/prepare_windows_build.sh .travis/build_windows_wheels.sh
- chmod +x .travis/build-linux-wheels.sh
- chmod +x .travis/build_windows_wheels.sh
- chmod +x .travis/deploy.sh
- chmod +x .travis/prepare_windows_build.sh
install:
- .travis/prepare_windows_build.sh
- source .travis/install.sh
install:
- pip install tox
script:
- tox
deploy:
- provider: script
skip_cleanup: true
script: chmod +x .travis/deploy.sh && chmod +x .travis/build-linux-wheels.sh && .travis/deploy.sh
script: .travis/deploy.sh
on:
repo: ofek/coincurve
tags: true

2
.travis/install.sh

@ -85,6 +85,6 @@ if [[ $TRAVIS_OS_NAME == "osx" ]]; then
fi
# Install necessary packages
python -m pip install -U cffi pytest coverage
python -m pip install -U cffi tox
set +x +e

Loading…
Cancel
Save