Skip to content

Commit 7ce2968

Browse files
authored
Merge pull request #370 from kmaehashi/bp-368-v12-add-python312
[backport] Add support for Python 3.12 wheel
2 parents 0bc0e0c + 7ecaa82 commit 7ce2968

File tree

6 files changed

+20
-11
lines changed

6 files changed

+20
-11
lines changed

.pfnci/build_submit.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ submit_job() {
3030

3131
# wheels (Windows)
3232
for CUDA in 10.2 11.0 11.1 11.x 12.x; do
33-
for PYTHON in 3.8 3.9 3.10 3.11; do
33+
for PYTHON in 3.8 3.9 3.10 3.11 3.12; do
3434
submit_job cupy-wheel-win ".pfnci\\wheel-windows\\main.bat ${CUDA} ${PYTHON} ${BRANCH} ${JOB_GROUP}"
3535
done
3636
done

.pfnci/config.pbtxt

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ configs {
5656
time_limit {
5757
seconds: 10800
5858
}
59-
command: ".pfnci\\wheel-windows\\main.bat 12.x 3.11"
59+
command: ".pfnci\\wheel-windows\\main.bat 12.x 3.12"
6060
}
6161
}
6262
configs {

.pfnci/wheel-windows/_flexci.ps1

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ function ActivatePython($version) {
1313
$pydir = "Python310"
1414
} elseif ($version -eq "3.11") {
1515
$pydir = "Python311"
16+
} elseif ($version -eq "3.12") {
17+
$pydir = "Python312"
1618
} else {
1719
throw "Unsupported Python version: $version"
1820
}

check_release_assets.py

+7-6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
CP39 = 'cp39-cp39'
1616
CP310 = 'cp310-cp310'
1717
CP311 = 'cp311-cp311'
18+
CP312 = 'cp312-cp312'
1819
LINUX = 'manylinux2014_x86_64'
1920
LINUX_V11 = 'manylinux1_x86_64'
2021
LINUX_AARCH64 = 'manylinux2014_aarch64'
@@ -24,18 +25,18 @@
2425
sdist_project = 'cupy'
2526

2627
_v13_cuda_matrix = list(itertools.product(
27-
(CP39, CP310, CP311), (LINUX, WINDOWS)))
28+
(CP39, CP310, CP311, CP312), (LINUX, WINDOWS)))
2829
_v13_aarch64_matrix = list(itertools.product(
29-
(CP39, CP310, CP311), (LINUX_AARCH64,)))
30+
(CP39, CP310, CP311, CP312), (LINUX_AARCH64,)))
3031
_v13_rocm_matrix = list(itertools.product(
31-
(CP39, CP310, CP311), (LINUX,)))
32+
(CP39, CP310, CP311, CP312), (LINUX,)))
3233

3334
_v12_cuda_matrix = list(itertools.product(
34-
(CP38, CP39, CP310, CP311), (LINUX, WINDOWS)))
35+
(CP38, CP39, CP310, CP311, CP312), (LINUX, WINDOWS)))
3536
_v12_aarch64_matrix = list(itertools.product(
36-
(CP38, CP39, CP310, CP311), (LINUX_AARCH64,)))
37+
(CP38, CP39, CP310, CP311, CP312), (LINUX_AARCH64,)))
3738
_v12_rocm_matrix = list(itertools.product(
38-
(CP38, CP39, CP310, CP311), (LINUX,)))
39+
(CP38, CP39, CP310, CP311, CP312), (LINUX,)))
3940

4041
pypi_wheel_projects = {
4142
# v12.x

dist_config.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# Tools to be used for build.
77
CYTHON_VERSION = '0.29.36'
8-
FASTRLOCK_VERSION = '0.8.1'
8+
FASTRLOCK_VERSION = '0.8.2'
99

1010
# Key-value of sdist build settings.
1111
# See descriptions of WHEEL_LINUX_CONFIGS for details.
@@ -333,4 +333,9 @@
333333
'python_tag': 'cp311',
334334
'abi_tag': 'cp311',
335335
},
336+
'3.12': {
337+
'pyenv': '3.12.0',
338+
'python_tag': 'cp312',
339+
'abi_tag': 'cp312',
340+
},
336341
}

dist_utils.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import ctypes
44
import ctypes.util
5-
import imp
65
import os
76

87
from dist_config import WHEEL_PYTHON_VERSIONS
@@ -39,7 +38,9 @@ def wheel_name(pkg_name, version, python_version, platform_tag):
3938

4039
def get_version_from_source_tree(source_tree):
4140
version_file_path = '{}/cupy/_version.py'.format(source_tree)
42-
return imp.load_source('_version', version_file_path).__version__
41+
with open(version_file_path) as f:
42+
exec(f.read())
43+
return locals()['__version__']
4344

4445

4546
def get_system_cuda_version(cudart_name='cudart'):

0 commit comments

Comments
 (0)