Skip to content

Commit 7e26de6

Browse files
committed
🔥 remove python 2 support. related to #303
1 parent c1cd91e commit 7e26de6

File tree

6 files changed

+14
-8
lines changed

6 files changed

+14
-8
lines changed

.moban.cd/changelog.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ releases:
44
- changes:
55
- action: Removed
66
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."
811
date: tbd
912
version: 0.7.0
1013
- changes:

.moban.cd/moban.yml

+1
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ lint_command: make install_test format git-diff-check lint
3434
moban_command: make update git-diff-check
3535
setup_use_markers: true
3636
setup_use_markers_fix: true
37+
python_requires: ">=3.6"

.moban.d/moban_travis.yml.jj2

-3
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,7 @@ env:
88

99
{%block custom_python_versions%}
1010
python:
11-
- &pypy2 pypy2.7-6.0
1211
- 3.7
1312
- 3.6
14-
- 3.5
15-
- 2.7
1613
- 3.8
1714
{%endblock%}

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,8 @@ language: python
44
notifications:
55
email: false
66
python:
7-
- &pypy2 pypy2.7-6.0
87
- 3.7
98
- 3.6
10-
- 3.5
11-
- 2.7
129
- 3.8
1310
env:
1411
- MINREQ=0

CHANGELOG.rst

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ Change log
77
**Removed**
88

99
#. `#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.
1116

1217
0.6.8 - 7.12.2019
1318
--------------------------------------------------------------------------------

setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,8 @@
7676

7777
]
7878

79+
PYTHON_REQUIRES = ">=3.6"
80+
7981
INSTALL_REQUIRES = [
8082
"jinja2>=2.7.1",
8183
"lml>=0.0.9",
@@ -258,6 +260,7 @@ def default_environment():
258260
long_description=read_files(*FILES),
259261
license=LICENSE,
260262
keywords=KEYWORDS,
263+
python_requires=PYTHON_REQUIRES,
261264
extras_require=EXTRAS_REQUIRE,
262265
tests_require=["nose"],
263266
install_requires=INSTALL_REQUIRES,

0 commit comments

Comments
 (0)