File tree Expand file tree Collapse file tree 6 files changed +64
-32
lines changed Expand file tree Collapse file tree 6 files changed +64
-32
lines changed Original file line number Diff line number Diff line change 1
- # Because Python 3.6 is available on GCE
2
- dist : trusty
3
-
4
1
cache : pip
5
2
6
3
language : python
7
4
8
- python :
9
- - " 3.4"
10
- - " 3.5"
11
- - " 3.6"
12
-
13
- env :
14
- - LINT="yes"
15
- - DJANGO="1.11"
16
- - DJANGO="2.0"
17
-
18
5
matrix :
19
- exclude :
20
- - python : " 3.4"
21
- env : LINT="yes"
22
- - python : " 3.5"
23
- env : LINT="yes"
24
- - python : " 3.6"
6
+ include :
7
+ - python : 3.4
8
+ dist : trusty
9
+ sudo : false
25
10
env : LINT="yes"
11
+ - python : 3.4
12
+ dist : trusty
13
+ sudo : false
14
+ env : DJANGO="1.11"
15
+ - python : 3.4
16
+ dist : trusty
17
+ sudo : false
18
+ env : DJANGO="2.0"
19
+
20
+ - python : 3.5
21
+ dist : trusty
22
+ sudo : false
23
+ env : DJANGO="1.11"
24
+ - python : 3.5
25
+ dist : trusty
26
+ sudo : false
27
+ env : DJANGO="2.0"
28
+
29
+ - python : 3.6
30
+ dist : trusty
31
+ sudo : false
32
+ env : DJANGO="1.11"
33
+ - python : 3.6
34
+ dist : trusty
35
+ sudo : false
36
+ env : DJANGO="2.0"
37
+
38
+ - python : 3.7
39
+ dist : xenial
40
+ sudo : true
41
+ env : DJANGO="2.0"
42
+
43
+ - python : pypy
44
+ dist : trusty
45
+ sudo : false
46
+ env : DJANGO="2.0"
26
47
27
48
install :
28
49
- pip install tox tox-travis coverage codecov
@@ -32,7 +53,7 @@ script:
32
53
33
54
notifications :
34
55
irc :
35
- - " irc.freenode.org#django-wiki"
56
+ - " irc.freenode.org#django-wiki"
36
57
37
58
after_success :
38
59
- coverage combine
Original file line number Diff line number Diff line change 1
1
_disable_notifications = False
2
2
3
- __version__ = "1.1"
3
+ __version__ = "1.1.1 "
4
4
5
5
default_app_config = "django_nyt.apps.DjangoNytConfig"
6
-
7
-
8
- def notify (* args , ** kwargs ):
9
- """
10
- DEPRECATED - please access django_nyt.utils.notify
11
- """
12
- from django_nyt .utils import notify
13
- return notify (* args , ** kwargs )
Original file line number Diff line number Diff line change 1
- from django import VERSION as DJANGO_VERSION
2
- from django .conf .urls import include , url
1
+ from django . conf . urls import include
2
+ from django .conf .urls import url
3
3
4
4
from . import views
5
5
Original file line number Diff line number Diff line change 1
1
Release Notes
2
2
=============
3
3
4
+ 1.1.1
5
+ -----
6
+
7
+ Added
8
+ ^^^^^
9
+
10
+ * Python 3.7 support :url-issue: `81 `
11
+
12
+ Deprecations
13
+ ^^^^^^^^^^^^
14
+ * Removed ``django_nyt.notify ``, use ``django_nyt.utils.notify ``
15
+
16
+
17
+
4
18
1.1
5
19
---
6
20
Original file line number Diff line number Diff line change 28
28
'Topic :: Internet :: WWW/HTTP :: Dynamic Content' ,
29
29
'Topic :: Software Development' ,
30
30
'Topic :: Software Development :: Libraries :: Application Frameworks' ,
31
- 'Programming Language :: Python :: 3.4' ,
31
+ 'Programming Language :: Python' ,
32
+ 'Programming Language :: Python :: 3' ,
32
33
'Programming Language :: Python :: 3.5' ,
33
34
'Programming Language :: Python :: 3.6' ,
35
+ 'Programming Language :: Python :: 3.7' ,
36
+ 'Programming Language :: Python :: 3 :: Only' ,
34
37
],
35
38
include_package_data = True ,
36
39
)
Original file line number Diff line number Diff line change 7
7
3.4: py34
8
8
3.5: py35,lint
9
9
3.6: py36
10
+ 3.7: py37
10
11
11
12
[travis:env]
12
13
DJANGO =
@@ -32,6 +33,7 @@ basepython =
32
33
py34: python3.4
33
34
py35: python3.5
34
35
py36: python3.6
36
+ py37: python3.7
35
37
36
38
37
39
[testenv:lint]
You can’t perform that action at this time.
0 commit comments