Skip to content

Commit 0ddf45f

Browse files
authored
Merge branch 'master' into linkcheck
2 parents 40a5630 + f952dc6 commit 0ddf45f

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ repos:
33
rev: 19.3b0
44
hooks:
55
- id: black
6-
language_version: python3.7
6+
language_version: python3.8
77
# override until resolved: https://github.com/ambv/black/issues/402
88
files: \.pyi?$
99
types: []
@@ -23,7 +23,7 @@ repos:
2323
rev: v4.3.20
2424
hooks:
2525
- id: isort
26-
language_version: python3.7
26+
language_version: python3.8
2727

2828
- repo: https://github.com/pre-commit/pre-commit-hooks
2929
rev: v2.2.3

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,13 @@ jobs:
1919
- python: '3.7'
2020
env:
2121
- TOXENV=py37,report,codecov
22-
- python: '3.7'
22+
- python: '3.8'
23+
env:
24+
- TOXENV=py38,report,codecov
25+
- python: '3.8'
2326
env:
2427
- TOXENV=doc
25-
- python: '3.7'
28+
- python: '3.8'
2629
env:
2730
- TOXENV=check
2831
before_install:

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ def read_extras(*prefixes):
7777
"Programming Language :: Python :: 3",
7878
"Programming Language :: Python :: 3.6",
7979
"Programming Language :: Python :: 3.7",
80+
"Programming Language :: Python :: 3.8",
8081
"Programming Language :: Python :: Implementation :: CPython",
8182
"Programming Language :: Python :: Implementation :: PyPy",
8283
# uncomment if you test on these interpreters:
@@ -88,6 +89,7 @@ def read_extras(*prefixes):
8889
keywords=[
8990
# eg: "keyword1", "keyword2", "keyword3",
9091
],
92+
python_requires=">=3.6",
9193
install_requires=INSTALL_REQUIRES
9294
# eg: "aspectlib==1.1.1", "six>=1.7",
9395
,

tox.ini

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@ envlist =
55
clean,
66
check,
77
doc,
8-
{py36,py37,pypy3},
8+
{py36,py37,py38,pypy3},
99
report
1010

1111
[testenv]
1212
basepython =
1313
pypy3: {env:TOXPYTHON:pypy3}
14-
{doc,spell}: {env:TOXPYTHON:python3.7}
14+
{doc,spell}: {env:TOXPYTHON:python3.8}
1515
py36: {env:TOXPYTHON:python3.6}
1616
py37: {env:TOXPYTHON:python3.7}
17+
py38: {env:TOXPYTHON:python3.8}
1718
{bootstrap,clean,check,report,codecov}: {env:TOXPYTHON:python3}
1819
setenv =
1920
PYTHONPATH={toxinidir}/tests
@@ -55,7 +56,7 @@ deps =
5556
pyenchant
5657

5758
[testenv:doc]
58-
basepython=python3.7
59+
basepython=python3.8
5960
deps =
6061
-r{toxinidir}/docs/requirements.txt
6162

0 commit comments

Comments
 (0)