Skip to content

Commit 5df1161

Browse files
chore: move lint,cover,mypy session to use py3.8 (#1037)
1 parent 44d34c8 commit 5df1161

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/google-auth/noxfile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
]
3535

3636

37-
@nox.session(python="3.7")
37+
@nox.session(python="3.8")
3838
def lint(session):
3939
session.install(
4040
"flake8", "flake8-import-order", "docutils", CLICK_VERSION, BLACK_VERSION
@@ -67,7 +67,7 @@ def blacken(session):
6767
session.run("black", *BLACK_PATHS)
6868

6969

70-
@nox.session(python="3.6")
70+
@nox.session(python="3.8")
7171
def mypy(session):
7272
"""Verify type hints are mypy compatible."""
7373
session.install("-e", ".")
@@ -121,7 +121,7 @@ def unit_prev_versions(session):
121121
)
122122

123123

124-
@nox.session(python="3.7")
124+
@nox.session(python="3.8")
125125
def cover(session):
126126
session.install("-r", "testing/requirements.txt")
127127
session.install("-e", ".")

0 commit comments

Comments
 (0)