File tree 4 files changed +6
-11
lines changed
azure_functions_worker/bindings
4 files changed +6
-11
lines changed Original file line number Diff line number Diff line change 32
32
python-version : ${{ matrix.python-version }}
33
33
- name : Install dependencies
34
34
run : |
35
- python -m pip install --upgrade pip==23.0
35
+ python -m pip install --upgrade pip
36
36
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
37
37
python -m pip install -U -e .[dev]
38
38
python setup.py build
Original file line number Diff line number Diff line change 58
58
done
59
59
}
60
60
61
- python -m pip install --upgrade pip==23.0
61
+ python -m pip install --upgrade pip
62
62
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
63
63
python -m pip install -U -e .[dev]
64
64
if [[ "${{ matrix.python-version }}" != "3.7" && "${{ matrix.python-version }}" != "3.8" ]]; then
Original file line number Diff line number Diff line change 56
56
done
57
57
}
58
58
59
- python -m pip install --upgrade pip==23.0
59
+ python -m pip install --upgrade pip
60
60
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
61
61
python -m pip install -U -e .[dev]
62
62
Original file line number Diff line number Diff line change @@ -44,14 +44,9 @@ def load_binding_registry() -> None:
44
44
# The base extension supports python 3.8+
45
45
if sys .version_info .minor >= BASE_EXT_SUPPORTED_PY_MINOR_VERSION :
46
46
# Import the base extension
47
- try :
48
- import azurefunctions .extensions .base as clients
49
- global DEFERRED_BINDING_REGISTRY
50
- DEFERRED_BINDING_REGISTRY = clients .get_binding_registry ()
51
- except ImportError :
52
- # This means that the customer hasn't imported the library.
53
- # This isn't an error.
54
- pass
47
+ import azurefunctions .extensions .base as clients
48
+ global DEFERRED_BINDING_REGISTRY
49
+ DEFERRED_BINDING_REGISTRY = clients .get_binding_registry ()
55
50
56
51
57
52
def get_binding (bind_name : str ,
You can’t perform that action at this time.
0 commit comments