Skip to content

Commit

Permalink
Add Travis deployment to PyPi
Browse files Browse the repository at this point in the history
Also update to version 0.1.3.
  • Loading branch information
binyomen committed Jul 8, 2017
1 parent 083142e commit 7fa805e
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
27 changes: 16 additions & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
language: python
python:
- "3.2"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
install: "pip install -r requirements-travis.txt"
script: "coverage run -m unittest"
after_success: "coveralls"

- '3.2'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
install: pip install -r requirements-travis.txt
script: coverage run -m unittest
after_success: coveralls
notifications:
email: false

email: false
deploy:
provider: pypi
user: BenWeedon
password:
secure: eXkkUVVi1B49VvEpPBIlOYXeO3KTH+6jNpNwg+ti6vzrW9svwCq2L3TgMuY2qTbiDOapWSYkDBb1B+2hqUF4QlZSfyl4ej/VuNZh6lTeifPKsxMK2Jk19NjMb368CYL52ovza+pJewt7jNaWrW1KFEcOmhVsIbybX2fen7bM3QOZt8i5jlLJISdfK6i2SgvSCco65NWXd65yIYIipNe9+Gz6OvDZ1LzFYGFWSpLVJia8jyCpZ3+nLmizkjBuxIDEo7c0ccmqlKPmQgoB7dHODlGmpn2sb1hAvfdbRkGtKgTj38LSWBAAQKOQduq/k0OU5c4dCipZUsc/UisBKqVNn5e05B36Mxd5WELPNpuYrmG+2d+9kgSKVr5rwFdgm8G8oLtFse5Q77+iTZ75ala6V8sbkQrhevaCVYiiPwpWpXolmVPTQi03Dp4iKZsxt+7c/81kfpQuVu0K1zKU38hTR9GfNa8csJubefWv1GMxoLdd+/xSpcPew1EuFfngNK8nQam0XRIb8vCk7fMVK+a0F+7Evtyd/FdaLJJweGQc4MACX1CP4kkQV8cW63TlxLcK6VO1DV6Zevtw3f05zJEwWkzUTw+wehIh9zmOi+Y26tn8P9Z8oYY5IeKsvBaMCvIpAZ6OJcv34NRKmfI1ltGXllhnkFzDqfXSV0b6VK1Vt0A=
on:
tags: true
2 changes: 1 addition & 1 deletion pyrogi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os.path

VERSION = '0.1.2'
VERSION = '0.1.3'

FONT_PATH = os.path.join('res', 'fonts')
FONT_CONFIG_EXTENSION = '.font.json'
Expand Down

0 comments on commit 7fa805e

Please sign in to comment.