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

Bump packages #41

Merged
merged 6 commits into from
Feb 13, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
run: |
pip install -U pip
pip install pycodestyle coverage pytest pypandoc
python setup.py install
pip3 install .
- name: Display Python dependencies
run: |
pip3 freeze
Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@
package_dir={'bigquery_fdw': 'src'},
# external dependencies
install_requires=[
'google-cloud-bigquery==3.11.2',
'google-auth==2.21.0',
'google-auth-oauthlib==1.0.0',
'protobuf==4.21.8', # Forcing version for google-cloud-bigquery
'grpcio==1.53.0', # Forcing version for google-cloud-bigquery
'grpcio-status==1.50.0', # Forcing version for google-cloud-bigquery
'google-cloud-bigquery==3.17.2',
'google-auth==2.27.0',
'google-auth-oauthlib==1.2.0',
# 'protobuf==4.21.8', # Forcing version for google-cloud-bigquery
# 'grpcio==1.60.1', # Forcing version for google-cloud-bigquery
# 'grpcio-status==1.60.1', # Forcing version for google-cloud-bigquery
],
entry_points={
'console_scripts': [
Expand Down
Loading