Skip to content

Commit 5a9ce3a

Browse files
update nox config to ignore Python versions 3.8 and 3.9 (#46)
1 parent dcce614 commit 5a9ce3a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

google-analytics-admin/noxfile_config.py

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

1717
TEST_CONFIG_OVERRIDE = {
1818
# You can opt out from the test for specific Python versions.
19-
"ignored_versions": ["2.7"],
19+
"ignored_versions": ["2.7", "3.8", "3.9"],
2020
# An envvar key for determining the project id to use. Change it
2121
# to 'BUILD_SPECIFIC_GCLOUD_PROJECT' if you want to opt in using a
2222
# build specific Cloud project. You can also use your own string

google-analytics-data/noxfile_config.py

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

1717
TEST_CONFIG_OVERRIDE = {
1818
# You can opt out from the test for specific Python versions.
19-
"ignored_versions": ["2.7"],
19+
"ignored_versions": ["2.7", "3.8", "3.9"],
2020
# An envvar key for determining the project id to use. Change it
2121
# to 'BUILD_SPECIFIC_GCLOUD_PROJECT' if you want to opt in using a
2222
# build specific Cloud project. You can also use your own string

0 commit comments

Comments
 (0)