We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12e8ea2 commit 05160aeCopy full SHA for 05160ae
google/ads/googleads/__init__.py
@@ -20,3 +20,11 @@
20
import google.ads.googleads.util
21
22
VERSION = "27.0.0"
23
+
24
+# Checks if the current runtime is Python 3.9.
25
+if sys.version_info.major == 3 and sys.version_info.minor <= 9:
26
+ warnings.warn(
27
+ "Support for Python versions less than 3.9 is deprecated in the "
28
+ "google-ads package. Please upgrade to Python 3.10 or higher.",
29
+ category=DeprecationWarning,
30
+ )
0 commit comments