Skip to content

Commit

Permalink
Update dependencies on pillow, factory-boy and django-widget-tweaks
Browse files Browse the repository at this point in the history
Instead of forcing a version range for theses packages specificy only
the minimal version number. This packages are stable enough and forcing
upper version limits can cause issues with other (non oscar)
dependencies.
  • Loading branch information
mvantellingen committed Nov 13, 2015
1 parent 144a6ed commit 3c1f929
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
install_requires=[
'django>=1.7.8,<1.10',
# PIL is required for image fields, Pillow is the "friendly" PIL fork
'pillow>=1.7.8,<=2.7',
'pillow>=1.7.8',
# We use the ModelFormSetView from django-extra-views for the basket
# page. 0.6.5 pins version of six, which causes issues:
# https://github.com/AndrewIngram/django-extra-views/pull/85
Expand All @@ -54,12 +54,12 @@
# Used for oscar.test.contextmanagers.mock_signal_receiver
'mock>=1.0.1,<1.1',
# Used for oscar.test.newfactories
'factory-boy>=2.4.1,<2.5',
'factory-boy>=2.4.1',
# Used for automatically building larger HTML tables
'django-tables2>=1.0.4,<1.1',
# Used for manipulating form field attributes in templates (eg: add
# a css class)
'django-widget-tweaks>=1.4.1,<1.5',
'django-widget-tweaks>=1.4.1',
],
dependency_links=[],
# See http://pypi.python.org/pypi?%3Aaction=list_classifiers
Expand Down

0 comments on commit 3c1f929

Please sign in to comment.