Skip to content

Commit 6aedb9d

Browse files
authored
Merge branch 'dev' into pthummar/add_py311_tests
2 parents 4064726 + a8a4d42 commit 6aedb9d

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

setup.py

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -106,19 +106,13 @@
106106
]
107107

108108
INSTALL_REQUIRES = [
109-
"azure-functions==1.15.1b1",
110-
"python-dateutil~=2.8.2"
109+
"azure-functions==1.15.1b2",
110+
"python-dateutil~=2.8.2",
111+
"protobuf~=4.22.0",
112+
"grpcio-tools~=1.54.2",
113+
"grpcio~=1.54.2"
111114
]
112115

113-
if sys.version_info[:3] < (3, 9, 0):
114-
INSTALL_REQUIRES.extend(
115-
("protobuf~=3.19.3", "grpcio-tools~=1.43.0", "grpcio~=1.43.0")
116-
)
117-
else:
118-
INSTALL_REQUIRES.extend(
119-
("protobuf~=4.22.0", "grpcio-tools~=1.54.2", "grpcio~=1.54.2")
120-
)
121-
122116
EXTRA_REQUIRES = {
123117
"dev": [
124118
"azure-eventhub~=5.7.0", # Used for EventHub E2E tests

0 commit comments

Comments
 (0)