Skip to content

Commit

Permalink
Limit grpc and protobuf (#504)
Browse files Browse the repository at this point in the history
  • Loading branch information
tnoczyns-volue authored Aug 30, 2024
1 parent b19b714 commit 166d00c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,20 @@ include = [

[tool.poetry.dependencies]
python = ">=3.9, <3.13"
grpcio = ">=1.37.0"
grpcio = ">=1.37.0, <=1.66.1"
pyarrow = ">=7.0.0"
protobuf = ">=3.20.1"
protobuf = ">=3.20.1, <=5.27.2"
winkerberos = { version = ">=0.9.1", markers = "sys_platform == 'win32'" }
kerberos = { version = "^1.3.1", markers = "sys_platform == 'linux'" }
bidict = ">=0.23.1"
python-dateutil = "^2.8.2"
# six is a dependecy of dateutil
# six is a dependency of dateutil
# version 1.16.0 is required for Python 3.12, see:
# https://bugzilla.mozilla.org/show_bug.cgi?id=1857492
six = "^1.16.0"

[tool.poetry.dev-dependencies]
grpcio-tools = ">=1.37.0"
grpcio-tools = ">=1.37.0, <=1.66.1"
Sphinx = ">=5.0.2"
sphinx-rtd-theme = "^0.5.2"
rtd = "^1.2.3"
Expand All @@ -76,7 +76,7 @@ markers = [
[build-system]
requires = [
"poetry-core>=1.9.0",
"grpcio-tools>=1.37.0"
"grpcio-tools>=1.37.0, <=1.66.1"
]
build-backend = "poetry.core.masonry.api"

Expand Down

0 comments on commit 166d00c

Please sign in to comment.