Skip to content
This repository has been archived by the owner on Sep 22, 2020. It is now read-only.

Commit

Permalink
Add pinning of version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
relekang committed Apr 2, 2015
1 parent 12ad170 commit 6f6bbe1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
11 changes: 11 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Requirements - copy of install_requires in setup.py
six==1.9.0
requests==2.6.0

# Dev requirements
pillow==2.7.0

# Test requirements
pytest
coverage
mock
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ def _read_long_description():
packages=find_packages(exclude='tests'),
license='MIT',
install_requires=[
'six',
'requests'
'six==1.9.0',
'requests==2.6.0'
],
include_package_data=True,
classifiers=[
Expand Down
7 changes: 1 addition & 6 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,7 @@ changedir =
commands =
coverage run -p --source thumbnails -m py.test -v
deps =
pytest
pillow
six
requests
coverage
mock
-r{toxinidir}/requirements.txt
django16: Django>=1.6,<1.7
django16: pytest-django
django17: Django>=1.7,<1.8
Expand Down

0 comments on commit 6f6bbe1

Please sign in to comment.