diff --git a/.github/workflows/ci_consumption_workflow.yml b/.github/workflows/ci_consumption_workflow.yml index a7c2efd5..aff1c3d2 100644 --- a/.github/workflows/ci_consumption_workflow.yml +++ b/.github/workflows/ci_consumption_workflow.yml @@ -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 diff --git a/.github/workflows/ci_e2e_workflow.yml b/.github/workflows/ci_e2e_workflow.yml index 204ef083..9802783d 100644 --- a/.github/workflows/ci_e2e_workflow.yml +++ b/.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 diff --git a/.github/workflows/ci_ut_workflow.yml b/.github/workflows/ci_ut_workflow.yml index 5a154d01..d775170f 100644 --- a/.github/workflows/ci_ut_workflow.yml +++ b/.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 diff --git a/setup.py b/setup.py index a8bb03e9..dceb9be0 100644 --- a/setup.py +++ b/setup.py @@ -106,7 +106,7 @@ PACKAGES = [ ] INSTALL_REQUIRES = [ - "azure-functions==1.13.3", + "azure-functions==1.14.0", "python-dateutil~=2.8.2" ]