From cc0fa0bc7531880a0f2217eca90ebce5faf7ac3d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Oct 2024 16:52:25 +0000 Subject: [PATCH 1/2] build(deps): bump mysql-connector-python from 8.0.26 to 9.1.0 Bumps [mysql-connector-python](https://github.com/mysql/mysql-connector-python) from 8.0.26 to 9.1.0. - [Changelog](https://github.com/mysql/mysql-connector-python/blob/trunk/CHANGES.txt) - [Commits](https://github.com/mysql/mysql-connector-python/compare/8.0.26...9.1.0) --- updated-dependencies: - dependency-name: mysql-connector-python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index c4369b22..43626ce5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -98,7 +98,7 @@ pytest-mock==3.10.0 pylama==8.4.1 semgrep==1.85.0 mysqlclient==2.1.1 -mysql-connector-python==8.0.26 +mysql-connector-python==9.1.0 django-celery-results==2.4.0 sqlalchemy==1.4.45 redis==4.4.4 From 9330d2c1d68964527ac0679c8df82be8fca4550a Mon Sep 17 00:00:00 2001 From: Razat Agarwal <93190131+razat-embold@users.noreply.github.com> Date: Thu, 7 Nov 2024 10:35:03 +0530 Subject: [PATCH 2/2] remove support for python3.8 in UTs --- .github/workflows/unit-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 3e762870..010c79a9 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -5,7 +5,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11'] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }}