Skip to content

Commit 7a195b8

Browse files
authored
Merge pull request #90 from wesokes/develop
django 2
2 parents 6d343bf + 9dfab23 commit 7a195b8

File tree

5 files changed

+18
-11
lines changed

5 files changed

+18
-11
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,14 @@
11
sudo: true
22
language: python
33
python:
4-
- '2.7'
5-
- '3.4'
64
- '3.5'
75
- '3.6'
86
env:
97
global:
108
- DB=postgres
119
matrix:
12-
- DJANGO=">=1.9,<1.10"
13-
- DJANGO=">=1.10,<1.11"
1410
- DJANGO=">=1.11,<2.0"
11+
- DJANGO=">=2.0,<2.1"
1512
addons:
1613
postgresql: '9.5'
1714
install:

docs/release_notes.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Release Notes
22
=============
33

4+
v1.0.0
5+
------
6+
* Drop Django 1.9
7+
* Drop Django 1.10
8+
* Add Django 2.0
9+
* Drop python 2.7
10+
* Drop python 3.4
11+
412
v0.15.0
513
-------
614
* Handle custom db column names

publish.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
import subprocess
22

3+
subprocess.call(['rm', '-r', 'dist/'])
34
subprocess.call(['pip', 'install', 'wheel'])
5+
subprocess.call(['pip', 'install', 'twine'])
46
subprocess.call(['python', 'setup.py', 'clean', '--all'])
5-
subprocess.call(['python', 'setup.py', 'register', 'sdist', 'bdist_wheel', 'upload'])
7+
subprocess.call(['python', 'setup.py', 'register', 'sdist', 'bdist_wheel'])
8+
subprocess.call(['twine', 'upload', 'dist/*'])
9+
subprocess.call(['rm', '-r', 'dist/'])
10+
subprocess.call(['rm', '-r', 'build/'])

querybuilder/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.15.0'
1+
__version__ = '1.0.0'

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,22 +29,19 @@ def get_version():
2929
packages=find_packages(),
3030
classifiers=[
3131
'Programming Language :: Python',
32-
'Programming Language :: Python :: 2.7',
33-
'Programming Language :: Python :: 3.4',
3432
'Programming Language :: Python :: 3.5',
3533
'Programming Language :: Python :: 3.6',
3634
'Intended Audience :: Developers',
3735
'License :: OSI Approved :: MIT License',
3836
'Operating System :: OS Independent',
3937
'Framework :: Django',
40-
'Framework :: Django :: 1.9',
41-
'Framework :: Django :: 1.10',
4238
'Framework :: Django :: 1.11',
39+
'Framework :: Django :: 2.0',
4340
'Development Status :: 5 - Production/Stable',
4441
],
4542
license='MIT',
4643
install_requires=[
47-
'Django>=1.9',
44+
'Django>=1.11',
4845
'pytz>=2015.6',
4946
'fleming>=0.4.4',
5047
'six',

0 commit comments

Comments
 (0)