Update Python SDK Version to 1.14.0 (#1223)

* Update Python SDK Version to 1.14.0

* Updating workflows

* Changing quotes

---------

Co-authored-by: AzureFunctionsPython <funcdisc@microsoft.com>
Co-authored-by: Gavin Aguiar <gavin@GavinPC>
This commit is contained in:
gavin-aguiar 2023-04-28 12:21:38 -05:00 коммит произвёл GitHub
Родитель a60ef25cd7
Коммит e85b3abfda
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
4 изменённых файлов: 5 добавлений и 4 удалений

Просмотреть файл

@ -28,6 +28,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
python -m pip install -U -e .[dev]
python setup.py build
- name: Running 3.7 Tests

4
.github/workflows/ci_e2e_workflow.yml поставляемый
Просмотреть файл

@ -58,9 +58,9 @@ jobs:
}
python -m pip install --upgrade pip
python -m pip install -U -e .[dev]
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
python -m pip install -U -e .[dev]
# Retry a couple times to avoid certificate issue
retry 5 python setup.py build
retry 5 python setup.py webhost --branch-name=dev

2
.github/workflows/ci_ut_workflow.yml поставляемый
Просмотреть файл

@ -55,8 +55,8 @@ jobs:
}
python -m pip install --upgrade pip
python -m pip install -U -e .[dev]
python -m pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple -U azure-functions --pre
python -m pip install -U -e .[dev]
# Retry a couple times to avoid certificate issue
retry 5 python setup.py build

Просмотреть файл

@ -106,7 +106,7 @@ PACKAGES = [
]
INSTALL_REQUIRES = [
"azure-functions==1.13.3",
"azure-functions==1.14.0",
"python-dateutil~=2.8.2"
]