Skip to content

Commit da92991

Browse files
committed
fixed grpcio tools dependency bug
1 parent 3a4d837 commit da92991

File tree

2 files changed

+15
-2
lines changed

2 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log
22

3+
## Version 0.6.1
4+
5+
### Features
6+
7+
- None
8+
9+
### Bug Fixes
10+
11+
- Fixed grpcio-tools build dependency issue. Under certain circumstances (e.g., use of an older grpcio package), the
12+
installation will fail due to an incompatible grpcio-tools version getting installed at build time. The grpcio-tools
13+
version has been fixed for the build at 1.59. As a result the grpcio version also must at least be 1.59
14+
15+
316
## Version 0.6.0
417

518
### Features

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ include = ["philote_mdo/generated/*pb2.py", "philote_mdo/generated/*pb2.pyi", "p
1414

1515
[tool.poetry.dependencies]
1616
python = "^3.9"
17-
grpcio = "^1.49.1"
17+
grpcio = "^1.59"
1818
numpy = "^1.19.0"
1919
scipy = "^1.12.0"
2020

2121

2222
[build-system]
23-
requires = ["poetry-core", "grpcio-tools", "protoletariat"]
23+
requires = ["poetry-core", "grpcio-tools==1.59", "protoletariat"]
2424
build-backend = "poetry.core.masonry.api"
2525

2626

0 commit comments

Comments
 (0)