File tree 6 files changed +14
-8
lines changed
6 files changed +14
-8
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ releases:
4
4
- changes :
5
5
- action : Removed
6
6
details :
7
- - " `#360`: make gitfs2 and pypifs optional"
7
+ - " `#360`: make gitfs2 and pypifs optional."
8
+ - action : Updated
9
+ details :
10
+ - " `#360`: show friendlier error when unknown protocol exception was raised."
8
11
date : tbd
9
12
version : 0.7.0
10
13
- changes :
Original file line number Diff line number Diff line change @@ -34,3 +34,4 @@ lint_command: make install_test format git-diff-check lint
34
34
moban_command : make update git-diff-check
35
35
setup_use_markers : true
36
36
setup_use_markers_fix : true
37
+ python_requires : " >=3.6"
Original file line number Diff line number Diff line change 8
8
9
9
{%block custom_python_versions%}
10
10
python:
11
- - &pypy2 pypy2.7-6.0
12
11
- 3.7
13
12
- 3.6
14
- - 3.5
15
- - 2.7
16
13
- 3.8
17
14
{%endblock%}
Original file line number Diff line number Diff line change @@ -4,11 +4,8 @@ language: python
4
4
notifications :
5
5
email : false
6
6
python :
7
- - &pypy2 pypy2.7-6.0
8
7
- 3.7
9
8
- 3.6
10
- - 3.5
11
- - 2.7
12
9
- 3.8
13
10
env :
14
11
- MINREQ=0
Original file line number Diff line number Diff line change @@ -7,7 +7,12 @@ Change log
7
7
**Removed **
8
8
9
9
#. `#360 <https://github.com/moremoban/moban/issues/360 >`_: make gitfs2 and
10
- pypifs optional
10
+ pypifs optional.
11
+
12
+ **Updated **
13
+
14
+ #. `#360 <https://github.com/moremoban/moban/issues/360 >`_: show friendlier
15
+ error when unknown protocol exception was raised.
11
16
12
17
0.6.8 - 7.12.2019
13
18
--------------------------------------------------------------------------------
Original file line number Diff line number Diff line change 76
76
77
77
]
78
78
79
+ PYTHON_REQUIRES = ">=3.6"
80
+
79
81
INSTALL_REQUIRES = [
80
82
"jinja2>=2.7.1" ,
81
83
"lml>=0.0.9" ,
@@ -258,6 +260,7 @@ def default_environment():
258
260
long_description = read_files (* FILES ),
259
261
license = LICENSE ,
260
262
keywords = KEYWORDS ,
263
+ python_requires = PYTHON_REQUIRES ,
261
264
extras_require = EXTRAS_REQUIRE ,
262
265
tests_require = ["nose" ],
263
266
install_requires = INSTALL_REQUIRES ,
You can’t perform that action at this time.
0 commit comments