We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3574445 commit 0a29adcCopy full SHA for 0a29adc
server/setup.py
@@ -28,21 +28,24 @@ def run(self):
28
)
29
30
31
+PB_VER = 3.20
32
+
33
setup(
34
name="manticore_server",
35
version="0.0.1",
36
packages=find_packages(exclude=["tests", "tests.*"]),
37
python_requires=">=3.7",
38
install_requires=[
39
f"manticore[native] @ file://{Path(__file__).parent.resolve()}/..",
- "protobuf~=3.20",
40
+ f"protobuf~={PB_VER}",
41
"grpcio~=1.46",
42
"crytic-compile>=0.2.2",
43
],
44
extras_require={
45
"dev": [
46
"grpcio-tools",
47
"mypy-protobuf",
48
+ f"types-protobuf~={PB_VER}",
49
"shiv~=1.0.1",
50
"types-setuptools",
51
"black~=22.0",
0 commit comments