File tree Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Expand file tree Collapse file tree 4 files changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -3,13 +3,15 @@ language: python
3
3
python :
4
4
- ' 2.7'
5
5
- ' 3.4'
6
+ - ' 3.5'
7
+ - ' 3.6'
6
8
env :
7
9
global :
8
10
- DB=postgres
9
11
matrix :
10
- - DJANGO=">=1.7,<1.8"
11
- - DJANGO=">=1.8,<1.9"
12
12
- DJANGO=">=1.9,<1.10"
13
+ - DJANGO=">=1.10,<1.11"
14
+ - DJANGO=">=1.11,<2.0"
13
15
install :
14
16
- pip install -q coverage flake8 Django$DJANGO django-nose>=1.4
15
17
- python setup.py install
Original file line number Diff line number Diff line change 1
- __version__ = '0.3.1 '
1
+ __version__ = '0.4.0 '
Original file line number Diff line number Diff line change 1
1
Release Notes
2
2
=============
3
3
4
+ v0.4.0
5
+ ------
6
+ * Fixed docs
7
+
4
8
v0.3.1
5
9
------
6
10
* Fixed docs
Original file line number Diff line number Diff line change @@ -32,25 +32,27 @@ def get_version():
32
32
'Programming Language :: Python' ,
33
33
'Programming Language :: Python :: 2.7' ,
34
34
'Programming Language :: Python :: 3.4' ,
35
+ 'Programming Language :: Python :: 3.5' ,
36
+ 'Programming Language :: Python :: 3.6' ,
35
37
'Intended Audience :: Developers' ,
36
38
'License :: OSI Approved :: MIT License' ,
37
39
'Operating System :: OS Independent' ,
38
40
'Framework :: Django' ,
39
- 'Framework :: Django :: 1.7' ,
40
- 'Framework :: Django :: 1.8' ,
41
41
'Framework :: Django :: 1.9' ,
42
+ 'Framework :: Django :: 1.10' ,
43
+ 'Framework :: Django :: 1.11' ,
42
44
],
43
45
license = 'MIT' ,
44
46
install_requires = [
45
47
'django>=1.7' ,
46
48
],
47
49
tests_require = [
48
- 'psycopg2>=2.4.5 ' ,
50
+ 'psycopg2' ,
49
51
'django-nose>=1.4' ,
50
- 'mock>=1.0.1 ' ,
52
+ 'mock' ,
51
53
'coverage>=3.7.1' ,
52
54
'freezegun>=0.3.2' ,
53
- 'django-dynamic-fixture>=1.8.1 '
55
+ 'django-dynamic-fixture'
54
56
],
55
57
test_suite = 'run_tests.run_tests' ,
56
58
include_package_data = True ,
You can’t perform that action at this time.
0 commit comments