Skip to content

Commit

Permalink
Loosen dependency versions
Browse files Browse the repository at this point in the history
* Remove explicit dependency on Django
* Loosen rest-framework to any version before 3
  • Loading branch information
estebistec committed Apr 23, 2014
1 parent de512d3 commit 6be7529
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 3 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
History
-------

0.2.1 (2014-04-23)
++++++++++++++++++

0.2.0 (2014-03-16)
++++++++++++++++++

Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
Django==1.6.2
djangorestframework==2.3.13
djangorestframework<3
py==1.4.20
pytest==2.5.2
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def run(self):

setup(
name='drf-compound-fields',
version='0.2.0',
version='0.2.1',
description='Django-REST-framework serializer fields for compound types.',
long_description=readme + '\n\n' + history,
author='Steven Cummings',
Expand All @@ -63,8 +63,7 @@ def run(self):
include_package_data=True,
zip_safe=False,
install_requires=[
'Django==1.6.2',
'djangorestframework==2.3.13'
'djangorestframework<3'
],
test_suite='tests',
tests_require=['pytest'],
Expand Down

0 comments on commit 6be7529

Please sign in to comment.