From b2b707132c8757f0f38a94badd980fb4cf2d11bf Mon Sep 17 00:00:00 2001 From: jakirkham Date: Thu, 6 Jul 2023 14:19:43 -0700 Subject: [PATCH 1/2] Add CUDA major to `cuspatial`'s `build/string` The Python packages had the same `build/string` for CUDA 11 & 12 builds, which resulted in only one of these builds being uploaded (appears to be CUDA 11 since those builds were a bit faster). To distinguish these and ensure both CUDA 11 & 12 packages are uploaded, add the CUDA major version to the `build/string`. --- conda/recipes/cuspatial/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda/recipes/cuspatial/meta.yaml b/conda/recipes/cuspatial/meta.yaml index ab4066938..1d7f4b258 100644 --- a/conda/recipes/cuspatial/meta.yaml +++ b/conda/recipes/cuspatial/meta.yaml @@ -16,7 +16,7 @@ source: build: number: {{ GIT_DESCRIBE_NUMBER }} - string: py{{ py_version }}_{{ date_string }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }} + string: py{{ py_version }}_cuda{{ cuda_major }}_{{ date_string }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }} script_env: - AWS_ACCESS_KEY_ID - AWS_SECRET_ACCESS_KEY From 727f70e96a75edab196beca3e91ae9772eda4ec6 Mon Sep 17 00:00:00 2001 From: jakirkham Date: Fri, 7 Jul 2023 01:15:05 -0700 Subject: [PATCH 2/2] Swap CUDA & Python in `build/string` Co-authored-by: Bradley Dice --- conda/recipes/cuspatial/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/conda/recipes/cuspatial/meta.yaml b/conda/recipes/cuspatial/meta.yaml index 1d7f4b258..96f02de87 100644 --- a/conda/recipes/cuspatial/meta.yaml +++ b/conda/recipes/cuspatial/meta.yaml @@ -16,7 +16,7 @@ source: build: number: {{ GIT_DESCRIBE_NUMBER }} - string: py{{ py_version }}_cuda{{ cuda_major }}_{{ date_string }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }} + string: cuda{{ cuda_major }}_py{{ py_version }}_{{ date_string }}_{{ GIT_DESCRIBE_HASH }}_{{ GIT_DESCRIBE_NUMBER }} script_env: - AWS_ACCESS_KEY_ID - AWS_SECRET_ACCESS_KEY