File tree Expand file tree Collapse file tree 4 files changed +27
-17
lines changed Expand file tree Collapse file tree 4 files changed +27
-17
lines changed Original file line number Diff line number Diff line change 1
1
<!--
2
2
If this is a security-related patch stop immediately!
3
-
4
3
See http://docs.django-cms.org/en/latest/contributing/development-policies.html
5
4
-->
6
5
10
9
Fixes #
11
10
12
11
13
-
14
12
### Links to related discussion
15
13
16
14
17
-
18
15
### Proposed changes in this pull request
19
16
20
17
21
- ### Documentation checklist
18
+ ### General checklist
22
19
23
- * [ ] I have updated CHANGELOG.txt if appropriate
24
- * [ ] I have updated the release notes document if appropriate, with:
25
- * [ ] general notes
26
- * [ ] bug-fixes
27
- * [ ] improvements/new features
28
- * [ ] backwards-incompatible changes
29
- * [ ] required upgrade steps
30
- * [ ] names of contributors
31
- * [ ] I have updated other documentation
32
- * [ ] I have added my name to the AUTHORS file
33
- * [ ] This PR's documentation has been approved by Daniele Procida
20
+ * [ ] I have updated the CHANGELOG.txt
21
+ * [ ] I have created backports if necessary
22
+ * [ ] I have updated the documentation and/or amended the upgrade section
23
+ if necessary
Original file line number Diff line number Diff line change 1
1
language : python
2
2
3
3
python :
4
+ - 3.7
4
5
- 3.6
5
6
- 3.5
6
7
- 3.4
7
8
- 2.7
8
9
9
10
sudo : false
10
11
12
+ services :
13
+ - mysql
14
+ - postgresql
15
+
11
16
addons :
12
17
apt :
13
18
packages :
18
23
- node_modules
19
24
- $HOME/.pip/cache
20
25
21
-
22
26
env :
23
27
global :
24
28
# coveralls
@@ -69,6 +73,10 @@ matrix:
69
73
env : DJANGO=2.0 DATABASE_URL='postgres://postgres@127.0.0.1/djangocms_test' AUTH_USER_MODEL='emailuserapp.EmailUser'
70
74
- python : 3.6
71
75
env : DJANGO=2.0 DATABASE_URL='postgres://postgres@127.0.0.1/djangocms_test' AUTH_USER_MODEL='customuserapp.User'
76
+ - python : 3.7
77
+ env : DJANGO=2.0 DATABASE_URL='postgres://postgres@127.0.0.1/djangocms_test' AUTH_USER_MODEL='customuserapp.User'
78
+ dist : xenial
79
+ sudo : true
72
80
73
81
# DJANGO 2.1
74
82
- python : 3.5
@@ -83,6 +91,10 @@ matrix:
83
91
env : DJANGO=2.1 DATABASE_URL='postgres://postgres@127.0.0.1/djangocms_test' AUTH_USER_MODEL='customuserapp.User'
84
92
- python : 3.6
85
93
env : TEST_DOCS=1 DJANGO=2.1 DATABASE_URL='sqlite://localhost/:memory:'
94
+ - python : 3.7
95
+ env : DJANGO=2.1 DATABASE_URL='postgres://postgres@127.0.0.1/djangocms_test' AUTH_USER_MODEL='customuserapp.User'
96
+ dist : xenial
97
+ sudo : true
86
98
87
99
# DJANGO 2.2
88
100
- python : 3.5
@@ -101,6 +113,10 @@ matrix:
101
113
env : TEST_DOCS=1 DJANGO=2.2 DATABASE_URL='sqlite://localhost/:memory:'
102
114
dist : xenial
103
115
sudo : true
116
+ - python : 3.7
117
+ env : DJANGO=2.2 DATABASE_URL='postgres://postgres@127.0.0.1/djangocms_test' AUTH_USER_MODEL='customuserapp.User'
118
+ dist : xenial
119
+ sudo : true
104
120
allow_failures :
105
121
- python : 2.7
106
122
env : DJANGO=1.11 DATABASE_URL='sqlite://localhost/:memory:'
@@ -109,6 +125,7 @@ matrix:
109
125
- python : 3.4
110
126
- python : 3.5
111
127
- python : 3.6
128
+ - python : 3.7
112
129
fast_finish : true
113
130
114
131
before_script :
Original file line number Diff line number Diff line change 1
1
=== 3.7.0 (unreleased) ===
2
2
3
3
* Introduced Django 2.2 support.
4
+ * Introduced Python 3.7 support.
4
5
* Fixed test suite.
5
6
6
7
Original file line number Diff line number Diff line change 4
4
3.7.0 release notes
5
5
###################
6
6
7
- This release of django CMS concentrates on introducing support for Django 2.2 LTS.
7
+ This release of django CMS concentrates on introducing support for Django 2.2 LTS
8
+ and Python 3.7.
8
9
9
10
10
11
*******************
@@ -15,6 +16,7 @@ Improvements and new features
15
16
=============================
16
17
17
18
* introduced support for Django 2.2
19
+ * Introduced Python 3.7 support.
18
20
* Fixed test suite.
19
21
20
22
You can’t perform that action at this time.
0 commit comments