From 42a3fa6984b51da6efc23754104591ddf4a76bdf Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Thu, 11 Nov 2021 11:20:18 -0600 Subject: [PATCH 1/2] docs: show that Python 3.9 and 3.10 are supported in classifiers --- setup.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.py b/setup.py index 7368b7bf..850b715f 100644 --- a/setup.py +++ b/setup.py @@ -72,6 +72,8 @@ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", "Operating System :: OS Independent", "Topic :: Internet", ], From 53aa1226c86107f44f4baa6d0db97421aa663a32 Mon Sep 17 00:00:00 2001 From: Tim Swast Date: Thu, 11 Nov 2021 11:24:57 -0600 Subject: [PATCH 2/2] add 3.9 and 3.10 as required checks --- .github/sync-repo-settings.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/sync-repo-settings.yaml b/.github/sync-repo-settings.yaml index 3e98ae70..a3b6ca04 100644 --- a/.github/sync-repo-settings.yaml +++ b/.github/sync-repo-settings.yaml @@ -13,3 +13,5 @@ branchProtectionRules: - 'Samples - Python 3.6' - 'Samples - Python 3.7' - 'Samples - Python 3.8' + - 'Samples - Python 3.9' + - 'Samples - Python 3.10'