diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d5f9f79..d2d5a50 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -32,7 +32,7 @@ jobs: - name: Install Python uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - name: install poetry run: | python -m pip install --upgrade pip wheel pipx @@ -63,7 +63,7 @@ jobs: - name: Install Python uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.12 - name: install poetry run: | python -m pip install --upgrade pip wheel pipx diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1559f76..45d5868 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python: ['3.9', '3.10', '3.11'] + python: ['3.9', '3.10', '3.11', '3.12'] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4