-
-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rebuild for CUDA 12 w/arch support #108
Rebuild for CUDA 12 w/arch support #108
Conversation
…nda-forge-pinning 2023.05.31.22.15.24
CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include:
Co-authored-by: jakirkham <[email protected]>
Co-authored-by: jakirkham <[email protected]>
…nda-forge-pinning 2023.07.25.19.20.13
The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏
…nda-forge-pinning 2023.08.24.17.10.00
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
…-autotick-bot/rebuild-cuda120-0-2_h812e11
Merged in the changes from PR: #107 |
@mikemhenry what do you think about skipping the tests that fail on CUDA 12 and raising an issue to track/discuss? |
Ah yes, I think these are failing for artificial reasons. What if we skip the tests just to get an artifact uploaded, and test manually before merge? Or if we have this target the dev channel, then we can get people testing it |
Sure that sounds like a good plan. Thanks Mike! 🙏 |
@jakirkham If I do that on this PR, will it make the bot angry? |
Should be ok to push changes to this PR |
…nda-forge-pinning 2023.09.05.13.39.24
Ooops, I was going to push this to |
…nda-forge-pinning 2023.09.22.17.00.20
@peastman do you have access to a cuda 12 hpc system? I can test cuda 12 stuff locally (and things are working) but I'd like to make sure. Also do you know how I can view the warnings?
I did a quick skim of https://github.com/openmm/openmm/blob/master/wrappers/python/openmm/testInstallation.py but it looks like the warnings are coming from somewhere else. |
You can ignore the warnings. It's a really annoying aspect of NVIDIA's OpenCL. Every time the kernel compiler issues a warning, it prints a message to the console. |
@peastman Sounds good! Are you okay with me merging this? It will enable cuda 12 support for openmm 8. |
Ok, go ahead. |
It looks like 4 aarch64 builds failed, but the cuda 12 one worked, so it should be fine since the old builds don't have issues with them. It looked like a space issue and there is a fix for that. I can do another build bump to fix the disk space, but like @peastman I try and avoid package churn since we have been burned by weird issues in the past. |
Looks like all builds worked after merging PR: #110 |
Thank you both! 🙏 |
* [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Build 8.1 beta * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.02.17.25.16 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.04.19.29.41 * Add setuptools as host dependency * Remove checks for CUDA compiler plugin --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]>
* Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.1 beta (#111) * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Build 8.1 beta * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.02.17.25.16 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.04.19.29.41 * Add setuptools as host dependency * Remove checks for CUDA compiler plugin --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * bump ci * Add Python 3.12 migration (#113) * Add Python 3.12 migration * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.08.10.53.16 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 release candidate 1 (#115) * Build 8.1 release candidate 1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1rc2 (#118) * Build 8.1rc2 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.29.0, and conda-forge-pinning 2023.11.16.09.46.51 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.26.16.08.11 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.26.16.08.11 * Force rebuild --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]>
* [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Rebuild for CUDA 11.8 w/arch support (#116) * Rebuild for CUDA 11.8 w/arch support * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 * Build 8.1 (#120) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.1 beta (#111) * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Build 8.1 beta * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.02.17.25.16 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.04.19.29.41 * Add setuptools as host dependency * Remove checks for CUDA compiler plugin --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * bump ci * Add Python 3.12 migration (#113) * Add Python 3.12 migration * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.08.10.53.16 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 release candidate 1 (#115) * Build 8.1 release candidate 1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1rc2 (#118) * Build 8.1rc2 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.29.0, and conda-forge-pinning 2023.11.16.09.46.51 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.26.16.08.11 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.26.16.08.11 * Force rebuild --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * Trigger CI * Rebuild for CUDA 12 w/arch + Windows support (#121) * Rebuild for CUDA 12 w/arch + Windows support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * Update for CUDA 12 * Remove cuda-compat in windows * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Revert "Update recipe/meta.yaml" This reverts commit d46a255. * Change linux64 or ppc64le by linux * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.27.19.54.17 * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * bump build number --------- Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: Mike Henry <[email protected]> * Build 8.1.1 release candidate * MNT: Re-rendered with conda-build 3.28.2, conda-smithy 3.30.2, and conda-forge-pinning 2024.01.02.19.32.12 --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: Raul <[email protected]>
* Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.1 beta (#111) * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Build 8.1 beta * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.02.17.25.16 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.04.19.29.41 * Add setuptools as host dependency * Remove checks for CUDA compiler plugin --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * bump ci * Add Python 3.12 migration (#113) * Add Python 3.12 migration * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.08.10.53.16 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 release candidate 1 (#115) * Build 8.1 release candidate 1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1rc2 (#118) * Build 8.1rc2 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.29.0, and conda-forge-pinning 2023.11.16.09.46.51 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1.1 release candidate * MNT: Re-rendered with conda-build 3.28.2, conda-smithy 3.30.2, and conda-forge-pinning 2024.01.02.19.32.12 * Build 8.1.1 release candidate (#124) * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Rebuild for CUDA 11.8 w/arch support (#116) * Rebuild for CUDA 11.8 w/arch support * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 * Build 8.1 (#120) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.1 beta (#111) * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Build 8.1 beta * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.02.17.25.16 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.04.19.29.41 * Add setuptools as host dependency * Remove checks for CUDA compiler plugin --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * bump ci * Add Python 3.12 migration (#113) * Add Python 3.12 migration * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.08.10.53.16 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 release candidate 1 (#115) * Build 8.1 release candidate 1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1rc2 (#118) * Build 8.1rc2 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.29.0, and conda-forge-pinning 2023.11.16.09.46.51 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.26.16.08.11 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.26.16.08.11 * Force rebuild --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * Trigger CI * Rebuild for CUDA 12 w/arch + Windows support (#121) * Rebuild for CUDA 12 w/arch + Windows support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * Update for CUDA 12 * Remove cuda-compat in windows * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Revert "Update recipe/meta.yaml" This reverts commit d46a255. * Change linux64 or ppc64le by linux * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.27.19.54.17 * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * bump build number --------- Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: Mike Henry <[email protected]> * Build 8.1.1 release candidate * MNT: Re-rendered with conda-build 3.28.2, conda-smithy 3.30.2, and conda-forge-pinning 2024.01.02.19.32.12 --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: Raul <[email protected]> * Trigger CI * Empty PR to rerender (#125) * Empty PR to rerender * MNT: Re-rendered with conda-build 3.28.2, conda-smithy 3.30.2, and conda-forge-pinning 2024.01.05.16.55.49 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1.1 * MNT: Re-rendered with conda-build 3.28.3, conda-smithy 3.30.4, and conda-forge-pinning 2024.01.12.19.03.45 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: Raul <[email protected]>
* Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.1 beta (#111) * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Build 8.1 beta * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.02.17.25.16 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.04.19.29.41 * Add setuptools as host dependency * Remove checks for CUDA compiler plugin --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * bump ci * Add Python 3.12 migration (#113) * Add Python 3.12 migration * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.08.10.53.16 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 release candidate 1 (#115) * Build 8.1 release candidate 1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1rc2 (#118) * Build 8.1rc2 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.29.0, and conda-forge-pinning 2023.11.16.09.46.51 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1.1 release candidate * MNT: Re-rendered with conda-build 3.28.2, conda-smithy 3.30.2, and conda-forge-pinning 2024.01.02.19.32.12 * Build 8.1.1 release candidate (#124) * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Rebuild for CUDA 11.8 w/arch support (#116) * Rebuild for CUDA 11.8 w/arch support * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 * Build 8.1 (#120) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.1 beta (#111) * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Build 8.1 beta * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.02.17.25.16 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.04.19.29.41 * Add setuptools as host dependency * Remove checks for CUDA compiler plugin --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * bump ci * Add Python 3.12 migration (#113) * Add Python 3.12 migration * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.08.10.53.16 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 release candidate 1 (#115) * Build 8.1 release candidate 1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1rc2 (#118) * Build 8.1rc2 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.29.0, and conda-forge-pinning 2023.11.16.09.46.51 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.26.16.08.11 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.26.16.08.11 * Force rebuild --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * Trigger CI * Rebuild for CUDA 12 w/arch + Windows support (#121) * Rebuild for CUDA 12 w/arch + Windows support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * Update for CUDA 12 * Remove cuda-compat in windows * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Revert "Update recipe/meta.yaml" This reverts commit d46a255. * Change linux64 or ppc64le by linux * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.27.19.54.17 * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * bump build number --------- Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: Mike Henry <[email protected]> * Build 8.1.1 release candidate * MNT: Re-rendered with conda-build 3.28.2, conda-smithy 3.30.2, and conda-forge-pinning 2024.01.02.19.32.12 --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: Raul <[email protected]> * Trigger CI * Empty PR to rerender (#125) * Empty PR to rerender * MNT: Re-rendered with conda-build 3.28.2, conda-smithy 3.30.2, and conda-forge-pinning 2024.01.05.16.55.49 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeYAMLTest * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * Build 8.1.2rc1 (#131) * Build 8.1.2rc1 * MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.36.2, and conda-forge-pinning 2024.07.02.10.47.51 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1.2 * Fixed hash --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: Raul <[email protected]>
* Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.1 beta (#111) * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Build 8.1 beta * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.02.17.25.16 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.04.19.29.41 * Add setuptools as host dependency * Remove checks for CUDA compiler plugin --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * bump ci * Add Python 3.12 migration (#113) * Add Python 3.12 migration * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.08.10.53.16 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 release candidate 1 (#115) * Build 8.1 release candidate 1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1rc2 (#118) * Build 8.1rc2 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.29.0, and conda-forge-pinning 2023.11.16.09.46.51 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1.1 release candidate * MNT: Re-rendered with conda-build 3.28.2, conda-smithy 3.30.2, and conda-forge-pinning 2024.01.02.19.32.12 * Build 8.1.1 release candidate (#124) * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Rebuild for CUDA 11.8 w/arch support (#116) * Rebuild for CUDA 11.8 w/arch support * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 * Build 8.1 (#120) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.1 beta (#111) * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Build 8.0.0 release (#100) * Build 8.0 beta * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Use newer glibc * Updated linux version * MNT: Re-rendered with conda-build 3.21.9, conda-smithy 3.21.0, and conda-forge-pinning 2022.07.06.01.52.02 * Updated beta for 8.0 * MNT: Re-rendered with conda-build 3.22.0, conda-smithy 3.21.1, and conda-forge-pinning 2022.09.13.19.09.01 * Try not packaging tests * Updated beta for 8.0 * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration DotConda * Release candidate for 8.0 (#95) * Release candidate for 8.0 * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.07.12.45.19 * python 3.11 migration Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Updated revision for release candidate (#98) * Second release candidate of 8.0 (#99) * Build 8.0.0 release * MNT: Re-rendered with conda-build 3.23.3, conda-smithy 3.22.1, and conda-forge-pinning 2023.01.26.16.59.55 * Removed inappropriate checks for github release * Removed checks that require a GPU * Remove more tests that prevent builds from completing * Another attempt at trying to make it happy with the batch file syntax --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * Trigger CI * Rebuild for cuda for ppc64le and aarch64 * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.14.07.22.14 * Update conda-forge.yml * MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.23.10.35.24 * Rebuild for CUDA 12 w/arch support (#108) * Rebuild for CUDA 12 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.31.22.15.24 * See if this fixes the missing target CMake Error at platforms/cuda/sharedTarget/CMakeLists.txt:16 (TARGET_LINK_LIBRARIES): Target "OpenMMCUDA" links to: CUDA::cufft but the target was not found. Possible reasons include: * I think I need to only add this to cuda 12 builds * Add missing header file * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Add `cuda_compiler_version or ""` workaround * added cuda-nvrtc-dev as dep * added cuda-driver-dev * moved some deps into host * add cuda-driver-dev as a testing dep * move dep outside of if block * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.24.1, and conda-forge-pinning 2023.07.25.19.20.13 * added cuda-compat * Rebuild for CUDA 12 w/arch support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.24.1, and conda-forge-pinning 2023.08.24.17.10.00 * push cuda12 build to dev channel * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.25.1, and conda-forge-pinning 2023.09.05.13.39.24 * sync conda-forge.yml with dev * skip test * made a mistake and was going to push this onto dev * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.22.17.00.20 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: jaimergp <[email protected]> * Rebuild for PyPy3.9 (#110) * Rebuild for PyPy3.9 * MNT: Re-rendered with conda-build 3.26.1, conda-smithy 3.26.2, and conda-forge-pinning 2023.09.26.23.22.17 * MNT: Re-rendered with conda-build 3.25.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.09.27.16.11.26 * remove python version pin from run_constrained for windows python 3.9 builds --------- Co-authored-by: Mike Henry <[email protected]> * Build 8.1 beta * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.02.17.25.16 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.26.3, and conda-forge-pinning 2023.10.04.19.29.41 * Add setuptools as host dependency * Remove checks for CUDA compiler plugin --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * bump ci * Add Python 3.12 migration (#113) * Add Python 3.12 migration * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.27.1, and conda-forge-pinning 2023.10.08.10.53.16 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 release candidate 1 (#115) * Build 8.1 release candidate 1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.28.0, and conda-forge-pinning 2023.11.08.21.35.56 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1rc2 (#118) * Build 8.1rc2 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.29.0, and conda-forge-pinning 2023.11.16.09.46.51 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.1 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.26.16.08.11 * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.26.16.08.11 * Force rebuild --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> * Trigger CI * Rebuild for CUDA 12 w/arch + Windows support (#121) * Rebuild for CUDA 12 w/arch + Windows support The transition to CUDA 12 SDK includes new packages for all CUDA libraries and build tools. Notably, the cudatoolkit package no longer exists, and packages should depend directly on the specific CUDA libraries (libcublas, libcusolver, etc) as needed. For an in-depth overview of the changes and to report problems [see this issue]( conda-forge/conda-forge.github.io#1963 ). Please feel free to raise any issues encountered there. Thank you! 🙏 * Update for CUDA 12 * Remove cuda-compat in windows * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * Revert "Update recipe/meta.yaml" This reverts commit d46a255. * Change linux64 or ppc64le by linux * MNT: Re-rendered with conda-build 3.27.0, conda-smithy 3.30.0, and conda-forge-pinning 2023.11.27.19.54.17 * Update recipe/meta.yaml Co-authored-by: jakirkham <[email protected]> * bump build number --------- Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: Mike Henry <[email protected]> * Build 8.1.1 release candidate * MNT: Re-rendered with conda-build 3.28.2, conda-smithy 3.30.2, and conda-forge-pinning 2024.01.02.19.32.12 --------- Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: Raul <[email protected]> * Trigger CI * Empty PR to rerender (#125) * Empty PR to rerender * MNT: Re-rendered with conda-build 3.28.2, conda-smithy 3.30.2, and conda-forge-pinning 2024.01.05.16.55.49 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeYAMLTest * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration CondaForgeAutomergeUpdate * Build 8.1.2rc1 (#131) * Build 8.1.2rc1 * MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.36.2, and conda-forge-pinning 2024.07.02.10.47.51 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Build 8.2 beta (#142) * Build 8.2 beta * fix lint * Removed scipy pin * MNT: Re-rendered with conda-build 24.3.0, conda-smithy 3.40.1, and conda-forge-pinning 2024.09.26.07.35.45 * MNT: Re-rendered with conda-build 24.9.0, conda-smithy 3.40.1, and conda-forge-pinning 2024.09.26.07.35.45 --------- Co-authored-by: Mike Henry <[email protected]> Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> * Release candidate for 8.2 (#143) * Release candidate for 8.2 * MNT: Re-rendered with conda-build 24.9.0, conda-smithy 3.43.0, and conda-forge-pinning 2024.10.21.14.45.36 * skip aarch64 and cuda 11.8 builds * Updated revision to build --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> * [ci skip] [skip ci] [cf admin skip] ***NO_CI*** admin migration RemoveAutomergeAndRerender * Build 8.2 * MNT: Re-rendered with conda-build 24.9.0, conda-smithy 3.44.2, and conda-forge-pinning 2024.11.07.16.38.57 * MNT: Re-rendered with conda-build 24.9.0, conda-smithy 3.44.2, and conda-forge-pinning 2024.11.08.10.03.25 --------- Co-authored-by: conda-forge-webservices[bot] <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Co-authored-by: conda-forge-curator[bot] <79913779+conda-forge-curator[bot]@users.noreply.github.com> Co-authored-by: Mike Henry <[email protected]> Co-authored-by: regro-cf-autotick-bot <[email protected]> Co-authored-by: jaimergp <[email protected]> Co-authored-by: jakirkham <[email protected]> Co-authored-by: Raul <[email protected]> Co-authored-by: conda-forge-admin <[email protected]>
This PR has been triggered in an effort to update cuda120.
Notes and instructions for merging this PR:
Please note that if you close this PR we presume that the feedstock has been rebuilt, so if you are going to perform the rebuild yourself don't close this PR until the your rebuild has been merged.
Here are some more details about this specific migrator:
If this PR was opened in error or needs to be updated please add the
bot-rerun
label to this PR. The bot will close this PR and schedule another one. If you do not have permissions to add this label, you can use the phrase@conda-forge-admin, please rerun bot
in a PR comment to have theconda-forge-admin
add it for you.This PR was created by the regro-cf-autotick-bot. The regro-cf-autotick-bot is a service to automatically track the dependency graph, migrate packages, and propose package version updates for conda-forge. Feel free to drop us a line if there are any issues! This PR was generated by https://github.com/regro/cf-scripts/actions/runs/5966237202, please use this URL for debugging.