From 57f63e7255feb5e6afdc2e724d9137e27887ec0a Mon Sep 17 00:00:00 2001 From: Alex Strick van Linschoten Date: Mon, 27 Nov 2023 10:46:53 +0100 Subject: [PATCH] use python 3.9 instead --- .github/workflows/just-for-testing.yml | 6 +++--- scripts/test-migrations.sh | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/just-for-testing.yml b/.github/workflows/just-for-testing.yml index 58c069ea9df..ec259a3986a 100644 --- a/.github/workflows/just-for-testing.yml +++ b/.github/workflows/just-for-testing.yml @@ -16,15 +16,15 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v3 - - name: Set up Python 3.10 + - name: Set up Python 3.9 uses: actions/setup-python@v2 with: - python-version: '3.10' + python-version: '3.9' - name: Setup environment uses: ./.github/actions/setup_environment with: cache_version: ${{ secrets.GH_ACTIONS_CACHE_KEY }} - python-version: '3.10' + python-version: '3.9' os: ubuntu-latest - name: Test migrations across versions run: bash scripts/test-migrations.sh diff --git a/scripts/test-migrations.sh b/scripts/test-migrations.sh index 8f652e2cbb7..c7b0e6a3383 100755 --- a/scripts/test-migrations.sh +++ b/scripts/test-migrations.sh @@ -34,7 +34,7 @@ do source ".venv-$VERSION/bin/activate" # Install the specific version - pip3 install -U pip + pip3 install -U pip setuptools wheel pip3 install "zenml[templates]==$VERSION" # Run the tests for this version