Skip to content

Commit c031c36

Browse files
committed
drop Python 3.6 support
1 parent 40d3a90 commit c031c36

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-latest
88
strategy:
99
matrix:
10-
python-version: [3.6, 3.7, 3.8]
10+
python-version: [3.7, 3.8]
1111

1212
steps:
1313
- uses: actions/checkout@v2

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<img alt="License: MIT" src="https://img.shields.io/badge/License-MIT-purple.svg">
1111
</a>
1212

13-
Libraries for creating and controlling interactive web pages with Python 3.6 and above.
13+
Libraries for creating and controlling interactive web pages with Python 3.7 and above.
1414

1515
**Be sure to [read the Documentation](https://idom-docs.herokuapp.com)**
1616

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ IDOM |release|
55
:height: 250px
66

77
Libraries for defining and controlling interactive webpages with Python
8-
3.6 and above.
8+
3.7 and above.
99

1010
.. toctree::
1111
:maxdepth: 1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
package = {
2424
"name": name,
25-
"python_requires": ">=3.6",
25+
"python_requires": ">=3.7",
2626
"packages": find_packages(exclude=["tests*"]),
2727
"description": "Control the web with Python",
2828
"author": "Ryan Morshead",

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11

22
[tox]
33
envlist =
4-
{py36,py37}-nocov,
4+
py37-nocov,
55
py38-{cov,mypy,lint,docs}
66

77
[gh-actions]
88
python =
9-
3.6: py36-nocov
109
3.7: py37-nocov
1110
3.8: py38-{cov,mypy,lint,docs}
1211

0 commit comments

Comments
 (0)