Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Commit d924a99

Browse files
committed
Remove 3.6
1 parent 9f98488 commit d924a99

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

noxfile.py

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

3232
DEFAULT_PYTHON_VERSION = "3.8"
3333

34-
UNIT_TEST_PYTHON_VERSIONS = ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
34+
UNIT_TEST_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.11"]
3535
UNIT_TEST_STANDARD_DEPENDENCIES = [
3636
"mock",
3737
"asyncmock",

tests/unit/test_helpers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def test_credentials_from_session(session):
9696
assert credentials._client_secret == CLIENT_SECRETS_INFO["web"]["client_secret"]
9797
assert credentials._token_uri == CLIENT_SECRETS_INFO["web"]["token_uri"]
9898
assert credentials.scopes == session.scope
99-
assert credentials.granted_scopes == None
99+
assert credentials.granted_scopes is None
100100

101101

102102
def test_credentials_from_session_granted_scopes(session):

0 commit comments

Comments
 (0)