Skip to content

Commit

Permalink
Fix cubinlinker and ptxcompiler
Browse files Browse the repository at this point in the history
These packages do not publish prereleases, update metadata to
reflect that.
  • Loading branch information
KyleFromNVIDIA committed Jul 1, 2024
1 parent 0e19d78 commit c4eefb0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rapids-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"packages": {
"cubinlinker": {
"has_cuda_suffix": true,
"publishes_prereleases": true
"publishes_prereleases": false
}
}
},
Expand Down Expand Up @@ -142,7 +142,7 @@
"packages": {
"ptxcompiler": {
"has_cuda_suffix": true,
"publishes_prereleases": true
"publishes_prereleases": false
}
}
},
Expand Down
4 changes: 2 additions & 2 deletions src/rapids_metadata/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
repositories={
"_nvidia": RAPIDSRepository(
packages={
"cubinlinker": RAPIDSPackage(),
"cubinlinker": RAPIDSPackage(publishes_prereleases=False),
}
),
"cucim": RAPIDSRepository(
Expand Down Expand Up @@ -99,7 +99,7 @@
),
"ptxcompiler": RAPIDSRepository(
packages={
"ptxcompiler": RAPIDSPackage(),
"ptxcompiler": RAPIDSPackage(publishes_prereleases=False),
}
),
"pynvjitlink": RAPIDSRepository(
Expand Down

0 comments on commit c4eefb0

Please sign in to comment.