Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.

Commit 1ca6015

Browse files
authored
Add google cloud core dependency to opencensus-ext-google-cloud-clientlibs (#1049)
* Add google cloud core dependency to opencensus-ext-google-cloud-clientlibs This dependency was not explicit before because it should be there if you are using a google cloud clientlib. However, if you install this package without the `google-cloud-core` package, you will see import errors. `google-cloud-core` dropped support for 3.4 and 3.5, but kept support for 2.7. The version specifiers reflect this.
1 parent c2d8de9 commit 1ca6015

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

contrib/opencensus-ext-google-cloud-clientlibs/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## Unreleased
44

5+
- Added missing google-cloud-core dependency
6+
[#1049](https://github.com/census-instrumentation/opencensus-python/pull/1049)
7+
58
## 0.1.2
69
Released 2019-04-24
710

contrib/opencensus-ext-google-cloud-clientlibs/setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,8 @@
4444
'opencensus >= 0.8.dev0, < 1.0.0',
4545
'opencensus-ext-grpc >= 0.3.0, < 1.0.0',
4646
'opencensus-ext-requests >= 0.1.2, < 1.0.0',
47+
'google-cloud-core ~= 1.7; python_version == "2.7" or python_version >= "3.6"', # noqa: E501
48+
'google-cloud-core ~= 1.4; python_version == "3.4" or python_version == "3.5"', # noqa: E501
4749
],
4850
extras_require={},
4951
license='Apache-2.0',

0 commit comments

Comments
 (0)