Skip to content
This repository was archived by the owner on Mar 27, 2026. It is now read-only.

Commit 81ed0eb

Browse files
author
Tomasz Jadczyk
committed
Bind protobuf to 3.19.6
1 parent 5b99fd8 commit 81ed0eb

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ Example:
2020
python3 -m venv .venv
2121
source .venv/bin/activate
2222
pip install --require-virtualenv --upgrade pip
23-
pip install -r requirements.txt
2423
pip install --require-virtualenv .
2524
```
2625

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["grpcio-tools>=1.48.2,<1.63", "setuptools>=59"]
2+
requires = ["grpcio-tools==1.38.1"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -9,7 +9,7 @@ dynamic = ["version"]
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
authors = [{ name = "Techmo sp. z o.o", email = "kontakt@techmo.pl" }]
1111
requires-python = ">=3.6.13"
12-
dependencies = ["grpcio>=1.48.2,<1.63", "protobuf>=4.21.0,<5"]
12+
dependencies = ["grpcio==1.38.1", "protobuf==3.19.6"]
1313

1414
[project.urls]
1515
repository = "https://github.com/techmo-pl/tts-api-python"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,11 +86,11 @@ def replace_imports_to_relatives(compiled_files: List[Path]):
8686

8787
install_requires=[
8888
'grpcio==1.38.1',
89-
'protobuf>=3.19.5,<3.20'
89+
'protobuf==3.19.6'
9090
]
9191

9292
setuptools.setup( name='techmo-tts-api',
93-
version='1.0.0+python36.001',
93+
version='1.0.0+python36.002',
9494
install_requires=install_requires,
9595
packages=setuptools.find_packages()
9696
)

0 commit comments

Comments
 (0)