File tree Expand file tree Collapse file tree 5 files changed +13
-19
lines changed Expand file tree Collapse file tree 5 files changed +13
-19
lines changed Original file line number Diff line number Diff line change 24
24
{% endif %}
25
25
{% endfor %}
26
26
{% block header %}
27
- '''
27
+ """
28
28
Template by pypi-mobans
29
- '''
29
+ """
30
30
31
31
{% endblock %}
32
32
import os
@@ -165,16 +165,16 @@ CLASSIFIERS = [
165
165
"Programming Language :: Python :: 3.6",
166
166
{% endif %}
167
167
168
- {% if min_python_version <= ["3","7"] %}
168
+ {%- if min_python_version <= ["3","7"] %}
169
169
"Programming Language :: Python :: 3.7",
170
170
{% endif %}
171
171
172
- {% if min_python_version <= ["3","8"] %}
172
+ {%- if min_python_version <= ["3","8"] %}
173
173
"Programming Language :: Python :: 3.8",
174
174
{% endif %}
175
175
176
- {%block additional_classifiers%}
177
- {%endblock %}
176
+ {% block additional_classifiers%}
177
+ {% endblock %}
178
178
]
179
179
180
180
{%macro handle_complex_dependency(complex_one) -%}
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
3
- '''
3
+ """
4
4
Template by pypi-mobans
5
- '''
5
+ """
6
6
7
7
import os
8
8
import sys
@@ -55,9 +55,7 @@ CLASSIFIERS = [
55
55
"Programming Language :: Python :: 3.4" ,
56
56
"Programming Language :: Python :: 3.5" ,
57
57
"Programming Language :: Python :: 3.6" ,
58
-
59
58
"Programming Language :: Python :: 3.7" ,
60
-
61
59
"Programming Language :: Python :: 3.8" ,
62
60
63
61
]
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
3
- '''
3
+ """
4
4
Template by pypi-mobans
5
- '''
5
+ """
6
6
7
7
import os
8
8
import sys
@@ -55,9 +55,7 @@ CLASSIFIERS = [
55
55
"Programming Language :: Python :: 3.4" ,
56
56
"Programming Language :: Python :: 3.5" ,
57
57
"Programming Language :: Python :: 3.6" ,
58
-
59
58
"Programming Language :: Python :: 3.7" ,
60
-
61
59
"Programming Language :: Python :: 3.8" ,
62
60
63
61
]
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python3
2
2
3
- '''
3
+ """
4
4
Template by pypi-mobans
5
- '''
5
+ """
6
6
7
7
import os
8
8
import sys
@@ -55,9 +55,7 @@ CLASSIFIERS = [
55
55
"Programming Language :: Python :: 3.4" ,
56
56
"Programming Language :: Python :: 3.5" ,
57
57
"Programming Language :: Python :: 3.6" ,
58
-
59
58
"Programming Language :: Python :: 3.7" ,
60
-
61
59
"Programming Language :: Python :: 3.8" ,
62
60
63
61
]
Original file line number Diff line number Diff line change @@ -23,7 +23,6 @@ def test_setup_use_markers_true():
23
23
yaml = YAML (typ = 'safe' )
24
24
context = yaml .load (content )
25
25
rendered = get_rendered_file (filename , context )
26
- print (rendered )
27
26
expected = get_file_content ('setup_use_markers_true.py.output' )
28
27
assert expected == rendered
29
28
@@ -35,5 +34,6 @@ def test_setup_use_markers_false():
35
34
yaml = YAML (typ = 'safe' )
36
35
context = yaml .load (content )
37
36
rendered = get_rendered_file (filename , context )
37
+ print (rendered )
38
38
expected = get_file_content ('setup_use_markers_false.py.output' )
39
39
assert expected == rendered
You can’t perform that action at this time.
0 commit comments