Skip to content

Commit ed79620

Browse files
committed
Drop Python 3.9
1 parent fda9fba commit ed79620

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
17-
numpy_version: ["numpy'<2'", "numpy'>=2'"]
16+
python: ["3.10", "3.11", "3.12", "3.13"]
17+
numpy_version: ["numpy'>=2'"]
1818

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

.github/workflows/build_pip.yaml

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

1818
strategy:
1919
matrix:
20-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
20+
python: ['3.10', '3.11', '3.12', '3.13', '3.14']
2121
use_pre: ["", "--pre"]
2222

2323
steps:

.github/workflows/conda-package.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
21+
python: ["3.10", "3.11", "3.12", "3.13"]
2222
steps:
2323
- name: Cancel Previous Runs
2424
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
@@ -75,7 +75,7 @@ jobs:
7575

7676
strategy:
7777
matrix:
78-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
78+
python: ["3.10", "3.11", "3.12", "3.13"]
7979
experimental: [false]
8080
runner: [ubuntu-latest]
8181
continue-on-error: ${{ matrix.experimental }}
@@ -146,7 +146,7 @@ jobs:
146146

147147
strategy:
148148
matrix:
149-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
149+
python: ["3.10", "3.11", "3.12", "3.13"]
150150
env:
151151
conda-bld: C:\Miniconda\conda-bld\win-64\
152152
steps:
@@ -209,7 +209,7 @@ jobs:
209209
shell: cmd /C CALL {0}
210210
strategy:
211211
matrix:
212-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
212+
python: ["3.10", "3.11", "3.12", "3.13"]
213213
experimental: [false]
214214
runner: [windows-latest]
215215
continue-on-error: ${{ matrix.experimental }}

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ classifiers = [
4545
"Programming Language :: C",
4646
"Programming Language :: Python",
4747
"Programming Language :: Python :: 3",
48-
"Programming Language :: Python :: 3.9",
4948
"Programming Language :: Python :: 3.10",
5049
"Programming Language :: Python :: 3.11",
5150
"Programming Language :: Python :: 3.12",
@@ -65,7 +64,7 @@ keywords = ["mkl_umath"]
6564
license = "BSD-3-Clause"
6665
name = "mkl_umath"
6766
readme = {file = "README.md", content-type = "text/markdown"}
68-
requires-python = ">=3.9,<3.15"
67+
requires-python = ">=3.10,<3.15"
6968

7069

7170
[project.optional-dependencies]

0 commit comments

Comments
 (0)