Skip to content

Commit 83341cf

Browse files
Add python 3.14 wheel build (#4847)
Follow triton-lang/triton#7695 Related to: pytorch/pytorch#156856 --------- Co-authored-by: Anatoly Myachev <[email protected]>
1 parent 14e589e commit 83341cf

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/workflows/nightly-wheels.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ on:
1010
paths:
1111
- .github/workflows/nightly-wheels.yml
1212
- .github/pins/pytorch.txt
13+
pull_request:
14+
branches:
15+
- main
16+
paths:
17+
- .github/workflows/nightly-wheels.yml
18+
- .github/pins/pytorch.txt
1319

1420
permissions: read-all
1521

@@ -31,6 +37,7 @@ jobs:
3137
- "3.11"
3238
- "3.12"
3339
- "3.13"
40+
- "3.14.0-rc.1"
3441
fail-fast: false
3542
max-parallel: 2
3643
defaults:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -798,7 +798,7 @@ def get_git_version_suffix():
798798

799799
# Dynamically define supported Python versions and classifiers
800800
MIN_PYTHON = (3, 9)
801-
MAX_PYTHON = (3, 13)
801+
MAX_PYTHON = (3, 14)
802802

803803
PYTHON_REQUIRES = f">={MIN_PYTHON[0]}.{MIN_PYTHON[1]},<{MAX_PYTHON[0]}.{MAX_PYTHON[1] + 1}"
804804
BASE_CLASSIFIERS = [

0 commit comments

Comments
 (0)