Skip to content

Commit

Permalink
Merge pull request #229 from 12rambau/py36
Browse files Browse the repository at this point in the history
drop support for Python 3.6
  • Loading branch information
blink1073 committed Dec 3, 2023
2 parents 1bb7d91 + c34cdcb commit 6e3c47a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:

strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8]
os: [ubuntu-latest]
include:
- os: windows-latest
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ repos:
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- repo: "https://gitlab.com/pycqa/flake8/"
- repo: "https://github.com/pycqa/flake8/"
rev: 3.9.2
hooks:
- id: flake8
Expand All @@ -14,7 +14,7 @@ repos:
- id: black
language_version: python3
- repo: "https://github.com/PyCQA/isort"
rev: 5.10.1
rev: 5.12.0
hooks:
- id: isort
- repo: https://github.com/asottile/pyupgrade
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
"nbconvert>=5.5",
"nbformat",
],
python_requires=">= 3.6",
python_requires=">= 3.7",
package_data={"jupyter_sphinx": ["thebelab/*", "css/*"]},
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py36,py37
envlist = py37

[testenv]
deps =
Expand Down

0 comments on commit 6e3c47a

Please sign in to comment.