Skip to content

Commit 4a08fe8

Browse files
authored
Merge pull request #120 from openxc/TravisPypi
Travis pypi
2 parents af84cd5 + 9df3406 commit 4a08fe8

3 files changed

Lines changed: 16 additions & 1 deletion

File tree

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,10 @@ script: python setup.py test
1212
after_success:
1313
- coverage run --source=openxc setup.py test
1414
- coveralls
15+
deploy:
16+
provider: pypi
17+
server: https://pypi.org/legacy/
18+
user: "__token__"
19+
password: $PYPI_PASSWORD
20+
on:
21+
branch: master

README.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,14 @@ In addition to a port of the Android library API, the package also contains a
3030
number of command-line tools for connecting to the CAN translator and
3131
manipulating previously recorded vehicle data.
3232

33+
To package run "setup.py sdist bdist_wheel"
34+
to push to pypi run "python -m twine upload dist/\*"
35+
Version files:
36+
37+
- CHANGELOG.rst
38+
- README.rst
39+
- openxc/version.py
40+
- docs/index.rst
3341

3442
License
3543
========

openxc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
which in turn needs access to this version information.)
77
"""
88

9-
VERSION = (1, 0, 0)
9+
VERSION = (1, 0, 1)
1010

1111
__version__ = '.'.join(map(str, VERSION))
1212

0 commit comments

Comments
 (0)