Skip to content

Commit

Permalink
Bugfix: drop Python 3.6 (jupyter#1556)
Browse files Browse the repository at this point in the history
* Drop Python 3.6 and test with Python 3.9

* Bugfix: increase `python_requires` to >=3.7

This finalises the drop in support for Python 3.6

Co-authored-by: Sylvain Corlay <sylvain.corlay@gmail.com>
  • Loading branch information
agoose77 and SylvainCorlay authored Apr 23, 2021
1 parent d795db5 commit 6f1a56f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ language: python

matrix:
include:
- python: 3.6
- python: 3.7
- python: 3.8
- python: 3.9
allow_failures:
- python: nightly
env:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def get_data_files():
package_data = package_data,
data_files = get_data_files(),
cmdclass = cmdclass,
python_requires = '>=3.6',
python_requires = '>=3.7',
author = 'Jupyter Development Team',
author_email = 'jupyter@googlegroups.com',
url = 'https://jupyter.org',
Expand Down

0 comments on commit 6f1a56f

Please sign in to comment.