File tree 4 files changed +8
-7
lines changed
4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -3,11 +3,11 @@ language: python
3
3
python :
4
4
- ' 2.7'
5
5
- ' 3.4'
6
+ - ' 3.5'
6
7
env :
7
8
global :
8
9
- DB=postgres
9
10
matrix :
10
- - DJANGO=">=1.7,<1.8"
11
11
- DJANGO=">=1.8,<1.9"
12
12
- DJANGO=">=1.9,<1.10"
13
13
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
+ * Add python 3.5 support, drop django 1.7 support
7
+
4
8
v0.3.1
5
9
------
6
10
* Fixed docs
@@ -19,16 +23,13 @@ v0.1.8
19
23
20
24
v0.1.7
21
25
------
22
-
23
26
* Fixed upload to pypi
24
27
25
28
v0.1.6
26
29
------
27
-
28
30
* Updated for Django 1.7 compatibility
29
31
30
32
v0.1.4
31
33
------
32
-
33
34
* This release of django-db-mutex includes docs buildout
34
35
* python 3.3, 3.4 compatibility
Original file line number Diff line number Diff line change @@ -32,17 +32,17 @@ 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' ,
35
36
'Intended Audience :: Developers' ,
36
37
'License :: OSI Approved :: MIT License' ,
37
38
'Operating System :: OS Independent' ,
38
39
'Framework :: Django' ,
39
- 'Framework :: Django :: 1.7' ,
40
40
'Framework :: Django :: 1.8' ,
41
41
'Framework :: Django :: 1.9' ,
42
42
],
43
43
license = 'MIT' ,
44
44
install_requires = [
45
- 'django>=1.7 ' ,
45
+ 'django>=1.8 ' ,
46
46
],
47
47
tests_require = [
48
48
'psycopg2>=2.4.5' ,
You can’t perform that action at this time.
0 commit comments