diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2024-07-18 15:33:30 +0200 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2024-07-22 09:05:44 +0200 |
| commit | 83ec18b1749ee1ca9a2b3a0ded615465a95b6cb3 (patch) | |
| tree | 6816f809e8f8d4cffe4204e212bc1e98cf5aaeec | |
| parent | c3d3af8ea369e16263c8330b1745ba101d1c8d62 (diff) | |
[5.0.x] Refs #34118 -- Used Python 3.12 for GitHub actions.
| -rw-r--r-- | .github/workflows/docs.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/linters.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/schedule_tests.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/selenium.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/tests.yml | 2 |
5 files changed, 10 insertions, 10 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index c7ec6da8e2..a12a9eac31 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -30,7 +30,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' cache: 'pip' cache-dependency-path: 'docs/requirements.txt' - run: python -m pip install -r docs/requirements.txt @@ -48,7 +48,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' - run: python -m pip install blacken-docs - name: Build docs run: | diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 28526264a9..f590b5a7dc 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -27,7 +27,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' - run: python -m pip install flake8 - name: flake8 # Pinned to v2.0.0. @@ -44,7 +44,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' - run: python -m pip install isort - name: isort # Pinned to v2.0.0. diff --git a/.github/workflows/schedule_tests.yml b/.github/workflows/schedule_tests.yml index 945aea900b..47b670d00e 100644 --- a/.github/workflows/schedule_tests.yml +++ b/.github/workflows/schedule_tests.yml @@ -18,7 +18,7 @@ jobs: python-version: - '3.10' - '3.11' - - '3.12-dev' + - '3.12' name: Windows, SQLite, Python ${{ matrix.python-version }} continue-on-error: true steps: @@ -60,7 +60,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' - name: Install and upgrade packaging tools @@ -94,7 +94,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' - name: Install and upgrade packaging tools diff --git a/.github/workflows/selenium.yml b/.github/workflows/selenium.yml index e1a1ec2cd6..edd910141d 100644 --- a/.github/workflows/selenium.yml +++ b/.github/workflows/selenium.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' - name: Install and upgrade packaging tools @@ -59,7 +59,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v4 with: - python-version: '3.11' + python-version: '3.12' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' - name: Install and upgrade packaging tools diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 559a3af107..18a3b7f083 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: python-version: - - '3.11' + - '3.12' name: Windows, SQLite, Python ${{ matrix.python-version }} steps: - name: Checkout |
