Skip to content

Commit

Permalink
Update Python dependencies (#335)
Browse files Browse the repository at this point in the history
Update grpcio to match `pulumi`. Otherwise, there is a mismatch because `pulumi` depends on `~=1.60.1` but `pulumi-policy` is pinned to `==1.56.2`.
  • Loading branch information
justinvp committed Feb 20, 2024
1 parent a727381 commit 74993aa
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## HEAD (Unreleased)

- Python: Update `grpcio` dependency to match the `pulumi` package.
(https://github.com/pulumi/pulumi-policy/pull/335).

---

## 1.9.0 (2024-01-07)
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = "pypi"
[packages]
pulumi = ">=3.88.0,<4.0.0"
protobuf = "~=4.21"
grpcio = "==1.56.2"
grpcio = "~=1.60.1"

[dev-packages]
pylint = ">=2.1"
Expand Down
2 changes: 1 addition & 1 deletion sdk/python/lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ def readme():
install_requires=[
'pulumi>=3.88.0,<4.0.0',
'protobuf~=4.21',
'grpcio==1.56.2'
'grpcio~=1.60.1'
],
zip_safe=False)

0 comments on commit 74993aa

Please sign in to comment.