diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-10-13 16:34:26 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2025-10-17 19:25:02 +0200 |
| commit | 56977b466c33ca3da14a1ed2609172425a76a34e (patch) | |
| tree | 517a74133960b575c77134526e7ec03c9d62a192 /.github/workflows | |
| parent | 2d9c194d5a0d9ae746e16ee5f641e30d544dc31b (diff) | |
Refs #35844 -- Doc'd Python 3.14 compatibility.
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/docs.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/linters.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/postgis.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/schedule_tests.yml | 10 | ||||
| -rw-r--r-- | .github/workflows/screenshots.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/selenium.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/tests.yml | 2 |
7 files changed, 15 insertions, 15 deletions
diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 90731ebcfc..6e4a9cdd1b 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -29,7 +29,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' cache: 'pip' cache-dependency-path: 'docs/requirements.txt' - run: python -m pip install -r docs/requirements.txt @@ -47,7 +47,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' - run: python -m pip install blacken-docs - name: Build docs run: | @@ -68,7 +68,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' - run: python -m pip install sphinx-lint - name: Build docs run: | diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 9a70cb03b7..b5359efc3d 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -27,7 +27,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' - run: python -m pip install flake8 - name: flake8 # Pinned to v3.0.0. @@ -44,7 +44,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' - run: python -m pip install isort - name: isort # Pinned to v3.0.0. diff --git a/.github/workflows/postgis.yml b/.github/workflows/postgis.yml index 7976fdc03d..e20735233b 100644 --- a/.github/workflows/postgis.yml +++ b/.github/workflows/postgis.yml @@ -42,7 +42,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' - name: Update apt repo diff --git a/.github/workflows/schedule_tests.yml b/.github/workflows/schedule_tests.yml index 6ac72e24bb..402659b338 100644 --- a/.github/workflows/schedule_tests.yml +++ b/.github/workflows/schedule_tests.yml @@ -18,7 +18,7 @@ jobs: python-version: - '3.12' - '3.13' - - '3.14-dev' + - '3.14' name: Windows, SQLite, Python ${{ matrix.python-version }} continue-on-error: true steps: @@ -45,7 +45,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' cache: 'pip' - name: Install libmemcached-dev for pylibmc run: sudo apt-get install libmemcached-dev @@ -86,7 +86,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' - name: Install libmemcached-dev for pylibmc @@ -122,7 +122,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' - name: Install libmemcached-dev for pylibmc @@ -167,7 +167,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' - name: Install libmemcached-dev for pylibmc diff --git a/.github/workflows/screenshots.yml b/.github/workflows/screenshots.yml index c29cfc9eed..239b6958d8 100644 --- a/.github/workflows/screenshots.yml +++ b/.github/workflows/screenshots.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' 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 c5e22d70c3..b9a573e37b 100644 --- a/.github/workflows/selenium.yml +++ b/.github/workflows/selenium.yml @@ -24,7 +24,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' - name: Install libmemcached-dev for pylibmc @@ -61,7 +61,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.13' + python-version: '3.14' cache: 'pip' cache-dependency-path: 'tests/requirements/py3.txt' - name: Install libmemcached-dev for pylibmc diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index eb0966e7a2..9428a9de0c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,7 +23,7 @@ jobs: strategy: matrix: python-version: - - '3.13' + - '3.14' name: Windows, SQLite, Python ${{ matrix.python-version }} steps: - name: Checkout |
