From a3cba2fabea45d28d2721e2027a4fac61816eb69 Mon Sep 17 00:00:00 2001 From: tongy-msft <91754176+tongyu-microsoft@users.noreply.github.com> Date: Thu, 16 May 2024 11:05:52 -0700 Subject: [PATCH 1/3] Update setup.py --- rai_core_flask/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rai_core_flask/setup.py b/rai_core_flask/setup.py index 797e6bd3cf..129b87450d 100644 --- a/rai_core_flask/setup.py +++ b/rai_core_flask/setup.py @@ -5,7 +5,7 @@ # The version must be incremented every time we push an update to pypi (but # not before) -VERSION = "0.7.5" +VERSION = "0.7.6" # supply contents of our README file as our package's long description with open("README.md", "r") as fh: From 59e820fe66a4ef698e8c5e217f117ca07e2d8b9b Mon Sep 17 00:00:00 2001 From: tongy-msft <91754176+tongyu-microsoft@users.noreply.github.com> Date: Thu, 16 May 2024 11:09:32 -0700 Subject: [PATCH 2/3] Update requirements.txt --- rai_core_flask/requirements.txt | 1 - 1 file changed, 1 deletion(-) diff --git a/rai_core_flask/requirements.txt b/rai_core_flask/requirements.txt index 4fd53c0651..658bcfd16b 100644 --- a/rai_core_flask/requirements.txt +++ b/rai_core_flask/requirements.txt @@ -7,4 +7,3 @@ itsdangerous>=2.0.1 greenlet>=1.1.2 gevent>=21.12.0 markupsafe<=2.1.2 -Werkzeug<=3.0.2 \ No newline at end of file From f3acc36e87ff638972a7f92eaf98f688e1411198 Mon Sep 17 00:00:00 2001 From: tongy-msft <91754176+tongyu-microsoft@users.noreply.github.com> Date: Thu, 16 May 2024 11:42:48 -0700 Subject: [PATCH 3/3] Update CI-rai_core_flask-pytest.yml --- .github/workflows/CI-rai_core_flask-pytest.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/CI-rai_core_flask-pytest.yml b/.github/workflows/CI-rai_core_flask-pytest.yml index 5dd2578259..894d82b5b9 100644 --- a/.github/workflows/CI-rai_core_flask-pytest.yml +++ b/.github/workflows/CI-rai_core_flask-pytest.yml @@ -18,12 +18,10 @@ jobs: matrix: operatingSystem: [ubuntu-20.04, ubuntu-latest, macos-latest, windows-latest] - pythonVersion: ["3.7", "3.8", "3.9", "3.10", "3.11"] + pythonVersion: ["3.8", "3.9", "3.10", "3.11"] exclude: - operatingSystem: macos-latest pythonVersion: "3.9" - - operatingSystem: ubuntu-20.04 - pythonVersion: "3.7" - operatingSystem: ubuntu-20.04 pythonVersion: "3.8" - operatingSystem: ubuntu-20.04 @@ -45,13 +43,6 @@ jobs: with: python-version: ${{ matrix.pythonVersion }} - - if: ${{ matrix.pythonVersion == '3.7' }} - name: Setup tools for python lt 3.8 - run: | - python -m pip install --upgrade "pip<=23.1.2" - pip install --upgrade setuptools - pip install --upgrade "pip-tools<=6.13.0" - - if: ${{ matrix.pythonVersion == '3.8' || matrix.pythonVersion == '3.9' || matrix.pythonVersion == '3.10' || matrix.pythonVersion == '3.11' }} name: Setup tools for python gte 3.8 run: |