Skip to content

Commit d4793fe

Browse files
committed
drop Python 3.9
add 3.13 to checks
1 parent 48bb905 commit d4793fe

File tree

4 files changed

+11
-16
lines changed

4 files changed

+11
-16
lines changed

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

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

1313
strategy:
1414
matrix:
15-
python: ["3.9", "3.10", "3.11", "3.12", "3.13"]
16-
numpy_version: ["numpy'<2'", "numpy'>=2'"]
15+
python: ["3.10", "3.11", "3.12", "3.13"]
16+
numpy_version: ["numpy'>=2'"]
1717
env:
1818
ONEAPI_ROOT: /opt/intel/oneapi
1919

.github/workflows/conda-package-cf.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
python: ["3.9", "3.10", "3.11", "3.12"]
22+
python: ["3.10", "3.11", "3.12", "3.13"]
2323
steps:
2424
- uses: actions/checkout@v4
2525
with:
@@ -66,7 +66,7 @@ jobs:
6666

6767
strategy:
6868
matrix:
69-
python: ["3.9", "3.10", "3.11", "3.12"]
69+
python: ["3.10", "3.11", "3.12", "3.13"]
7070
env:
7171
conda-bld: C:\Miniconda\conda-bld\win-64\
7272
steps:
@@ -108,8 +108,8 @@ jobs:
108108

109109
strategy:
110110
matrix:
111-
python: ["3.9", "3.10", "3.11", "3.12"]
112-
numpy: ["1.26*", "2*"]
111+
python: ["3.10", "3.11", "3.12", "3.13"]
112+
numpy: ["2*"]
113113
experimental: [false]
114114
runner: [ubuntu-latest]
115115
continue-on-error: ${{ matrix.experimental }}
@@ -176,8 +176,8 @@ jobs:
176176

177177
strategy:
178178
matrix:
179-
python: ["3.9", "3.10", "3.11", "3.12"]
180-
numpy: ["1.26*", "2*"]
179+
python: ["3.10", "3.11", "3.12", "3.13"]
180+
numpy: ["2*"]
181181
experimental: [false]
182182
runner: [windows-latest]
183183
continue-on-error: ${{ matrix.experimental }}

.github/workflows/conda-package.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
python: ["3.9", "3.10", "3.11", "3.12"]
22+
python: ["3.10", "3.11", "3.12", "3.13"]
2323
steps:
2424
- uses: actions/checkout@v4
2525
with:
@@ -66,7 +66,7 @@ jobs:
6666

6767
strategy:
6868
matrix:
69-
python: ["3.9", "3.10", "3.11", "3.12"]
69+
python: ["3.10", "3.11", "3.12", "3.13"]
7070
env:
7171
conda-bld: C:\Miniconda\conda-bld\win-64\
7272
steps:
@@ -108,8 +108,6 @@ jobs:
108108
strategy:
109109
matrix:
110110
include:
111-
- python: '3.9'
112-
numpy: '1.26'
113111
- python: '3.10'
114112
numpy: '2.2'
115113
- python: '3.11'
@@ -180,8 +178,6 @@ jobs:
180178
strategy:
181179
matrix:
182180
include:
183-
- python: '3.9'
184-
numpy: '1.26'
185181
- python: '3.10'
186182
numpy: '2.2'
187183
- python: '3.11'

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",
@@ -60,7 +59,7 @@ keywords = ["MKL", "VSL", "true randomness", "pseudorandomness",
6059
license = "BSD-3-Clause"
6160
name = "mkl_random"
6261
readme = {file = "README.md", content-type = "text/markdown"}
63-
requires-python = ">=3.9,<3.15"
62+
requires-python = ">=3.10,<3.15"
6463

6564
[project.optional-dependencies]
6665
test = ["pytest"]

0 commit comments

Comments
 (0)