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

Commit fd2f4f2

Browse files
Bogdan Drutuc24t
authored andcommitted
Update requirements for google cloud trace to fix memory leak. (#429)
1 parent 4e29565 commit fd2f4f2

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

requirements-test.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Django==1.11.7
22
Flask==0.12.3
3-
google-cloud-monitoring==0.29.0
4-
google-cloud-trace==0.17.0
5-
grpcio==1.8.3
3+
google-cloud-monitoring==0.31.0
4+
google-cloud-trace==0.20.1
5+
grpcio==1.16.1
66
mock==2.0.0
77
mysql-connector==2.1.6
88
psycopg2==2.7.3.1

setup.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,18 @@
1111
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
14-
1514
"""A setup module for Open Source Census Instrumentation Library"""
1615

17-
import io
18-
from setuptools import setup, find_packages
16+
from setuptools import find_packages
17+
from setuptools import setup
1918

2019
extras = {
21-
"stackdriver": ['google-cloud-trace>=0.17.0, <0.20'],
20+
"stackdriver": ['google-cloud-trace>=0.20.1, <0.30'],
2221
"prometheus_client": ['prometheus_client==0.3.1']
2322
}
2423

2524
install_requires = [
26-
'google-api-core >= 0.1.1, < 2.0.0',
25+
'google-api-core >= 1.0.0, < 2.0.0',
2726
]
2827

2928
setup(

0 commit comments

Comments
 (0)