Skip to content

Commit

Permalink
Pinning the minimal version of pytest.
Browse files Browse the repository at this point in the history
  • Loading branch information
dimazest committed Oct 21, 2013
1 parent dbeb850 commit bf8400c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To install the package in an isolated environment for development run::
source bin/activate

pip install -e .
pip install pytest # And any other tools you find useful.
pip install pytest>=2.4.2 # And any other tools you find useful.

Now you are ready to develop and test your changes::

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run_tests(self):
author_email='[email protected],[email protected]',
url='http://http://clic.cimec.unitn.it/composes/toolkit/',
install_requires=['numpy', 'scipy', 'sparsesvd'],
tests_require=['pytest'],
tests_require=['pytest>=2.4.2'],
cmdclass={'test': PyTest},
package_dir={'': 'src'},
packages=[
Expand Down

0 comments on commit bf8400c

Please sign in to comment.