Skip to content

Commit 627396c

Browse files
committed
Drop python3.6 support
1 parent 6b595dc commit 627396c

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
os:
1919
- ubuntu-latest
2020
toxenv:
21-
- py36,report,codecov
2221
- py37,report,codecov
2322
- py38,report,codecov
2423
- py39,report,codecov

tests/test_make.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def fixture_from_dict(
8181
id_to_value: t.Mapping[
8282
str, t.Callable[[marshmallow.Schema, t.Dict[t.Any, t.Any], t.Any], None]
8383
],
84-
) -> _pytest.fixtures._FixtureFunction:
84+
) -> _pytest.fixtures.FixtureFunction:
8585
"""
8686
Create fixture parametrized to yield each value and labeled with the
8787
corresponding ID.

tox.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,12 @@ envlist =
55
clean,
66
check,
77
doc,
8-
{py36,py37,py38,py39,pypy3},
8+
{py37,py38,py39,pypy3},
99
report
1010

1111
[testenv]
1212
basepython =
1313
pypy3: {env:TOXPYTHON:pypy3}
14-
py36: {env:TOXPYTHON:python3.6}
1514
py37: {env:TOXPYTHON:python3.7}
1615
py38: {env:TOXPYTHON:python3.8}
1716
py39: {env:TOXPYTHON:python3.9}

0 commit comments

Comments
 (0)