Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/release-candidate' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Giovanni Di Milia committed Oct 25, 2017
2 parents bb044cc + dce0be8 commit 33150f3
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ language: python

python:
- 2.7
- 3.4
- 3.5
- 3.6
install:
Expand Down
6 changes: 6 additions & 0 deletions RELEASE.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Release Notes
=============

Version 0.5.1
-------------

- Add setup.cfg to allow universal wheel building (py2 + py3)
- Changed the version variable in __init__

Version 0.5.0
-------------

Expand Down
2 changes: 1 addition & 1 deletion pylti/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
PyLTI is module that implements IMS LTI in python
The API uses decorators to wrap function with LTI functionality.
"""
VERSION = "0.4.1" # pragma: no cover
__version__ = '0.5.1' # pragma: no cover
2 changes: 1 addition & 1 deletion pylti/tests/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ def test_version():
"""
Will raise ValueError if not a semantic version
"""
semantic_version.Version(pylti.VERSION)
semantic_version.Version(pylti.__version__)

def test_lti_oauth_server(self):
"""
Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal = 1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def find_packages(where='.', exclude=()):

extra = dict()

VERSION = __import__('pylti').VERSION
VERSION = __import__('pylti').__version__

README = open('README.rst').read()

Expand Down

0 comments on commit 33150f3

Please sign in to comment.