From 5681a0b9719821ec8688c84791070bc163290f9b Mon Sep 17 00:00:00 2001 From: Nick Janetakis Date: Wed, 13 Sep 2023 20:45:51 -0400 Subject: [PATCH] Update all CI and test dependencies --- .github/workflows/ci.yml | 6 +++--- tests/example_app/requirements.txt | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9dc39eb..8d03b66 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,10 +13,10 @@ jobs: steps: - uses: "actions/checkout@v2" - - name: "Set up Python 3.8" + - name: "Set up Python 3.11" uses: "actions/setup-python@v1" with: - python-version: "3.8" + python-version: "3.11" - name: "Lint extension" run: | @@ -25,7 +25,7 @@ jobs: - name: "Install dependencies and local package" run: | - pip3 install Flask==1.1.2 alembic==1.4.3 + pip3 install Flask==2.3.3 alembic==1.12.0 make install - name: "Ensure everything works" diff --git a/tests/example_app/requirements.txt b/tests/example_app/requirements.txt index 52ff3d2..628411b 100644 --- a/tests/example_app/requirements.txt +++ b/tests/example_app/requirements.txt @@ -1,5 +1,5 @@ -Flask==1.1.2 -SQLAlchemy==1.3.20 -SQLAlchemy-Utils==0.36.8 -Flask-SQLAlchemy==2.4.4 +Flask==2.3.3 +SQLAlchemy==2.0.20 +SQLAlchemy-Utils==0.41.0 +Flask-SQLAlchemy==3.1.1 Flask-DB==0.3.2