diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 765ea86..5e90fcb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,10 +9,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.11 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: 3.11 + python-version: 3.12 - name: Install dependencies run: python -m pip install .[test] --upgrade pip - name: Test with pytest diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 95f70de..990c576 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,10 +14,10 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Set up Python 3.11 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.12" - name: Install dependencies run: python -m pip install build . --upgrade pip # - name: Build package distribution @@ -36,10 +36,10 @@ jobs: id-token: write steps: - uses: actions/checkout@v4 - - name: Set up Python 3.11 + - name: Set up Python 3.12 uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.12" - name: Install dependencies run: python -m pip install .[docs] --upgrade pip - name: Generate API docs & Build sphinx documentation