-
Notifications
You must be signed in to change notification settings - Fork 3
/
.travis.yml
43 lines (38 loc) · 1.6 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
language: python
jobs:
include:
- stage: validate
name: "Syntax validation - Python 2.7"
python: 2.7
script:
- python -m compileall -q *
- name: "Syntax validation - Python 3.7"
dist: xenial
python: 3.7
script:
- python3 -m compileall -q *
- name: "Flake8 - Python 2.7"
python: 2.7
script:
- .travis/run-flake8
if: type = pull_request
- name: "Flake8 - Python 3.7"
dist: xenial
python: 3.7
script:
- .travis/run-flake8
if: type = pull_request
# Assuming you have installed the travis-ci CLI tool, after you
# create the Github repo and add it to Travis, run the
# following command to finish PyPI deployment setup:
# $ travis encrypt --add deploy.password
deploy:
provider: pypi
distributions: sdist bdist_wheel
user: mgerstel
password:
secure: fAaDQ0VZZU/vqgSS3rNkoyqTHg5oGAd77BbjB/FpYP3WXp8kYhesNPTwDDzqgmf4Lb24tD5T6h7akv/97F2L0oBxG2ALABuZ3b/h2UGUZVmKhqP96/dcuh6mgf+02r1hx/wVxWsLbgN7V5VE0Ast7PbD3AHfuG5birsksRXTrfsCZD6pR4NmY7ALxcdVLc3sgB6+BAmglksLzGtO2SCuxnzqXsLtgM65HYrBLwpSKuStXb0JG12aNtNmAIttqATycneQi5V4NXlVkyPvBkvqKM6pQREYBf4dixe7W9wtYFcp5AyuZJjINRaVtpB8CMYsqk5LkkT6s2zuWaSn2JkSNzPdM5RtCogo37T4+GQmv6Ho4nlsft/ZxV8jyXx4j/3HupkcmF+x8PIi2cTBOlI9rCPOHG2vSQiXJGUB4a+3mez4pq8MhV2HyFxva+NgCcC8LHNim+/CQBod/4WMxztcHgqMDl7swvk0uMNZfmNhjwHqDiZKQe2+JpFqx+jD9KRBkmakekojjwMS26iULQfdcj9QakgbP177/lsOrSVgXxKfj2TVid6UIkWwLi7zUi6u+rixTAp3rBPLVkkmpwtSIRF16qf1m5LJKRSeYlx6qX7tvCCxbxXhTQJTgjGS97b36gTuj/yz36kgaJIovDNdP64dEkZSgiCxqnUOXRTN7LE=
on:
tags: true
repo: ssrl-px/iota
python: 3.7