Skip to content

Commit 33df9e8

Browse files
committed
Drop Python 3.9 support
1 parent 254b5b4 commit 33df9e8

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/build-with-clang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python: ["3.10", "3.11", "3.12", "3.13"] # 3.9 fails - gh-issue#56
17+
python: ["3.10", "3.11", "3.12", "3.13"]
1818

1919
env:
2020
ONEAPI_ROOT: /opt/intel/oneapi

.github/workflows/conda-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
strategy:
2323
matrix:
24-
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
24+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
2525

2626
steps:
2727
- name: Cancel Previous Runs
@@ -90,7 +90,7 @@ jobs:
9090

9191
strategy:
9292
matrix:
93-
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
93+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
9494

9595
steps:
9696
- name: Cancel Previous Runs
@@ -152,7 +152,7 @@ jobs:
152152

153153
strategy:
154154
matrix:
155-
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
155+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
156156
experimental: [false]
157157
runner: [ubuntu-latest]
158158
continue-on-error: ${{ matrix.experimental }}
@@ -226,7 +226,7 @@ jobs:
226226

227227
strategy:
228228
matrix:
229-
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
229+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
230230
experimental: [false]
231231
runner: [windows-latest]
232232
continue-on-error: ${{ matrix.experimental }}

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@ classifiers = [
3838
"Programming Language :: C",
3939
"Programming Language :: Python",
4040
"Programming Language :: Python :: 3",
41-
"Programming Language :: Python :: 3.9",
4241
"Programming Language :: Python :: 3.10",
4342
"Programming Language :: Python :: 3.11",
4443
"Programming Language :: Python :: 3.12",
@@ -58,7 +57,7 @@ keywords = ["MKL"]
5857
license = "BSD-3-Clause"
5958
name = "mkl-service"
6059
readme = {file = "README.md", content-type = "text/markdown"}
61-
requires-python = ">=3.9,<3.15"
60+
requires-python = ">=3.10,<3.15"
6261

6362
[project.optional-dependencies]
6463
test = ["pytest"]

0 commit comments

Comments
 (0)