Skip to content

Commit

Permalink
Merge pull request #50 from mitodl/hotfix/0.4.1
Browse files Browse the repository at this point in the history
Hotfix/0.4.1
  • Loading branch information
carsongee committed Aug 25, 2015
2 parents 8f97a2d + db96f44 commit bc0c32c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PyLTI - LTI done right
=========================
:PyLTI: Python implementation of LTI
:Version: 0.4.0
:Version: 0.4.1
:Author: MIT Office of Digital Learning
:Homepage: http://odl.mit.edu
:License: BSD
Expand Down
5 changes: 5 additions & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,11 @@ Getting Started
Changes
=======

v0.4.1
~~~~~~

- Pin mock to allow ``python setup.py test`` without setuptools upgrade

v0.4.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.0" # pragma: no cover
VERSION = "0.4.1" # pragma: no cover
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def run_tests(self):
"pytest-flakes>=0.2", "pytest>=2.6.3",
"httpretty>=0.8.3", "flask>=0.10.1",
"oauthlib>=0.6.3", "semantic_version>=2.3.1",
"mock>=1.0.1"],
"mock==1.0.1"],
cmdclass={"test": PyTest},
install_requires=["oauth>=1.0.1", "oauth2>=1.5.211",
"httplib2>=0.9" ],
Expand Down

0 comments on commit bc0c32c

Please sign in to comment.