Skip to content

Commit

Permalink
🔥 remove python 2 support. related to #303
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Jan 17, 2020
1 parent c1cd91e commit 7e26de6
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 8 deletions.
5 changes: 4 additions & 1 deletion .moban.cd/changelog.yml
Expand Up @@ -4,7 +4,10 @@ releases:
- changes:
- action: Removed
details:
- "`#360`: make gitfs2 and pypifs optional"
- "`#360`: make gitfs2 and pypifs optional."
- action: Updated
details:
- "`#360`: show friendlier error when unknown protocol exception was raised."
date: tbd
version: 0.7.0
- changes:
Expand Down
1 change: 1 addition & 0 deletions .moban.cd/moban.yml
Expand Up @@ -34,3 +34,4 @@ lint_command: make install_test format git-diff-check lint
moban_command: make update git-diff-check
setup_use_markers: true
setup_use_markers_fix: true
python_requires: ">=3.6"
3 changes: 0 additions & 3 deletions .moban.d/moban_travis.yml.jj2
Expand Up @@ -8,10 +8,7 @@ env:

{%block custom_python_versions%}
python:
- &pypy2 pypy2.7-6.0
- 3.7
- 3.6
- 3.5
- 2.7
- 3.8
{%endblock%}
3 changes: 0 additions & 3 deletions .travis.yml
Expand Up @@ -4,11 +4,8 @@ language: python
notifications:
email: false
python:
- &pypy2 pypy2.7-6.0
- 3.7
- 3.6
- 3.5
- 2.7
- 3.8
env:
- MINREQ=0
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.rst
Expand Up @@ -7,7 +7,12 @@ Change log
**Removed**

#. `#360 <https://github.com/moremoban/moban/issues/360>`_: make gitfs2 and
pypifs optional
pypifs optional.

**Updated**

#. `#360 <https://github.com/moremoban/moban/issues/360>`_: show friendlier
error when unknown protocol exception was raised.

0.6.8 - 7.12.2019
--------------------------------------------------------------------------------
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Expand Up @@ -76,6 +76,8 @@

]

PYTHON_REQUIRES = ">=3.6"

INSTALL_REQUIRES = [
"jinja2>=2.7.1",
"lml>=0.0.9",
Expand Down Expand Up @@ -258,6 +260,7 @@ def default_environment():
long_description=read_files(*FILES),
license=LICENSE,
keywords=KEYWORDS,
python_requires=PYTHON_REQUIRES,
extras_require=EXTRAS_REQUIRE,
tests_require=["nose"],
install_requires=INSTALL_REQUIRES,
Expand Down

0 comments on commit 7e26de6

Please sign in to comment.