Skip to content

Commit 0798db3

Browse files
Copilotbhashemian
andcommitted
Remove Python 3.9 support from CI workflows and update target versions
Co-authored-by: bhashemian <3968947+bhashemian@users.noreply.github.com>
1 parent 47be4b3 commit 0798db3

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/pythonapp.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
strategy:
3333
matrix:
3434
os: [windows-latest, ubuntu-latest]
35-
python-version: ["3.9", "3.10", "3.11", "3.12"]
35+
python-version: ["3.10", "3.11", "3.12"]
3636
steps:
3737
- uses: actions/checkout@v6
3838
- name: Set up Python
@@ -54,7 +54,7 @@ jobs:
5454
MONAI_ZOO_AUTH_TOKEN: ${{ github.token }}
5555
strategy:
5656
matrix:
57-
python-version: ["3.9", "3.10", "3.11", "3.12"]
57+
python-version: ["3.10", "3.11", "3.12"]
5858
steps:
5959
- uses: actions/checkout@v6
6060
- name: Set up Python
@@ -88,7 +88,7 @@ jobs:
8888
MONAI_ZOO_AUTH_TOKEN: ${{ github.token }}
8989
strategy:
9090
matrix:
91-
python-version: ["3.9", "3.10", "3.11", "3.12"]
91+
python-version: ["3.10", "3.11", "3.12"]
9292
steps:
9393
- uses: actions/checkout@v6
9494
with:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ requires = [
1919

2020
[tool.black]
2121
line-length = 120
22-
target-version = ['py36', 'py37', 'py38']
22+
target-version = ['py310', 'py311', 'py312']
2323
include = '\.pyi?$'
2424
exclude = '''
2525
(

0 commit comments

Comments
 (0)