Skip to content

Commit 49b579d

Browse files
authored
Merge pull request #127 from toastdriven/release-2.2.0
Release restless 2.2.0
2 parents ce9e277 + 4295ddf commit 49b579d

File tree

6 files changed

+53
-36
lines changed

6 files changed

+53
-36
lines changed

.travis.yml

+10-8
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
11
language: python
2-
dist: xenial
32

43
python:
5-
- "2.7"
6-
- "3.5"
74
- "3.6"
85
- "3.7"
9-
- "pypy2.7-6.0" # CPython 2.7
6+
- "3.8"
7+
- "3.9"
8+
- "pypy3"
109

1110
env:
12-
- DJANGO="1.8"
13-
- DJANGO="1.9"
14-
- DJANGO="1.10"
15-
- DJANGO="1.11"
11+
- DJANGO="2.2"
12+
- DJANGO="3.0"
13+
- DJANGO="3.1"
14+
- DJANGO="3.2"
15+
- FLASK="1.0"
16+
- FLASK="1.1"
17+
- FLASK="2.0"
1618

1719
# command to install dependencies
1820
install:

README.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Features
3232
* Small, fast codebase
3333
* JSON output by default, but overridable
3434
* RESTful
35-
* Python 3.5+ (with shims to make broke-ass Python 2.7 work)
36-
* Django 1.8+
35+
* Python 3.6+
36+
* Django 2.2+
3737
* Flexible
3838

3939

@@ -157,11 +157,11 @@ Running the Tests
157157
The test suite uses tox_ for simultaneous support of multiple versions of both
158158
Python and Django. The current versions of Python supported are:
159159

160-
* CPython 2.7
161-
* CPython 3.5
162160
* CPython 3.6
163161
* CPython 3.7
164-
* PyPy (Python 2.7)
162+
* CPython 3.8
163+
* CPython 3.9
164+
* PyPy
165165

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

docs/releasenotes/v2.2.0.rst

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
restless v2.2.0
2+
===============
3+
4+
:date: 2021-08-04
5+
6+
7+
Changes
8+
-------
9+
10+
* Added pagination to DjangoResource
11+
* Added support to python 3.7+
12+
* Removed support to python < 3.5

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, 1, 1)
3+
__version__ = (2, 2, 0)
44
VERSION = '.'.join(map(str, __version__))
55

66

setup.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
'mock',
2727
'tox',
2828
],
29-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
29+
python_requires='!=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*',
3030
classifiers=[
3131
'Development Status :: 5 - Production/Stable',
3232
'Environment :: Web Environment',
@@ -37,12 +37,11 @@
3737
'License :: OSI Approved :: BSD License',
3838
'Operating System :: OS Independent',
3939
'Programming Language :: Python',
40-
'Programming Language :: Python :: 2',
41-
'Programming Language :: Python :: 2.7',
4240
'Programming Language :: Python :: 3',
43-
'Programming Language :: Python :: 3.5',
4441
'Programming Language :: Python :: 3.6',
4542
'Programming Language :: Python :: 3.7',
43+
'Programming Language :: Python :: 3.8',
44+
'Programming Language :: Python :: 3.9',
4645
'Topic :: Utilities'
4746
],
4847
)

tox.ini

+22-18
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,46 @@
11
[tox]
22
envlist =
3-
py{27,35,py2}-{dj18}
4-
py{27,35,py2}-{dj19,dj110,dj111}
5-
py{36}-{dj111}
3+
py{36,37,38,39,py}-{dj22,dj30,dj31,dj32}-{fl10,fl11,fl20}
64

75
[testenv]
86
basepython =
9-
py27: python2.7
10-
py35: python3.5
117
py36: python3.6
128
py37: python3.7
13-
pypy2: pypy
9+
py38: python3.8
10+
py39: python3.9
11+
pypy: pypy
1412
deps =
1513
six
1614
pytest
1715
pytest-cov
1816
WebOb>=1.3.1,<1.7
1917
Pyramid<1.8
2018
tornado
21-
py{27,35}: Flask>=0.10
22-
dj18: Django>=1.8,<1.9
23-
dj19: Django>=1.9,<1.10
24-
dj110: Django>=1.10,<1.11
25-
dj111: Django>=1.11,<1.12
19+
fl10: Flask>=1.0
20+
fl11: Flask>=1.1
21+
fl20: Flask>=2.0
22+
dj22: Django>=2.2,<2.3
23+
dj30: Django>=3.0,<3.1
24+
dj31: Django>=3.1,<3.2
25+
dj32: Django>=3.2,<3.3
2626
commands =
2727
pytest --cov=restless
2828

2929
[travis]
3030
python =
31-
2.7: py27
32-
3.5: py35
3331
3.6: py36
3432
3.7: py37
35-
pypy: pypy2
33+
3.8: py38
34+
3.9: py39
35+
pypy: pypy
3636

3737
[travis:env]
3838
DJANGO =
39-
1.8: dj18
40-
1.9: dj19
41-
1.10: dj110
42-
1.11: dj111
39+
2.2: dj22
40+
3.0: dj30
41+
3.1: dj31
42+
3.2: dj32
43+
FLASK =
44+
1.0: fl10
45+
1.1: fl11
46+
2.0: fl20

0 commit comments

Comments
 (0)