Skip to content

Commit 1868e4c

Browse files
committed
v1.4.0
- Django 2 support - Drop support for Django <1.11 and Python <3.5 (we keep 2.7 still) - Confirm support for Django 2.1 - Add python 3.7 support
1 parent 2f9c6f3 commit 1868e4c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## master (unreleased)
3+
## 1.4.0 (2018-12-17)
44

55
- Django 2 support
66
- Drop support for Django <1.11 and Python <3.5 (we keep 2.7 still)

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ your RAM.
1010

1111
Tested with all the combinations of:
1212

13-
* Python: 2.7, 3.5, 3.6
14-
* Django: 1.11, 2, master
13+
* Python: 2.7, 3.5, 3.6, 3.7
14+
* Django: 1.11, 2, 2.1, master
1515

1616

1717
Usage

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,13 +58,13 @@ def namespace_packages(project_name):
5858

5959
name = 'django-chunkator'
6060
readme = read_relative_file('README.rst')
61-
requirements = ['six', 'django>=1.8']
61+
requirements = ['six', 'django>=1.11']
6262
entry_points = {}
6363

6464

6565
if __name__ == '__main__': # ``import setup`` doesn't trigger setup().
6666
setup(name=name,
67-
version='1.4.0.dev0',
67+
version='1.4.0',
6868
description="""Chunk large QuerySets into small chunks, and iterate over them without killing your RAM.""", # noqa
6969
long_description=readme,
7070
classifiers=[

0 commit comments

Comments
 (0)