Skip to content

Commit

Permalink
Merge pull request #375 from kmaehashi/main
Browse files Browse the repository at this point in the history
add check for v13 wheel
  • Loading branch information
emcastillo authored Jan 18, 2024
2 parents b138097 + 8b4a829 commit 3262924
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions check_release_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,14 @@
(CP38, CP39, CP310, CP311, CP312), (LINUX,)))

pypi_wheel_projects = {
# v13.x
'13': [
('cupy-cuda11x', _v13_cuda_matrix + _v13_aarch64_matrix),
('cupy-cuda12x', _v13_cuda_matrix + _v13_aarch64_matrix),
('cupy-rocm-4-3', _v13_rocm_matrix),
('cupy-rocm-5-0', _v13_rocm_matrix),
],

# v12.x
'12': [
('cupy-cuda102', _v12_cuda_matrix + _v12_aarch64_matrix),
Expand Down

0 comments on commit 3262924

Please sign in to comment.