From 1d8ec6874e1c6081893de7cd7cbc86d1f6580320 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kamil=20Bregu=C5=82a?= Date: Tue, 21 Apr 2020 03:30:10 +0200 Subject: [PATCH] Remove apiclient.__version__ (#871) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Hello, We have removed __version__ var from googleapiclient/__init__.py https://github.com/googleapis/google-api-python-client/commit/f706cfd821ab7457e5db37abfc3619772657dd0e#diff-b926d296d4c856bcbf877809e4523562L15 so it won't work anymore. https://github.com/googleapis/google-api-python-client/issues/870 CC: @busunkim96 Fixes #870 🐈 --- apiclient/__init__.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/apiclient/__init__.py b/apiclient/__init__.py index 38dd24b111c..8d9c4ecb8f3 100644 --- a/apiclient/__init__.py +++ b/apiclient/__init__.py @@ -19,8 +19,6 @@ sample_tools = None from googleapiclient import schema -__version__ = googleapiclient.__version__ - _SUBMODULES = { "channel": channel, "discovery": discovery,