diff --git a/.github/workflows/test-execution.yml b/.github/workflows/test-execution.yml index d7b4665..d994b08 100644 --- a/.github/workflows/test-execution.yml +++ b/.github/workflows/test-execution.yml @@ -33,7 +33,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] poetry-version: ["latest"] steps: - uses: actions/checkout@v4 @@ -41,7 +41,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - - uses: abatilo/actions-poetry@v3.0.1 + - uses: abatilo/actions-poetry@v2 with: poetry-version: ${{ matrix.poetry-version }} - name: View poetry --help @@ -49,7 +49,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install pytest + python -m pip install --upgrade pytest + python -m pip install --upgrade poetry if [ -f requirements.txt ]; then pip install -r requirements.txt; fi if [ -f test_requirements.txt ]; then pip install -r test_requirements.txt; fi poetry install --with dev