Skip to content

Commit c68ff65

Browse files
committed
Version update
1 parent 934f8cc commit c68ff65

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Diff for: README.rst

+3-2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Features
2929
* JSON output by default, but overridable
3030
* RESTful
3131
* Python 3.2+ (with shims to make broke-ass Python 2.6+ work)
32+
* Django 1.8+
3233
* Flexible
3334

3435

@@ -153,11 +154,11 @@ The test suite uses tox_ for simultaneous support of multiple versions of both
153154
Python and Django. The current versions of Python supported are:
154155

155156
* CPython 2.7
157+
* CPython 3.3
156158
* CPython 3.4
157159
* CPython 3.5
160+
* CPython 3.6
158161
* PyPy (Python 2.7)
159-
* PyPy3 (Python 3.2)
160-
* PyPy3 beta (Python 3.3)
161162

162163
You just need to install the Python interpreters above and the `tox` package
163164
(available via `pip`), then run the `tox` command.

Diff for: restless/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
__author__ = 'Daniel Lindsley'
22
__license__ = 'BSD'
3-
__version__ = (2, 0, 3)
3+
__version__ = (2, 0, 4)
44
VERSION = '.'.join(map(str, __version__))
55

66

Diff for: restless/resources.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import six
21
import sys
32

43
from .constants import OK, CREATED, ACCEPTED, NO_CONTENT

0 commit comments

Comments
 (0)