Skip to content

Commit 99c7e90

Browse files
authored
Merge pull request #2198 from IntelPython/backport-gh-2173
Backport gh-2173
2 parents 0598395 + 5d54101 commit 99c7e90

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-2019]
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@v4
@@ -462,7 +462,7 @@ jobs:
462462
timeout-minutes: 20
463463
strategy:
464464
matrix:
465-
python: ['3.9', '3.10', '3.11', '3.12', '3.13']
465+
python: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
466466
steps:
467467
- name: Download artifact
468468
uses: actions/download-artifact@v4

.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-2019]
8484

conda-recipe/meta.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ requirements:
2626
- {{ compiler('dpcpp') }} >={{ required_compiler_version }}
2727
host:
2828
- python
29+
- python-gil # [py>=314]
2930
- pip >=24.0
3031
- level-zero-devel >=1.16
3132
- pybind11 >=2.12
@@ -55,6 +56,7 @@ requirements:
5556
- tomli # [py<311]
5657
run:
5758
- python
59+
- python-gil # [py>=314]
5860
- {{ pin_compatible('intel-sycl-rt', min_pin='x.x', max_pin='x') }}
5961
- {{ pin_compatible('intel-cmplr-lib-rt', min_pin='x.x', max_pin='x') }}
6062
- numpy

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ classifiers = [
3030
"Programming Language :: Python :: 3.11",
3131
"Programming Language :: Python :: 3.12",
3232
"Programming Language :: Python :: 3.13",
33+
"Programming Language :: Python :: 3.14",
3334
"Programming Language :: Python :: Implementation :: CPython",
3435
"Topic :: Software Development",
3536
"Topic :: Scientific/Engineering",

0 commit comments

Comments
 (0)