File tree 5 files changed +21
-7
lines changed
5 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -4,12 +4,14 @@ python:
4
4
- ' 2.7'
5
5
- ' 3.4'
6
6
- ' 3.5'
7
+ - ' 3.6'
7
8
env :
8
9
global :
9
10
- DB=postgres
10
11
matrix :
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.4 .0'
1
+ __version__ = '0.5 .0'
Original file line number Diff line number Diff line change @@ -69,6 +69,8 @@ Django DB Mutex can be used with celery's tasks in the following manner:
69
69
70
70
.. code-block :: python
71
71
72
+ from db_mutex import DBMutexError, DBMutexTimeoutError
73
+ from db_mutex.db_mutex import db_mutex
72
74
from abc import ABCMeta
73
75
from celery import Task
74
76
Original file line number Diff line number Diff line change 1
1
Release Notes
2
2
=============
3
3
4
+ v0.5.0
5
+ ------
6
+ * Add python 3.6 support
7
+ * Drop Django 1.8 support
8
+ * Add Django 1.10 support
9
+ * Add Django 1.11 support
10
+
4
11
v0.4.0
5
12
------
6
- * Add python 3.5 support, drop django 1.7 support
13
+ * Add python 3.5 support
14
+ * Drop Django 1.7 support
7
15
8
16
v0.3.1
9
17
------
Original file line number Diff line number Diff line change @@ -33,24 +33,26 @@ def get_version():
33
33
'Programming Language :: Python :: 2.7' ,
34
34
'Programming Language :: Python :: 3.4' ,
35
35
'Programming Language :: Python :: 3.5' ,
36
+ 'Programming Language :: Python :: 3.6' ,
36
37
'Intended Audience :: Developers' ,
37
38
'License :: OSI Approved :: MIT License' ,
38
39
'Operating System :: OS Independent' ,
39
40
'Framework :: Django' ,
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.8' ,
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