Skip to content

Commit 5aded95

Browse files
authored
Merge pull request #21583 from nsoranzo/drop_py3.9
Drop support for Python 3.9
2 parents 90edfad + 57cc112 commit 5aded95

163 files changed

Lines changed: 455 additions & 606 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ variables:
1515
jobs:
1616
get_code:
1717
docker:
18-
- image: cimg/python:3.9
18+
- image: cimg/python:3.10
1919
<<: *set_workdir
2020
steps:
2121
# Replace standard code checkout with shallow clone to speed things up.
@@ -73,7 +73,7 @@ jobs:
7373
- ~/repo
7474
validate_test_tools:
7575
docker:
76-
- image: cimg/python:3.9
76+
- image: cimg/python:3.10
7777
<<: *set_workdir
7878
steps:
7979
- *restore_repo_cache

.github/workflows/api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python-version: ['3.9']
34+
python-version: ['3.10']
3535
chunk: [0, 1]
3636
services:
3737
postgres:

.github/workflows/bioblend.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
fail-fast: false
3333
matrix:
3434
tox_env: [py314]
35-
galaxy_python_version: ['3.9']
35+
galaxy_python_version: ['3.10']
3636
steps:
3737
- name: Checkout Galaxy
3838
uses: actions/checkout@v6

.github/workflows/check_test_class_names.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: ['3.9']
17+
python-version: ['3.10']
1818
steps:
1919
- uses: actions/checkout@v6
2020
with:

.github/workflows/converter_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
strategy:
2626
matrix:
27-
python-version: ['3.9']
27+
python-version: ['3.10']
2828
steps:
2929
- if: github.event_name == 'schedule'
3030
run: |

.github/workflows/cwl_conformance.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
python-version: ['3.9']
29+
python-version: ['3.10']
3030
marker: ['green', 'red and required', 'red and not required']
3131
conformance-version: ['cwl_conformance_v1_0'] #, 'cwl_conformance_v1_1', 'cwl_conformance_v1_2']
3232
services:

.github/workflows/db_indexes.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ jobs:
2626
matrix:
2727
db: ['postgresql', 'sqlite']
2828
postgresql-version: ['17']
29-
python-version: ['3.9']
29+
python-version: ['3.10']
3030
include:
3131
- db: postgresql
3232
postgresql-version: '9.6'
33-
python-version: '3.9'
33+
python-version: '3.10'
3434
services:
3535
postgres:
3636
image: postgres:${{ matrix.postgresql-version }}

.github/workflows/dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
persist-credentials: false
1515
- uses: actions/setup-python@v6
1616
with:
17-
python-version: '3.9'
17+
python-version: '3.10'
1818
- name: Install uv
1919
uses: astral-sh/setup-uv@v7
2020
- name: Update dependencies

.github/workflows/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
runs-on: ubuntu-latest
3030
strategy:
3131
matrix:
32-
python-version: ['3.9']
32+
python-version: ['3.10']
3333
steps:
3434
- uses: actions/checkout@v6
3535
with:

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python-version: ['3.9']
21+
python-version: ['3.10']
2222
steps:
2323
- name: Get target branch name (push)
2424
if: github.event_name == 'push'

0 commit comments

Comments
 (0)