Skip to content

Commit c7d0b10

Browse files
authored
Broaden google-cloud-core dependency (#2094)
* Broaden google-cloud-core dependency Limiting google-cloud-core to 1.4.* seems tighter than it needs to be. The version 1.7.2 (which is the latest before 2.0.0) passes tests and makes feast more interoperable as a library with other systems. Signed-off-by: Pamela Toman <ptoman@paloaltonetworks.com> * Distinguish signing and signing off commits in contrib guidance Signed-off-by: Pamela Toman <ptoman@paloaltonetworks.com>
1 parent e6ed3cb commit c7d0b10

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,17 @@ pre-commit install --hook-type pre-commit --hook-type pre-push
2525
```
2626
3. On push, the pre-commit hook will run. This runs `make format` and `make lint`.
2727

28-
### Signing commits
29-
Use git signing to sign your commits. See
28+
### Signing off commits
29+
Use git signoffs to sign your commits. See
3030
https://docs.github.com/en/github/authenticating-to-github/managing-commit-signature-verification for details
3131

32-
Then, you can sign commits with the `-s` flag:
32+
Then, you can sign off commits with the `-s` flag:
3333
```
3434
git commit -s -m "My first commit"
3535
```
3636

37+
GPG-signing commits with `-S` is optional.
38+
3739
### Incorporating upstream changes from master
3840
Our preference is the use of `git rebase [master]` instead of `git merge` : `git pull -r`.
3941

sdk/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
"google-cloud-bigquery-storage >= 2.0.0",
7474
"google-cloud-datastore>=2.1.*",
7575
"google-cloud-storage>=1.34.*,<1.41",
76-
"google-cloud-core==1.4.*",
76+
"google-cloud-core>=1.4.0,<2.0.0",
7777
]
7878

7979
REDIS_REQUIRED = [

0 commit comments

Comments
 (0)