Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: update dependencies #393

Merged
merged 1 commit into from
Apr 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ jobs:
name: Install system dependencies.
command: |
apt-get update
apt-get install -y curl pandoc unzip git
apt-get install -y curl pandoc unzip
- run:
name: Install protoc 3.7.1.
command: |
Expand All @@ -287,7 +287,7 @@ jobs:
name: Install system dependencies.
command: |
apt-get update
apt-get install -y curl pandoc unzip git
apt-get install -y curl pandoc unzip
- run:
name: Install protoc 3.7.1.
command: |
Expand All @@ -311,7 +311,7 @@ jobs:
name: Install system dependencies.
command: |
apt-get update
apt-get install -y curl pandoc unzip git
apt-get install -y curl pandoc unzip
- run:
name: Install protoc 3.7.1.
command: |
Expand All @@ -335,7 +335,7 @@ jobs:
name: Install system dependencies.
command: |
apt-get update
apt-get install -y curl pandoc unzip git
apt-get install -y curl pandoc unzip
- run:
name: Install protoc 3.7.1.
command: |
Expand All @@ -359,7 +359,7 @@ jobs:
name: Install system dependencies.
command: |
apt-get update
apt-get install -y curl pandoc unzip git
apt-get install -y curl pandoc unzip
- run:
name: Install protoc 3.7.1.
command: |
Expand All @@ -383,7 +383,7 @@ jobs:
name: Install system dependencies.
command: |
apt-get update
apt-get install -y curl pandoc unzip git
apt-get install -y curl pandoc unzip
- run:
name: Install protoc 3.7.1.
command: |
Expand Down
2 changes: 1 addition & 1 deletion gapic/ads-templates/setup.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ setuptools.setup(
platforms='Posix; MacOS X; Windows',
include_package_data=True,
install_requires=(
'google-api-core >= 1.8.0, < 2.0.0dev',
'google-api-core >= 1.17.0, < 2.0.0dev',
'googleapis-common-protos >= 1.5.8',
'grpcio >= 1.10.0',
'proto-plus >= 0.4.0',
Expand Down
4 changes: 2 additions & 2 deletions gapic/templates/setup.py.j2
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ setuptools.setup(
platforms='Posix; MacOS X; Windows',
include_package_data=True,
install_requires=(
'google-auth >= 1.13.1',
'google-api-core >= 1.8.0, < 2.0.0dev',
'google-auth >= 1.14.0',
'google-api-core >= 1.17.0, < 2.0.0dev',
'googleapis-common-protos >= 1.5.8',
'grpcio >= 1.10.0',
'proto-plus >= 0.4.0',
Expand Down
4 changes: 0 additions & 4 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,6 @@ def showcase_unit(
"""Run the generated unit tests against the Showcase library."""

# Install pytest and gapic-generator-python
session.install(
"-e",
"git+https://github.com/googleapis/python-api-core.git@ca6c41cf460e505e6b228263170927270626222a#egg=google-api-core",
)
session.install('coverage', 'pytest', 'pytest-cov', 'pytest-xdist',)
session.install('.')

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
click==7.1.1
google-api-core==1.16.0
google-api-core==1.17.0
googleapis-common-protos==1.51.0
grpcio==1.28.1
jinja2==2.11.2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
include_package_data=True,
install_requires=(
'click >= 6.7',
'google-api-core >= 1.14.3',
'google-api-core >= 1.17.0',
'googleapis-common-protos >= 1.6.0',
'grpcio >= 1.24.3',
'jinja2 >= 2.10',
Expand Down