Skip to content

Commit

Permalink
Update requirements for google cloud trace to fix memory leak. (#429)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bogdan Drutu authored and c24t committed Dec 10, 2018
1 parent 4e29565 commit fd2f4f2
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Django==1.11.7
Flask==0.12.3
google-cloud-monitoring==0.29.0
google-cloud-trace==0.17.0
grpcio==1.8.3
google-cloud-monitoring==0.31.0
google-cloud-trace==0.20.1
grpcio==1.16.1
mock==2.0.0
mysql-connector==2.1.6
psycopg2==2.7.3.1
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,18 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

"""A setup module for Open Source Census Instrumentation Library"""

import io
from setuptools import setup, find_packages
from setuptools import find_packages
from setuptools import setup

extras = {
"stackdriver": ['google-cloud-trace>=0.17.0, <0.20'],
"stackdriver": ['google-cloud-trace>=0.20.1, <0.30'],
"prometheus_client": ['prometheus_client==0.3.1']
}

install_requires = [
'google-api-core >= 0.1.1, < 2.0.0',
'google-api-core >= 1.0.0, < 2.0.0',
]

setup(
Expand Down

0 comments on commit fd2f4f2

Please sign in to comment.