From 78742fbbfcd9d45a5656d1e6e2332fe0e7a55697 Mon Sep 17 00:00:00 2001 From: regro-cf-autotick-bot <36490558+regro-cf-autotick-bot@users.noreply.github.com> Date: Thu, 13 Jun 2024 02:16:17 +0000 Subject: [PATCH 1/2] Rebuild for numpy 2.0 TL;DR: The way we build against numpy has changed as of numpy 2.0. This bot PR has updated the recipe to account for the changes (see below for details). The numpy 2.0 package itself is currently only available from a special release channel (`conda-forge/label/numpy_rc`) and will not be available on the main `conda-forge` channel until the release of numpy 2.0 GA. The biggest change is that we no longer need to use the oldest available numpy version at build time in order to support old numpy version at runtime - numpy will by default use a compatible ABI for the oldest still-supported numpy versions. Additionally, we no longer need to use `{{ pin_compatible("numpy") }}` as a run requirement - this has been handled for more than two years now by a run-export on the numpy package itself. The migrator will therefore remove any occurrences of this. However, by default, building against numpy 2.0 will assume that the package is compatible with numpy 2.0, which is not necessarily the case. You should check that the upstream package explicitly supports numpy 2.0, otherwise you need to add a `- numpy <2.0dev0` run requirement until that happens (check numpy issue 26191 for an overview of the most important packages). Note that the numpy release candidate promises to be ABI-compatible with the final 2.0 release. This means that building against 2.0.0rc1 produces packages that can be published to our main channels. If you already want to use the numpy 2.0 release candidate yourself, you can do ``` conda config --add channels conda-forge/label/numpy_rc ``` or add this channel to your `.condarc` file directly. ### To-Dos: * [ ] Match run-requirements for numpy (i.e. check upstream `pyproject.toml` or however the project specifies numpy compatibility) * If upstream is not yet compatible with numpy 2.0, add `numpy <2.0dev0` upper bound under `run:`. * If upstream is already compatible with numpy 2.0, nothing else should be necessary in most cases. * If upstream requires a minimum numpy version newer than 1.19, you can add `numpy >=x.y` under `run:`. * [ ] Remove any remaining occurrences of `{{ pin_compatible("numpy") }}` that the bot may have missed. PS. If the build does not compile anymore, this is almost certainly a sign that the upstream project is not yet ready for numpy 2.0; do not close this PR until a version compatible with numpy 2.0 has been released upstream and on this feedstock (in the meantime, you can keep the bot from reopening this PR in case of git conflicts by marking it as a draft). --- recipe/meta.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 3b89a9e..244ca42 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,7 +26,7 @@ source: folder: testing build: - number: 2 + number: 3 # for cuda support, building with one version is enough to be compatible with # all later versions, since arrow is only using libcuda, and not libcudart. skip: true # [cuda_compiler_version not in ("None", cuda_compiler_version_min)] @@ -94,7 +94,6 @@ outputs: # libarrow, as we don't want the other libraries to be installed when # running for pyarrow-core, where the aim is a low storage footprint. - libarrow {{ version }}.*=*{{ build_ext }} - - {{ pin_compatible('numpy') }} - python # orc>=2.0.1 will look in $CONDA_PREFIX/share/zoneinfo - tzdata @@ -170,7 +169,6 @@ outputs: - libarrow-dataset {{ version }}.* - libarrow-substrait {{ version }}.* - libparquet {{ version }}.* - - {{ pin_compatible('numpy') }} - python test: @@ -206,7 +204,6 @@ outputs: - libarrow-flight {{ version }}.* - libarrow-flight-sql {{ version }}.* - libarrow-gandiva {{ version }}.* - - {{ pin_compatible('numpy') }} - python test: From f17604b41d7c977f3d1d833adf9c0f00ced04468 Mon Sep 17 00:00:00 2001 From: regro-cf-autotick-bot <36490558+regro-cf-autotick-bot@users.noreply.github.com> Date: Thu, 13 Jun 2024 02:18:17 +0000 Subject: [PATCH 2/2] MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.36.1, and conda-forge-pinning 2024.06.12.07.10.11 --- .azure-pipelines/azure-pipelines-win.yml | 40 +++++++++---------- ...rsion11numpy1.22python3.8.____cpython.yaml | 2 +- ...rsion11numpy2.0python3.10.____cpython.yaml | 2 +- ...rsion11numpy2.0python3.11.____cpython.yaml | 2 +- ...rsion11numpy2.0python3.12.____cpython.yaml | 2 +- ...ersion11numpy2.0python3.9.____cpython.yaml | 2 +- ...rsion12numpy1.22python3.8.____cpython.yaml | 2 +- ...rsion12numpy2.0python3.10.____cpython.yaml | 2 +- ...rsion12numpy2.0python3.11.____cpython.yaml | 2 +- ...rsion12numpy2.0python3.12.____cpython.yaml | 2 +- ...ersion12numpy2.0python3.9.____cpython.yaml | 2 +- ...rsion10numpy1.22python3.8.____cpython.yaml | 2 +- ...rsion10numpy2.0python3.10.____cpython.yaml | 2 +- ...rsion10numpy2.0python3.11.____cpython.yaml | 2 +- ...rsion10numpy2.0python3.12.____cpython.yaml | 2 +- ...ersion10numpy2.0python3.9.____cpython.yaml | 2 +- ...rsion13numpy1.22python3.8.____cpython.yaml | 2 +- ...rsion13numpy2.0python3.10.____cpython.yaml | 2 +- ...rsion13numpy2.0python3.11.____cpython.yaml | 2 +- ...rsion13numpy2.0python3.12.____cpython.yaml | 2 +- ...ersion13numpy2.0python3.9.____cpython.yaml | 2 +- ...rsion10numpy1.22python3.8.____cpython.yaml | 2 +- ...rsion10numpy2.0python3.10.____cpython.yaml | 2 +- ...rsion10numpy2.0python3.11.____cpython.yaml | 2 +- ...rsion10numpy2.0python3.12.____cpython.yaml | 2 +- ...ersion10numpy2.0python3.9.____cpython.yaml | 2 +- ...rsion13numpy1.22python3.8.____cpython.yaml | 2 +- ...rsion13numpy2.0python3.10.____cpython.yaml | 2 +- ...rsion13numpy2.0python3.11.____cpython.yaml | 2 +- ...rsion13numpy2.0python3.12.____cpython.yaml | 2 +- ...ersion13numpy2.0python3.9.____cpython.yaml | 2 +- ...osx_64_numpy1.22python3.8.____cpython.yaml | 2 +- ...osx_64_numpy2.0python3.10.____cpython.yaml | 2 +- ...osx_64_numpy2.0python3.11.____cpython.yaml | 2 +- ...osx_64_numpy2.0python3.12.____cpython.yaml | 2 +- .../osx_64_numpy2.0python3.9.____cpython.yaml | 2 +- ..._arm64_numpy1.22python3.8.____cpython.yaml | 2 +- ..._arm64_numpy2.0python3.10.____cpython.yaml | 2 +- ..._arm64_numpy2.0python3.11.____cpython.yaml | 2 +- ..._arm64_numpy2.0python3.12.____cpython.yaml | 2 +- ...x_arm64_numpy2.0python3.9.____cpython.yaml | 2 +- ...on11.8numpy1.22python3.8.____cpython.yaml} | 2 +- ...on11.8numpy2.0python3.10.____cpython.yaml} | 2 +- ...on11.8numpy2.0python3.11.____cpython.yaml} | 2 +- ...on11.8numpy2.0python3.12.____cpython.yaml} | 2 +- ...ion11.8numpy2.0python3.9.____cpython.yaml} | 2 +- ...onNonenumpy1.22python3.8.____cpython.yaml} | 2 +- ...onNonenumpy2.0python3.10.____cpython.yaml} | 2 +- ...onNonenumpy2.0python3.11.____cpython.yaml} | 2 +- ...onNonenumpy2.0python3.12.____cpython.yaml} | 2 +- ...ionNonenumpy2.0python3.9.____cpython.yaml} | 2 +- README.md | 40 +++++++++---------- 52 files changed, 90 insertions(+), 90 deletions(-) rename .ci_support/{win_64_cuda_compilernvcccuda_compiler_version11.8numpy1.22python3.8.____cpython.yaml => win_64_cuda_compiler_version11.8numpy1.22python3.8.____cpython.yaml} (98%) rename .ci_support/{win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.10.____cpython.yaml => win_64_cuda_compiler_version11.8numpy2.0python3.10.____cpython.yaml} (98%) rename .ci_support/{win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.11.____cpython.yaml => win_64_cuda_compiler_version11.8numpy2.0python3.11.____cpython.yaml} (98%) rename .ci_support/{win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.12.____cpython.yaml => win_64_cuda_compiler_version11.8numpy2.0python3.12.____cpython.yaml} (98%) rename .ci_support/{win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.9.____cpython.yaml => win_64_cuda_compiler_version11.8numpy2.0python3.9.____cpython.yaml} (98%) rename .ci_support/{win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.8.____cpython.yaml => win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpython.yaml} (98%) rename .ci_support/{win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.10.____cpython.yaml => win_64_cuda_compiler_versionNonenumpy2.0python3.10.____cpython.yaml} (98%) rename .ci_support/{win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.11.____cpython.yaml => win_64_cuda_compiler_versionNonenumpy2.0python3.11.____cpython.yaml} (98%) rename .ci_support/{win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.12.____cpython.yaml => win_64_cuda_compiler_versionNonenumpy2.0python3.12.____cpython.yaml} (98%) rename .ci_support/{win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.9.____cpython.yaml => win_64_cuda_compiler_versionNonenumpy2.0python3.9.____cpython.yaml} (98%) diff --git a/.azure-pipelines/azure-pipelines-win.yml b/.azure-pipelines/azure-pipelines-win.yml index decb7d2..c4e29e1 100755 --- a/.azure-pipelines/azure-pipelines-win.yml +++ b/.azure-pipelines/azure-pipelines-win.yml @@ -8,35 +8,35 @@ jobs: vmImage: windows-2022 strategy: matrix: - win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.8.____cpython: - CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.8.____cpython + win_64_cuda_compiler_version11.8numpy1.22python3.8.____cpython: + CONFIG: win_64_cuda_compiler_version11.8numpy1.22python3.8.____cpython UPLOAD_PACKAGES: 'True' - win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.10.____cpython: - CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.10.____cpython + win_64_cuda_compiler_version11.8numpy2.0python3.10.____cpython: + CONFIG: win_64_cuda_compiler_version11.8numpy2.0python3.10.____cpython UPLOAD_PACKAGES: 'True' - win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.11.____cpython: - CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.11.____cpython + win_64_cuda_compiler_version11.8numpy2.0python3.11.____cpython: + CONFIG: win_64_cuda_compiler_version11.8numpy2.0python3.11.____cpython UPLOAD_PACKAGES: 'True' - win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.12.____cpython: - CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.12.____cpython + win_64_cuda_compiler_version11.8numpy2.0python3.12.____cpython: + CONFIG: win_64_cuda_compiler_version11.8numpy2.0python3.12.____cpython UPLOAD_PACKAGES: 'True' - win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.9.____cpython: - CONFIG: win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.9.____cpython + win_64_cuda_compiler_version11.8numpy2.0python3.9.____cpython: + CONFIG: win_64_cuda_compiler_version11.8numpy2.0python3.9.____cpython UPLOAD_PACKAGES: 'True' - win_64_cuda_compilernvcccuda_compiler_version11.8numpy1.22python3.8.____cpython: - CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.8numpy1.22python3.8.____cpython + win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpython: + CONFIG: win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpython UPLOAD_PACKAGES: 'True' - win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.10.____cpython: - CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.10.____cpython + win_64_cuda_compiler_versionNonenumpy2.0python3.10.____cpython: + CONFIG: win_64_cuda_compiler_versionNonenumpy2.0python3.10.____cpython UPLOAD_PACKAGES: 'True' - win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.11.____cpython: - CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.11.____cpython + win_64_cuda_compiler_versionNonenumpy2.0python3.11.____cpython: + CONFIG: win_64_cuda_compiler_versionNonenumpy2.0python3.11.____cpython UPLOAD_PACKAGES: 'True' - win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.12.____cpython: - CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.12.____cpython + win_64_cuda_compiler_versionNonenumpy2.0python3.12.____cpython: + CONFIG: win_64_cuda_compiler_versionNonenumpy2.0python3.12.____cpython UPLOAD_PACKAGES: 'True' - win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.9.____cpython: - CONFIG: win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.9.____cpython + win_64_cuda_compiler_versionNonenumpy2.0python3.9.____cpython: + CONFIG: win_64_cuda_compiler_versionNonenumpy2.0python3.9.____cpython UPLOAD_PACKAGES: 'True' timeoutInMinutes: 360 variables: diff --git a/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy1.22python3.8.____cpython.yaml index 27daf47..a947380 100644 --- a/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy1.22python3.8.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.10.____cpython.yaml b/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.10.____cpython.yaml index 3144ae8..6dd6de8 100644 --- a/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.10.____cpython.yaml +++ b/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.10.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.11.____cpython.yaml b/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.11.____cpython.yaml index b7cd255..6aaeb48 100644 --- a/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.11.____cpython.yaml +++ b/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.11.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.12.____cpython.yaml b/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.12.____cpython.yaml index a37d9c2..ae674e3 100644 --- a/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.12.____cpython.yaml +++ b/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.12.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.9.____cpython.yaml b/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.9.____cpython.yaml index 694589e..5537f28 100644 --- a/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.9.____cpython.yaml +++ b/.ci_support/linux_64_c_compiler_version11c_stdlib_version2.17cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version11numpy2.0python3.9.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml index 55be69b..b0c49f4 100644 --- a/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy1.22python3.8.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.10.____cpython.yaml b/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.10.____cpython.yaml index bd2151f..b7aa7ec 100644 --- a/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.10.____cpython.yaml +++ b/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.10.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.11.____cpython.yaml b/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.11.____cpython.yaml index b7c5dba..871f019 100644 --- a/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.11.____cpython.yaml +++ b/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.11.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.12.____cpython.yaml b/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.12.____cpython.yaml index bfca53e..28ce569 100644 --- a/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.12.____cpython.yaml +++ b/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.12.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.9.____cpython.yaml b/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.9.____cpython.yaml index ac3bef9..0c44d0b 100644 --- a/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.9.____cpython.yaml +++ b/.ci_support/linux_64_c_compiler_version12c_stdlib_version2.12cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version12numpy2.0python3.9.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy1.22python3.8.____cpython.yaml index 350ae1e..044c272 100644 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy1.22python3.8.____cpython.yaml @@ -51,4 +51,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.10.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.10.____cpython.yaml index a0537fc..d231715 100644 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.10.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.10.____cpython.yaml @@ -51,4 +51,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.11.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.11.____cpython.yaml index 952d120..9152aa7 100644 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.11.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.11.____cpython.yaml @@ -51,4 +51,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.12.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.12.____cpython.yaml index 2b103ec..f08e94d 100644 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.12.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.12.____cpython.yaml @@ -51,4 +51,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.9.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.9.____cpython.yaml index 6977c6b..0974bf6 100644 --- a/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.9.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.9.____cpython.yaml @@ -51,4 +51,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy1.22python3.8.____cpython.yaml index 24d6356..e2fe4e5 100644 --- a/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy1.22python3.8.____cpython.yaml @@ -51,4 +51,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.10.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.10.____cpython.yaml index a1c71e3..fc25c39 100644 --- a/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.10.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.10.____cpython.yaml @@ -51,4 +51,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.11.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.11.____cpython.yaml index a7b3350..2036360 100644 --- a/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.11.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.11.____cpython.yaml @@ -51,4 +51,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.12.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.12.____cpython.yaml index d3a6ffd..18d0dcd 100644 --- a/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.12.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.12.____cpython.yaml @@ -51,4 +51,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.9.____cpython.yaml b/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.9.____cpython.yaml index f4169e1..915bce5 100644 --- a/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.9.____cpython.yaml +++ b/.ci_support/linux_aarch64_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.9.____cpython.yaml @@ -51,4 +51,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy1.22python3.8.____cpython.yaml index b2cddca..97ee3b0 100644 --- a/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy1.22python3.8.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.10.____cpython.yaml b/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.10.____cpython.yaml index 9e0ab55..64299d6 100644 --- a/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.10.____cpython.yaml +++ b/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.10.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.11.____cpython.yaml b/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.11.____cpython.yaml index d788c0d..eee5e3c 100644 --- a/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.11.____cpython.yaml +++ b/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.11.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.12.____cpython.yaml b/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.12.____cpython.yaml index ebba929..bb78d94 100644 --- a/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.12.____cpython.yaml +++ b/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.12.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.9.____cpython.yaml b/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.9.____cpython.yaml index 30c7531..6270ede 100644 --- a/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.9.____cpython.yaml +++ b/.ci_support/linux_ppc64le_c_compiler_version10cuda_compilernvcccuda_compiler_version11.8cxx_compiler_version10numpy2.0python3.9.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy1.22python3.8.____cpython.yaml b/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy1.22python3.8.____cpython.yaml index a736233..7e794f9 100644 --- a/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy1.22python3.8.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.10.____cpython.yaml b/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.10.____cpython.yaml index 93b7b57..4159b68 100644 --- a/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.10.____cpython.yaml +++ b/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.10.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.11.____cpython.yaml b/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.11.____cpython.yaml index ef39204..8465f01 100644 --- a/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.11.____cpython.yaml +++ b/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.11.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.12.____cpython.yaml b/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.12.____cpython.yaml index 335fa92..900c33c 100644 --- a/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.12.____cpython.yaml +++ b/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.12.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.9.____cpython.yaml b/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.9.____cpython.yaml index 4f3a05f..72dd8a0 100644 --- a/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.9.____cpython.yaml +++ b/.ci_support/linux_ppc64le_c_compiler_version13cuda_compilerNonecuda_compiler_versionNonecxx_compiler_version13numpy2.0python3.9.____cpython.yaml @@ -47,4 +47,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/osx_64_numpy1.22python3.8.____cpython.yaml b/.ci_support/osx_64_numpy1.22python3.8.____cpython.yaml index ebc600e..8dedc86 100644 --- a/.ci_support/osx_64_numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/osx_64_numpy1.22python3.8.____cpython.yaml @@ -40,4 +40,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/osx_64_numpy2.0python3.10.____cpython.yaml b/.ci_support/osx_64_numpy2.0python3.10.____cpython.yaml index 44265b7..468ee5f 100644 --- a/.ci_support/osx_64_numpy2.0python3.10.____cpython.yaml +++ b/.ci_support/osx_64_numpy2.0python3.10.____cpython.yaml @@ -40,4 +40,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/osx_64_numpy2.0python3.11.____cpython.yaml b/.ci_support/osx_64_numpy2.0python3.11.____cpython.yaml index d97af9d..ed48e75 100644 --- a/.ci_support/osx_64_numpy2.0python3.11.____cpython.yaml +++ b/.ci_support/osx_64_numpy2.0python3.11.____cpython.yaml @@ -40,4 +40,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/osx_64_numpy2.0python3.12.____cpython.yaml b/.ci_support/osx_64_numpy2.0python3.12.____cpython.yaml index 7404be7..9914097 100644 --- a/.ci_support/osx_64_numpy2.0python3.12.____cpython.yaml +++ b/.ci_support/osx_64_numpy2.0python3.12.____cpython.yaml @@ -40,4 +40,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/osx_64_numpy2.0python3.9.____cpython.yaml b/.ci_support/osx_64_numpy2.0python3.9.____cpython.yaml index b1dff89..5e51907 100644 --- a/.ci_support/osx_64_numpy2.0python3.9.____cpython.yaml +++ b/.ci_support/osx_64_numpy2.0python3.9.____cpython.yaml @@ -40,4 +40,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml b/.ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml index c4d71c9..d739299 100644 --- a/.ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/osx_arm64_numpy1.22python3.8.____cpython.yaml @@ -40,4 +40,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/osx_arm64_numpy2.0python3.10.____cpython.yaml b/.ci_support/osx_arm64_numpy2.0python3.10.____cpython.yaml index a468b89..a0b6939 100644 --- a/.ci_support/osx_arm64_numpy2.0python3.10.____cpython.yaml +++ b/.ci_support/osx_arm64_numpy2.0python3.10.____cpython.yaml @@ -40,4 +40,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/osx_arm64_numpy2.0python3.11.____cpython.yaml b/.ci_support/osx_arm64_numpy2.0python3.11.____cpython.yaml index 2f60a26..6069ed2 100644 --- a/.ci_support/osx_arm64_numpy2.0python3.11.____cpython.yaml +++ b/.ci_support/osx_arm64_numpy2.0python3.11.____cpython.yaml @@ -40,4 +40,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/osx_arm64_numpy2.0python3.12.____cpython.yaml b/.ci_support/osx_arm64_numpy2.0python3.12.____cpython.yaml index 708c63e..8c34e1a 100644 --- a/.ci_support/osx_arm64_numpy2.0python3.12.____cpython.yaml +++ b/.ci_support/osx_arm64_numpy2.0python3.12.____cpython.yaml @@ -40,4 +40,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/osx_arm64_numpy2.0python3.9.____cpython.yaml b/.ci_support/osx_arm64_numpy2.0python3.9.____cpython.yaml index 48091ad..213967e 100644 --- a/.ci_support/osx_arm64_numpy2.0python3.9.____cpython.yaml +++ b/.ci_support/osx_arm64_numpy2.0python3.9.____cpython.yaml @@ -40,4 +40,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy1.22python3.8.____cpython.yaml b/.ci_support/win_64_cuda_compiler_version11.8numpy1.22python3.8.____cpython.yaml similarity index 98% rename from .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy1.22python3.8.____cpython.yaml rename to .ci_support/win_64_cuda_compiler_version11.8numpy1.22python3.8.____cpython.yaml index 4df4e08..d83c907 100644 --- a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy1.22python3.8.____cpython.yaml +++ b/.ci_support/win_64_cuda_compiler_version11.8numpy1.22python3.8.____cpython.yaml @@ -32,4 +32,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.10.____cpython.yaml b/.ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.10.____cpython.yaml similarity index 98% rename from .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.10.____cpython.yaml rename to .ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.10.____cpython.yaml index 2717756..3ed1224 100644 --- a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.10.____cpython.yaml +++ b/.ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.10.____cpython.yaml @@ -32,4 +32,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.11.____cpython.yaml b/.ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.11.____cpython.yaml similarity index 98% rename from .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.11.____cpython.yaml rename to .ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.11.____cpython.yaml index 09a0ab5..519029e 100644 --- a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.11.____cpython.yaml +++ b/.ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.11.____cpython.yaml @@ -32,4 +32,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.12.____cpython.yaml b/.ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.12.____cpython.yaml similarity index 98% rename from .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.12.____cpython.yaml rename to .ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.12.____cpython.yaml index 549efce..6b51c04 100644 --- a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.12.____cpython.yaml +++ b/.ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.12.____cpython.yaml @@ -32,4 +32,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.9.____cpython.yaml b/.ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.9.____cpython.yaml similarity index 98% rename from .ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.9.____cpython.yaml rename to .ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.9.____cpython.yaml index ddf48a4..bb11361 100644 --- a/.ci_support/win_64_cuda_compilernvcccuda_compiler_version11.8numpy2.0python3.9.____cpython.yaml +++ b/.ci_support/win_64_cuda_compiler_version11.8numpy2.0python3.9.____cpython.yaml @@ -32,4 +32,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.8.____cpython.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpython.yaml similarity index 98% rename from .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.8.____cpython.yaml rename to .ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpython.yaml index 16e4caa..d811993 100644 --- a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy1.22python3.8.____cpython.yaml +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy1.22python3.8.____cpython.yaml @@ -32,4 +32,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.10.____cpython.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.10.____cpython.yaml similarity index 98% rename from .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.10.____cpython.yaml rename to .ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.10.____cpython.yaml index 0115e7d..efa7558 100644 --- a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.10.____cpython.yaml +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.10.____cpython.yaml @@ -32,4 +32,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.11.____cpython.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.11.____cpython.yaml similarity index 98% rename from .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.11.____cpython.yaml rename to .ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.11.____cpython.yaml index 95748a3..b7a14f5 100644 --- a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.11.____cpython.yaml +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.11.____cpython.yaml @@ -32,4 +32,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.12.____cpython.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.12.____cpython.yaml similarity index 98% rename from .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.12.____cpython.yaml rename to .ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.12.____cpython.yaml index 9ff913a..31baf96 100644 --- a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.12.____cpython.yaml +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.12.____cpython.yaml @@ -32,4 +32,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.9.____cpython.yaml b/.ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.9.____cpython.yaml similarity index 98% rename from .ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.9.____cpython.yaml rename to .ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.9.____cpython.yaml index b77c107..22225bd 100644 --- a/.ci_support/win_64_cuda_compilerNonecuda_compiler_versionNonenumpy2.0python3.9.____cpython.yaml +++ b/.ci_support/win_64_cuda_compiler_versionNonenumpy2.0python3.9.____cpython.yaml @@ -32,4 +32,4 @@ zip_keys: - - python - numpy zlib: -- '1.2' +- '1' diff --git a/README.md b/README.md index f77e082..5528f82 100644 --- a/README.md +++ b/README.md @@ -347,73 +347,73 @@ Current build status