Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-with-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
python: ["3.10", "3.11", "3.12", "3.13"] # 3.9 fails - gh-issue#56
python: ["3.10", "3.11", "3.12", "3.13"]

env:
ONEAPI_ROOT: /opt/intel/oneapi
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/conda-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
python: ['3.10', '3.11', '3.12', '3.13', '3.14']

steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:

strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
python: ['3.10', '3.11', '3.12', '3.13', '3.14']

steps:
- name: Cancel Previous Runs
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:

strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
experimental: [false]
runner: [ubuntu-latest]
continue-on-error: ${{ matrix.experimental }}
Expand Down Expand Up @@ -226,7 +226,7 @@ jobs:

strategy:
matrix:
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
experimental: [false]
runner: [windows-latest]
continue-on-error: ${{ matrix.experimental }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [dev] (MM/DD/YYYY)

### Removed
* Dropped support for Python 3.9 [gh-118](https://github.com/IntelPython/mkl-service/pull/118)

## [2.6.0] (10/06/2025)

### Added
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@ classifiers = [
"Programming Language :: C",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
Expand All @@ -58,7 +57,7 @@ keywords = ["MKL"]
license = "BSD-3-Clause"
name = "mkl-service"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9,<3.15"
requires-python = ">=3.10,<3.15"
Comment thread
ndgrigorian marked this conversation as resolved.

[project.optional-dependencies]
test = ["pytest"]
Expand Down
Loading