Skip to content

Commit

Permalink
Merge pull request #391 from e0ne/travis-pypi
Browse files Browse the repository at this point in the history
Enable PyPI deployment
  • Loading branch information
e0ne authored Mar 21, 2020
2 parents 6b96338 + eb5a458 commit ddf2fda
Showing 1 changed file with 20 additions and 26 deletions.
46 changes: 20 additions & 26 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,36 +1,30 @@
language: python

dist: bionic

addons:
apt:
packages:
- libpcre2-dev

- libpcre2-dev
arch:
- arm64
- amd64
# - ppc64le
# - s390x

- arm64
- amd64
python:
- "3.6"
- "3.7"
- "3.8"
- pypy3

# there is no pypy3 for arm64 on Travis CI
- '3.6'
- '3.7'
- '3.8'
- pypy3
jobs:
exclude:
- arch: arm64
python: pypy3

- arch: arm64
python: pypy3
install:
- pip install .
- pip install pillow pytest-cov coveralls

script:
py.test --cov scss

after_success:
coveralls
- pip install .
- pip install pillow pytest-cov coveralls
script: py.test --cov scss
after_success: coveralls
deploy:
provider: pypi
user: __token__
password:
secure: J5RfXq1B9p1/xZmtqVeCeFm4wx816KzTCmuej7bAVNC7u9amNL0QV5HkzLGHYM/SxY0zJs9pN0+TS20NoAatNDrvRjZ6Wh+d/mqgGjMqrNCQruFOe8yzS9XE5IlOgaMgsvWfISXGOmwUHpLcMq/RlyoX3f0S2PW1OTb/AmV7Kc8=
on:
tags: true

0 comments on commit ddf2fda

Please sign in to comment.