Skip to content

Commit 2d0fd6b

Browse files
authored
Merge pull request #2173 from IntelPython/enable_3.14
Add `3.14` python
2 parents 679727e + a0419e7 commit 2d0fd6b

File tree

4 files changed

+11
-8
lines changed

4 files changed

+11
-8
lines changed

.github/workflows/conda-package.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
strategy:
2626
matrix:
27-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
27+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
2828
steps:
2929
- name: Cancel Previous Runs
3030
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
@@ -85,7 +85,7 @@ jobs:
8585

8686
strategy:
8787
matrix:
88-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
88+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
8989
steps:
9090
- name: Cancel Previous Runs
9191
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
@@ -156,7 +156,7 @@ jobs:
156156

157157
strategy:
158158
matrix:
159-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
159+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
160160
experimental: [false]
161161
runner: [ubuntu-22.04]
162162
continue-on-error: ${{ matrix.experimental }}
@@ -252,7 +252,7 @@ jobs:
252252
shell: cmd /C CALL {0}
253253
strategy:
254254
matrix:
255-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
255+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
256256
experimental: [false]
257257
runner: [windows-latest]
258258
continue-on-error: ${{ matrix.experimental }}
@@ -423,7 +423,7 @@ jobs:
423423
timeout-minutes: 20
424424
strategy:
425425
matrix:
426-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
426+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
427427
steps:
428428
- name: Download conda artifact
429429
uses: actions/download-artifact@v5
@@ -467,7 +467,7 @@ jobs:
467467
timeout-minutes: 20
468468
strategy:
469469
matrix:
470-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
470+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
471471
steps:
472472
- name: Download artifact
473473
uses: actions/download-artifact@v5

.github/workflows/run-tests-from-dppy-bits.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
strategy:
2929
matrix:
30-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
30+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
3131
experimental: [false]
3232
runner: [ubuntu-22.04, ubuntu-24.04]
3333
continue-on-error: ${{ matrix.experimental }}
@@ -78,7 +78,7 @@ jobs:
7878
shell: cmd /C CALL {0}
7979
strategy:
8080
matrix:
81-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
81+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
8282
experimental: [false]
8383
runner: [windows-latest]
8484

conda-recipe/meta.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ requirements:
2828
- {{ compiler('dpcpp') }} >={{ required_compiler_version }}
2929
host:
3030
- python
31+
- python-gil # [py>=314]
3132
- pip >=24.0
3233
- level-zero-devel >=1.16
3334
- pybind11 >=2.12
@@ -51,6 +52,7 @@ requirements:
5152
- tomli # [py<311]
5253
run:
5354
- python
55+
- python-gil # [py>=314]
5456
- {{ pin_compatible('intel-sycl-rt', min_pin='x.x', max_pin='x') }}
5557
- {{ pin_compatible('intel-cmplr-lib-rt', min_pin='x.x', max_pin='x') }}
5658
- numpy

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ classifiers = [
2828
"Programming Language :: Python :: 3.11",
2929
"Programming Language :: Python :: 3.12",
3030
"Programming Language :: Python :: 3.13",
31+
"Programming Language :: Python :: 3.14",
3132
"Programming Language :: Python :: Implementation :: CPython",
3233
"Topic :: Software Development",
3334
"Topic :: Scientific/Engineering",

0 commit comments

Comments
 (0)