Skip to content

Commit

Permalink
Merge pull request #78 from jaredlewis/develop
Browse files Browse the repository at this point in the history
Python 3.5, drop django 1.7 support
  • Loading branch information
jaredlewis authored Nov 28, 2016
2 parents e27fa4a + b14a420 commit 28e7f9e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ language: python
python:
- '2.7'
- '3.4'
- '3.5'
env:
global:
- DB=postgres
matrix:
- DJANGO=">=1.7,<1.8"
- DJANGO=">=1.8,<1.9"
- DJANGO=">=1.9,<1.10"
- DJANGO=">=1.10,<1.11"
Expand Down
4 changes: 4 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Release Notes
=============

v0.14.0
-------
* Drop support for django 1.7, add official support for python 3.5

v0.13.0
-------
* Add paginator class for json queryset
Expand Down
2 changes: 1 addition & 1 deletion querybuilder/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.13.0'
__version__ = '0.14.0'
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@ def get_version():
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Django',
'Framework :: Django :: 1.7',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Development Status :: 5 - Production/Stable',
],
license='MIT',
install_requires=[
'django>=1.7',
'django>=1.8',
'pytz>=2015.6',
'fleming>=0.4.3',
'fleming>=0.4.4',
'six',
],
tests_require=[
Expand Down

0 comments on commit 28e7f9e

Please sign in to comment.