Skip to content

Commit

Permalink
use python 3.9 instead
Browse files Browse the repository at this point in the history
  • Loading branch information
strickvl committed Nov 27, 2023
1 parent d49c7eb commit 57f63e7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/just-for-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion scripts/test-migrations.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 57f63e7

Please sign in to comment.