Skip to content

Commit e85cea9

Browse files
authored
Add six as a dependency. (#390)
* Add six as a dependency. Fixes #389 * Set the patch version.
1 parent f0158f6 commit e85cea9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

rest_framework_json_api/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# -*- coding: utf-8 -*-
22

33
__title__ = 'djangorestframework-jsonapi'
4-
__version__ = '2.3.0'
4+
__version__ = '2.3.1'
55
__author__ = ''
66
__license__ = 'MIT'
77
__copyright__ = ''

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def get_package_data(package):
101101
'inflection>=0.3.0',
102102
'djangorestframework>=3.1.0',
103103
'django',
104+
'six',
104105
],
105106
setup_requires=pytest_runner + sphinx + wheel,
106107
tests_require=[

0 commit comments

Comments
 (0)