Skip to content

Commit

Permalink
0.17.3
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreDecan committed Jan 29, 2016
1 parent 314078d commit 81aeffd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ python:
- 3.4
- 3.5
install:
- pip install -r requirements.txt
- pip install -e .
- pip install coveralls
script:
- coverage run --source sismic -m unittest discover
Expand All @@ -14,7 +14,7 @@ after_success:
- coveralls
deploy:
provider: pypi
distributions: sdist
distributions: sdist bdist_wheel
user: AlexandreDecan
password:
secure: SNcWHKnxF5ZVEEzXYHci1yyA9BivCUsDuDgZUT+b4h7YXcxBZVvWKJcxA9d5e+Hc3q/6l/Ij1RII5C4fRG7OtBlJSb3sdNgX2MQc9Dd1DAyn5XHijFNbieJ8C9nuXMNFwjDkeNw1IQHm1F6bvyTBQkURF2DnuYNQLOpuP4T9lKeVVRbx/ido1Q1BQTmDHoNW2tTlyTP6XSssW7gBfOSqnH/u8lytpGLREGkMwJ42hcNgR+dTZjKVVMDxOUYQeYrK5mLbHowj97YDThDQR1qs5dxq2EtVVKjHLPQU/MOI+q74fNQWzi8OY6Yr8M52uE7sRyczQzjdCiO/Bb1i1nI+yBxVoPjo9gPM5JVSKTdc6NGqTRurSasst72VuYzj7Fqlof+eJuzHgrhZRXOcD/duiQrCqLVv0y9trQnElWO1+geqsbgouMSoFmVPiIlxOJ1zmMvtDB3Q4g2vmtGjbPzfgxb9Hq7iFcd7FewwYFhpzSY/GddosDQ9wZRCKE0Rs/xBCxmy1cXtwepe4qz4NRSm1zcWu/7LgWj7ka2BpnTAR6CNxWFUrlEPkHzfZH2ZvHBcrN9tLFEg5prmj/55aMpLEo8f6B6+l4RO2cESUe7pObyxmAtMwYr/aQ8VZfYFwRggBfhtVIlHWPDet28+9swu69e3J2ViScM+AOOBXt+qNgc=
Expand Down
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Changelog
=========

0.17.2 (2016-01-29)
0.17.3 (2016-01-29)
-------------------

- (Added) An ``io.text.export_to_tree`` that returns a textual representation of the states.
- (Changed) ``Statechart.rename_to`` does not anymore raise ``KeyError`` but ``exceptions.StatechartError``.
- (Removed) Wheel build
- (Changed) Wheel build should work on Windows

0.17.1 (2016-01-25)
-------------------
Expand Down
8 changes: 6 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from setuptools import setup
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
Expand Down Expand Up @@ -62,7 +62,7 @@

# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=['sismic'],
packages=find_packages(),
#packages=find_packages(exclude=['docs', 'examples', 'tests']),

# Alternatively, if you want to distribute just a my_module.py, uncomment
Expand All @@ -84,6 +84,10 @@
'dev': ['coverage', 'sphinx'],
},

package_data={
'sismic.io': ['schema.yaml']
},

# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
Expand Down
2 changes: 1 addition & 1 deletion sismic/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__description__ = 'Sismic Interactive State Machine Interpreter and Checker'
__version__ = '0.17.2'
__version__ = '0.17.3'
__url__ = 'https://github.com/AlexandreDecan/sismic/'
__author__ = 'Alexandre Decan'
__email__ = 'alexandre.decan@lexpage.net'
Expand Down

0 comments on commit 81aeffd

Please sign in to comment.