Skip to content

Commit 0e7d448

Browse files
committed
Add testing with python 3.14 to GitHub actions
1 parent 7c5730a commit 0e7d448

6 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
CI/CD workflows, automation, security scanning, and package distribution.
44

55
## Workflows
6-
- **conda-package.yml** — main build/test pipeline (Linux/Windows, Python 3.10-3.13)
6+
- **conda-package.yml** — main build/test pipeline (Linux/Windows, Python 3.10-3.14)
77
- **build_pip.yaml** — PyPI wheel builds for Intel channel
88
- **build-with-clang.yml** — Clang compatibility validation
99
- **openssf-scorecard.yml** — security posture scanning

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

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

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

1919
env:

.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.10", "3.11", "3.12", "3.13"]
21+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
2222
steps:
2323
- name: Cancel Previous Runs
2424
uses: styfle/cancel-workflow-action@3155a141048f8f89c06b4cdae32e7853e97536bc # 0.13.0
@@ -75,7 +75,7 @@ jobs:
7575

7676
strategy:
7777
matrix:
78-
python: ["3.10", "3.11", "3.12", "3.13"]
78+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
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.10", "3.11", "3.12", "3.13"]
149+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
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.10", "3.11", "3.12", "3.13"]
212+
python: ["3.10", "3.11", "3.12", "3.13", "3.14"]
213213
experimental: [false]
214214
runner: [windows-latest]
215215
continue-on-error: ${{ matrix.experimental }}

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ CC=icx pip install --no-build-isolation --no-deps .
3535

3636
## CI/CD
3737
- **Platforms:** Linux, Windows
38-
- **Python versions:** 3.10, 3.11, 3.12, 3.13
38+
- **Python versions:** 3.10, 3.11, 3.12, 3.13, 3.14
3939
- **Workflows:** `.github/workflows/`
4040
- `conda-package.yml` — main build/test pipeline
4141
- `build_pip.yaml` — PyPI wheel builds

conda-recipe/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Conda package build recipe for Intel channel distribution.
1111

1212
## Build configuration
1313
- **Channels:** `https://software.repos.intel.com/python/conda`, `conda-forge`
14-
- **Python versions:** 3.10, 3.11, 3.12, 3.13
14+
- **Python versions:** 3.10, 3.11, 3.12, 3.13, 3.14
1515
- **Compilers:** Intel C compiler (icx/icl)
1616
- **Dependencies:** mkl-devel, tbb-devel, dpcpp_{linux,win}-64, numpy-base
1717

mkl_umath/tests/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pytest mkl_umath/tests/
1818

1919
## CI integration
2020
- Tests run in conda-package.yml workflow
21-
- Separate test jobs per Python version (3.10-3.13)
21+
- Separate test jobs per Python version (3.10-3.14)
2222
- Linux + Windows platforms
2323

2424
## Adding tests

0 commit comments

Comments
 (0)