Skip to content

Commit

Permalink
Update grpcio to match the version used in pulumi (#361)
Browse files Browse the repository at this point in the history
The grpcio version used here should match the one used by the `pulumi` package.

After releasing pulumi/pulumi#17487, set the minimum version of the pulumi dependency to that version.

Ref pulumi/pulumi#17487
Ref pulumi/pulumi#17484
  • Loading branch information
julienp authored Oct 8, 2024
1 parent cce4475 commit 7bdae73
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 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/361).

---

## 1.12.0 (2024-07-23)
Expand Down
1 change: 1 addition & 0 deletions sdk/python/.pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ disable=raw-checker-failed,
invalid-name,
protected-access,
too-many-arguments,
too-many-positional-arguments,
too-many-branches,
too-many-locals,
too-many-return-statements,
Expand Down
8 changes: 4 additions & 4 deletions sdk/python/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ verify_ssl = true
name = "pypi"

[packages]
pulumi = ">=3.88.0,<4.0.0"
pulumi = ">=3.136.0,<4.0.0"
protobuf = "~=4.21"
grpcio = "~=1.60.1"
grpcio = "~=1.66.2"

[dev-packages]
pylint = ">=2.1"
mypy = ">=0.77"
pylint = ">=3.3.0"
mypy = ">=1.1.0"
types-protobuf = "*"
4 changes: 2 additions & 2 deletions sdk/python/lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ def readme():
]
},
install_requires=[
'pulumi>=3.88.0,<4.0.0',
'pulumi>=3.136.0,<4.0.0',
'protobuf~=4.21',
'grpcio~=1.60.1'
'grpcio~=1.66.2'
],
zip_safe=False)

0 comments on commit 7bdae73

Please sign in to comment.