File tree 1 file changed +3
-6
lines changed
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change 20
20
from setuptools import setup
21
21
from setuptools .command import develop
22
22
23
- from azure_functions_worker .constants import BASE_EXT_SUPPORTED_PY_MINOR_VERSION
24
23
from azure_functions_worker .version import VERSION
25
24
from tests .utils .constants import (DEFERRED_BINDINGS_CSPROJ_TEMPLATE ,
26
25
EXTENSIONS_CSPROJ_TEMPLATE )
81
80
)
82
81
else :
83
82
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" )
85
85
)
86
86
87
- if sys .version_info .minor >= BASE_EXT_SUPPORTED_PY_MINOR_VERSION :
88
- INSTALL_REQUIRES .append ("azure-functions-extension-base" )
89
-
90
87
EXTRA_REQUIRES = {
91
88
"dev" : [
92
89
"azure-eventhub~=5.7.0" , # Used for EventHub E2E tests
115
112
"numpy" ,
116
113
"pre-commit"
117
114
],
118
- "deferred-bindings" : [
115
+ "test- deferred-bindings" : [
119
116
"azure-functions-extension-blob"
120
117
]
121
118
}
You can’t perform that action at this time.
0 commit comments