Update Python versions to reflect that we now support 3.8 through 3.11
PiperOrigin-RevId: 569317472
diff --git a/python/py_extension.bzl b/python/py_extension.bzl
index 7b918bc..1de830f 100644
--- a/python/py_extension.bzl
+++ b/python/py_extension.bzl
@@ -27,9 +27,7 @@
linkshared = True,
linkstatic = True,
deps = deps + select({
- "//python:limited_api_3.7": ["@python-3.7.0//:python_headers"],
- "//python:full_api_3.7_win32": ["@nuget_python_i686_3.7.0//:python_full_api"],
- "//python:full_api_3.7_win64": ["@nuget_python_x86-64_3.7.0//:python_full_api"],
+ "//python:limited_api_3.8": ["@python-3.8.0//:python_headers"],
"//python:full_api_3.8_win32": ["@nuget_python_i686_3.8.0//:python_full_api"],
"//python:full_api_3.8_win64": ["@nuget_python_x86-64_3.8.0//:python_full_api"],
"//python:full_api_3.9_win32": ["@nuget_python_i686_3.9.0//:python_full_api"],