Skip to content

Commit bbf865a

Browse files
committed
setup.py
1 parent afb444a commit bbf865a

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

setup.py

+3-6
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
from setuptools import setup
2121
from setuptools.command import develop
2222

23-
from azure_functions_worker.constants import BASE_EXT_SUPPORTED_PY_MINOR_VERSION
2423
from azure_functions_worker.version import VERSION
2524
from tests.utils.constants import (DEFERRED_BINDINGS_CSPROJ_TEMPLATE,
2625
EXTENSIONS_CSPROJ_TEMPLATE)
@@ -81,12 +80,10 @@
8180
)
8281
else:
8382
INSTALL_REQUIRES.extend(
84-
("protobuf~=4.22.0", "grpcio-tools~=1.54.2", "grpcio~=1.54.2")
83+
("protobuf~=4.22.0", "grpcio-tools~=1.54.2", "grpcio~=1.54.2",
84+
"azure-functions-extension-base")
8585
)
8686

87-
if sys.version_info.minor >= BASE_EXT_SUPPORTED_PY_MINOR_VERSION:
88-
INSTALL_REQUIRES.append("azure-functions-extension-base")
89-
9087
EXTRA_REQUIRES = {
9188
"dev": [
9289
"azure-eventhub~=5.7.0", # Used for EventHub E2E tests
@@ -115,7 +112,7 @@
115112
"numpy",
116113
"pre-commit"
117114
],
118-
"deferred-bindings": [
115+
"test-deferred-bindings": [
119116
"azure-functions-extension-blob"
120117
]
121118
}

0 commit comments

Comments
 (0)