Skip to content

Commit 6e3c47a

Browse files
authored
Merge pull request #229 from 12rambau/py36
drop support for Python 3.6
2 parents 1bb7d91 + c34cdcb commit 6e3c47a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
python-version: [3.6, 3.7, 3.8]
11+
python-version: [3.7, 3.8]
1212
os: [ubuntu-latest]
1313
include:
1414
- os: windows-latest

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ repos:
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer
7-
- repo: "https://gitlab.com/pycqa/flake8/"
7+
- repo: "https://github.com/pycqa/flake8/"
88
rev: 3.9.2
99
hooks:
1010
- id: flake8
@@ -14,7 +14,7 @@ repos:
1414
- id: black
1515
language_version: python3
1616
- repo: "https://github.com/PyCQA/isort"
17-
rev: 5.10.1
17+
rev: 5.12.0
1818
hooks:
1919
- id: isort
2020
- repo: https://github.com/asottile/pyupgrade

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
"nbconvert>=5.5",
3636
"nbformat",
3737
],
38-
python_requires=">= 3.6",
38+
python_requires=">= 3.7",
3939
package_data={"jupyter_sphinx": ["thebelab/*", "css/*"]},
4040
)

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36,py37
2+
envlist = py37
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)