Skip to content

Commit 7b338c4

Browse files
committed
Update mypy, use Py 3.8 instead of 3.7 for testing
1 parent 72b3549 commit 7b338c4

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.travis.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ python:
1111
- pypy3
1212
matrix:
1313
include:
14-
- python: 3.6
14+
- python: 3.8
1515
env: TOXENV=flake8
16-
- python: 3.6
16+
- python: 3.8
1717
env: TOXENV=black
18-
- python: 3.6
18+
- python: 3.8
1919
env: TOXENV=import-order
20-
- python: 3.6
20+
- python: 3.8
2121
env: TOXENV=mypy
22-
- python: 3.6
22+
- python: 3.8
2323
env: TOXENV=manifest
2424
cache: pip
2525
install: pip install tox-travis

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"flake8==3.7.9",
3333
"isort<4.0.0",
3434
"black==19.10b0",
35-
"mypy==0.761",
35+
"mypy==0.770",
3636
"check-manifest>=0.40,<1",
3737
] + tests_require
3838

tox.ini

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist =
2+
envlist =
33
black,flake8,import-order,mypy,manifest,
44
py{27,35,36,37,38,39-dev,py,py3}
55
; requires = tox-conda
@@ -14,42 +14,42 @@ setenv =
1414
MULTIDICT_NO_EXTENSIONS = 1 ; Related to https://github.com/aio-libs/multidict
1515
YARL_NO_EXTENSIONS = 1 ; Related to https://github.com/aio-libs/yarl
1616
install_command = python -m pip install --ignore-installed {opts} {packages}
17-
whitelist_externals =
17+
whitelist_externals =
1818
python
1919
deps = -e.[test]
2020
; Prevent installing issues: https://github.com/ContinuumIO/anaconda-issues/issues/542
2121
commands =
2222
pip install -U setuptools
2323
py{27,35,py}: pytest tests {posargs}
24-
py{36,38,39-dev,py3}: pytest tests tests_py36 {posargs}
25-
py{37}: pytest tests tests_py36 {posargs: --cov-report=term-missing --cov=gql}
24+
py{36,37,39-dev,py3}: pytest tests tests_py36 {posargs}
25+
py{38}: pytest tests tests_py36 {posargs: --cov-report=term-missing --cov=gql}
2626

2727
[testenv:black]
28-
basepython=python3.6
28+
basepython=python3.8
2929
deps = -e.[dev]
3030
commands =
3131
black --check gql tests
3232

3333
[testenv:flake8]
34-
basepython = python3.6
34+
basepython = python3.8
3535
deps = -e.[dev]
3636
commands =
3737
flake8 gql tests
3838

3939
[testenv:import-order]
40-
basepython=python3.6
40+
basepython=python3.8
4141
deps = -e.[dev]
4242
commands =
4343
isort -rc gql/ tests/
4444

4545
[testenv:mypy]
46-
basepython=python3.6
46+
basepython=python3.8
4747
deps = -e.[dev]
4848
commands =
4949
mypy gql tests --ignore-missing-imports
5050

5151
[testenv:manifest]
52-
basepython = python3.6
52+
basepython = python3.8
5353
deps = -e.[dev]
5454
commands =
5555
check-manifest -v

0 commit comments

Comments
 (0)