Skip to content

Commit 363031c

Browse files
authored
Merge pull request #118 from IntelPython/drop-python-3.9
Drop Python 3.9 support
2 parents 254b5b4 + eddc97e commit 363031c

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-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 }}

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [dev] (MM/DD/YYYY)
8+
9+
### Removed
10+
* Dropped support for Python 3.9 [gh-118](https://github.com/IntelPython/mkl-service/pull/118)
11+
712
## [2.6.0] (10/06/2025)
813

914
### Added

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)