diff --git a/.github/workflows/sub_weeklyBuild.yml b/.github/workflows/build_release.yml similarity index 81% rename from .github/workflows/sub_weeklyBuild.yml rename to .github/workflows/build_release.yml index 07fe85f086..86add33ba2 100644 --- a/.github/workflows/sub_weeklyBuild.yml +++ b/.github/workflows/build_release.yml @@ -1,5 +1,7 @@ -name: Weekly Build +name: Build Release on: + release: + types: [created] schedule: - cron: "0 0 * * 3" workflow_dispatch: @@ -8,10 +10,10 @@ permissions: contents: write jobs: - tag_build: + upload_src: runs-on: ubuntu-latest outputs: - build_tag: ${{ steps.tag_build.outputs.build_tag }} + build_tag: ${{ steps.get_tag.outputs.build_tag }} steps: - name: Harden the runner (Audit all outbound calls) uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2 @@ -21,20 +23,25 @@ jobs: - name: Checkout Source uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: + ref: ${{ github.sha }} fetch-depth: 2 fetch-tags: true submodules: 'recursive' - - name: Tag Build - id: tag_build + - name: get tag and create release if weekly + id: get_tag shell: bash -l {0} env: GH_TOKEN: ${{ github.token }} run: | - export BUILD_TAG=weekly-$(date "+%Y.%m.%d") + if [ "${{ github.event_name }}" = "release" ]; then + export BUILD_TAG="${{ github.event.release.tag_name }}" + else + export BUILD_TAG=weekly-$(date "+%Y.%m.%d") + gh release create ${BUILD_TAG} --title "Development Build ${BUILD_TAG}" -F .github/workflows/weekly-build-notes.md --prerelease || true + fi echo "BUILD_TAG=${BUILD_TAG}" >> "$GITHUB_ENV" echo "build_tag=${BUILD_TAG}" >> "$GITHUB_OUTPUT" - gh release create ${BUILD_TAG} --title "Development Build ${BUILD_TAG}" -F .github/workflows/weekly-build-notes.md --prerelease || true - name: Upload Source id: upload_source @@ -42,10 +49,10 @@ jobs: env: GH_TOKEN: ${{ github.token }} run: | - python3 package/rattler-build/scripts/make_version_file.py ../freecad_version.txt + python3 package/scripts/write_version_info.py ../freecad_version.txt git config user.email '41898282+github-actions[bot]@users.noreply.github.com' git config user.name 'github-actions[bot]' - git apply package/rattler-build/scripts/disable_git_info.patch + git apply package/disable_git_info.patch git commit -a -m "Disable git info write to Version.h" git archive HEAD -o freecad_source_${BUILD_TAG}.tar git submodule foreach --recursive \ @@ -57,7 +64,7 @@ jobs: gh release upload --clobber ${BUILD_TAG} "freecad_source_${BUILD_TAG}.tar.gz" "freecad_source_${BUILD_TAG}.tar.gz-SHA256.txt" build: - needs: tag_build + needs: upload_src strategy: matrix: include: @@ -88,10 +95,8 @@ jobs: - name: Set Platform Environment Variables shell: bash -l {0} env: - BUILD_TAG: ${{ needs.tag_build.outputs.build_tag }} OPERATING_SYSTEM: ${{ runner.os }} run: | - echo "BUILD_TAG=${BUILD_TAG}" >> "$GITHUB_ENV" if [[ $OPERATING_SYSTEM == 'Windows' ]]; then echo 'PIXI_CACHE_DIR=D:\rattler' >> "$GITHUB_ENV" echo 'RATTLER_CACHE_DIR=D:\rattler' >> "$GITHUB_ENV" @@ -100,6 +105,7 @@ jobs: - name: Checkout Source uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: + ref: ${{ github.sha }} fetch-depth: 2 fetch-tags: true submodules: 'recursive' @@ -110,6 +116,7 @@ jobs: cache: false - name: Install the Apple certificate and provisioning profile + id: get_cert if: runner.os == 'macOS' env: APP_SPECIFIC_PASSWORD: ${{ secrets.APP_SPECIFIC_PASSWORD }} @@ -120,9 +127,15 @@ jobs: KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }} P12_PASSWORD: ${{ secrets.P12_PASSWORD }} run: | + if [ -z "$BUILD_CERTIFICATE_BASE64" ]; then + echo "has_cert=false" >> $GITHUB_OUTPUT + echo "No certificate avalable... skipping" && exit 0 + else + echo "has_cert=true" >> $GITHUB_OUTPUT + fi # create variables CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12 - PP_PATH=$RUNNER_TEMP/FreeCAD_Weekly.provisionprofile + PP_PATH=$RUNNER_TEMP/FreeCAD_bundle.provisionprofile KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db export KEYCHAIN_PASSWORD=$(openssl rand -base64 8) @@ -152,12 +165,13 @@ jobs: env: GH_TOKEN: ${{ github.token }} SIGNING_KEY_ID: ${{ secrets.SIGNING_KEY_ID }} - SIGN_RELEASE: "true" + SIGN_RELEASE: ${{ steps.get_cert.outputs.has_cert }} TARGET_PLATFORM: ${{ matrix.target }} + MAKE_INSTALLER: "true" UPLOAD_RELEASE: "true" + BUILD_TAG: ${{ needs.upload_src.outputs.build_tag }} run: | - python3 package/rattler-build/scripts/make_version_file.py ../freecad_version.txt - git apply package/rattler-build/scripts/disable_git_info.patch + python3 package/scripts/write_version_info.py ../freecad_version.txt cd package/rattler-build pixi install pixi run -e package create_bundle diff --git a/.github/workflows/fedora-daily.yml b/.github/workflows/fedora-daily.yml index 1ea2238ba1..a4995d33c3 100644 --- a/.github/workflows/fedora-daily.yml +++ b/.github/workflows/fedora-daily.yml @@ -8,6 +8,7 @@ on: jobs: trigger-copr-build: + environment: fedora-daily env: copr_token: ${{ secrets.COPR_TOKEN }} runs-on: ubuntu-latest diff --git a/.packit.yaml b/.packit.yaml index 523620a77b..e0ae3ee247 100644 --- a/.packit.yaml +++ b/.packit.yaml @@ -3,7 +3,7 @@ files_to_sync: - .packit.yaml actions: post-upstream-clone: - - bash -c 'BUILD_TAG=dev /usr/bin/python3 package/rattler-build/scripts/make_version_file.py freecad_version.txt' + - bash -c '/usr/bin/python3 package/scripts/write_version_info.py freecad_version.txt' - rm -f freecad-sources.tar.gz changelog-entry: - bash -c 'git log --no-merges --pretty="format:- %s (%an)" $(git describe --tags --abbrev=0 )..HEAD -- |sed 's/%/%%/g'' diff --git a/package/WindowsInstaller/.gitignore b/package/WindowsInstaller/.gitignore new file mode 100644 index 0000000000..370b73f83d --- /dev/null +++ b/package/WindowsInstaller/.gitignore @@ -0,0 +1,5 @@ +*.exe +*-SHA256.txt +MSVCRedist +FreeCAD +version.nsh diff --git a/package/WindowsInstaller/Delete.bat b/package/WindowsInstaller/Delete.bat new file mode 100644 index 0000000000..c8c95cc8f7 --- /dev/null +++ b/package/WindowsInstaller/Delete.bat @@ -0,0 +1,47 @@ +del /S *_d.* +del /S *_debug.* +del /S *.pyc +del /S *.pdb +del /S boost*-gd-*.dll +cd bin +del assistant.exe +del Coin4d.dll +del designer.exe +del freetyped.dll +del libcrypto-3d.dll +del libEGLd.dll +del libGLESv2d.dll +del libssl-3d.dll +del linguist.exe +del qdoc.exe +del Qt6Concurrentd.dll +del Qt6Cored.dll +del Qt6DBusd.dll +del Qt6DesignerComponentsd.dll +del Qt6Designerd.dll +del Qt6Guid.dll +del Qt6Helpd.dll +del Qt6LabsAnimationd.dll +del Qt6LabsFolderListModeld.dll +del Qt6LabsPlatformd.dll +del Qt6LabsSettingsd.dll +del Qt6LabsSharedImaged.dll +del Qt6LabsWavefrontMeshd.dll +del Qt6MultimediaWidgetsd.dll +del Qt6Multimediad.dll +del Qt6Networkd.dll +del Qt6OpenGLWidgetsd.dll +del Qt6OpenGLd.dll +del Qt6PrintSupportd.dll +del Qt6SpatialAudiod.dll +del Qt6Sqld.dll +del Qt6SvgWidgetsd.dll +del Qt6Svgd.dll +del Qt6Testd.dll +del Qt6UiToolsd.dll +del Qt6Widgetsd.dll +del Qt6Xmld.dll +del QtWebEngineProcessd.exe +del Quarter1d.dll +del xerces-c_3_2D.dll +del zlibd.dll diff --git a/tools/build/WindowsInstaller/FCweborg.pfx b/package/WindowsInstaller/FCweborg.pfx similarity index 100% rename from tools/build/WindowsInstaller/FCweborg.pfx rename to package/WindowsInstaller/FCweborg.pfx diff --git a/tools/build/WindowsInstaller/FreeCAD-installer.nsi b/package/WindowsInstaller/FreeCAD-installer.nsi similarity index 100% rename from tools/build/WindowsInstaller/FreeCAD-installer.nsi rename to package/WindowsInstaller/FreeCAD-installer.nsi diff --git a/tools/build/WindowsInstaller/LICENSE b/package/WindowsInstaller/LICENSE similarity index 100% rename from tools/build/WindowsInstaller/LICENSE rename to package/WindowsInstaller/LICENSE diff --git a/tools/build/WindowsInstaller/License.rtf b/package/WindowsInstaller/License.rtf similarity index 100% rename from tools/build/WindowsInstaller/License.rtf rename to package/WindowsInstaller/License.rtf diff --git a/tools/build/WindowsInstaller/README.md b/package/WindowsInstaller/README.md similarity index 56% rename from tools/build/WindowsInstaller/README.md rename to package/WindowsInstaller/README.md index 981f11137a..2e898d98b1 100644 --- a/tools/build/WindowsInstaller/README.md +++ b/package/WindowsInstaller/README.md @@ -1,7 +1,7 @@ # Creating a Windows installer for FreeCAD These are instructions for building an NSIS-based installer for FreeCAD. They were designed for FreeCAD 0.21 and later, -and presume that you have cloned a copy of FreeCAD's source code, and therefore have the directory *src/WindowsInstaller*. +and presume that you have cloned a copy of FreeCAD's source code, and therefore have the directory *package/WindowsInstaller*. ## Install NSIS To set up your system for building an NSIS installer: @@ -15,16 +15,13 @@ To set up your system for building an NSIS installer: 4. Download and install the nsProcess plugin from https://nsis.sourceforge.io/NsProcess_plugin -- you will need the version that supports Unicode, so make sure to follow the appropriate instructions on their site to install that one (as of this writing it involves manually copying and renaming the plugin DLL file). ## Build the installer -Next, update the installer settings for the current version of FreeCAD. Starting from the *src/WindowsInstaller* folder in the FreeCAD source tree: -1. Set the appropriate version strings for the release you are creating. These are used to construct the filename of the installer, among other things. If you have to upload a new version of the installer for the exact same release of FreeCAD, increment `APP_VERSION BUILD` as needed. -``` -!define APP_VERSION_MAJOR 0 -!define APP_VERSION_MINOR 21 -!define APP_VERSION_REVISION 0 +Next, update the installer settings for the current version of FreeCAD. Starting from the *package/WindowsInstaller* folder in the FreeCAD source tree: +1. Set the appropriate version strings for the release you are creating. These are used to construct the filename of the installer, among other things. If you have to upload a new version of the installer for the exact same release of FreeCAD, increment `APP_VERSION BUILD` as needed. The main version numbers are dynamically obtained by calling `freecadcmd.exe`. +```nsis !define APP_VERSION_EMERGENCY "RC1" !define APP_VERSION_BUILD 1 ``` -2. Within the folder *src/WindowsInstaller*, create a new folder called MSVCRedist and copy the following files from your MSVC installation into it: +2. If the installer will be made from a LibPack build create a new folder called MSVCRedist within the folder *package/WindowsInstaller* and copy the following files from your MSVC installation into it: ``` vcruntime140.dll concrt140.dll @@ -33,28 +30,38 @@ vcamp140.dll vccorlib140.dll vcomp140.dll ``` -3. Open the file *Settings.nsh* with a text editor (both jEdit and Visual Studio Code are good editors for NSIS files). Edit the following paths to correspond to your system: `FILES_FREECAD` corresponds to your installation directory (e.g. `CMAKE_INSTALL_PREFIX` if you self-compiled) and `FILES_DEPS` is the folder you created with the MSVC redistributable files in it. -``` -!define FILES_FREECAD "C:\FreeCAD\Installer\FreeCAD" -!define FILES_DEPS "C:\FreeCAD\Installer\MSVCRedist" +3. If required open the file *Settings.nsh* with a text editor (both jEdit and Visual Studio Code are good editors for NSIS files). Edit the following paths to correspond to your system: `FILES_FREECAD` corresponds to your installation directory (e.g. `CMAKE_INSTALL_PREFIX` if you self-compiled), `FILES_THUMBS` is the directory where the thumbnailer dll is located and `FILES_DEPS` is the folder you created with the MSVC redistributable files in it. `FILES_DEPS` is not needed if the installer is created from a conda bundle so it is not set by default. These can be set via /D argument for `makensis.exe` or by editing *Settings.nsh*. +```nsis +!ifndef FILES_FREECAD + !define FILES_FREECAD "${__FILEDIR__}\FreeCAD" +!endif +!ifndef FILES_THUMBS + !define FILES_THUMBS "${__FILEDIR__}\thumbnail" +!endif + +#!define FILES_DEPS "${__FILEDIR__}\MSVC_Redist" ``` 4. Ensure the FreeCAD files are in place. Here you have two options: * If you are working from an already-compiled version of FreeCAD provided to you by an outside source: in this case, simply ensure that `FILES_FREECAD` is set to the directory containing those files. * If you compiled FreeCAD on your own as described [here](https://wiki.freecad.org/Compile_on_Windows) (and using the Install option outlined there). Then: - * Open the file *Settings.nsh* as described in step 3. above and set there
- `!define FILES_FREECAD` to the folder you specified as `CMAKE_INSTALL_PREFIX` - * Copy into that folder the file *Delete.bat* that is part of the installer + * Copy into the installation folder the file *Delete.bat* that is part of the installer * open a command line in Windows and change to the folder - * run the comamand
+ * run the command
`Delete.bat` * (These steps assure that the installer only contains files users need. Moreover it assures that the overall files size is below 2 GB and we can use the most compact compression for the installer.) 5. Right-click on the file *FreeCAD-installer.nsi* and choose **Compile NSIS script** - to compile the installer. + to compile the installer. You can also run from command line to specify some settings +```cmd +%your_nsis_path%\makensis.exe /D'FILES_FREECAD="D:\some\path\FreeCAD"' /D'FILES_DEPS="${__FILEDIR__}\MSVC_Redist" /D'ExeFile="my-FreeCAD-installer.exe"' FreeCAD-installer.nsi +``` -NOTE: For test builds of the installer you can turn off the compression. This speeds up +NOTE: For test builds of the installer you can turn off compression. This speeds up the build time for the installer a lot but increases its file size. The compression -is turned off by uncommenting the line
+is turned off by commenting the line
`SetCompressor /SOLID lzma`
-in the file *Settings.nsh*. +in the file *Settings.nsh* or by defining `FC_TEST_BUILD` in command line +```cmd +%your_nsis_path%\makensis.exe [OPTIONS] /DFC_TEST_BUILD FreeCAD-installer.nsi +``` diff --git a/package/WindowsInstaller/Settings.nsh b/package/WindowsInstaller/Settings.nsh new file mode 100644 index 0000000000..259bf23ea1 --- /dev/null +++ b/package/WindowsInstaller/Settings.nsh @@ -0,0 +1,62 @@ +/* + +Settings for FreeCAD installer + +These typically need to be modified for each FreeCAD release + +*/ + +# Make the installer as small as possible +# Using /SOLID is usually better for file size but it can't be used if the original size is +# more than 2GB, if building with /SOLID fails try disabling it +# comment this or use /DFC_TEST_BUILD command line option for testing builds since it will reduce +# the time to create an installer a lot at the cost of a much greater file size. +# So assure it is active for release builds! +!ifndef FC_TEST_BUILD + SetCompressor /SOLID lzma +!endif + +#-------------------------------- +# File locations +# !!! you may need to adjust them to the folders in your Windows system !!! +# can be specified with /D command line argument to makensis.exe +!ifndef FILES_FREECAD + !define FILES_FREECAD "${__FILEDIR__}\FreeCAD" +!endif +!ifndef FILES_THUMBS + !define FILES_THUMBS "${__FILEDIR__}\thumbnail" +!endif + +# msvc redistributables location is required for LibPack builds but not conda +# when using a LibPack build set the redistributables directory location here +# or with /D command line argument to makensis.exe +#!define FILES_DEPS "${__FILEDIR__}\MSVCRedist" + +#-------------------------------- +# get version info from freecadcmd +!system "${FILES_FREECAD}\bin\freecadcmd.exe --safe-mode -c $\"import datetime; print(f'!define COPYRIGHT_YEAR {datetime.date.today().year}')$\">${__FILEDIR__}\version.nsh" = 0 +!system "${FILES_FREECAD}\bin\freecadcmd.exe --safe-mode -c $\"print(f'!define APP_VERSION_MAJOR \$\"{App.Version()[0]}\$\"')$\">>${__FILEDIR__}\version.nsh" = 0 +!system "${FILES_FREECAD}\bin\freecadcmd.exe --safe-mode -c $\"print(f'!define APP_VERSION_MINOR \$\"{App.Version()[1]}\$\"')$\">>${__FILEDIR__}\version.nsh" = 0 +!system "${FILES_FREECAD}\bin\freecadcmd.exe --safe-mode -c $\"print(f'!define APP_VERSION_PATCH \$\"{App.Version()[2]}\$\"')$\">>${__FILEDIR__}\version.nsh" = 0 +!system "${FILES_FREECAD}\bin\freecadcmd.exe --safe-mode -c $\"print(f'!define APP_VERSION_REVISION \$\"{App.Version()[3].split()[0]}\$\"')$\">>${__FILEDIR__}\version.nsh" = 0 +!include "${__FILEDIR__}\version.nsh" +!delfile "${__FILEDIR__}\version.nsh" + +!define APP_VERSION_EMERGENCY "" # use "1" for an emergency release of FreeCAD otherwise "" + # alternatively you can use APP_VERSION_EMERGENCY for a custom suffix of the version number +!define APP_EMERGENCY_DOT "" # use "." for an emergency release of FreeCAD otherwise "" +!define APP_VERSION_BUILD 1 # Start with 1 for the installer releases of each version + +!define APP_VERSION "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_PATCH}${APP_EMERGENCY_DOT}${APP_VERSION_EMERGENCY}" # Version to display + +#-------------------------------- +# Installer file name +# Typical names for the release are "FreeCAD-020-Installer-1.exe" etc. + +!ifndef ExeFile + !define ExeFile "${APP_NAME}_${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_PATCH}${APP_VERSION_EMERGENCY}-Windows-x86_64-installer-${APP_VERSION_BUILD}.exe" +!endif + +#-------------------------------- +# installer bit type - FreeCAD is only provided as 64bit build +!define MULTIUSER_USE_PROGRAMFILES64 diff --git a/tools/build/WindowsInstaller/Signing.bat b/package/WindowsInstaller/Signing.bat similarity index 71% rename from tools/build/WindowsInstaller/Signing.bat rename to package/WindowsInstaller/Signing.bat index 80dc3bddf3..6212d1f481 100644 --- a/tools/build/WindowsInstaller/Signing.bat +++ b/package/WindowsInstaller/Signing.bat @@ -1 +1,2 @@ signtool.exe sign /f FCweborg.pfx /p FreeCADIsCool /fd sha512 /tr http://timestamp.digicert.com /td sha512 /v %1 +certutil -hashfile %1 SHA256 > %1-SHA256.txt diff --git a/package/WindowsInstaller/graphics/banner.bmp b/package/WindowsInstaller/graphics/banner.bmp new file mode 100644 index 0000000000..8d21af1a58 Binary files /dev/null and b/package/WindowsInstaller/graphics/banner.bmp differ diff --git a/tools/build/WindowsInstaller/graphics/orange.svg b/package/WindowsInstaller/graphics/banner.svg similarity index 100% rename from tools/build/WindowsInstaller/graphics/orange.svg rename to package/WindowsInstaller/graphics/banner.svg diff --git a/package/WindowsInstaller/graphics/header.bmp b/package/WindowsInstaller/graphics/header.bmp new file mode 100644 index 0000000000..d543ea399a Binary files /dev/null and b/package/WindowsInstaller/graphics/header.bmp differ diff --git a/tools/build/WindowsInstaller/icons/FreeCAD-clean.ico b/package/WindowsInstaller/icons/FreeCAD-clean.ico similarity index 100% rename from tools/build/WindowsInstaller/icons/FreeCAD-clean.ico rename to package/WindowsInstaller/icons/FreeCAD-clean.ico diff --git a/tools/build/WindowsInstaller/icons/FreeCAD-icon-57px-height.bmp b/package/WindowsInstaller/icons/FreeCAD-icon-57px-height.bmp similarity index 100% rename from tools/build/WindowsInstaller/icons/FreeCAD-icon-57px-height.bmp rename to package/WindowsInstaller/icons/FreeCAD-icon-57px-height.bmp diff --git a/tools/build/WindowsInstaller/icons/FreeCAD-icon.bmp b/package/WindowsInstaller/icons/FreeCAD-icon.bmp similarity index 100% rename from tools/build/WindowsInstaller/icons/FreeCAD-icon.bmp rename to package/WindowsInstaller/icons/FreeCAD-icon.bmp diff --git a/tools/build/WindowsInstaller/icons/FreeCAD-icon.xcf b/package/WindowsInstaller/icons/FreeCAD-icon.xcf similarity index 100% rename from tools/build/WindowsInstaller/icons/FreeCAD-icon.xcf rename to package/WindowsInstaller/icons/FreeCAD-icon.xcf diff --git a/tools/build/WindowsInstaller/icons/FreeCAD.ico b/package/WindowsInstaller/icons/FreeCAD.ico similarity index 100% rename from tools/build/WindowsInstaller/icons/FreeCAD.ico rename to package/WindowsInstaller/icons/FreeCAD.ico diff --git a/tools/build/WindowsInstaller/include/declarations.nsh b/package/WindowsInstaller/include/declarations.nsh similarity index 92% rename from tools/build/WindowsInstaller/include/declarations.nsh rename to package/WindowsInstaller/include/declarations.nsh index 9a2d01382b..9832096f0e 100644 --- a/tools/build/WindowsInstaller/include/declarations.nsh +++ b/package/WindowsInstaller/include/declarations.nsh @@ -13,13 +13,13 @@ Configuration and variables of FreeCAD installer # Names and version !define APP_NAME "FreeCAD" -!define APP_VERSION_NUMBER "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_REVISION}.${APP_VERSION_BUILD}" +!define APP_VERSION_NUMBER "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_PATCH}.${APP_VERSION_BUILD}" # For the proposed install folder we use the scheme "FreeCAD 0.18" # however for the Registry, we need the scheme "FreeCAD 0.18.x" in order # to check if it is exactly this version (to support side-by-side installations) !define APP_SERIES_NAME "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}" -!define APP_SERIES_KEY "${APP_VERSION_MAJOR}${APP_VERSION_MINOR}${APP_VERSION_REVISION}${APP_VERSION_EMERGENCY}" -!define APP_SERIES_KEY2 "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_REVISION}${APP_EMERGENCY_DOT}${APP_VERSION_EMERGENCY}" +!define APP_SERIES_KEY "${APP_VERSION_MAJOR}${APP_VERSION_MINOR}${APP_VERSION_PATCH}${APP_VERSION_EMERGENCY}" +!define APP_SERIES_KEY2 "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_PATCH}${APP_EMERGENCY_DOT}${APP_VERSION_EMERGENCY}" !define APP_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\${APP_NAME}.exe" !define APP_DIR "${APP_NAME} ${APP_SERIES_NAME}" # Fixme: FC should use different preferences folder for every release @@ -60,7 +60,7 @@ Configuration and variables of FreeCAD installer !define SETUP_ICON "icons\FreeCAD.ico" !define SETUP_HEADERIMAGE "graphics\header.bmp" -!define SETUP_WIZARDIMAGE "graphics\orange.bmp" +!define SETUP_WIZARDIMAGE "graphics\banner.bmp" !define SETUP_UNINSTALLER "Uninstall-${APP_NAME}.exe" !define SETUP_UNINSTALLER_KEY "${APP_NAME}${APP_SERIES_KEY}" diff --git a/tools/build/WindowsInstaller/include/gui.nsh b/package/WindowsInstaller/include/gui.nsh similarity index 99% rename from tools/build/WindowsInstaller/include/gui.nsh rename to package/WindowsInstaller/include/gui.nsh index db91075b6a..7d15546a42 100644 --- a/tools/build/WindowsInstaller/include/gui.nsh +++ b/package/WindowsInstaller/include/gui.nsh @@ -92,7 +92,7 @@ BrandingText " " VIProductVersion "${APP_VERSION_NUMBER}" VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductName" "${APP_NAME}" -VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductVersion" "${APP_DIR}.${APP_VERSION_REVISION}" +VIAddVersionKey /LANG=${LANG_ENGLISH} "ProductVersion" "${APP_DIR}.${APP_VERSION_PATCH}" VIAddVersionKey /LANG=${LANG_ENGLISH} "FileDescription" "${APP_INFO}" VIAddVersionKey /LANG=${LANG_ENGLISH} "FileVersion" "${APP_VERSION}" VIAddVersionKey /LANG=${LANG_ENGLISH} "LegalCopyright" "${APP_COPYRIGHT}" diff --git a/tools/build/WindowsInstaller/include/init.nsh b/package/WindowsInstaller/include/init.nsh similarity index 97% rename from tools/build/WindowsInstaller/include/init.nsh rename to package/WindowsInstaller/include/init.nsh index 034a1a9e49..083775026d 100644 --- a/tools/build/WindowsInstaller/include/init.nsh +++ b/package/WindowsInstaller/include/init.nsh @@ -50,7 +50,7 @@ Function PostMultiUserPageInit # check if there is an existing FreeCAD installation of the same FreeCAD series # we usually don't release more than 10 versions so with 20 we are safe to check if a newer version is installed - IntOp $4 ${APP_VERSION_REVISION} + 20 + IntOp $4 ${APP_VERSION_PATCH} + 20 ${for} $5 0 $4 ReadRegStr $0 SHCTX "Software\Microsoft\Windows\CurrentVersion\Uninstall\${APP_NAME}${APP_VERSION_MAJOR}${APP_VERSION_MINOR}$5" "DisplayVersion" # also check for an emergency release @@ -110,7 +110,8 @@ Function .onInit ${orif} $R0 == "5.1" # XP ${orif} $R0 == "5.2" # 2003 ${orif} $R0 == "6.0" # Vista - MessageBox MB_OK|MB_ICONSTOP "${APP_NAME} ${APP_VERSION} requires Windows 7 or newer." /SD IDOK + ${orif} $R0 == "6.1" # 7 + MessageBox MB_OK|MB_ICONSTOP "${APP_NAME} ${APP_VERSION} requires Windows 8 or newer." /SD IDOK Quit ${endif} @@ -130,7 +131,7 @@ Function .onInit # plugin must be unloaded ${nsProcess::Unload} - # initialize the multi-uder installer UI + # initialize the multi-user installer UI !insertmacro MULTIUSER_INIT # this can be reset to "true" in section SecDesktop diff --git a/tools/build/WindowsInstaller/include/utils.nsh b/package/WindowsInstaller/include/utils.nsh similarity index 98% rename from tools/build/WindowsInstaller/include/utils.nsh rename to package/WindowsInstaller/include/utils.nsh index a454d95bb6..3e8cd5c0e6 100644 --- a/tools/build/WindowsInstaller/include/utils.nsh +++ b/package/WindowsInstaller/include/utils.nsh @@ -18,8 +18,8 @@ # and returns the number of the character in the FindStr where the SearchStr was found (Pointer) # if nothing was found or the search is impossible the Pointer is set to -1 - StrLen $R2 ${SearchStr} - StrLen $R4 ${FindStr} + StrLen $R2 "${SearchStr}" + StrLen $R4 "${FindStr}" StrCpy $R5 0 ${if} $R2 == 0 ${orif} $R4 == 0 @@ -27,8 +27,8 @@ ${endif} IntCmp $R4 $R2 loopA NotFound loopA: - StrCpy $R3 ${FindStr} $R2 $R5 - StrCmp $R3 ${SearchStr} Found + StrCpy $R3 "${FindStr}" $R2 $R5 + StrCmp $R3 "${SearchStr}" Found IntOp $R5 $R5 + 1 IntCmp $R4 $R5 loopA NotFound Goto loopA diff --git a/tools/build/WindowsInstaller/information/Creation of SHA256 checksum file.txt b/package/WindowsInstaller/information/Creation of SHA256 checksum file.txt similarity index 100% rename from tools/build/WindowsInstaller/information/Creation of SHA256 checksum file.txt rename to package/WindowsInstaller/information/Creation of SHA256 checksum file.txt diff --git a/tools/build/WindowsInstaller/information/FreeCAD-filename-SHA256.txt b/package/WindowsInstaller/information/FreeCAD-filename-SHA256.txt similarity index 100% rename from tools/build/WindowsInstaller/information/FreeCAD-filename-SHA256.txt rename to package/WindowsInstaller/information/FreeCAD-filename-SHA256.txt diff --git a/tools/build/WindowsInstaller/information/ISO_3166.html b/package/WindowsInstaller/information/ISO_3166.html similarity index 100% rename from tools/build/WindowsInstaller/information/ISO_3166.html rename to package/WindowsInstaller/information/ISO_3166.html diff --git a/tools/build/WindowsInstaller/information/InstallerStructure.odg b/package/WindowsInstaller/information/InstallerStructure.odg similarity index 100% rename from tools/build/WindowsInstaller/information/InstallerStructure.odg rename to package/WindowsInstaller/information/InstallerStructure.odg diff --git a/tools/build/WindowsInstaller/information/InstallerStructure.pdf b/package/WindowsInstaller/information/InstallerStructure.pdf similarity index 100% rename from tools/build/WindowsInstaller/information/InstallerStructure.pdf rename to package/WindowsInstaller/information/InstallerStructure.pdf diff --git a/tools/build/WindowsInstaller/information/WinLangCode.htm b/package/WindowsInstaller/information/WinLangCode.htm similarity index 100% rename from tools/build/WindowsInstaller/information/WinLangCode.htm rename to package/WindowsInstaller/information/WinLangCode.htm diff --git a/tools/build/WindowsInstaller/information/iso639.htm b/package/WindowsInstaller/information/iso639.htm similarity index 100% rename from tools/build/WindowsInstaller/information/iso639.htm rename to package/WindowsInstaller/information/iso639.htm diff --git a/tools/build/WindowsInstaller/lang/TranslatedLanguages.nsh b/package/WindowsInstaller/lang/TranslatedLanguages.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/TranslatedLanguages.nsh rename to package/WindowsInstaller/lang/TranslatedLanguages.nsh diff --git a/tools/build/WindowsInstaller/lang/arabic.nsh b/package/WindowsInstaller/lang/arabic.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/arabic.nsh rename to package/WindowsInstaller/lang/arabic.nsh diff --git a/tools/build/WindowsInstaller/lang/basque.nsh b/package/WindowsInstaller/lang/basque.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/basque.nsh rename to package/WindowsInstaller/lang/basque.nsh diff --git a/tools/build/WindowsInstaller/lang/catalan.nsh b/package/WindowsInstaller/lang/catalan.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/catalan.nsh rename to package/WindowsInstaller/lang/catalan.nsh diff --git a/tools/build/WindowsInstaller/lang/czech.nsh b/package/WindowsInstaller/lang/czech.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/czech.nsh rename to package/WindowsInstaller/lang/czech.nsh diff --git a/tools/build/WindowsInstaller/lang/danish.nsh b/package/WindowsInstaller/lang/danish.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/danish.nsh rename to package/WindowsInstaller/lang/danish.nsh diff --git a/tools/build/WindowsInstaller/lang/dutch.nsh b/package/WindowsInstaller/lang/dutch.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/dutch.nsh rename to package/WindowsInstaller/lang/dutch.nsh diff --git a/tools/build/WindowsInstaller/lang/english.nsh b/package/WindowsInstaller/lang/english.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/english.nsh rename to package/WindowsInstaller/lang/english.nsh diff --git a/tools/build/WindowsInstaller/lang/french.nsh b/package/WindowsInstaller/lang/french.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/french.nsh rename to package/WindowsInstaller/lang/french.nsh diff --git a/tools/build/WindowsInstaller/lang/galician.nsh b/package/WindowsInstaller/lang/galician.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/galician.nsh rename to package/WindowsInstaller/lang/galician.nsh diff --git a/tools/build/WindowsInstaller/lang/german.nsh b/package/WindowsInstaller/lang/german.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/german.nsh rename to package/WindowsInstaller/lang/german.nsh diff --git a/tools/build/WindowsInstaller/lang/hungarian.nsh b/package/WindowsInstaller/lang/hungarian.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/hungarian.nsh rename to package/WindowsInstaller/lang/hungarian.nsh diff --git a/tools/build/WindowsInstaller/lang/indonesian.nsh b/package/WindowsInstaller/lang/indonesian.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/indonesian.nsh rename to package/WindowsInstaller/lang/indonesian.nsh diff --git a/tools/build/WindowsInstaller/lang/italian.nsh b/package/WindowsInstaller/lang/italian.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/italian.nsh rename to package/WindowsInstaller/lang/italian.nsh diff --git a/tools/build/WindowsInstaller/lang/japanese.nsh b/package/WindowsInstaller/lang/japanese.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/japanese.nsh rename to package/WindowsInstaller/lang/japanese.nsh diff --git a/tools/build/WindowsInstaller/lang/norwegian.nsh b/package/WindowsInstaller/lang/norwegian.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/norwegian.nsh rename to package/WindowsInstaller/lang/norwegian.nsh diff --git a/tools/build/WindowsInstaller/lang/polish.nsh b/package/WindowsInstaller/lang/polish.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/polish.nsh rename to package/WindowsInstaller/lang/polish.nsh diff --git a/tools/build/WindowsInstaller/lang/portuguese.nsh b/package/WindowsInstaller/lang/portuguese.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/portuguese.nsh rename to package/WindowsInstaller/lang/portuguese.nsh diff --git a/tools/build/WindowsInstaller/lang/portugueseBR.nsh b/package/WindowsInstaller/lang/portugueseBR.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/portugueseBR.nsh rename to package/WindowsInstaller/lang/portugueseBR.nsh diff --git a/tools/build/WindowsInstaller/lang/romanian.nsh b/package/WindowsInstaller/lang/romanian.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/romanian.nsh rename to package/WindowsInstaller/lang/romanian.nsh diff --git a/tools/build/WindowsInstaller/lang/russian.nsh b/package/WindowsInstaller/lang/russian.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/russian.nsh rename to package/WindowsInstaller/lang/russian.nsh diff --git a/tools/build/WindowsInstaller/lang/slovak.nsh b/package/WindowsInstaller/lang/slovak.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/slovak.nsh rename to package/WindowsInstaller/lang/slovak.nsh diff --git a/tools/build/WindowsInstaller/lang/spanish.nsh b/package/WindowsInstaller/lang/spanish.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/spanish.nsh rename to package/WindowsInstaller/lang/spanish.nsh diff --git a/tools/build/WindowsInstaller/lang/swedish.nsh b/package/WindowsInstaller/lang/swedish.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/swedish.nsh rename to package/WindowsInstaller/lang/swedish.nsh diff --git a/tools/build/WindowsInstaller/lang/turkish.nsh b/package/WindowsInstaller/lang/turkish.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/turkish.nsh rename to package/WindowsInstaller/lang/turkish.nsh diff --git a/tools/build/WindowsInstaller/lang/ukrainian.nsh b/package/WindowsInstaller/lang/ukrainian.nsh similarity index 100% rename from tools/build/WindowsInstaller/lang/ukrainian.nsh rename to package/WindowsInstaller/lang/ukrainian.nsh diff --git a/tools/build/WindowsInstaller/setup/configure.nsh b/package/WindowsInstaller/setup/configure.nsh similarity index 100% rename from tools/build/WindowsInstaller/setup/configure.nsh rename to package/WindowsInstaller/setup/configure.nsh diff --git a/tools/build/WindowsInstaller/setup/install.nsh b/package/WindowsInstaller/setup/install.nsh similarity index 85% rename from tools/build/WindowsInstaller/setup/install.nsh rename to package/WindowsInstaller/setup/install.nsh index aa173c7083..45f72ff6c5 100644 --- a/tools/build/WindowsInstaller/setup/install.nsh +++ b/package/WindowsInstaller/setup/install.nsh @@ -8,14 +8,15 @@ Installation of program files, dictionaries and external components #-------------------------------- # Program files +!include LogicLib.nsh Section -ProgramFiles SecProgramFiles # if the $INSTDIR does not contain "FreeCAD" we must add a subfolder to avoid that FreeCAD will e.g. # be installed directly to C:\programs - the uninstaller will then delete the whole # C:\programs directory - StrCpy $String $INSTDIR - StrCpy $Search ${APP_NAME} + StrCpy $String "$INSTDIR" + StrCpy $Search "${APP_NAME}" Call StrPoint # function from Utils.nsh ${if} $Pointer == "-1" StrCpy $INSTDIR "$INSTDIR\${APP_DIR}" @@ -38,8 +39,11 @@ Section -ProgramFiles SecProgramFiles File /r "${FILES_FREECAD}\bin\*.*" # MSVC redistributable DLLs - SetOutPath "$INSTDIR\bin" - File "${FILES_DEPS}\*.*" + !ifdef FILES_DEPS + !echo "Including MSVC Redist files from ${FILES_DEPS}" + SetOutPath "$INSTDIR\bin" + File "${FILES_DEPS}\*.*" + !endif # Others SetOutPath "$INSTDIR\data" @@ -52,10 +56,6 @@ Section -ProgramFiles SecProgramFiles File /r "${FILES_FREECAD}\lib\*.*" SetOutPath "$INSTDIR\Mod" File /r "${FILES_FREECAD}\Mod\*.*" - SetOutPath "$INSTDIR\resources" - File /r "${FILES_FREECAD}\resources\*.*" - SetOutPath "$INSTDIR\translations" - File /r "${FILES_FREECAD}\translations\*.*" SetOutPath "$INSTDIR" File /r "${FILES_THUMBS}" diff --git a/tools/build/WindowsInstaller/setup/uninstall.nsh b/package/WindowsInstaller/setup/uninstall.nsh similarity index 100% rename from tools/build/WindowsInstaller/setup/uninstall.nsh rename to package/WindowsInstaller/setup/uninstall.nsh diff --git a/tools/build/WindowsInstaller/thumbnail/FCStdThumbnail.dll b/package/WindowsInstaller/thumbnail/FCStdThumbnail.dll similarity index 100% rename from tools/build/WindowsInstaller/thumbnail/FCStdThumbnail.dll rename to package/WindowsInstaller/thumbnail/FCStdThumbnail.dll diff --git a/package/rattler-build/.gitignore b/package/rattler-build/.gitignore new file mode 100644 index 0000000000..fe87d7a21c --- /dev/null +++ b/package/rattler-build/.gitignore @@ -0,0 +1,12 @@ +linux/AppDir/usr +linux/AppDir/*.desktop +linux/AppDir/*.svg +linux/AppDir/packages.txt +windows/FreeCAD_*Windows* +osx/FreeCAD.app +**.AppImage +**.AppImage.zsync +**.dmg +**.7z +**.exe +**-SHA256.txt diff --git a/package/rattler-build/linux/create_bundle.sh b/package/rattler-build/linux/create_bundle.sh index 2d44abea44..c9ed5e18f2 100755 --- a/package/rattler-build/linux/create_bundle.sh +++ b/package/rattler-build/linux/create_bundle.sh @@ -1,7 +1,7 @@ #!/bin/bash set -e -set -x +set -x conda_env="AppDir/usr" @@ -9,9 +9,6 @@ mkdir -p ${conda_env} cp -a ../.pixi/envs/default/* ${conda_env} -export PATH="${PWD}/${conda_env}/bin:${PATH}" -export CONDA_PREFIX="${PWD}/${conda_env}" - echo -e "\nDelete unnecessary stuff" rm -rf ${conda_env}/include find ${conda_env} -name \*.a -delete @@ -49,7 +46,7 @@ rm -rf ${conda_env}/lib/cmake/ find . -name "*.h" -type f -delete find . -name "*.cmake" -type f -delete -python_version=$(python -c 'import platform; print("py" + platform.python_version_tuple()[0] + platform.python_version_tuple()[1])') +python_version=$(${conda_env}/bin/python -c 'import platform; print("py" + platform.python_version_tuple()[0] + platform.python_version_tuple()[1])') version_name="FreeCAD_${BUILD_TAG}-Linux-$(uname -m)-${python_version}" echo -e "\################" @@ -62,6 +59,20 @@ sed -i "1s/.*/\nLIST OF PACKAGES:/" AppDir/packages.txt curl -LO https://github.com/AppImage/appimagetool/releases/download/continuous/appimagetool-$(uname -m).AppImage chmod a+x appimagetool-$(uname -m).AppImage +if [ "${UPLOAD_RELEASE}" == "true" ]; then + case "${BUILD_TAG}" in + *weekly*) + GH_UPDATE_TAG="weeklies" + ;; + *rc*) + GH_UPDATE_TAG="${BUILD_TAG}" + ;; + *) + GH_UPDATE_TAG="latest" + ;; + esac +fi + echo -e "\nCreate the appimage" # export GPG_TTY=$(tty) chmod a+x ./AppDir/AppRun @@ -69,7 +80,7 @@ chmod a+x ./AppDir/AppRun --comp zstd \ --mksquashfs-opt -Xcompression-level \ --mksquashfs-opt 22 \ - -u "gh-releases-zsync|FreeCAD|FreeCAD|${BUILD_TAG}|FreeCAD*$(uname -m)*.AppImage.zsync" \ + -u "gh-releases-zsync|FreeCAD|FreeCAD|${GH_UPDATE_TAG}|FreeCAD*$(uname -m)*.AppImage.zsync" \ AppDir ${version_name}.AppImage # -s --sign-key ${GPG_KEY_ID} \ @@ -77,5 +88,13 @@ echo -e "\nCreate hash" sha256sum ${version_name}.AppImage > ${version_name}.AppImage-SHA256.txt if [ "${UPLOAD_RELEASE}" == "true" ]; then - gh release upload --clobber ${BUILD_TAG} "${version_name}.AppImage" "${version_name}.AppImage-SHA256.txt" + gh release upload --clobber ${BUILD_TAG} "${version_name}.AppImage" "${version_name}.AppImage.zsync" "${version_name}.AppImage-SHA256.txt" + if [ "${GH_UPDATE_TAG}" == "weeklies" ]; then + generic_name="FreeCAD_weekly-Linux-$(uname -m)" + mv "${version_name}.AppImage" "${generic_name}.AppImage" + mv "${version_name}.AppImage.zsync" "${generic_name}.AppImage.zsync" + mv "${version_name}.AppImage-SHA256.txt" "${generic_name}.AppImage-SHA256.txt" + gh release create weeklies --prerelease | true + gh release upload --clobber weeklies "${generic_name}.AppImage" "${generic_name}.AppImage.zsync" "${generic_name}.AppImage-SHA256.txt" + fi fi diff --git a/package/rattler-build/osx/create_bundle.sh b/package/rattler-build/osx/create_bundle.sh index b3756ab4a0..7872126c24 100644 --- a/package/rattler-build/osx/create_bundle.sh +++ b/package/rattler-build/osx/create_bundle.sh @@ -9,9 +9,6 @@ mkdir -p ${conda_env} cp -a ../.pixi/envs/default/* ${conda_env} -export PATH="${PWD}/${conda_env}/bin:${PATH}" -export CONDA_PREFIX="${PWD}/${conda_env}" - # delete unnecessary stuff rm -rf ${conda_env}/include find ${conda_env} -name \*.a -delete @@ -50,7 +47,7 @@ cmake --build build mkdir -p FreeCAD.app/Contents/MacOS cp build/FreeCAD FreeCAD.app/Contents/MacOS/FreeCAD -python_version=$(python -c 'import platform; print("py" + platform.python_version_tuple()[0] + platform.python_version_tuple()[1])') +python_version=$(${conda_env}/bin/python -c 'import platform; print("py" + platform.python_version_tuple()[0] + platform.python_version_tuple()[1])') version_name="FreeCAD_${BUILD_TAG}-macOS-$(uname -m)-${python_version}" application_menu_name="FreeCAD_${BUILD_TAG}" @@ -71,7 +68,7 @@ rm -rf ${conda_env}/Library if [[ "${SIGN_RELEASE}" == "true" ]]; then # create the signed dmg - ./macos_sign_and_notarize.zsh -p "FreeCAD" -k ${SIGNING_KEY_ID} -o "${version_name}.dmg" + ../../scripts/macos_sign_and_notarize.zsh -p "FreeCAD" -k ${SIGNING_KEY_ID} -o "${version_name}.dmg" else # create the dmg dmgbuild -s dmg_settings.py "FreeCAD" "${version_name}.dmg" diff --git a/package/rattler-build/osx/dmg_settings.py b/package/rattler-build/osx/dmg_settings.py index 9e3b2decd9..aba5f9a1e0 100644 --- a/package/rattler-build/osx/dmg_settings.py +++ b/package/rattler-build/osx/dmg_settings.py @@ -1,3 +1,5 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + # Ensure default values are set in defines if they are not already provided defines.setdefault('containing_folder', '.') defines.setdefault('app_name', 'FreeCAD.app') diff --git a/package/rattler-build/pixi.lock b/package/rattler-build/pixi.lock index 772df06d1c..2acafd2d44 100644 --- a/package/rattler-build/pixi.lock +++ b/package/rattler-build/pixi.lock @@ -18,12 +18,12 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/at-spi2-atk-2.38.0-h0630a04_3.tar.bz2 - conda: https://prefix.dev/conda-forge/linux-64/at-spi2-core-2.40.3-h0630a04_0.tar.bz2 - conda: https://prefix.dev/conda-forge/linux-64/atk-1.0-2.38.0-h04ea711_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 + - conda: https://prefix.dev/conda-forge/linux-64/attr-2.5.2-h39aace5_0.conda - conda: https://prefix.dev/conda-forge/noarch/attrs-25.3.0-pyh71513ae_0.conda - conda: https://prefix.dev/conda-forge/linux-64/blas-2.132-openblas.conda - conda: https://prefix.dev/conda-forge/linux-64/blas-devel-3.9.0-32_h1ea3ea9_openblas.conda - conda: https://prefix.dev/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda - conda: https://prefix.dev/conda-forge/linux-64/brotli-1.1.0-hb9d3cd8_3.conda - conda: https://prefix.dev/conda-forge/linux-64/brotli-bin-1.1.0-hb9d3cd8_3.conda - conda: https://prefix.dev/conda-forge/linux-64/brotli-python-1.1.0-py311hfdbb021_3.conda @@ -44,15 +44,16 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda - conda: https://prefix.dev/conda-forge/linux-64/dbus-1.16.2-h3c4dab8_0.conda - conda: https://prefix.dev/conda-forge/linux-64/debugpy-1.8.15-py311hc665b79_0.conda + - conda: https://prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-64/double-conversion-3.3.1-h5888daf_0.conda - conda: https://prefix.dev/conda-forge/linux-64/eigen-3.4.0-h00ab1b0_0.conda - conda: https://prefix.dev/conda-forge/linux-64/epoxy-1.5.10-h166bdaf_1.tar.bz2 - conda: https://prefix.dev/conda-forge/linux-64/expat-2.7.1-hecca717_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/ffmpeg-7.1.0-gpl_hf09ebf5_710.conda - - conda: https://prefix.dev/conda-forge/linux-64/flann-1.9.2-h3ef53d8_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/ffmpeg-7.1.1-gpl_h127656b_906.conda + - conda: https://prefix.dev/conda-forge/linux-64/flann-1.9.2-h783367e_4.conda - conda: https://prefix.dev/conda-forge/linux-64/fltk-1.3.10-hff38c0f_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/fmt-11.2.0-h07f6e7f_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/fmt-12.0.0-h2b0788b_0.conda - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 @@ -63,10 +64,11 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/fonttools-4.59.0-py311h3778330_0.conda - conda: https://prefix.dev/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda - conda: https://prefix.dev/conda-forge/linux-64/freeimage-3.18.0-h3a85593_22.conda - - conda: https://prefix.dev/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda - conda: https://prefix.dev/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 - conda: https://prefix.dev/conda-forge/linux-64/frozenlist-1.7.0-py311h52bc045_0.conda - conda: https://prefix.dev/conda-forge/linux-64/gdk-pixbuf-2.42.12-h7b179bb_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/geos-3.14.1-h480dda7_0.conda - conda: https://prefix.dev/conda-forge/linux-64/gettext-0.25.1-h3f43e3d_1.conda - conda: https://prefix.dev/conda-forge/linux-64/gettext-tools-0.25.1-h3f43e3d_1.conda - conda: https://prefix.dev/conda-forge/linux-64/gl2ps-1.4.2-hae5d5c5_1.conda @@ -82,13 +84,13 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-64/harfbuzz-11.3.2-hbb57e21_0.conda - conda: https://prefix.dev/conda-forge/linux-64/hdf4-4.2.15-h2a13503_7.conda - - conda: https://prefix.dev/conda-forge/linux-64/hdf5-1.14.4-nompi_h2d575fe_105.conda + - conda: https://prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda - conda: https://prefix.dev/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-64/icu-75.1-he02047a_0.conda - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda - - conda: https://prefix.dev/conda-forge/linux-64/ifcopenshell-0.8.0-py311hc0ac5f0_6.conda + - conda: https://prefix.dev/conda-forge/linux-64/ifcopenshell-0.8.2-py311hfea35e5_0.conda - conda: https://prefix.dev/conda-forge/linux-64/imath-3.1.12-h7955e40_0.conda - conda: https://prefix.dev/conda-forge/linux-64/jasper-4.2.5-h1920b20_0.conda - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda @@ -103,11 +105,12 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/ld_impl_linux-64-2.44-h1423503_1.conda - conda: https://prefix.dev/conda-forge/linux-64/lerc-4.0.0-h0aef613_1.conda - conda: https://prefix.dev/conda-forge/linux-64/level-zero-1.24.0-hb700be7_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda + - conda: https://prefix.dev/conda-forge/linux-64/libabseil-20250127.1-cxx17_hbbce691_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libasprintf-0.25.1-h3f43e3d_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libasprintf-devel-0.25.1-h3f43e3d_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libass-0.17.3-h52826cd_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/libavif16-1.3.0-h766b0b6_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libblas-3.9.0-32_h59b9bed_openblas.conda - conda: https://prefix.dev/conda-forge/linux-64/libboost-1.86.0-h6c02f8c_3.conda - conda: https://prefix.dev/conda-forge/linux-64/libboost-devel-1.86.0-h1a2810e_3.conda @@ -116,7 +119,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_3.conda - conda: https://prefix.dev/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_3.conda - conda: https://prefix.dev/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libcap-2.71-h39aace5_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libcap-2.77-h3ff7636_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libcblas-3.9.0-32_he106b2a_openblas.conda - conda: https://prefix.dev/conda-forge/linux-64/libclang-cpp20.1-20.1.8-default_hddf928d_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libclang13-20.1.8-default_ha444ac7_0.conda @@ -130,11 +133,10 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/libexpat-2.7.1-hecca717_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libffi-3.4.6-h2dba641_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libflac-1.4.3-h59595ed_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda - - conda: https://prefix.dev/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_3.conda - conda: https://prefix.dev/conda-forge/linux-64/libgcc-ng-15.1.0-h69a702a_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libgd-2.3.3-h6f5c62b_11.conda - conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-0.25.1-h3f43e3d_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libgettextpo-devel-0.25.1-h3f43e3d_1.conda @@ -146,7 +148,6 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/libglvnd-1.7.0-ha4b6fd6_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libglx-1.7.0-ha4b6fd6_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libgomp-15.1.0-h767d61c_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libhwloc-2.12.1-default_h3d81e11_1000.conda - conda: https://prefix.dev/conda-forge/linux-64/libiconv-1.18-h4ce23a2_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libjpeg-turbo-3.1.0-hb9d3cd8_0.conda @@ -154,33 +155,32 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/liblapacke-3.9.0-32_he2f377e_openblas.conda - conda: https://prefix.dev/conda-forge/linux-64/libllvm20-20.1.8-hecd9e04_0.conda - conda: https://prefix.dev/conda-forge/linux-64/liblzma-5.8.1-hb9d3cd8_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.8.1-hb9d3cd8_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h5ddbaa4_116.conda + - conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h00e09a9_116.conda - conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libnsl-2.0.1-hb9d3cd8_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libntlm-1.8-hb9d3cd8_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libogg-1.3.5-hd0c01bc_1.conda - conda: https://prefix.dev/conda-forge/linux-64/libopenblas-0.3.30-pthreads_h94d23a6_1.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopencv-4.10.0-qt6_py311h023d011_615.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopencv-4.11.0-qt6_py311h178ae83_605.conda - conda: https://prefix.dev/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-2024.6.0-hac27bb2_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.6.0-h4d9b6c2_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-plugin-2024.6.0-h4d9b6c2_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-hetero-plugin-2024.6.0-h3f63f65_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.6.0-hac27bb2_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.6.0-hac27bb2_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.6.0-hac27bb2_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-ir-frontend-2024.6.0-h3f63f65_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-onnx-frontend-2024.6.0-h6363af5_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-paddle-frontend-2024.6.0-h6363af5_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.6.0-h5888daf_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.6.0-h630ec5c_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.6.0-h5888daf_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-2025.0.0-hdc3f47d_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-batch-plugin-2025.0.0-h4d9b6c2_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-plugin-2025.0.0-h4d9b6c2_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-hetero-plugin-2025.0.0-h981d57b_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2025.0.0-hdc3f47d_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2025.0.0-hdc3f47d_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-npu-plugin-2025.0.0-hdc3f47d_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-ir-frontend-2025.0.0-h981d57b_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-onnx-frontend-2025.0.0-h0e684df_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-paddle-frontend-2025.0.0-h0e684df_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-pytorch-frontend-2025.0.0-h5888daf_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-frontend-2025.0.0-h684f15b_3.conda + - conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5888daf_3.conda - conda: https://prefix.dev/conda-forge/linux-64/libopus-1.5.2-hd0c01bc_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libpciaccess-0.18-hb9d3cd8_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libpng-1.6.50-h943b412_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libpq-17.5-h27ae623_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda + - conda: https://prefix.dev/conda-forge/linux-64/libprotobuf-5.29.3-h7460b1f_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.4-h9969a89_0.conda - conda: https://prefix.dev/conda-forge/linux-64/librsvg-2.58.4-he92a37e_3.conda - conda: https://prefix.dev/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda @@ -189,10 +189,10 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/libssh2-1.11.1-hcf80075_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-15.1.0-h8f9b012_3.conda - conda: https://prefix.dev/conda-forge/linux-64/libstdcxx-ng-15.1.0-h4852527_3.conda - - conda: https://prefix.dev/conda-forge/linux-64/libsystemd0-256.9-h2774228_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libsystemd0-257.10-hd0affe5_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libtheora-1.1.1-h4ab18f5_1006.conda - conda: https://prefix.dev/conda-forge/linux-64/libtiff-4.7.0-hf01ce69_5.conda - - conda: https://prefix.dev/conda-forge/linux-64/libudev1-257.4-h9a4d06a_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/libudev1-257.10-hd0affe5_2.conda - conda: https://prefix.dev/conda-forge/linux-64/libunwind-1.6.2-h9c3ff4c_0.tar.bz2 - conda: https://prefix.dev/conda-forge/linux-64/liburing-2.9-h84d6215_0.conda - conda: https://prefix.dev/conda-forge/linux-64/libusb-1.0.29-h73b1eb8_0.conda @@ -210,7 +210,7 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - conda: https://prefix.dev/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda - conda: https://prefix.dev/conda-forge/linux-64/lxml-6.0.0-py311hbd2c71b_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda - conda: https://prefix.dev/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_1.conda - conda: https://prefix.dev/conda-forge/linux-64/matplotlib-base-3.10.3-py311h2b939e6_0.conda - conda: https://prefix.dev/conda-forge/linux-64/mpc-1.3.1-h24ddda3_1.conda @@ -233,9 +233,9 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/openblas-0.3.30-pthreads_h6ec200e_1.conda - conda: https://prefix.dev/conda-forge/linux-64/opencamlib-2023.01.11-py311h60a5941_7.conda - conda: https://prefix.dev/conda-forge/linux-64/opencl-headers-2025.06.13-h5888daf_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/opencv-4.10.0-qt6_py311h216f146_615.conda + - conda: https://prefix.dev/conda-forge/linux-64/opencv-4.11.0-qt6_py311hc286bd8_605.conda - conda: https://prefix.dev/conda-forge/linux-64/openexr-3.3.5-h09fa569_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/openh264-2.5.0-hf92e6e3_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/openh264-2.6.0-hc22cd8d_0.conda - conda: https://prefix.dev/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda - conda: https://prefix.dev/conda-forge/linux-64/openldap-2.6.10-he970967_0.conda - conda: https://prefix.dev/conda-forge/linux-64/openssl-3.5.1-h7b32b05_0.conda @@ -252,9 +252,9 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/proj-9.5.1-h0054346_0.conda - conda: https://prefix.dev/conda-forge/linux-64/propcache-0.3.1-py311h2dc5d0c_0.conda - conda: https://prefix.dev/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda - - conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda - conda: https://prefix.dev/conda-forge/linux-64/pulseaudio-client-17.0-hb77b528_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/py-opencv-4.10.0-qt6_py311hd8ed033_615.conda + - conda: https://prefix.dev/conda-forge/linux-64/py-opencv-4.11.0-qt6_py311h934794e_605.conda - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda @@ -270,19 +270,21 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/qhull-2020.2-h434a139_5.conda - conda: https://prefix.dev/conda-forge/linux-64/qt6-main-6.8.3-h75f3359_4.conda - conda: https://prefix.dev/conda-forge/linux-64/rapidjson-1.1.0.post20240409-h3f2d84a_2.conda + - conda: https://prefix.dev/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda - conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-64/scipy-1.16.0-py311h2d3ef60_0.conda - conda: https://prefix.dev/conda-forge/linux-64/sdl2-2.32.54-h3f2d84a_0.conda - conda: https://prefix.dev/conda-forge/linux-64/sdl3-3.2.14-he3e324a_0.conda - conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/shapely-2.1.2-py311h8a92878_2.conda - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - conda: https://prefix.dev/conda-forge/linux-64/smesh-9.9.0.0-hb7ebc10_14.conda - conda: https://prefix.dev/conda-forge/linux-64/snappy-1.2.2-h03e3b7b_0.conda - conda: https://prefix.dev/conda-forge/linux-64/soqt6-1.6.3-h23d7b0e_0.conda - conda: https://prefix.dev/conda-forge/linux-64/sqlite-3.50.3-heff268d_1.conda - conda: https://prefix.dev/conda-forge/noarch/svgwrite-1.4.3-pyhd8ed1ab_1.conda - - conda: https://prefix.dev/conda-forge/linux-64/svt-av1-2.3.0-h5888daf_0.conda + - conda: https://prefix.dev/conda-forge/linux-64/svt-av1-3.0.2-h5888daf_0.conda - conda: https://prefix.dev/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda - conda: https://prefix.dev/conda-forge/linux-64/tbb-2022.2.0-hb60516a_0.conda - conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda @@ -291,9 +293,9 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/unicodedata2-16.0.0-py311h9ecbd09_0.conda - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-64/utfcpp-4.0.6-h005c6e1_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/vtk-9.3.1-qt_py311h3d4e8c9_211.conda - - conda: https://prefix.dev/conda-forge/linux-64/vtk-base-9.3.1-qt_py311h5011d52_211.conda - - conda: https://prefix.dev/conda-forge/linux-64/vtk-io-ffmpeg-9.3.1-qt_py311h3d4e8c9_211.conda + - conda: https://prefix.dev/conda-forge/linux-64/vtk-9.3.1-qt_py311h71fb23e_216.conda + - conda: https://prefix.dev/conda-forge/linux-64/vtk-base-9.3.1-qt_py311hbeb5509_216.conda + - conda: https://prefix.dev/conda-forge/linux-64/vtk-io-ffmpeg-9.3.1-qt_py311h71fb23e_216.conda - conda: https://prefix.dev/conda-forge/linux-64/wayland-1.24.0-h3e06ad9_0.conda - conda: https://prefix.dev/conda-forge/noarch/wayland-protocols-1.45-hd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda @@ -330,9 +332,6 @@ environments: - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxt-1.3.1-hb9d3cd8_0.conda - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxtst-1.2.5-hb9d3cd8_3.conda - conda: https://prefix.dev/conda-forge/linux-64/xorg-libxxf86vm-1.1.6-hb9d3cd8_0.conda - - conda: https://prefix.dev/conda-forge/linux-64/xz-5.8.1-hbcc6ac9_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/xz-gpl-tools-5.8.1-hbcc6ac9_2.conda - - conda: https://prefix.dev/conda-forge/linux-64/xz-tools-5.8.1-hb9d3cd8_2.conda - conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda - conda: https://prefix.dev/conda-forge/linux-64/yaml-cpp-0.8.0-h3f2d84a_0.conda - conda: https://prefix.dev/conda-forge/linux-64/yarl-1.20.1-py311h2dc5d0c_0.conda @@ -379,15 +378,16 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/dav1d-1.2.1-h31becfc_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/dbus-1.16.2-heda779d_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/debugpy-1.8.15-py311h8e4e6a5_0.conda + - conda: https://prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/double-conversion-3.3.1-h5ad3122_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/eigen-3.4.0-h2a328a1_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/epoxy-1.5.10-h4e544f5_1.tar.bz2 - conda: https://prefix.dev/conda-forge/linux-aarch64/expat-2.7.1-hfae3067_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/ffmpeg-7.1.0-gpl_h5c0edd5_710.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/flann-1.9.2-ha858f50_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ffmpeg-7.1.1-gpl_h30b7fc1_906.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/flann-1.9.2-hca6fa18_4.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/fltk-1.3.10-hc36ef9c_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/fmt-11.2.0-h97e1849_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/fmt-12.0.0-h416241a_0.conda - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 @@ -398,10 +398,11 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/fonttools-4.59.0-py311h164a683_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/freeglut-3.2.2-h5eeb66e_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/freeimage-3.18.0-h6cb32c8_22.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/freetype-2.13.3-h8af1aa0_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/freetype-2.14.1-h8af1aa0_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/fribidi-1.0.10-hb9de7d4_0.tar.bz2 - conda: https://prefix.dev/conda-forge/linux-aarch64/frozenlist-1.7.0-py311h91c1192_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/gdk-pixbuf-2.42.12-h20930c7_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/geos-3.14.1-h57520ee_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/gettext-0.25.1-h5ad3122_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/gettext-tools-0.25.1-h5ad3122_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/gl2ps-1.4.2-hedfd65a_1.conda @@ -417,13 +418,13 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/harfbuzz-11.3.2-h81c6d19_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/hdf4-4.2.15-hb6ba311_7.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/hdf5-1.14.4-nompi_h6ed7ac7_105.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/hdf5-1.14.3-nompi_h6ed7ac7_109.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/hicolor-icon-theme-0.17-h8af1aa0_2.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/ifcopenshell-0.8.0-py311h73984ed_6.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/ifcopenshell-0.8.2-py311h9a0e4cb_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/imath-3.1.12-hf428078_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/jasper-4.2.5-h9d5db0e_0.conda - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda @@ -437,11 +438,12 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/lcms2-2.17-hc88f144_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.44-h5e2c951_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/lerc-4.0.0-hfdc4d58_1.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libabseil-20250127.1-cxx17_h18dbdb1_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libaec-1.1.4-h1e66f74_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libasprintf-0.25.1-h5e0f5ae_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libasprintf-devel-0.25.1-h5e0f5ae_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libass-0.17.3-h3c9f632_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libavif16-1.3.0-hb72faec_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libblas-3.9.0-32_h1a9f1db_openblas.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-1.86.0-h4d13611_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libboost-devel-1.86.0-h37bb5a9_3.conda @@ -464,8 +466,8 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/libexpat-2.7.1-hfae3067_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libffi-3.4.6-he21f813_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libflac-1.4.3-h2f0025b_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype-2.13.3-h8af1aa0_1.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype6-2.13.3-he93130f_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype-2.14.1-h8af1aa0_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype6-2.14.1-hdae7a39_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-15.1.0-he277a41_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcc-ng-15.1.0-he9431aa_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcrypt-lib-1.11.1-h86ecc28_0.conda @@ -488,30 +490,30 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/liblapacke-3.9.0-32_hc659ca5_openblas.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libllvm20-20.1.8-h2b567e5_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/liblzma-5.8.1-h86ecc28_2.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_h46655bb_116.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_h1c53c35_116.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libnsl-2.0.1-h86ecc28_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libntlm-1.4-hf897c2e_1002.tar.bz2 - conda: https://prefix.dev/conda-forge/linux-aarch64/libogg-1.3.5-h86ecc28_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenblas-0.3.30-pthreads_h9d3fd7e_1.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopencv-4.10.0-headless_py311he0e9b4f_15.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopencv-4.11.0-headless_py311hdd1b4fe_5.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libopengl-1.7.0-hd24410f_2.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-2024.6.0-hd7d4d4f_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2024.6.0-hd7d4d4f_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2024.6.0-hf15766e_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-plugin-2024.6.0-hf15766e_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2024.6.0-h6ef32b0_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-ir-frontend-2024.6.0-h6ef32b0_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2024.6.0-h2c07a0f_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2024.6.0-h2c07a0f_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2024.6.0-h5ad3122_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2024.6.0-h8231d02_3.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2024.6.0-h5ad3122_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-2025.0.0-hd63d6c0_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2025.0.0-hd63d6c0_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2025.0.0-hf15766e_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-plugin-2025.0.0-hf15766e_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2025.0.0-ha8e9e04_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-ir-frontend-2025.0.0-ha8e9e04_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2025.0.0-hd8f0270_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2025.0.0-hd8f0270_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2025.0.0-h5ad3122_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2025.0.0-h33e842c_3.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5ad3122_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libopus-1.5.2-h86ecc28_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libpciaccess-0.18-h86ecc28_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libpng-1.6.50-hec79eb8_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libpq-17.5-hf590da8_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/libprotobuf-5.29.3-h9267e96_2.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libraw-0.21.4-h74ffddf_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/librsvg-2.58.4-h3ac5bce_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/libsndfile-1.2.2-h79657aa_1.conda @@ -561,9 +563,9 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/olefile-0.47-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/openblas-0.3.30-pthreads_h3a8cbd8_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/opencamlib-2023.01.11-py311h4a80dcf_7.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/opencv-4.10.0-headless_py311h91ebf2d_15.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/opencv-4.11.0-headless_py311h3291592_5.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/openexr-3.3.5-h1fc2f77_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/openh264-2.5.0-h6c5ec6d_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/openh264-2.6.0-h0564a2a_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/openjpeg-2.5.3-h3f56577_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/openldap-2.6.10-h30c48ee_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/openssl-3.5.1-hd08dc88_0.conda @@ -580,9 +582,9 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/proj-9.5.1-h9655f4d_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/propcache-0.3.1-py311h58d527c_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/pugixml-1.14-h2f0025b_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/pugixml-1.15-h6ef32b0_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/pulseaudio-client-17.0-h2f84921_1.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/py-opencv-4.10.0-headless_py311h36726d0_15.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/py-opencv-4.11.0-headless_py311h97b2e0c_5.conda - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda @@ -598,19 +600,21 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/qhull-2020.2-h70be974_5.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/qt6-main-6.8.3-he176c03_4.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/rapidjson-1.1.0.post20240409-h5ad3122_2.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/rav1e-0.7.1-ha3529ed_3.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/readline-8.2-h8382b9d_2.conda - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/scipy-1.16.0-py311h1617075_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/sdl2-2.32.54-h5ad3122_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/sdl3-3.2.18-h506f210_0.conda - conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/shapely-2.1.2-py311hb862c81_2.conda - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/smesh-9.9.0.0-h3752d33_14.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/snappy-1.2.2-he774c54_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/soqt6-1.6.3-h808f404_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/sqlite-3.50.3-he8854b5_1.conda - conda: https://prefix.dev/conda-forge/noarch/svgwrite-1.4.3-pyhd8ed1ab_1.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/svt-av1-2.3.0-h5ad3122_0.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/svt-av1-3.0.2-h5ad3122_0.conda - conda: https://prefix.dev/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/tbb-2022.2.0-h8f856e4_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/tk-8.6.13-noxft_h5688188_102.conda @@ -619,9 +623,9 @@ environments: - conda: https://prefix.dev/conda-forge/linux-aarch64/unicodedata2-16.0.0-py311ha879c10_0.conda - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/utfcpp-4.0.6-h01cc221_0.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-9.3.1-qt_py311h502ffb0_213.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-base-9.3.1-qt_py311h71e73b3_213.conda - - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-io-ffmpeg-9.3.1-qt_py311h502ffb0_213.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-9.3.1-qt_py311h3356f26_216.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-base-9.3.1-qt_py311h412eec7_216.conda + - conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-io-ffmpeg-9.3.1-qt_py311h3356f26_216.conda - conda: https://prefix.dev/conda-forge/linux-aarch64/wayland-1.24.0-h698ed42_0.conda - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/noarch/wslink-2.3.4-pyhd8ed1ab_0.conda @@ -697,15 +701,16 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda - conda: https://prefix.dev/conda-forge/osx-64/dbus-1.16.2-h27bd348_0.conda - conda: https://prefix.dev/conda-forge/osx-64/debugpy-1.8.15-py311hc651eee_0.conda + - conda: https://prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-64/double-conversion-3.3.1-h240833e_0.conda - conda: https://prefix.dev/conda-forge/osx-64/eigen-3.4.0-h1c7c39f_0.conda - conda: https://prefix.dev/conda-forge/osx-64/epoxy-1.5.10-h5eb16cf_1.tar.bz2 - conda: https://prefix.dev/conda-forge/osx-64/expat-2.7.1-h21dd04a_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/ffmpeg-7.1.0-gpl_hf97d1e1_110.conda - - conda: https://prefix.dev/conda-forge/osx-64/flann-1.9.2-h24a8005_4.conda + - conda: https://prefix.dev/conda-forge/osx-64/ffmpeg-7.1.1-gpl_h7f5d84f_106.conda + - conda: https://prefix.dev/conda-forge/osx-64/flann-1.9.2-hf045e91_4.conda - conda: https://prefix.dev/conda-forge/osx-64/fltk-1.3.10-h11de4b3_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/fmt-11.2.0-hbf61d64_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/fmt-12.0.0-h7a3a4f9_0.conda - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 @@ -715,10 +720,11 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - conda: https://prefix.dev/conda-forge/osx-64/fonttools-4.59.0-py311hfbe4617_0.conda - conda: https://prefix.dev/conda-forge/osx-64/freeimage-3.18.0-h7cd8ba8_22.conda - - conda: https://prefix.dev/conda-forge/osx-64/freetype-2.13.3-h694c41f_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/freetype-2.14.1-h694c41f_0.conda - conda: https://prefix.dev/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2 - conda: https://prefix.dev/conda-forge/osx-64/frozenlist-1.7.0-py311h7a2b322_0.conda - conda: https://prefix.dev/conda-forge/osx-64/gdk-pixbuf-2.42.12-h8ff8e49_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/geos-3.14.1-he483b9e_0.conda - conda: https://prefix.dev/conda-forge/osx-64/gl2ps-1.4.2-hd82a5f3_1.conda - conda: https://prefix.dev/conda-forge/osx-64/glew-2.1.0-h046ec9c_2.tar.bz2 - conda: https://prefix.dev/conda-forge/osx-64/glib-tools-2.84.2-hf8faeaf_0.conda @@ -732,13 +738,13 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-64/harfbuzz-11.3.2-hb258ee5_0.conda - conda: https://prefix.dev/conda-forge/osx-64/hdf4-4.2.15-h8138101_7.conda - - conda: https://prefix.dev/conda-forge/osx-64/hdf5-1.14.4-nompi_h1607680_105.conda + - conda: https://prefix.dev/conda-forge/osx-64/hdf5-1.14.3-nompi_h1607680_109.conda - conda: https://prefix.dev/conda-forge/osx-64/hicolor-icon-theme-0.17-h694c41f_2.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-64/icu-75.1-h120a0e1_0.conda - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda - - conda: https://prefix.dev/conda-forge/osx-64/ifcopenshell-0.8.0-py311h1b8037f_6.conda + - conda: https://prefix.dev/conda-forge/osx-64/ifcopenshell-0.8.2-py311h2fdbcd7_0.conda - conda: https://prefix.dev/conda-forge/osx-64/imath-3.1.12-h2016aa1_0.conda - conda: https://prefix.dev/conda-forge/osx-64/jasper-4.2.5-had675a4_0.conda - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda @@ -750,10 +756,11 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/lark-1.2.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-64/lcms2-2.17-h72f5680_0.conda - conda: https://prefix.dev/conda-forge/osx-64/lerc-4.0.0-hcca01a6_1.conda - - conda: https://prefix.dev/conda-forge/osx-64/libabseil-20240722.0-cxx17_h0e468a2_4.conda + - conda: https://prefix.dev/conda-forge/osx-64/libabseil-20250127.1-cxx17_h0e468a2_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libaec-1.1.4-ha6bc127_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libasprintf-0.25.1-h3184127_1.conda - conda: https://prefix.dev/conda-forge/osx-64/libass-0.17.3-hcafd6c1_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/libavif16-1.3.0-h679cce7_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libblas-3.9.0-32_h7f60823_openblas.conda - conda: https://prefix.dev/conda-forge/osx-64/libboost-1.86.0-hf0da243_3.conda - conda: https://prefix.dev/conda-forge/osx-64/libboost-devel-1.86.0-h20888b2_3.conda @@ -772,8 +779,8 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/libev-4.33-h10d778d_2.conda - conda: https://prefix.dev/conda-forge/osx-64/libexpat-2.7.1-h21dd04a_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libffi-3.4.6-h281671d_1.conda - - conda: https://prefix.dev/conda-forge/osx-64/libfreetype-2.13.3-h694c41f_1.conda - - conda: https://prefix.dev/conda-forge/osx-64/libfreetype6-2.13.3-h40dfd5c_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/libfreetype-2.14.1-h694c41f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/libfreetype6-2.14.1-h6912278_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libgd-2.3.3-h8555400_11.conda - conda: https://prefix.dev/conda-forge/osx-64/libgettextpo-0.25.1-h3184127_1.conda - conda: https://prefix.dev/conda-forge/osx-64/libgfortran-5.0.0-14_2_0_h51e75f0_103.conda @@ -788,27 +795,27 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/libllvm18-18.1.8-default_hd2a208e_7.conda - conda: https://prefix.dev/conda-forge/osx-64/libllvm20-20.1.8-h9b4ebcc_0.conda - conda: https://prefix.dev/conda-forge/osx-64/liblzma-5.8.1-hd471939_2.conda - - conda: https://prefix.dev/conda-forge/osx-64/libnetcdf-4.9.2-nompi_hd7a758f_116.conda + - conda: https://prefix.dev/conda-forge/osx-64/libnetcdf-4.9.2-nompi_hf3c7182_116.conda - conda: https://prefix.dev/conda-forge/osx-64/libnghttp2-1.64.0-hc7306c3_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libntlm-1.8-h6e16a3a_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libogg-1.3.5-he3325bb_1.conda - conda: https://prefix.dev/conda-forge/osx-64/libopenblas-0.3.30-openmp_hbf64a52_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopencv-4.10.0-headless_py311hfe71332_15.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-2024.6.0-h5e1b680_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.6.0-h4464f52_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-plugin-2024.6.0-h4464f52_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-hetero-plugin-2024.6.0-h3435d20_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.6.0-h5e1b680_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-ir-frontend-2024.6.0-h3435d20_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-onnx-frontend-2024.6.0-h40b3fd7_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-paddle-frontend-2024.6.0-h40b3fd7_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.6.0-hbcac03e_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.6.0-hacd10b5_3.conda - - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.6.0-hbcac03e_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopencv-4.11.0-headless_py311h31cfaaf_5.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-2025.0.0-h84fdd48_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-batch-plugin-2025.0.0-hf8d533f_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-plugin-2025.0.0-hf8d533f_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-hetero-plugin-2025.0.0-h035ecc0_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2025.0.0-h84fdd48_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-ir-frontend-2025.0.0-h035ecc0_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-onnx-frontend-2025.0.0-h84dae0a_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-paddle-frontend-2025.0.0-h84dae0a_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-pytorch-frontend-2025.0.0-hb639f4d_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-frontend-2025.0.0-hbe29116_3.conda + - conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2025.0.0-hb639f4d_3.conda - conda: https://prefix.dev/conda-forge/osx-64/libopus-1.5.2-he3325bb_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libpng-1.6.50-h3c4a55f_0.conda - conda: https://prefix.dev/conda-forge/osx-64/libpq-17.5-h9c5cfc2_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/libprotobuf-5.28.3-h6401091_1.conda + - conda: https://prefix.dev/conda-forge/osx-64/libprotobuf-5.29.3-h14f6895_2.conda - conda: https://prefix.dev/conda-forge/osx-64/libraw-0.21.4-h0ade9e5_0.conda - conda: https://prefix.dev/conda-forge/osx-64/librsvg-2.58.4-h21a6cfa_3.conda - conda: https://prefix.dev/conda-forge/osx-64/libsqlite-3.50.3-h875aaf5_1.conda @@ -847,9 +854,9 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/olefile-0.47-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-64/openblas-0.3.30-openmp_h30af337_0.conda - conda: https://prefix.dev/conda-forge/osx-64/opencamlib-2023.01.11-py311h1bd00d0_7.conda - - conda: https://prefix.dev/conda-forge/osx-64/opencv-4.10.0-headless_py311h735d82c_15.conda + - conda: https://prefix.dev/conda-forge/osx-64/opencv-4.11.0-headless_py311h3536bda_5.conda - conda: https://prefix.dev/conda-forge/osx-64/openexr-3.3.5-h5783f79_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/openh264-2.5.0-hdfcf091_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/openh264-2.6.0-h4883158_0.conda - conda: https://prefix.dev/conda-forge/osx-64/openjpeg-2.5.3-h7fd6d84_0.conda - conda: https://prefix.dev/conda-forge/osx-64/openldap-2.6.10-hd8a590d_0.conda - conda: https://prefix.dev/conda-forge/osx-64/openssl-3.5.1-hc426f3f_0.conda @@ -866,8 +873,8 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/proj-9.5.1-h5273da6_0.conda - conda: https://prefix.dev/conda-forge/osx-64/propcache-0.3.1-py311ha3cf9ac_0.conda - conda: https://prefix.dev/conda-forge/osx-64/pthread-stubs-0.4-h00291cd_1002.conda - - conda: https://prefix.dev/conda-forge/osx-64/pugixml-1.14-he965462_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/py-opencv-4.10.0-headless_py311h9a37508_15.conda + - conda: https://prefix.dev/conda-forge/osx-64/pugixml-1.15-h46091d4_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/py-opencv-4.11.0-headless_py311hcd52236_5.conda - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda @@ -883,19 +890,21 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/qhull-2020.2-h3c5361c_5.conda - conda: https://prefix.dev/conda-forge/osx-64/qt6-main-6.8.3-he2a6cc6_4.conda - conda: https://prefix.dev/conda-forge/osx-64/rapidjson-1.1.0.post20240409-h92383a6_2.conda + - conda: https://prefix.dev/conda-forge/osx-64/rav1e-0.7.1-h371c88c_3.conda - conda: https://prefix.dev/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-64/scipy-1.16.0-py311hed73a19_0.conda - conda: https://prefix.dev/conda-forge/osx-64/sdl2-2.32.54-h92383a6_0.conda - conda: https://prefix.dev/conda-forge/osx-64/sdl3-3.2.18-hc0b302d_0.conda - conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/shapely-2.1.2-py311hda9c9d0_2.conda - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - conda: https://prefix.dev/conda-forge/osx-64/smesh-9.9.0.0-h9ba7290_14.conda - conda: https://prefix.dev/conda-forge/osx-64/snappy-1.2.2-h25c286d_0.conda - conda: https://prefix.dev/conda-forge/osx-64/soqt6-1.6.3-h667e493_0.conda - conda: https://prefix.dev/conda-forge/osx-64/sqlite-3.50.3-h8d07200_1.conda - conda: https://prefix.dev/conda-forge/noarch/svgwrite-1.4.3-pyhd8ed1ab_1.conda - - conda: https://prefix.dev/conda-forge/osx-64/svt-av1-2.3.0-h97d8b74_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/svt-av1-3.0.2-h240833e_0.conda - conda: https://prefix.dev/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda - conda: https://prefix.dev/conda-forge/osx-64/tbb-2022.2.0-hc025b3e_0.conda - conda: https://prefix.dev/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda @@ -904,9 +913,9 @@ environments: - conda: https://prefix.dev/conda-forge/osx-64/unicodedata2-16.0.0-py311h4d7f069_0.conda - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-64/utfcpp-4.0.6-h93fb1c9_0.conda - - conda: https://prefix.dev/conda-forge/osx-64/vtk-9.3.1-qt_py311h6e7d914_213.conda - - conda: https://prefix.dev/conda-forge/osx-64/vtk-base-9.3.1-qt_py311h544662b_213.conda - - conda: https://prefix.dev/conda-forge/osx-64/vtk-io-ffmpeg-9.3.1-qt_py311h6e7d914_213.conda + - conda: https://prefix.dev/conda-forge/osx-64/vtk-9.3.1-qt_py311hb7aed01_216.conda + - conda: https://prefix.dev/conda-forge/osx-64/vtk-base-9.3.1-qt_py311h12068e6_216.conda + - conda: https://prefix.dev/conda-forge/osx-64/vtk-io-ffmpeg-9.3.1-qt_py311hb7aed01_216.conda - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/noarch/wslink-2.3.4-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-64/x264-1!164.3095-h775f41a_2.tar.bz2 @@ -943,7 +952,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/blas-2.132-openblas.conda - conda: https://prefix.dev/conda-forge/osx-arm64/blas-devel-3.9.0-32_h11c0a38_openblas.conda - conda: https://prefix.dev/conda-forge/noarch/blinker-1.9.0-pyhff2d567_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/blosc-1.21.6-h5499902_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/blosc-1.21.6-h7dd00d9_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-1.1.0-h5505292_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-bin-1.1.0-h5505292_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/brotli-python-1.1.0-py311h155a34a_3.conda @@ -964,15 +973,16 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/dbus-1.16.2-hda038a8_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/debugpy-1.8.15-py311ha59bd64_0.conda + - conda: https://prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/double-conversion-3.3.1-h286801f_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/eigen-3.4.0-h1995070_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/epoxy-1.5.10-h1c322ee_1.tar.bz2 - conda: https://prefix.dev/conda-forge/osx-arm64/expat-2.7.1-hec049ff_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/ffmpeg-7.1.0-gpl_h7c3f5a8_110.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/flann-1.9.2-h9c23b55_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/ffmpeg-7.1.1-gpl_h20db955_106.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/flann-1.9.2-h5d00db4_4.conda - conda: https://prefix.dev/conda-forge/osx-arm64/fltk-1.3.10-h46aaf7c_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/fmt-11.2.0-h440487c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/fmt-12.0.0-h669d743_0.conda - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 @@ -982,10 +992,11 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - conda: https://prefix.dev/conda-forge/osx-arm64/fonttools-4.59.0-py311h2fe624c_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/freeimage-3.18.0-h2e169f6_22.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/freetype-2.13.3-hce30654_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/freetype-2.14.1-hce30654_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2 - conda: https://prefix.dev/conda-forge/osx-arm64/frozenlist-1.7.0-py311h8740443_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/gdk-pixbuf-2.42.12-h0094380_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/geos-3.14.1-h5afe852_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/gl2ps-1.4.2-hc97c1ff_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/glew-2.1.0-h9f76cd9_2.tar.bz2 - conda: https://prefix.dev/conda-forge/osx-arm64/glib-tools-2.84.2-h1dc7a0c_0.conda @@ -999,13 +1010,13 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/harfbuzz-11.3.2-hcb8449c_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/hdf4-4.2.15-h2ee6834_7.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/hdf5-1.14.4-nompi_ha698983_105.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/hdf5-1.14.3-nompi_ha698983_109.conda - conda: https://prefix.dev/conda-forge/osx-arm64/hicolor-icon-theme-0.17-hce30654_2.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/ifcopenshell-0.8.0-py311h51d146a_6.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/ifcopenshell-0.8.2-py311h30f7335_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/imath-3.1.12-h025cafa_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/jasper-4.2.5-h743e416_0.conda - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda @@ -1017,10 +1028,11 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/lark-1.2.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/lcms2-2.17-h7eeda09_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/lerc-4.0.0-hd64df32_1.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libabseil-20250127.1-cxx17_h07bc746_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libaec-1.1.4-h51d1e36_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libasprintf-0.25.1-h493aca8_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libass-0.17.3-h68e5b86_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libavif16-1.3.0-hf1e31eb_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libblas-3.9.0-32_h10e41b3_openblas.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libboost-1.86.0-hc9fb7c5_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libboost-devel-1.86.0-hf450f58_3.conda @@ -1039,8 +1051,8 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libexpat-2.7.1-hec049ff_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libffi-3.4.6-h1da3d7d_1.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype-2.13.3-hce30654_1.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype6-2.13.3-h1d14073_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype-2.14.1-hce30654_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype6-2.14.1-h6da58f4_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libgd-2.3.3-hb2c3a21_11.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libgettextpo-0.25.1-h493aca8_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libgfortran-5.0.0-14_2_0_h6c33f7e_103.conda @@ -1055,27 +1067,27 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/libllvm18-18.1.8-default_h3f49643_7.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libllvm20-20.1.8-h846d351_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/liblzma-5.8.1-h39f12f2_2.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_h6569565_116.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_h610d594_116.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libntlm-1.8-h5505292_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libogg-1.3.5-h48c0fde_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libopenblas-0.3.30-openmp_hf332438_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopencv-4.10.0-headless_py311h83e8daa_15.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-2024.6.0-h97facdf_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-arm-cpu-plugin-2024.6.0-h97facdf_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-batch-plugin-2024.6.0-h7f72211_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-plugin-2024.6.0-h7f72211_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-hetero-plugin-2024.6.0-hd3d436d_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-ir-frontend-2024.6.0-hd3d436d_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-onnx-frontend-2024.6.0-h76e6831_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-paddle-frontend-2024.6.0-h76e6831_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-pytorch-frontend-2024.6.0-h286801f_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-frontend-2024.6.0-he275e1d_3.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-lite-frontend-2024.6.0-h286801f_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopencv-4.11.0-headless_py311h756a469_5.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-2025.0.0-h3f17238_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-arm-cpu-plugin-2025.0.0-h3f17238_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-batch-plugin-2025.0.0-h7f72211_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-plugin-2025.0.0-h7f72211_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-hetero-plugin-2025.0.0-h718ad69_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-ir-frontend-2025.0.0-h718ad69_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-onnx-frontend-2025.0.0-h1ae5b81_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-paddle-frontend-2025.0.0-h1ae5b81_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-pytorch-frontend-2025.0.0-h286801f_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-frontend-2025.0.0-heb6e3e1_3.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-lite-frontend-2025.0.0-h286801f_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libopus-1.5.2-h48c0fde_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libpng-1.6.50-h3783ad8_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libpq-17.5-h6896619_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/libprotobuf-5.29.3-h6c9c1dd_2.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libraw-0.21.4-h62a31ad_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/librsvg-2.58.4-h266df6f_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/libsqlite-3.50.3-h4237e3c_1.conda @@ -1094,7 +1106,7 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/llvm-openmp-20.1.8-hbb9b287_0.conda - conda: https://prefix.dev/conda-forge/noarch/loguru-0.7.3-pyh707e725_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/lxml-6.0.0-py311hfcb965d_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/markupsafe-3.0.2-py311h4921393_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/matplotlib-base-3.10.3-py311h031da69_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/mpc-1.3.1-h8f1351a_1.conda @@ -1114,9 +1126,9 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/olefile-0.47-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/openblas-0.3.30-openmp_hea878ba_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/opencamlib-2023.01.11-py311h8776c47_7.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/opencv-4.10.0-headless_py311hcb0fb6c_15.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/opencv-4.11.0-headless_py311h62ba8ec_5.conda - conda: https://prefix.dev/conda-forge/osx-arm64/openexr-3.3.5-haaeed0a_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/openh264-2.5.0-h774163f_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/openh264-2.6.0-hb5b2745_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/openjpeg-2.5.3-h8a3d83b_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/openldap-2.6.10-hbe55e7a_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.5.1-h81ee809_0.conda @@ -1133,8 +1145,8 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/proj-9.5.1-h1318a7e_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/propcache-0.3.1-py311h4921393_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/pugixml-1.14-h13dd4ca_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/py-opencv-4.10.0-headless_py311ha58826d_15.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pugixml-1.15-hd3d436d_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/py-opencv-4.11.0-headless_py311h5ce6bc0_5.conda - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda @@ -1150,31 +1162,32 @@ environments: - conda: https://prefix.dev/conda-forge/osx-arm64/qhull-2020.2-h420ef59_5.conda - conda: https://prefix.dev/conda-forge/osx-arm64/qt6-main-6.8.3-hc9525f7_4.conda - conda: https://prefix.dev/conda-forge/osx-arm64/rapidjson-1.1.0.post20240409-ha1acc90_2.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/rav1e-0.7.1-h0716509_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/scipy-1.16.0-py311h53b02f6_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/sdl2-2.32.54-ha1acc90_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/sdl3-3.2.18-he22eeb8_0.conda - conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/shapely-2.1.2-py311hd4fb369_2.conda - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/smesh-9.9.0.0-h10d9485_14.conda - conda: https://prefix.dev/conda-forge/osx-arm64/snappy-1.2.2-hd121638_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/soqt6-1.6.3-hd20b56a_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/sqlite-3.50.3-hb5dd463_1.conda - conda: https://prefix.dev/conda-forge/noarch/svgwrite-1.4.3-pyhd8ed1ab_1.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/svt-av1-2.3.0-hf24288c_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/svt-av1-3.0.2-h8ab69cd_0.conda - conda: https://prefix.dev/conda-forge/noarch/sympy-1.14.0-pyh2585a3b_105.conda - conda: https://prefix.dev/conda-forge/osx-arm64/tbb-2022.2.0-h5b2e6d4_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/tbb-devel-2022.2.0-h89693d0_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda - conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/unicodedata2-16.0.0-py311h917b07b_0.conda - conda: https://prefix.dev/conda-forge/noarch/urllib3-2.5.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/utfcpp-4.0.6-h54c0426_0.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-9.3.1-qt_py311h8d5bf7a_209.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-base-9.3.1-qt_py311h8fa80b4_209.conda - - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-io-ffmpeg-9.3.1-qt_py311hf99a90b_209.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-9.3.1-qt_py311he4b582b_216.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-base-9.3.1-qt_py311hb64ca2f_216.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/vtk-io-ffmpeg-9.3.1-qt_py311he4b582b_216.conda - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/noarch/wslink-2.3.4-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2 @@ -1200,6 +1213,7 @@ environments: - conda: . build: he8ea13f_0 win-64: + - conda: https://prefix.dev/conda-forge/win-64/_libavif_api-1.3.0-h57928b3_2.conda - conda: https://prefix.dev/conda-forge/win-64/_openmp_mutex-4.5-2_gnu.conda - conda: https://prefix.dev/conda-forge/noarch/aiohappyeyeballs-2.6.1-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/win-64/aiohttp-3.12.14-py311h3f79411_0.conda @@ -1228,14 +1242,15 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/cycler-0.12.1-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda - conda: https://prefix.dev/conda-forge/win-64/debugpy-1.8.15-py311h5dfdfe8_0.conda + - conda: https://prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/docutils-0.21.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/win-64/double-conversion-3.3.1-he0c23c2_0.conda - conda: https://prefix.dev/conda-forge/win-64/eigen-3.4.0-h91493d7_0.conda - conda: https://prefix.dev/conda-forge/win-64/expat-2.7.1-hac47afa_0.conda - conda: https://prefix.dev/conda-forge/win-64/ffmpeg-7.1.1-gpl_haf9914b_907.conda - - conda: https://prefix.dev/conda-forge/win-64/flann-1.9.2-h2b9fefe_4.conda + - conda: https://prefix.dev/conda-forge/win-64/flann-1.9.2-h48fefe0_4.conda - conda: https://prefix.dev/conda-forge/win-64/fltk-1.3.10-h5d05227_0.conda - - conda: https://prefix.dev/conda-forge/win-64/fmt-11.2.0-h1d4551f_0.conda + - conda: https://prefix.dev/conda-forge/win-64/fmt-12.0.0-h29169d4_0.conda - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 @@ -1246,10 +1261,11 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/fonttools-4.59.0-py311h3f79411_0.conda - conda: https://prefix.dev/conda-forge/win-64/freeglut-3.2.2-he0c23c2_3.conda - conda: https://prefix.dev/conda-forge/win-64/freeimage-3.18.0-h8310ca0_22.conda - - conda: https://prefix.dev/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda + - conda: https://prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda - conda: https://prefix.dev/conda-forge/win-64/fribidi-1.0.10-h8d14728_0.tar.bz2 - conda: https://prefix.dev/conda-forge/win-64/frozenlist-1.7.0-py311hdf60d3a_0.conda - conda: https://prefix.dev/conda-forge/win-64/gdk-pixbuf-2.42.12-hab781ea_1.conda + - conda: https://prefix.dev/conda-forge/win-64/geos-3.14.1-hdade9fe_0.conda - conda: https://prefix.dev/conda-forge/win-64/getopt-win32-0.1-h6a83c73_3.conda - conda: https://prefix.dev/conda-forge/win-64/gl2ps-1.4.2-had7236b_1.conda - conda: https://prefix.dev/conda-forge/win-64/glew-2.1.0-h39d44d4_2.tar.bz2 @@ -1261,12 +1277,12 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/h2-4.2.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/win-64/harfbuzz-11.3.2-h8796e6f_0.conda - conda: https://prefix.dev/conda-forge/win-64/hdf4-4.2.15-h5557f11_7.conda - - conda: https://prefix.dev/conda-forge/win-64/hdf5-1.14.4-nompi_hd5d9e70_105.conda + - conda: https://prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda - conda: https://prefix.dev/conda-forge/noarch/hpack-4.1.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/hyperframe-6.1.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/win-64/icu-75.1-he0c23c2_0.conda - conda: https://prefix.dev/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda - - conda: https://prefix.dev/conda-forge/win-64/ifcopenshell-0.8.0-py311hf9f63ab_6.conda + - conda: https://prefix.dev/conda-forge/win-64/ifcopenshell-0.8.2-py311ha1ff2f0_0.conda - conda: https://prefix.dev/conda-forge/win-64/imath-3.1.12-hbb528cf_0.conda - conda: https://prefix.dev/conda-forge/win-64/jasper-4.2.5-h99a1cce_0.conda - conda: https://prefix.dev/conda-forge/noarch/jinja2-3.1.6-pyhd8ed1ab_0.conda @@ -1279,9 +1295,10 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/lark-1.2.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/win-64/lcms2-2.17-hbcf6048_0.conda - conda: https://prefix.dev/conda-forge/win-64/lerc-4.0.0-h6470a55_1.conda - - conda: https://prefix.dev/conda-forge/win-64/libabseil-20240722.0-cxx17_h4eb7d71_4.conda + - conda: https://prefix.dev/conda-forge/win-64/libabseil-20250127.1-cxx17_h4eb7d71_0.conda - conda: https://prefix.dev/conda-forge/win-64/libaec-1.1.4-h20038f6_0.conda - conda: https://prefix.dev/conda-forge/win-64/libasprintf-0.22.5-h5728263_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libavif16-1.3.0-hf2698fe_0.conda - conda: https://prefix.dev/conda-forge/win-64/libblas-3.9.0-32_h11dc60a_openblas.conda - conda: https://prefix.dev/conda-forge/win-64/libboost-1.86.0-hb0986bb_3.conda - conda: https://prefix.dev/conda-forge/win-64/libboost-devel-1.86.0-h91493d7_3.conda @@ -1296,8 +1313,8 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/libdeflate-1.24-h76ddb4d_0.conda - conda: https://prefix.dev/conda-forge/win-64/libexpat-2.7.1-hac47afa_0.conda - conda: https://prefix.dev/conda-forge/win-64/libffi-3.4.6-h537db12_1.conda - - conda: https://prefix.dev/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda - - conda: https://prefix.dev/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda + - conda: https://prefix.dev/conda-forge/win-64/libfreetype6-2.14.1-hdbac1cb_0.conda - conda: https://prefix.dev/conda-forge/win-64/libgcc-15.1.0-h1383e82_3.conda - conda: https://prefix.dev/conda-forge/win-64/libgd-2.3.3-h7208af6_11.conda - conda: https://prefix.dev/conda-forge/win-64/libgettextpo-0.22.5-h5728263_3.conda @@ -1312,25 +1329,25 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/liblapack-3.9.0-32_h2526c6b_openblas.conda - conda: https://prefix.dev/conda-forge/win-64/liblapacke-3.9.0-32_h1d0e49f_openblas.conda - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda - - conda: https://prefix.dev/conda-forge/win-64/libnetcdf-4.9.2-nompi_h5bdc103_116.conda + - conda: https://prefix.dev/conda-forge/win-64/libnetcdf-4.9.2-nompi_h008f77d_116.conda - conda: https://prefix.dev/conda-forge/win-64/libogg-1.3.5-h2466b09_1.conda - conda: https://prefix.dev/conda-forge/win-64/libopenblas-0.3.30-pthreads_ha4fe6b2_0.conda - - conda: https://prefix.dev/conda-forge/win-64/libopencv-4.10.0-qt6_py311h9ec153a_615.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-2024.6.0-hfe1841e_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-batch-plugin-2024.6.0-h04f32e0_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-plugin-2024.6.0-h04f32e0_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-hetero-plugin-2024.6.0-h372dad0_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-cpu-plugin-2024.6.0-hfe1841e_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-gpu-plugin-2024.6.0-hfe1841e_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-ir-frontend-2024.6.0-h372dad0_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-onnx-frontend-2024.6.0-h6e6c283_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-paddle-frontend-2024.6.0-h6e6c283_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-pytorch-frontend-2024.6.0-he0c23c2_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-frontend-2024.6.0-ha83d810_3.conda - - conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-lite-frontend-2024.6.0-he0c23c2_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopencv-4.11.0-qt6_py311hc940b1f_605.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-2025.0.0-hb1d9b14_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-batch-plugin-2025.0.0-h04f32e0_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-plugin-2025.0.0-h04f32e0_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-hetero-plugin-2025.0.0-hb61b842_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-cpu-plugin-2025.0.0-hb1d9b14_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-gpu-plugin-2025.0.0-hb1d9b14_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-ir-frontend-2025.0.0-hb61b842_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-onnx-frontend-2025.0.0-hf9c6bd6_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-paddle-frontend-2025.0.0-hf9c6bd6_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-pytorch-frontend-2025.0.0-he0c23c2_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-frontend-2025.0.0-hd51e7bd_3.conda + - conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-lite-frontend-2025.0.0-he0c23c2_3.conda - conda: https://prefix.dev/conda-forge/win-64/libopus-1.5.2-h2466b09_0.conda - conda: https://prefix.dev/conda-forge/win-64/libpng-1.6.50-h95bef1e_0.conda - - conda: https://prefix.dev/conda-forge/win-64/libprotobuf-5.28.3-h8309712_1.conda + - conda: https://prefix.dev/conda-forge/win-64/libprotobuf-5.29.3-hd33f5f0_2.conda - conda: https://prefix.dev/conda-forge/win-64/libraw-0.21.4-h866491b_0.conda - conda: https://prefix.dev/conda-forge/win-64/librsvg-2.58.4-h5ce5fed_3.conda - conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.50.3-hf5d6505_1.conda @@ -1366,7 +1383,7 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/openblas-0.3.30-pthreads_h4a7f399_0.conda - conda: https://prefix.dev/conda-forge/win-64/opencamlib-2023.01.11-py311h2764451_7.conda - conda: https://prefix.dev/conda-forge/win-64/opencl-headers-2025.06.13-he0c23c2_0.conda - - conda: https://prefix.dev/conda-forge/win-64/opencv-4.10.0-qt6_py311hee0cb61_615.conda + - conda: https://prefix.dev/conda-forge/win-64/opencv-4.11.0-qt6_py311h1822dc9_605.conda - conda: https://prefix.dev/conda-forge/win-64/openexr-3.3.5-h4750f91_0.conda - conda: https://prefix.dev/conda-forge/win-64/openh264-2.6.0-hb17fa0b_0.conda - conda: https://prefix.dev/conda-forge/win-64/openjpeg-2.5.3-h4d64b90_0.conda @@ -1384,8 +1401,8 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/proj-9.5.1-h4f671f6_0.conda - conda: https://prefix.dev/conda-forge/win-64/propcache-0.3.1-py311h5082efb_0.conda - conda: https://prefix.dev/conda-forge/win-64/pthread-stubs-0.4-h0e40799_1002.conda - - conda: https://prefix.dev/conda-forge/win-64/pugixml-1.14-h63175ca_0.conda - - conda: https://prefix.dev/conda-forge/win-64/py-opencv-4.10.0-qt6_py311h957eb32_615.conda + - conda: https://prefix.dev/conda-forge/win-64/pugixml-1.15-h372dad0_0.conda + - conda: https://prefix.dev/conda-forge/win-64/py-opencv-4.11.0-qt6_py311h9756b35_605.conda - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9.2-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda @@ -1401,11 +1418,13 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/qhull-2020.2-hc790b64_5.conda - conda: https://prefix.dev/conda-forge/win-64/qt6-main-6.8.3-h02ddd7d_4.conda - conda: https://prefix.dev/conda-forge/win-64/rapidjson-1.1.0.post20240409-he0c23c2_2.conda + - conda: https://prefix.dev/conda-forge/win-64/rav1e-0.7.1-ha073cba_3.conda - conda: https://prefix.dev/conda-forge/noarch/requests-2.32.4-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/win-64/scipy-1.16.0-py311h0e21e1b_0.conda - conda: https://prefix.dev/conda-forge/win-64/sdl2-2.32.54-he0c23c2_0.conda - conda: https://prefix.dev/conda-forge/win-64/sdl3-3.2.18-h5112557_0.conda - conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda + - conda: https://prefix.dev/conda-forge/win-64/shapely-2.1.2-py311h362461e_2.conda - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda - conda: https://prefix.dev/conda-forge/win-64/smesh-9.9.0.0-h4c8b7ef_14.conda - conda: https://prefix.dev/conda-forge/win-64/snappy-1.2.2-h7fa0ca8_0.conda @@ -1414,7 +1433,7 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/svgwrite-1.4.3-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/win-64/svt-av1-3.0.2-he0c23c2_0.conda - conda: https://prefix.dev/conda-forge/noarch/sympy-1.14.0-pyh04b8f61_5.conda - - conda: https://prefix.dev/conda-forge/win-64/tbb-2022.2.0-h18a62a1_0.conda + - conda: https://prefix.dev/conda-forge/win-64/tbb-2022.3.0-hd094cb3_1.conda - conda: https://prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda - conda: https://prefix.dev/conda-forge/noarch/typing_extensions-4.14.1-pyhe01879c_0.conda - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda @@ -1426,8 +1445,8 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda - conda: https://prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda - conda: https://prefix.dev/conda-forge/win-64/vs2015_runtime-14.44.35208-h38c0c73_31.conda - - conda: https://prefix.dev/conda-forge/win-64/vtk-9.3.1-qt_py311h88e836f_213.conda - - conda: https://prefix.dev/conda-forge/win-64/vtk-base-9.3.1-qt_py311hbefa3f5_213.conda + - conda: https://prefix.dev/conda-forge/win-64/vtk-9.3.1-qt_py311h85ceb33_216.conda + - conda: https://prefix.dev/conda-forge/win-64/vtk-base-9.3.1-qt_py311h1fd4e03_216.conda - conda: https://prefix.dev/conda-forge/noarch/wheel-0.45.1-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/noarch/win32_setctime-1.2.0-pyhd8ed1ab_0.conda - conda: https://prefix.dev/conda-forge/noarch/win_inet_pton-1.1.0-pyh7428d3b_8.conda @@ -1529,9 +1548,14 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/mac_alias-2.2.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-64/ncurses-6.5-h0622a9a_3.conda - conda: https://prefix.dev/conda-forge/osx-64/openssl-3.5.1-hc426f3f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/pyobjc-core-12.0-py311h1540d37_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/pyobjc-framework-cocoa-12.0-py311h5977a1f_0.conda + - conda: https://prefix.dev/conda-forge/osx-64/pyobjc-framework-quartz-12.0-py311hdb0ec4c_0.conda - conda: https://prefix.dev/conda-forge/osx-64/python-3.11.13-h9ccd52b_0_cpython.conda + - conda: https://prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda - conda: https://prefix.dev/conda-forge/osx-64/readline-8.2-h7cca4af_2.conda - conda: https://prefix.dev/conda-forge/osx-64/sed-4.9-hf9b2955_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda - conda: https://prefix.dev/conda-forge/osx-64/tk-8.6.13-hf689a15_2.conda - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda @@ -1553,13 +1577,19 @@ environments: - conda: https://prefix.dev/conda-forge/noarch/mac_alias-2.2.2-pyhd8ed1ab_1.conda - conda: https://prefix.dev/conda-forge/osx-arm64/ncurses-6.5-h5e97a16_3.conda - conda: https://prefix.dev/conda-forge/osx-arm64/openssl-3.5.1-h81ee809_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pyobjc-core-12.0-py311h0cf0eac_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pyobjc-framework-cocoa-12.0-py311h71564db_0.conda + - conda: https://prefix.dev/conda-forge/osx-arm64/pyobjc-framework-quartz-12.0-py311hf339f9d_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/python-3.11.13-hc22306f_0_cpython.conda + - conda: https://prefix.dev/conda-forge/noarch/python_abi-3.11-8_cp311.conda - conda: https://prefix.dev/conda-forge/osx-arm64/readline-8.2-h1d1bf99_2.conda - conda: https://prefix.dev/conda-forge/osx-arm64/sed-4.9-h21ae2d7_0.conda + - conda: https://prefix.dev/conda-forge/noarch/setuptools-80.9.0-pyhff2d567_0.conda - conda: https://prefix.dev/conda-forge/osx-arm64/tk-8.6.13-h892fb3f_2.conda - conda: https://prefix.dev/conda-forge/noarch/tzdata-2025b-h78e105d_0.conda - conda: https://prefix.dev/conda-forge/noarch/zipp-3.23.0-pyhd8ed1ab_0.conda win-64: + - conda: https://prefix.dev/conda-forge/win-64/7zip-24.08-h477610d_2.conda - conda: https://prefix.dev/conda-forge/win-64/bzip2-1.0.8-h2466b09_7.conda - conda: https://prefix.dev/conda-forge/noarch/ca-certificates-2025.7.14-h4c7d964_0.conda - conda: https://prefix.dev/conda-forge/win-64/git-2.49.0-h57928b3_2.conda @@ -1568,6 +1598,7 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/liblzma-5.8.1-h2466b09_2.conda - conda: https://prefix.dev/conda-forge/win-64/libsqlite-3.50.3-hf5d6505_1.conda - conda: https://prefix.dev/conda-forge/win-64/libzlib-1.3.1-h2466b09_2.conda + - conda: https://prefix.dev/conda-forge/win-64/nsis-3.11-h9ead6bc_log_0.conda - conda: https://prefix.dev/conda-forge/win-64/openssl-3.5.1-h725018a_0.conda - conda: https://prefix.dev/conda-forge/win-64/python-3.11.13-h3f84c4b_0_cpython.conda - conda: https://prefix.dev/conda-forge/win-64/tk-8.6.13-h2c6b04d_2.conda @@ -1576,7 +1607,29 @@ environments: - conda: https://prefix.dev/conda-forge/win-64/vc-14.3-h41ae7f8_31.conda - conda: https://prefix.dev/conda-forge/win-64/vc14_runtime-14.44.35208-h818238b_31.conda - conda: https://prefix.dev/conda-forge/win-64/vcomp14-14.44.35208-h818238b_31.conda + - conda: https://prefix.dev/conda-forge/win-64/vs2022_win-64-19.44.35207-ha74f236_32.conda + - conda: https://prefix.dev/conda-forge/noarch/vswhere-3.1.7-h40126e0_1.conda packages: +- conda: https://prefix.dev/conda-forge/win-64/7zip-24.08-h477610d_2.conda + sha256: 2790d7e3ed29900c403d2278f8fee5cbc890c40cae11e9bde936acec23f2b203 + md5: b2090afdc20f5159ba105ec320e8551e + depends: + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + - ucrt >=10.0.20348.0 + constrains: + - 7za ==999999999 + license: LGPL-2.1-or-later AND LicenseRef-LGPL-2.1-or-later-with-unRAR-restriction + size: 1699804 + timestamp: 1763649866725 +- conda: https://prefix.dev/conda-forge/win-64/_libavif_api-1.3.0-h57928b3_2.conda + sha256: 472aa5e5a97a188c1f01e271a821b5a9dc871e93f7c58cfb7e89bdb6cd926d39 + md5: e31e1eda938360543cb29bd3ce8f0b73 + size: 9734 + timestamp: 1756125033129 - conda: https://prefix.dev/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 md5: d7c89558ba9fa0495403155b64376d81 @@ -1998,15 +2051,16 @@ packages: license_family: LGPL size: 347530 timestamp: 1713896411580 -- conda: https://prefix.dev/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 - sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 - md5: d9c69a24ad678ffce24c6543a0176b00 +- conda: https://prefix.dev/conda-forge/linux-64/attr-2.5.2-h39aace5_0.conda + sha256: a9c114cbfeda42a226e2db1809a538929d2f118ef855372293bd188f71711c48 + md5: 791365c5f65975051e4e017b5da3abf5 depends: - - libgcc-ng >=12 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 license: GPL-2.0-or-later license_family: GPL - size: 71042 - timestamp: 1660065501192 + size: 68072 + timestamp: 1756738968573 - conda: https://prefix.dev/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2 sha256: 2c793b48e835a8fac93f1664c706442972a0206963bf8ca202e83f7f4d29a7d7 md5: 1ef6c06fec1b6f5ee99ffe2152e53568 @@ -2155,20 +2209,21 @@ packages: license_family: MIT size: 13934 timestamp: 1731096548765 -- conda: https://prefix.dev/conda-forge/linux-64/blosc-1.21.6-hef167b5_0.conda - sha256: 6cc260f9c6d32c5e728a2099a52fdd7ee69a782fff7b400d0606fcd32e0f5fd1 - md5: 54fe76ab3d0189acaef95156874db7f9 +- conda: https://prefix.dev/conda-forge/linux-64/blosc-1.21.6-he440d0b_1.conda + sha256: e7af5d1183b06a206192ff440e08db1c4e8b2ca1f8376ee45fb2f3a85d4ee45d + md5: 2c2fae981fd2afd00812c92ac47d023d depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - snappy >=1.2.0,<1.3.0a0 + - lz4-c >=1.10.0,<1.11.0a0 + - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 license: BSD-3-Clause license_family: BSD - size: 48842 - timestamp: 1719266029046 + size: 48427 + timestamp: 1733513201413 - conda: https://prefix.dev/conda-forge/linux-aarch64/blosc-1.21.6-hb4dfabd_1.conda sha256: f1e408fc32e1fda8dee9c3fceee5650fd622526e4dc6fa1f1926f497b5508d13 md5: 2cbbd6264ad58887c40aab37f2abdaba @@ -2197,20 +2252,20 @@ packages: license_family: BSD size: 46990 timestamp: 1733513422834 -- conda: https://prefix.dev/conda-forge/osx-arm64/blosc-1.21.6-h5499902_0.conda - sha256: 5a1e635a371449a750b776cab64ad83f5218b58b3f137ebd33ad3ec17f1ce92e - md5: e94ca7aec8544f700d45b24aff2dd4d7 +- conda: https://prefix.dev/conda-forge/osx-arm64/blosc-1.21.6-h7dd00d9_1.conda + sha256: c3fe902114b9a3ac837e1a32408cc2142c147ec054c1038d37aec6814343f48a + md5: 925acfb50a750aa178f7a0aced77f351 depends: - __osx >=11.0 - - libcxx >=16 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - snappy >=1.2.0,<1.3.0a0 + - lz4-c >=1.10.0,<1.11.0a0 + - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 license: BSD-3-Clause license_family: BSD - size: 33201 - timestamp: 1719266149627 + size: 33602 + timestamp: 1733513285902 - conda: https://prefix.dev/conda-forge/win-64/blosc-1.21.6-hfd34d9b_1.conda sha256: 9303a7a0e03cf118eab3691013f6d6cbd1cbac66efbc70d89b20f5d0145257c0 md5: 357d7be4146d5fec543bfaa96a8a40de @@ -3268,6 +3323,15 @@ packages: license_family: MIT size: 3932954 timestamp: 1752827138613 +- conda: https://prefix.dev/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 + sha256: 9717a059677553562a8f38ff07f3b9f61727bd614f505658b0a5ecbcf8df89be + md5: 961b3a227b437d82ad7054484cfa71b2 + depends: + - python >=3.6 + license: PSF-2.0 + license_family: PSF + size: 24062 + timestamp: 1615232388757 - conda: https://prefix.dev/conda-forge/noarch/dmgbuild-1.6.5-pyh534df25_0.conda sha256: cf9a4ce260840ced8163abf5f7bec5340021606181689159283ef03c0ff436d6 md5: 0b2204656b88f3844abb58e9ff4dd11c @@ -3485,115 +3549,119 @@ packages: license_family: MIT size: 234623 timestamp: 1752719798470 -- conda: https://prefix.dev/conda-forge/linux-64/ffmpeg-7.1.0-gpl_hf09ebf5_710.conda - sha256: e3eb00a6fdb6e830d609f00e9e592193f940ba0095e1d556d41a2654b0679967 - md5: c03df5443f8c45fe5cb11b4339577944 +- conda: https://prefix.dev/conda-forge/linux-64/ffmpeg-7.1.1-gpl_h127656b_906.conda + sha256: e8e93a1afd93bed11ccf2a2224d2b92b2af8758c89576ed87ff4df7f3269604f + md5: 28cffcba871461840275632bc4653ce3 depends: - __glibc >=2.17,<3.0.a0 - - alsa-lib >=1.2.13,<1.3.0a0 + - alsa-lib >=1.2.14,<1.3.0a0 - aom >=3.9.1,<3.10.0a0 - bzip2 >=1.0.8,<2.0a0 - dav1d >=1.2.1,<1.2.2.0a0 - fontconfig >=2.15.0,<3.0a0 - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - gmp >=6.3.0,<7.0a0 - - harfbuzz >=10.2.0 + - harfbuzz >=11.0.1 - lame >=3.100,<3.101.0a0 - libass >=0.17.3,<0.17.4.0a0 - - libexpat >=2.6.4,<3.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 - libgcc >=13 - - libiconv >=1.17,<2.0a0 - - liblzma >=5.6.4,<6.0a0 - - libopenvino >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-intel-cpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-intel-gpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-intel-npu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 - - libopus >=1.3.1,<2.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-gpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-npu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libopus >=1.5.2,<2.0a0 - librsvg >=2.58.4,<3.0a0 - libstdcxx >=13 - libva >=2.22.0,<3.0a0 + - libvorbis >=1.3.7,<1.4.0a0 - libvpx >=1.14.1,<1.15.0a0 - libxcb >=1.17.0,<2.0a0 - - libxml2 >=2.13.5,<2.14.0a0 + - libxml2 >=2.13.8,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - - openh264 >=2.5.0,<2.5.1.0a0 - - openssl >=3.4.0,<4.0a0 + - openh264 >=2.6.0,<2.6.1.0a0 + - openssl >=3.5.0,<4.0a0 - pulseaudio-client >=17.0,<17.1.0a0 - - sdl2 >=2.30.10,<3.0a0 - - svt-av1 >=2.3.0,<2.3.1.0a0 + - sdl2 >=2.32.54,<3.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 - x264 >=1!164.3095,<1!165 - x265 >=3.5,<3.6.0a0 - - xorg-libx11 >=1.8.11,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 constrains: - - __cuda >=12.4 + - __cuda >=12.8 license: GPL-2.0-or-later license_family: GPL - size: 10351470 - timestamp: 1738951627220 -- conda: https://prefix.dev/conda-forge/linux-aarch64/ffmpeg-7.1.0-gpl_h5c0edd5_710.conda - sha256: e809be3d8ee86671bea1bd40aab22f488f7846447ef4f25deeb9bef1f3e202b6 - md5: ca106c6d58f719e6e97e3e7a663c9789 + size: 10377191 + timestamp: 1748704974937 +- conda: https://prefix.dev/conda-forge/linux-aarch64/ffmpeg-7.1.1-gpl_h30b7fc1_906.conda + sha256: 157dbd7fdd226448343f962c7fcb4c5b5c2fa12dd1e0f1f88f4c16559522c02d + md5: 74fb3d97aeebfb19ed743f2a2f2e9ec3 depends: - - alsa-lib >=1.2.13,<1.3.0a0 + - alsa-lib >=1.2.14,<1.3.0a0 - aom >=3.9.1,<3.10.0a0 - bzip2 >=1.0.8,<2.0a0 - dav1d >=1.2.1,<1.2.2.0a0 - fontconfig >=2.15.0,<3.0a0 - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - gmp >=6.3.0,<7.0a0 - - harfbuzz >=10.2.0 + - harfbuzz >=11.0.1 - lame >=3.100,<3.101.0a0 - libass >=0.17.3,<0.17.4.0a0 - - libexpat >=2.6.4,<3.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 - libgcc >=13 - - libiconv >=1.17,<2.0a0 - - liblzma >=5.6.4,<6.0a0 - - libopenvino >=2024.6.0,<2024.6.1.0a0 - - libopenvino-arm-cpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 - - libopus >=1.3.1,<2.0a0 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-arm-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libopus >=1.5.2,<2.0a0 - librsvg >=2.58.4,<3.0a0 - libstdcxx >=13 + - libvorbis >=1.3.7,<1.4.0a0 - libvpx >=1.14.1,<1.15.0a0 - libxcb >=1.17.0,<2.0a0 - - libxml2 >=2.13.5,<2.14.0a0 + - libxml2 >=2.13.8,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - - openh264 >=2.5.0,<2.5.1.0a0 - - openssl >=3.4.0,<4.0a0 + - openh264 >=2.6.0,<2.6.1.0a0 + - openssl >=3.5.0,<4.0a0 - pulseaudio-client >=17.0,<17.1.0a0 - - sdl2 >=2.30.10,<3.0a0 - - svt-av1 >=2.3.0,<2.3.1.0a0 + - sdl2 >=2.32.54,<3.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 - x264 >=1!164.3095,<1!165 - x265 >=3.5,<3.6.0a0 - - xorg-libx11 >=1.8.11,<2.0a0 + - xorg-libx11 >=1.8.12,<2.0a0 constrains: - - __cuda >=12.4 + - __cuda >=12.8 license: GPL-2.0-or-later license_family: GPL - size: 10003233 - timestamp: 1738951520234 -- conda: https://prefix.dev/conda-forge/osx-64/ffmpeg-7.1.0-gpl_hf97d1e1_110.conda - sha256: 89107c2026a5b9a1299b51ebf3298078737398fe4e4c7c1e2b85154b7b79b61c - md5: 4312be1c8caf00bc10229eeacab29010 + size: 10028157 + timestamp: 1748705029112 +- conda: https://prefix.dev/conda-forge/osx-64/ffmpeg-7.1.1-gpl_h7f5d84f_106.conda + sha256: 6e53fc999865aef13c12bfa70d63ec5d673809624a5203abcdd4fd36a21a3ddb + md5: 246fcb794eff5df5c5627edb300b45a4 depends: - __osx >=10.13 - aom >=3.9.1,<3.10.0a0 @@ -3601,44 +3669,46 @@ packages: - dav1d >=1.2.1,<1.2.2.0a0 - fontconfig >=2.15.0,<3.0a0 - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - gmp >=6.3.0,<7.0a0 - - harfbuzz >=10.2.0 + - harfbuzz >=11.0.1 - lame >=3.100,<3.101.0a0 - libass >=0.17.3,<0.17.4.0a0 - libcxx >=18 - - libexpat >=2.6.4,<3.0a0 - - libiconv >=1.17,<2.0a0 - - liblzma >=5.6.4,<6.0a0 - - libopenvino >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-intel-cpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 - - libopus >=1.3.1,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libopus >=1.5.2,<2.0a0 - librsvg >=2.58.4,<3.0a0 + - libvorbis >=1.3.7,<1.4.0a0 - libvpx >=1.14.1,<1.15.0a0 - - libxml2 >=2.13.5,<2.14.0a0 + - libxml2 >=2.13.8,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - - openh264 >=2.5.0,<2.5.1.0a0 - - openssl >=3.4.0,<4.0a0 - - sdl2 >=2.30.10,<3.0a0 - - svt-av1 >=2.3.0,<2.3.1.0a0 + - openh264 >=2.6.0,<2.6.1.0a0 + - openssl >=3.5.0,<4.0a0 + - sdl2 >=2.32.54,<3.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 - x264 >=1!164.3095,<1!165 - x265 >=3.5,<3.6.0a0 license: GPL-2.0-or-later license_family: GPL - size: 10140203 - timestamp: 1738952397078 -- conda: https://prefix.dev/conda-forge/osx-arm64/ffmpeg-7.1.0-gpl_h7c3f5a8_110.conda - sha256: 5d0039f0477e81476230d320e10d006df21713e4787a8bb261239713b8368bc0 - md5: ff110f13c4b047c38380bccaf167be1e + size: 10159087 + timestamp: 1748705046884 +- conda: https://prefix.dev/conda-forge/osx-arm64/ffmpeg-7.1.1-gpl_h20db955_106.conda + sha256: b44b3aa9cd8e4a271ae7e4aa0707681076c047499c54fba510df0ffa4fdf1ca7 + md5: 23d6ecf002d2c8c2c694b5a7f3b41917 depends: - __osx >=11.0 - aom >=3.9.1,<3.10.0a0 @@ -3646,41 +3716,43 @@ packages: - dav1d >=1.2.1,<1.2.2.0a0 - fontconfig >=2.15.0,<3.0a0 - fonts-conda-ecosystem - - freetype >=2.12.1,<3.0a0 - gmp >=6.3.0,<7.0a0 - - harfbuzz >=10.2.0 + - harfbuzz >=11.0.1 - lame >=3.100,<3.101.0a0 - libass >=0.17.3,<0.17.4.0a0 - libcxx >=18 - - libexpat >=2.6.4,<3.0a0 - - libiconv >=1.17,<2.0a0 - - liblzma >=5.6.4,<6.0a0 - - libopenvino >=2024.6.0,<2024.6.1.0a0 - - libopenvino-arm-cpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 - - libopus >=1.3.1,<2.0a0 + - libexpat >=2.7.0,<3.0a0 + - libfreetype >=2.13.3 + - libfreetype6 >=2.13.3 + - libiconv >=1.18,<2.0a0 + - liblzma >=5.8.1,<6.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-arm-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libopus >=1.5.2,<2.0a0 - librsvg >=2.58.4,<3.0a0 + - libvorbis >=1.3.7,<1.4.0a0 - libvpx >=1.14.1,<1.15.0a0 - - libxml2 >=2.13.5,<2.14.0a0 + - libxml2 >=2.13.8,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - - openh264 >=2.5.0,<2.5.1.0a0 - - openssl >=3.4.0,<4.0a0 - - sdl2 >=2.30.10,<3.0a0 - - svt-av1 >=2.3.0,<2.3.1.0a0 + - openh264 >=2.6.0,<2.6.1.0a0 + - openssl >=3.5.0,<4.0a0 + - sdl2 >=2.32.54,<3.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 - x264 >=1!164.3095,<1!165 - x265 >=3.5,<3.6.0a0 license: GPL-2.0-or-later license_family: GPL - size: 9146518 - timestamp: 1738952024698 + size: 9160064 + timestamp: 1748705026281 - conda: https://prefix.dev/conda-forge/win-64/ffmpeg-7.1.1-gpl_haf9914b_907.conda sha256: 3b43e38afa2bb9d6532ddd793f3a261be90f00ac7a0698ac67e0321cd6920e8f md5: 0e366403a5659c179cac45647240d96e @@ -3717,72 +3789,72 @@ packages: license_family: GPL size: 10027980 timestamp: 1753273997805 -- conda: https://prefix.dev/conda-forge/linux-64/flann-1.9.2-h3ef53d8_3.conda - sha256: 161408b82d4fb968346817d95ceaed5602ac3842a6bdcc0da42976d553cf627d - md5: 78987081cfa3f7fd9718d0087ec6a989 +- conda: https://prefix.dev/conda-forge/linux-64/flann-1.9.2-h783367e_4.conda + sha256: 7e6b9d30281562496c53067e01e6e84dcbb16f43273510454463351155a7c80e + md5: 6998a241450abd1cb9305f4608001870 depends: - __glibc >=2.17,<3.0.a0 - _openmp_mutex >=4.5 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - libgcc >=13 - libstdcxx >=13 - - lz4-c >=1.9.3,<1.10.0a0 + - lz4-c >=1.10.0,<1.11.0a0 license: BSD-3-Clause license_family: BSD - size: 1573362 - timestamp: 1733306823915 -- conda: https://prefix.dev/conda-forge/linux-aarch64/flann-1.9.2-ha858f50_4.conda - sha256: 36c85fdd874964a33ebf74057005cd61efc83ddc131eaa93db2a1697db6ce3d1 - md5: 2a7ecb62846072fb1441be10b01c5187 + size: 1564105 + timestamp: 1733524739597 +- conda: https://prefix.dev/conda-forge/linux-aarch64/flann-1.9.2-hca6fa18_4.conda + sha256: 3899b4b4c42e4b236f4f73d5cbcc94b0f2a8251d6b1a6cc1258b796e22502903 + md5: 314c67496aa55ed28a6a3aa84316f4bf depends: - _openmp_mutex >=4.5 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - libgcc >=13 - libstdcxx >=13 - lz4-c >=1.10.0,<1.11.0a0 license: BSD-3-Clause license_family: BSD - size: 1406578 - timestamp: 1733524751840 -- conda: https://prefix.dev/conda-forge/osx-64/flann-1.9.2-h24a8005_4.conda - sha256: 60f5a06aa278ad32be443f188f5ea8ca6ba1ab11cb7690de72fc4c07d2c691b9 - md5: a864f18216da2e3e73e1a0e5aa0dc7f6 + size: 1798617 + timestamp: 1733524740502 +- conda: https://prefix.dev/conda-forge/osx-64/flann-1.9.2-hf045e91_4.conda + sha256: 57e22737480970f1b3c710b373dfb7ac9d219cd79f002cd50ee2a9f130c5c872 + md5: 51cdc53b5210884e08b9f5a23c481f3a depends: - __osx >=10.13 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - libcxx >=18 - llvm-openmp >=18.1.8 - lz4-c >=1.10.0,<1.11.0a0 license: BSD-3-Clause license_family: BSD - size: 1356029 - timestamp: 1733524837179 -- conda: https://prefix.dev/conda-forge/osx-arm64/flann-1.9.2-h9c23b55_3.conda - sha256: 5eb72d5fbc4fbbceff40b1c9777d5a23134d07e06d3f46230dd0621c584fecf4 - md5: 161cdf595e66df4cfc6e3c8ad4897d80 + size: 1355193 + timestamp: 1733525090543 +- conda: https://prefix.dev/conda-forge/osx-arm64/flann-1.9.2-h5d00db4_4.conda + sha256: 8140d97e50493b58c82a3b8272e5fccd3621b2049c0ec8998abc3ee8b50e485e + md5: f71379e5496ea562900943381fa31d24 depends: - __osx >=11.0 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - libcxx >=18 - llvm-openmp >=18.1.8 - - lz4-c >=1.9.3,<1.10.0a0 + - lz4-c >=1.10.0,<1.11.0a0 license: BSD-3-Clause license_family: BSD - size: 1469598 - timestamp: 1733307300816 -- conda: https://prefix.dev/conda-forge/win-64/flann-1.9.2-h2b9fefe_4.conda - sha256: 186f47c566a27afa2965a83a4c6a200a61bc9d12a5dc510b8f1cf68444170db7 - md5: 539ce89d39d59670ce927a77df916f13 + size: 1470167 + timestamp: 1733524919181 +- conda: https://prefix.dev/conda-forge/win-64/flann-1.9.2-h48fefe0_4.conda + sha256: 1966826bc297c735f4dc9e83d2daedc55670191bb37f00eb482539b7aeee14e6 + md5: ca1da882e87e06d283d6795e3682ef31 depends: - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - lz4-c >=1.10.0,<1.11.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: BSD-3-Clause license_family: BSD - size: 4316352 - timestamp: 1733525091786 + size: 4202486 + timestamp: 1733525099562 - conda: https://prefix.dev/conda-forge/linux-64/fltk-1.3.10-hff38c0f_0.conda sha256: acd4cd48be0fbb5a35c20c041572b1cc8498c0e15c5f49c1d9054c203b409146 md5: 2d345e1c676fa81aef2c129ac0ed5608 @@ -3898,58 +3970,58 @@ packages: license_family: LGPL size: 1623168 timestamp: 1731909509376 -- conda: https://prefix.dev/conda-forge/linux-64/fmt-11.2.0-h07f6e7f_0.conda - sha256: e0f53b7801d0bcb5d61a1ddcb873479bfe8365e56fd3722a232fbcc372a9ac52 - md5: 0c2f855a88fab6afa92a7aa41217dc8e +- conda: https://prefix.dev/conda-forge/linux-64/fmt-12.0.0-h2b0788b_0.conda + sha256: b546c4eb5e11c2d8eab0685593e078fd0cd483e467d5d6e307d60d887488230f + md5: d90bf58b03d9a958cb4f9d3de539af17 depends: - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - libstdcxx >=13 + - libgcc >=14 + - libstdcxx >=14 license: MIT license_family: MIT - size: 192721 - timestamp: 1751277120358 -- conda: https://prefix.dev/conda-forge/linux-aarch64/fmt-11.2.0-h97e1849_0.conda - sha256: c5b9a5caeb37216aa97aa1ef6f742a5ad17264838ca3b485db5a37e16c6f1373 - md5: 3fc63892ea4acd46f652f8cf489007f9 + size: 197164 + timestamp: 1760369692240 +- conda: https://prefix.dev/conda-forge/linux-aarch64/fmt-12.0.0-h416241a_0.conda + sha256: a325b5878768fabecfdfff8138078a78fbc548cd451c7d61867bdc7642712f58 + md5: 16e5ddbcf5ccea402f82fb859e369978 depends: - - libgcc >=13 - - libstdcxx >=13 + - libgcc >=14 + - libstdcxx >=14 license: MIT license_family: MIT - size: 189924 - timestamp: 1751277118345 -- conda: https://prefix.dev/conda-forge/osx-64/fmt-11.2.0-hbf61d64_0.conda - sha256: ba1b1187d6e6ed32a6da0ff4c46658168c16b7dfa1805768d3f347e0c306b804 - md5: 1883d88d80cb91497b7c2e4f69f2e5e3 + size: 195671 + timestamp: 1760369804829 +- conda: https://prefix.dev/conda-forge/osx-64/fmt-12.0.0-h7a3a4f9_0.conda + sha256: 07664e3191dc0c52f1782746cdb676cb0a816ec85cd18131af8f7f3ef2f7712d + md5: 50a99b2b143fe6010e988ec2668e64bb depends: - __osx >=10.13 - - libcxx >=18 + - libcxx >=19 license: MIT license_family: MIT - size: 184106 - timestamp: 1751277237783 -- conda: https://prefix.dev/conda-forge/osx-arm64/fmt-11.2.0-h440487c_0.conda - sha256: 1449ec46468860f6fb77edba87797ce22d4f6bfe8d5587c46fd5374c4f7383ee - md5: 24109723ac700cce5ff96ea3e63a83a3 + size: 187827 + timestamp: 1760370004118 +- conda: https://prefix.dev/conda-forge/osx-arm64/fmt-12.0.0-h669d743_0.conda + sha256: 2d14f30be9ef23efd1776166a68f01d7b561b7a04a7846cb0cc5a46021ff82df + md5: 364025d9b6f6305a73f8a5e84a2310d5 depends: - __osx >=11.0 - - libcxx >=18 + - libcxx >=19 license: MIT license_family: MIT - size: 177090 - timestamp: 1751277262419 -- conda: https://prefix.dev/conda-forge/win-64/fmt-11.2.0-h1d4551f_0.conda - sha256: 890f2789e55b509ff1f14592a5b20a0d0ec19f6da463eff96e378a5d70f882da - md5: 15b63c3fb5b7d67b1cb63553a33e6090 + size: 179725 + timestamp: 1760370178553 +- conda: https://prefix.dev/conda-forge/win-64/fmt-12.0.0-h29169d4_0.conda + sha256: e9996a61fc171dd16c6a2f71723091c9aa596a3360ced227ae5292b4c43d958c + md5: 538a2d266f27a80a351f15873c3e0de7 depends: - ucrt >=10.0.20348.0 - vc >=14.3,<15 - vc14_runtime >=14.44.35208 license: MIT license_family: MIT - size: 185995 - timestamp: 1751277236879 + size: 187703 + timestamp: 1760369874666 - conda: https://prefix.dev/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b md5: 0c96522c6bdaed4b1566d11387caaf45 @@ -4150,6 +4222,7 @@ packages: - blinker - calculix - debugpy + - defusedxml - docutils - gmsh - graphviz @@ -4161,7 +4234,9 @@ packages: - nine - noqt5 - numpy >=1.26,<2 + - numpy >=1.26.4,<2.0a0 - occt >=7.8,<7.9 + - occt >=7.8.1,<7.8.2.0a0 - olefile - opencamlib - opencv @@ -4175,6 +4250,7 @@ packages: - pythonocc-core - pyyaml - qt6-main >=6.8,<6.9 + - qt6-main >=6.8.3,<6.9.0a0 - requests - scipy - sympy @@ -4182,27 +4258,25 @@ packages: - vtk - xlutils - smesh >=9.9.0.0,<9.9.1.0a0 - - libboost >=1.86.0,<1.87.0a0 - - xerces-c >=3.3.0,<3.4.0a0 - - numpy >=1.26.4,<2.0a0 - - pcl >=1.15.0,<1.15.1.0a0 - - fmt >=11.2.0,<11.3.0a0 - coin3d >=4.0.3,<4.1.0a0 - - occt >=7.8.1,<7.8.2.0a0 - - libzlib >=1.3.1,<2.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - libfreetype >=2.13.3 - - libfreetype6 >=2.13.3 - - yaml-cpp >=0.8.0,<0.9.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + - libboost >=1.86.0,<1.87.0a0 + - fmt >=12.0.0,<12.1.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 - vtk-base >=9.3.1,<9.3.2.0a0 - - qt6-main >=6.8.3,<6.9.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - python_abi 3.11.* *_cp311 - - tbb >=2022.2.0 + - xerces-c >=3.3.0,<3.4.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - libzlib >=1.3.1,<2.0a0 - libwinpthread >=12.0.0.r4.gg4f2fc60ca + - tbb >=2022.3.0 input: - hash: af9833c94b95dd3d56ba987686d0ffa7650f8ff0180e423b7744d23c2f545e61 + hash: 85cbfc91157d4ced7c4be7c7b2752f95e9bc6748b1f4d55f52c9a4fb872c2bd8 globs: - recipe.yaml + - variants.yaml - conda: . name: freecad version: 1.1.0dev @@ -4213,6 +4287,7 @@ packages: - blinker - calculix - debugpy + - defusedxml - docutils - gmsh - graphviz @@ -4224,7 +4299,9 @@ packages: - nine - noqt5 - numpy >=1.26,<2 + - numpy >=1.26.4,<2.0a0 - occt >=7.8,<7.9 + - occt >=7.8.1,<7.8.2.0a0 - olefile - opencamlib - opencv @@ -4238,6 +4315,7 @@ packages: - pythonocc-core - pyyaml - qt6-main >=6.8,<6.9 + - qt6-main >=6.8.3,<6.9.0a0 - requests - scipy - sympy @@ -4245,26 +4323,24 @@ packages: - vtk - xlutils - libspnav - - numpy >=1.26.4,<2.0a0 - - python_abi 3.11.* *_cp311 - - hdf5 >=1.14.4,<1.14.5.0a0 - - fmt >=11.2.0,<11.3.0a0 - - libboost >=1.86.0,<1.87.0a0 - - libfreetype >=2.13.3 - - libfreetype6 >=2.13.3 - - yaml-cpp >=0.8.0,<0.9.0a0 - - xerces-c >=3.3.0,<3.4.0a0 - - occt >=7.8.1,<7.8.2.0a0 - - coin3d >=4.0.3,<4.1.0a0 - - vtk-base >=9.3.1,<9.3.2.0a0 - - qt6-main >=6.8.3,<6.9.0a0 - smesh >=9.9.0.0,<9.9.1.0a0 - pcl >=1.15.0,<1.15.1.0a0 + - coin3d >=4.0.3,<4.1.0a0 + - libboost >=1.86.0,<1.87.0a0 + - fmt >=12.0.0,<12.1.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 + - vtk-base >=9.3.1,<9.3.2.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - python_abi 3.11.* *_cp311 + - xerces-c >=3.3.0,<3.4.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 - libzlib >=1.3.1,<2.0a0 input: - hash: af9833c94b95dd3d56ba987686d0ffa7650f8ff0180e423b7744d23c2f545e61 + hash: 85cbfc91157d4ced7c4be7c7b2752f95e9bc6748b1f4d55f52c9a4fb872c2bd8 globs: - recipe.yaml + - variants.yaml - conda: . name: freecad version: 1.1.0dev @@ -4275,6 +4351,7 @@ packages: - blinker - calculix - debugpy + - defusedxml - docutils - gmsh - graphviz @@ -4286,7 +4363,9 @@ packages: - nine - noqt5 - numpy >=1.26,<2 + - numpy >=1.26.4,<2.0a0 - occt >=7.8,<7.9 + - occt >=7.8.1,<7.8.2.0a0 - olefile - opencamlib - opencv @@ -4300,6 +4379,7 @@ packages: - pythonocc-core - pyyaml - qt6-main >=6.8,<6.9 + - qt6-main >=6.8.3,<6.9.0a0 - requests - scipy - sympy @@ -4308,26 +4388,24 @@ packages: - xlutils - libspnav - __glibc >=2.17,<3.0.a0 - - fmt >=11.2.0,<11.3.0a0 - - xerces-c >=3.3.0,<3.4.0a0 - - python_abi 3.11.* *_cp311 - - libzlib >=1.3.1,<2.0a0 - - libboost >=1.86.0,<1.87.0a0 - - coin3d >=4.0.3,<4.1.0a0 - - occt >=7.8.1,<7.8.2.0a0 - - vtk-base >=9.3.1,<9.3.2.0a0 - - qt6-main >=6.8.3,<6.9.0a0 - - yaml-cpp >=0.8.0,<0.9.0a0 - smesh >=9.9.0.0,<9.9.1.0a0 + - coin3d >=4.0.3,<4.1.0a0 + - fmt >=12.0.0,<12.1.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 + - vtk-base >=9.3.1,<9.3.2.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libboost >=1.86.0,<1.87.0a0 - pcl >=1.15.0,<1.15.1.0a0 - - numpy >=1.26.4,<2.0a0 - - libfreetype >=2.13.3 - - libfreetype6 >=2.13.3 - - hdf5 >=1.14.4,<1.14.5.0a0 + - python_abi 3.11.* *_cp311 + - xerces-c >=3.3.0,<3.4.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - libzlib >=1.3.1,<2.0a0 input: - hash: af9833c94b95dd3d56ba987686d0ffa7650f8ff0180e423b7744d23c2f545e61 + hash: 85cbfc91157d4ced7c4be7c7b2752f95e9bc6748b1f4d55f52c9a4fb872c2bd8 globs: - recipe.yaml + - variants.yaml - conda: . name: freecad version: 1.1.0dev @@ -4338,6 +4416,7 @@ packages: - blinker - calculix - debugpy + - defusedxml - docutils - gmsh - graphviz @@ -4349,7 +4428,9 @@ packages: - nine - noqt5 - numpy >=1.26,<2 + - numpy >=1.26.4,<2.0a0 - occt >=7.8,<7.9 + - occt >=7.8.1,<7.8.2.0a0 - olefile - opencamlib - opencv @@ -4363,32 +4444,31 @@ packages: - pythonocc-core - pyyaml - qt6-main >=6.8,<6.9 + - qt6-main >=6.8.3,<6.9.0a0 - requests - scipy - sympy - typing_extensions - vtk - xlutils - - xerces-c >=3.3.0,<3.4.0a0 - - libboost >=1.86.0,<1.87.0a0 - - fmt >=11.2.0,<11.3.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - coin3d >=4.0.3,<4.1.0a0 - - pcl >=1.15.0,<1.15.1.0a0 - - libzlib >=1.3.1,<2.0a0 - - libfreetype >=2.13.3 - - libfreetype6 >=2.13.3 - - occt >=7.8.1,<7.8.2.0a0 - - yaml-cpp >=0.8.0,<0.9.0a0 - - vtk-base >=9.3.1,<9.3.2.0a0 - - qt6-main >=6.8.3,<6.9.0a0 - - python_abi 3.11.* *_cp311 - - numpy >=1.26.4,<2.0a0 - smesh >=9.9.0.0,<9.9.1.0a0 + - coin3d >=4.0.3,<4.1.0a0 + - fmt >=12.0.0,<12.1.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 + - vtk-base >=9.3.1,<9.3.2.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libboost >=1.86.0,<1.87.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + - python_abi 3.11.* *_cp311 + - xerces-c >=3.3.0,<3.4.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - libzlib >=1.3.1,<2.0a0 input: - hash: af9833c94b95dd3d56ba987686d0ffa7650f8ff0180e423b7744d23c2f545e61 + hash: 85cbfc91157d4ced7c4be7c7b2752f95e9bc6748b1f4d55f52c9a4fb872c2bd8 globs: - recipe.yaml + - variants.yaml - conda: . name: freecad version: 1.1.0dev @@ -4399,6 +4479,7 @@ packages: - blinker - calculix - debugpy + - defusedxml - docutils - gmsh - graphviz @@ -4410,7 +4491,9 @@ packages: - nine - noqt5 - numpy >=1.26,<2 + - numpy >=1.26.4,<2.0a0 - occt >=7.8,<7.9 + - occt >=7.8.1,<7.8.2.0a0 - olefile - opencamlib - opencv @@ -4424,32 +4507,31 @@ packages: - pythonocc-core - pyyaml - qt6-main >=6.8,<6.9 + - qt6-main >=6.8.3,<6.9.0a0 - requests - scipy - sympy - typing_extensions - vtk - xlutils - - numpy >=1.26.4,<2.0a0 - - libfreetype >=2.13.3 - - libfreetype6 >=2.13.3 - - coin3d >=4.0.3,<4.1.0a0 - - pcl >=1.15.0,<1.15.1.0a0 - smesh >=9.9.0.0,<9.9.1.0a0 - - yaml-cpp >=0.8.0,<0.9.0a0 - - libboost >=1.86.0,<1.87.0a0 - - qt6-main >=6.8.3,<6.9.0a0 - - fmt >=11.2.0,<11.3.0a0 - - occt >=7.8.1,<7.8.2.0a0 + - pcl >=1.15.0,<1.15.1.0a0 + - coin3d >=4.0.3,<4.1.0a0 + - fmt >=12.0.0,<12.1.0a0 + - libfreetype >=2.14.1 + - libfreetype6 >=2.14.1 - vtk-base >=9.3.1,<9.3.2.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - libzlib >=1.3.1,<2.0a0 - - xerces-c >=3.3.0,<3.4.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libboost >=1.86.0,<1.87.0a0 - python_abi 3.11.* *_cp311 + - xerces-c >=3.3.0,<3.4.0a0 + - yaml-cpp >=0.8.0,<0.9.0a0 + - libzlib >=1.3.1,<2.0a0 input: - hash: af9833c94b95dd3d56ba987686d0ffa7650f8ff0180e423b7744d23c2f545e61 + hash: 85cbfc91157d4ced7c4be7c7b2752f95e9bc6748b1f4d55f52c9a4fb872c2bd8 globs: - recipe.yaml + - variants.yaml - conda: https://prefix.dev/conda-forge/linux-64/freeglut-3.2.2-ha6d2627_3.conda sha256: 676540a8e7f73a894cb1fcb870e7bec623ec1c0a2d277094fd713261a02d8d56 md5: 84ec3f5b46f3076be49f2cf3f1cfbf02 @@ -4590,51 +4672,51 @@ packages: license: GPL-2.0-or-later OR GPL-3.0-or-later OR FreeImage size: 465887 timestamp: 1729024520954 -- conda: https://prefix.dev/conda-forge/linux-64/freetype-2.13.3-ha770c72_1.conda - sha256: 7ef7d477c43c12a5b4cddcf048a83277414512d1116aba62ebadfa7056a7d84f - md5: 9ccd736d31e0c6e41f54e704e5312811 +- conda: https://prefix.dev/conda-forge/linux-64/freetype-2.14.1-ha770c72_0.conda + sha256: bf8e4dffe46f7d25dc06f31038cacb01672c47b9f45201f065b0f4d00ab0a83e + md5: 4afc585cd97ba8a23809406cd8a9eda8 depends: - - libfreetype 2.13.3 ha770c72_1 - - libfreetype6 2.13.3 h48d6fc4_1 + - libfreetype 2.14.1 ha770c72_0 + - libfreetype6 2.14.1 h73754d4_0 license: GPL-2.0-only OR FTL - size: 172450 - timestamp: 1745369996765 -- conda: https://prefix.dev/conda-forge/linux-aarch64/freetype-2.13.3-h8af1aa0_1.conda - sha256: 3b3ff45ac1fc880fbc8268477d29901a8fead32fb2241f98e4f2a1acffe6eea2 - md5: 71c4cbe1b384a8e7b56993394a435343 + size: 173114 + timestamp: 1757945422243 +- conda: https://prefix.dev/conda-forge/linux-aarch64/freetype-2.14.1-h8af1aa0_0.conda + sha256: 9f8de35e95ce301cecfe01bc9d539c7cc045146ffba55efe9733ff77ad1cfb21 + md5: 0c8f36ebd3678eed1685f0fc93fc2175 depends: - - libfreetype 2.13.3 h8af1aa0_1 - - libfreetype6 2.13.3 he93130f_1 + - libfreetype 2.14.1 h8af1aa0_0 + - libfreetype6 2.14.1 hdae7a39_0 license: GPL-2.0-only OR FTL - size: 172259 - timestamp: 1745370055170 -- conda: https://prefix.dev/conda-forge/osx-64/freetype-2.13.3-h694c41f_1.conda - sha256: e2870e983889eec73fdc0d4ab27d3f6501de4750ffe32d7d0a3a287f00bc2f15 - md5: 126dba1baf5030cb6f34533718924577 + size: 173174 + timestamp: 1757945489158 +- conda: https://prefix.dev/conda-forge/osx-64/freetype-2.14.1-h694c41f_0.conda + sha256: 9f8282510db291496e89618fc66a58a1124fe7a6276fbd57ed18c602ce2576e9 + md5: ca641fdf8b7803f4b7212b6d66375930 depends: - - libfreetype 2.13.3 h694c41f_1 - - libfreetype6 2.13.3 h40dfd5c_1 + - libfreetype 2.14.1 h694c41f_0 + - libfreetype6 2.14.1 h6912278_0 license: GPL-2.0-only OR FTL - size: 172649 - timestamp: 1745370231293 -- conda: https://prefix.dev/conda-forge/osx-arm64/freetype-2.13.3-hce30654_1.conda - sha256: 6b63c72ea51a41d41964841404564c0729fdddd3e952e2715839fd759b7cfdfc - md5: e684de4644067f1956a580097502bf03 + size: 173969 + timestamp: 1757945973505 +- conda: https://prefix.dev/conda-forge/osx-arm64/freetype-2.14.1-hce30654_0.conda + sha256: 14427aecd72e973a73d5f9dfd0e40b6bc3791d253de09b7bf233f6a9a190fd17 + md5: 1ec9a1ee7a2c9339774ad9bb6fe6caec depends: - - libfreetype 2.13.3 hce30654_1 - - libfreetype6 2.13.3 h1d14073_1 + - libfreetype 2.14.1 hce30654_0 + - libfreetype6 2.14.1 h6da58f4_0 license: GPL-2.0-only OR FTL - size: 172220 - timestamp: 1745370149658 -- conda: https://prefix.dev/conda-forge/win-64/freetype-2.13.3-h57928b3_1.conda - sha256: 0bcc9c868d769247c12324f957c97c4dbee7e4095485db90d9c295bcb3b1bb43 - md5: 633504fe3f96031192e40e3e6c18ef06 + size: 173399 + timestamp: 1757947175403 +- conda: https://prefix.dev/conda-forge/win-64/freetype-2.14.1-h57928b3_0.conda + sha256: a9b3313edea0bf14ea6147ea43a1059d0bf78771a1336d2c8282891efc57709a + md5: d69c21967f35eb2ce7f1f85d6b6022d3 depends: - - libfreetype 2.13.3 h57928b3_1 - - libfreetype6 2.13.3 h0b5ce68_1 + - libfreetype 2.14.1 h57928b3_0 + - libfreetype6 2.14.1 hdbac1cb_0 license: GPL-2.0-only OR FTL - size: 184162 - timestamp: 1745370242683 + size: 184553 + timestamp: 1757946164012 - conda: https://prefix.dev/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627 md5: ac7bc6a654f8f41b352b38f4051135f8 @@ -4807,6 +4889,53 @@ packages: license_family: LGPL size: 579313 timestamp: 1753107529649 +- conda: https://prefix.dev/conda-forge/linux-64/geos-3.14.1-h480dda7_0.conda + sha256: 08896dcd94e14a83f247e91748444e610f344ab42d80cbf2b6082b481c3f8f4b + md5: 4d4efd0645cd556fab54617c4ad477ef + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=14 + - libstdcxx >=14 + license: LGPL-2.1-only + size: 1974942 + timestamp: 1761593471198 +- conda: https://prefix.dev/conda-forge/linux-aarch64/geos-3.14.1-h57520ee_0.conda + sha256: 02b1f971fb9b560479e046915f90d20df71836f079a789eccd83bd03262c7bcb + md5: 311434946d3846e12661fedd4bfad25d + depends: + - libgcc >=14 + - libstdcxx >=14 + license: LGPL-2.1-only + size: 1938302 + timestamp: 1761593520145 +- conda: https://prefix.dev/conda-forge/osx-64/geos-3.14.1-he483b9e_0.conda + sha256: 4d95fd55a9e649620b4e50ddafff064c4ec52d87e1ed64aa4cad13e643b32baf + md5: d83030a79ce1276edc2332c1730efa17 + depends: + - __osx >=10.13 + - libcxx >=19 + license: LGPL-2.1-only + size: 1631280 + timestamp: 1761593838143 +- conda: https://prefix.dev/conda-forge/osx-arm64/geos-3.14.1-h5afe852_0.conda + sha256: 1ac5f5a3a35f2e4778025043c87993208d336e30539406e380e0952bb7ffd188 + md5: 4238412c29eff0bb2bb5c60a720c035a + depends: + - __osx >=11.0 + - libcxx >=19 + license: LGPL-2.1-only + size: 1530844 + timestamp: 1761594597236 +- conda: https://prefix.dev/conda-forge/win-64/geos-3.14.1-hdade9fe_0.conda + sha256: 032a16d78e69a20ffae6216191a66977bc50f6c21cb75f9853b37298b95308c4 + md5: 8c75d7e401a4d799ce8d4bb922320967 + depends: + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: LGPL-2.1-only + size: 1772787 + timestamp: 1761593910217 - conda: https://prefix.dev/conda-forge/win-64/getopt-win32-0.1-h6a83c73_3.conda sha256: d04c4a6c11daa72c4a0242602e1d00c03291ef66ca2d7cd0e171088411d57710 md5: 49c36fcad2e9af6b91e91f2ce5be8ebd @@ -5758,13 +5887,13 @@ packages: license_family: BSD size: 779637 timestamp: 1695662145568 -- conda: https://prefix.dev/conda-forge/linux-64/hdf5-1.14.4-nompi_h2d575fe_105.conda - sha256: 93d2bfc672f3ee0988d277ce463330a467f3686d3f7ee37812a3d8ca11776d77 - md5: d76fff0092b6389a12134ddebc0929bd +- conda: https://prefix.dev/conda-forge/linux-64/hdf5-1.14.3-nompi_h2d575fe_109.conda + sha256: e8669a6d76d415f4fdbe682507ac3a3b39e8f493d2f2bdc520817f80b7cc0753 + md5: e7a7a6e6f70553a31e6e79c65768d089 depends: - __glibc >=2.17,<3.0.a0 - libaec >=1.1.3,<2.0a0 - - libcurl >=8.10.1,<9.0a0 + - libcurl >=8.11.1,<9.0a0 - libgcc >=13 - libgfortran - libgfortran5 >=13.3.0 @@ -5773,14 +5902,14 @@ packages: - openssl >=3.4.0,<4.0a0 license: BSD-3-Clause license_family: BSD - size: 3950601 - timestamp: 1733003331788 -- conda: https://prefix.dev/conda-forge/linux-aarch64/hdf5-1.14.4-nompi_h6ed7ac7_105.conda - sha256: 57db9910da8bcc3b6456ab0e52a8e215b97f30941b416d2b052b3461097a8e09 - md5: 337b0bbe9c3ee631ec0982c990d21fc2 + size: 3930078 + timestamp: 1737516601132 +- conda: https://prefix.dev/conda-forge/linux-aarch64/hdf5-1.14.3-nompi_h6ed7ac7_109.conda + sha256: 93878403815f1095e24a14bc7dc992a936a5a0b2b5e03232a9c969e56b68f8d0 + md5: 9f6ead54eb026d0abb89c98d621c717c depends: - libaec >=1.1.3,<2.0a0 - - libcurl >=8.10.1,<9.0a0 + - libcurl >=8.11.1,<9.0a0 - libgcc >=13 - libgfortran - libgfortran5 >=13.3.0 @@ -5789,15 +5918,15 @@ packages: - openssl >=3.4.0,<4.0a0 license: BSD-3-Clause license_family: BSD - size: 4034228 - timestamp: 1733010297124 -- conda: https://prefix.dev/conda-forge/osx-64/hdf5-1.14.4-nompi_h1607680_105.conda - sha256: 56500937894b1ca917e1ae1bea64b873a9eec57d581173579189d0b1f590db26 - md5: 12ebafc40b10d4bf519e4c2074c52aef + size: 4005195 + timestamp: 1737521872785 +- conda: https://prefix.dev/conda-forge/osx-64/hdf5-1.14.3-nompi_h1607680_109.conda + sha256: b1882c1d26cd854c980dd64f97ed27f55bbbf413b39ade43fe6cdb2514f8a747 + md5: aa2b87330df24a89585b9d3e4d70c4d4 depends: - __osx >=10.13 - libaec >=1.1.3,<2.0a0 - - libcurl >=8.10.1,<9.0a0 + - libcurl >=8.11.1,<9.0a0 - libcxx >=18 - libgfortran >=5 - libgfortran5 >=13.2.0 @@ -5805,15 +5934,15 @@ packages: - openssl >=3.4.0,<4.0a0 license: BSD-3-Clause license_family: BSD - size: 3732340 - timestamp: 1733003702265 -- conda: https://prefix.dev/conda-forge/osx-arm64/hdf5-1.14.4-nompi_ha698983_105.conda - sha256: 1746cd2465832bf23d1e91b680935655dea9053d51e526deea86b0afb0b9d6a3 - md5: 7e85ea8b6a35b163a516e8c483960600 + size: 3735253 + timestamp: 1737517248573 +- conda: https://prefix.dev/conda-forge/osx-arm64/hdf5-1.14.3-nompi_ha698983_109.conda + sha256: daba95bd449b77c8d092458f8561d79ef96f790b505c69c17f5425c16ee16eca + md5: be8bf1f5aabe7b5486ccfe5a3cc8bbfe depends: - __osx >=11.0 - libaec >=1.1.3,<2.0a0 - - libcurl >=8.10.1,<9.0a0 + - libcurl >=8.11.1,<9.0a0 - libcxx >=18 - libgfortran >=5 - libgfortran5 >=13.2.0 @@ -5821,14 +5950,14 @@ packages: - openssl >=3.4.0,<4.0a0 license: BSD-3-Clause license_family: BSD - size: 3485821 - timestamp: 1733002735281 -- conda: https://prefix.dev/conda-forge/win-64/hdf5-1.14.4-nompi_hd5d9e70_105.conda - sha256: e8ced65c604a3b9e4803758a25149d71d8096f186fe876817a0d1d97190550c0 - md5: 4381be33460283890c34341ecfa42d97 + size: 3483256 + timestamp: 1737516321575 +- conda: https://prefix.dev/conda-forge/win-64/hdf5-1.14.3-nompi_hb2c4d47_109.conda + sha256: d5ada33e119cdd62371c06f60eae6f545de7cea793ab83da2fba428bb1d2f813 + md5: ebb61f3e8b35cc15e78876649b7246f7 depends: - libaec >=1.1.3,<2.0a0 - - libcurl >=8.10.1,<9.0a0 + - libcurl >=8.11.1,<9.0a0 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 - ucrt >=10.0.20348.0 @@ -5836,8 +5965,8 @@ packages: - vc14_runtime >=14.29.30139 license: BSD-3-Clause license_family: BSD - size: 2048450 - timestamp: 1733003052575 + size: 2045101 + timestamp: 1737516177829 - conda: https://prefix.dev/conda-forge/linux-64/hicolor-icon-theme-0.17-ha770c72_2.tar.bz2 sha256: 336f29ceea9594f15cc8ec4c45fdc29e10796573c697ee0d57ebb7edd7e92043 md5: bbf6f174dcd3254e19a2f5d2295ce808 @@ -5943,100 +6072,104 @@ packages: license_family: BSD size: 49765 timestamp: 1733211921194 -- conda: https://prefix.dev/conda-forge/linux-64/ifcopenshell-0.8.0-py311hc0ac5f0_6.conda - sha256: 645cfe8abacfa3408d87afd572fcaee7c00665705d121ded797bfbef22760711 - md5: d8d70432170f21fd839c0dca24c8fc99 +- conda: https://prefix.dev/conda-forge/linux-64/ifcopenshell-0.8.2-py311hfea35e5_0.conda + sha256: 45ce07c412cb1d4b8bfd0fde785e9f3751381b4e3d6a28686a174559f0628e69 + md5: 25bcf0826fc3b896d07afbe35982a500 depends: - python + - shapely - occt >=7.8.1,<7.8.2.0a0 - cgal-cpp >=6.0.1,<6.1.0a0 - - __glibc >=2.17,<3.0.a0 - libgcc >=13 + - __glibc >=2.17,<3.0.a0 - libstdcxx >=13 - libgcc >=13 - - libxml2 >=2.13.5,<2.14.0a0 - - python_abi 3.11.* *_cp311 - - occt >=7.8.1,<7.8.2.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - gmp >=6.3.0,<7.0a0 - - libboost >=1.86.0,<1.87.0a0 - - libzlib >=1.3.1,<2.0a0 - mpfr >=4.2.1,<5.0a0 + - libzlib >=1.3.1,<2.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libboost >=1.86.0,<1.87.0a0 + - gmp >=6.3.0,<7.0a0 + - python_abi 3.11.* *_cp311 + - libxml2 >=2.13.7,<2.14.0a0 license: LGPL-3.0-or-later license_family: LGPL - size: 42887526 - timestamp: 1734698577522 -- conda: https://prefix.dev/conda-forge/linux-aarch64/ifcopenshell-0.8.0-py311h73984ed_6.conda - sha256: fb9afe09a9b2ab9fff47a8afc47ceb0fe62873bbc36e77eeb6de636b42bda5cd - md5: efce71948d0efd8c20af9851e2ea27f0 + size: 43852878 + timestamp: 1745412691720 +- conda: https://prefix.dev/conda-forge/linux-aarch64/ifcopenshell-0.8.2-py311h9a0e4cb_0.conda + sha256: 5b0d7760899ffa8ae91169bff49c9d6cd435b1cb8957e7622d9bd765a9c2d577 + md5: fc1ebe0deebc32d2d42b8dc257afb836 depends: - python + - shapely - occt >=7.8.1,<7.8.2.0a0 - cgal-cpp >=6.0.1,<6.1.0a0 - - libgcc >=13 - libstdcxx >=13 - libgcc >=13 - python 3.11.* *_cpython - gmp >=6.3.0,<7.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - libzlib >=1.3.1,<2.0a0 - - python_abi 3.11.* *_cp311 - - libboost >=1.86.0,<1.87.0a0 - - libxml2 >=2.13.5,<2.14.0a0 - occt >=7.8.1,<7.8.2.0a0 + - libxml2 >=2.13.7,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - libboost >=1.86.0,<1.87.0a0 - mpfr >=4.2.1,<5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - python_abi 3.11.* *_cp311 license: LGPL-3.0-or-later license_family: LGPL - size: 45036904 - timestamp: 1734702136478 -- conda: https://prefix.dev/conda-forge/osx-64/ifcopenshell-0.8.0-py311h1b8037f_6.conda - sha256: 410bcd9637ca9920e0c1a4db2ad83b5a652db844803e0dd479c06cdb73423284 - md5: 1463cd230103822c969d2dbf2cda1be6 + size: 46059599 + timestamp: 1745412697613 +- conda: https://prefix.dev/conda-forge/osx-64/ifcopenshell-0.8.2-py311h2fdbcd7_0.conda + sha256: d52f4bd7cec3cf1cbcd7cf9c6a21ec6d2331425972c4cd7f88d3df64a4a3cd72 + md5: d0352d59f66ec49a974177e1efc749df depends: - python + - shapely - occt >=7.8.1,<7.8.2.0a0 - cgal-cpp >=6.0.1,<6.1.0a0 - libcxx >=18 - __osx >=10.13 - - libboost >=1.86.0,<1.87.0a0 - - libzlib >=1.3.1,<2.0a0 - - mpfr >=4.2.1,<5.0a0 - - gmp >=6.3.0,<7.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - libxml2 >=2.13.5,<2.14.0a0 - occt >=7.8.1,<7.8.2.0a0 + - mpfr >=4.2.1,<5.0a0 + - libboost >=1.86.0,<1.87.0a0 + - libxml2 >=2.13.7,<2.14.0a0 + - gmp >=6.3.0,<7.0a0 - python_abi 3.11.* *_cp311 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libzlib >=1.3.1,<2.0a0 license: LGPL-3.0-or-later license_family: LGPL - size: 38065236 - timestamp: 1734698484370 -- conda: https://prefix.dev/conda-forge/osx-arm64/ifcopenshell-0.8.0-py311h51d146a_6.conda - sha256: 9f467c65a11051e8c26698f8fd174a48518334eec8c9df516d974cd9d8bee36c - md5: cfcbb5e8911ecf729501c46786ab359a + size: 39452121 + timestamp: 1745412590610 +- conda: https://prefix.dev/conda-forge/osx-arm64/ifcopenshell-0.8.2-py311h30f7335_0.conda + sha256: 15d5d080aa54c1b5aeed0e4827d5a6b4521b8a2599e3bc06af5318575d2b7a8f + md5: b550b7b3c4a8f543fb3c0c15f8ec5967 depends: - python + - shapely - occt >=7.8.1,<7.8.2.0a0 - cgal-cpp >=6.0.1,<6.1.0a0 - - python 3.11.* *_cpython - libcxx >=18 - __osx >=11.0 - - hdf5 >=1.14.4,<1.14.5.0a0 + - python 3.11.* *_cpython + - gmp >=6.3.0,<7.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - mpfr >=4.2.1,<5.0a0 + - libxml2 >=2.13.7,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - libboost >=1.86.0,<1.87.0a0 - - gmp >=6.3.0,<7.0a0 - - occt >=7.8.1,<7.8.2.0a0 - - libxml2 >=2.13.5,<2.14.0a0 - - mpfr >=4.2.1,<5.0a0 - python_abi 3.11.* *_cp311 + - occt >=7.8.1,<7.8.2.0a0 license: LGPL-3.0-or-later license_family: LGPL - size: 38856374 - timestamp: 1734700811894 -- conda: https://prefix.dev/conda-forge/win-64/ifcopenshell-0.8.0-py311hf9f63ab_6.conda - sha256: aee58c034c949850a73d81c5ffbf8a20d0ea15f235f99190f08a31230da14983 - md5: 81c865e6d61be2da7af0d0cdb8e16c35 + size: 40077397 + timestamp: 1745412613454 +- conda: https://prefix.dev/conda-forge/win-64/ifcopenshell-0.8.2-py311ha1ff2f0_0.conda + sha256: 4e3c4d0d3749b761267b9ac9f9c3262c2b690d1908a6a6db734dcd4eecd43b2e + md5: e178c988f7034d08d27fe14a62bdbe12 depends: - python + - shapely - occt >=7.8.1,<7.8.2.0a0 - cgal-cpp >=6.0.1,<6.1.0a0 - vc >=14.2,<15 @@ -6045,18 +6178,18 @@ packages: - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - ucrt >=10.0.20348.0 - - mpfr >=4.2.1,<5.0a0 - - python_abi 3.11.* *_cp311 - - gmp >=6.3.0,<7.0a0 - libzlib >=1.3.1,<2.0a0 - - libxml2 >=2.13.5,<2.14.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - occt >=7.8.1,<7.8.2.0a0 + - python_abi 3.11.* *_cp311 - libboost >=1.86.0,<1.87.0a0 + - occt >=7.8.1,<7.8.2.0a0 + - libxml2 >=2.13.7,<2.14.0a0 + - gmp >=6.3.0,<7.0a0 + - mpfr >=4.2.1,<5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 license: LGPL-3.0-or-later license_family: LGPL - size: 67821831 - timestamp: 1734703406350 + size: 69008493 + timestamp: 1745412554164 - conda: https://prefix.dev/conda-forge/linux-64/imath-3.1.12-h7955e40_0.conda sha256: 4d8d07a4d5079d198168b44556fb86d094e6a716e8979b25a9f6c9c610e9fe56 md5: 37f5e1ab0db3691929f37dee78335d1b @@ -6629,73 +6762,73 @@ packages: license_family: MIT size: 604297 timestamp: 1753434499930 -- conda: https://prefix.dev/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda - sha256: 143a586aa67d50622ef703de57b9d43f44945836d6568e0e7aa174bd8c45e0d4 - md5: 488f260ccda0afaf08acb286db439c2f +- conda: https://prefix.dev/conda-forge/linux-64/libabseil-20250127.1-cxx17_hbbce691_0.conda + sha256: 65d5ca837c3ee67b9d769125c21dc857194d7f6181bb0e7bd98ae58597b457d0 + md5: 00290e549c5c8a32cc271020acc9ec6b depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - libstdcxx >=13 constrains: - - libabseil-static =20240722.0=cxx17* - - abseil-cpp =20240722.0 + - abseil-cpp =20250127.1 + - libabseil-static =20250127.1=cxx17* license: Apache-2.0 license_family: Apache - size: 1311599 - timestamp: 1736008414161 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda - sha256: bb6c5fb3b8de5f90735c5252b57efb3c268ee222c755569dac18065f05147670 - md5: 633b9fe454ffea2aaf29e191d946a83b + size: 1325007 + timestamp: 1742369558286 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libabseil-20250127.1-cxx17_h18dbdb1_0.conda + sha256: 55b7f9d8faa4a0a08f9fc7bcbd7f4cdd3c232120bafa2e8f7e19014ea4aa1278 + md5: 71b972e18b2747a9d47bbbafc346b765 depends: - libgcc >=13 - libstdcxx >=13 constrains: - - abseil-cpp =20240722.0 - - libabseil-static =20240722.0=cxx17* + - libabseil-static =20250127.1=cxx17* + - abseil-cpp =20250127.1 license: Apache-2.0 license_family: Apache - size: 1334844 - timestamp: 1736008472455 -- conda: https://prefix.dev/conda-forge/osx-64/libabseil-20240722.0-cxx17_h0e468a2_4.conda - sha256: 375e98c007cbe2535b89adccf4d417480d54ce2fb4b559f0b700da294dee3985 - md5: 03dd3d0563d01c2b82881734ee0eb334 + size: 1348653 + timestamp: 1742369595937 +- conda: https://prefix.dev/conda-forge/osx-64/libabseil-20250127.1-cxx17_h0e468a2_0.conda + sha256: 8c43a7daa4df04f66d08e6a6cd2f004fc84500bf8c0c75dc9ee633b34c2a01be + md5: b2004ae68003d2ef310b49847b911e4b depends: - __osx >=10.13 - libcxx >=18 constrains: - - abseil-cpp =20240722.0 - - libabseil-static =20240722.0=cxx17* + - libabseil-static =20250127.1=cxx17* + - abseil-cpp =20250127.1 license: Apache-2.0 license_family: Apache - size: 1163503 - timestamp: 1736008705613 -- conda: https://prefix.dev/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda - sha256: 05fa5e5e908962b9c5aba95f962e2ca81d9599c4715aebe5e4ddb72b309d1770 - md5: c2d95bd7aa8d564a9bd7eca5e571a5b3 + size: 1177855 + timestamp: 1742369859708 +- conda: https://prefix.dev/conda-forge/osx-arm64/libabseil-20250127.1-cxx17_h07bc746_0.conda + sha256: 9884f855bdfd5cddac209df90bdddae8b3a6d8accfd2d3f52bc9db2f9ebb69c9 + md5: 26aabb99a8c2806d8f617fd135f2fc6f depends: - __osx >=11.0 - libcxx >=18 constrains: - - libabseil-static =20240722.0=cxx17* - - abseil-cpp =20240722.0 + - abseil-cpp =20250127.1 + - libabseil-static =20250127.1=cxx17* license: Apache-2.0 license_family: Apache - size: 1178260 - timestamp: 1736008642885 -- conda: https://prefix.dev/conda-forge/win-64/libabseil-20240722.0-cxx17_h4eb7d71_4.conda - sha256: 846eacff96d36060fe5f7b351e4df6fafae56bf34cc6426497f12b5c13f317cf - md5: c57ee7f404d1aa84deb3e15852bec6fa + size: 1192962 + timestamp: 1742369814061 +- conda: https://prefix.dev/conda-forge/win-64/libabseil-20250127.1-cxx17_h4eb7d71_0.conda + sha256: 61ece8d3768604eae2c7c869a5c032a61fbfb8eb86cc85dc39cc2de48d3827b4 + md5: 9619870922c18fa283a3ee703a14cfcc depends: - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 constrains: - - abseil-cpp =20240722.0 - - libabseil-static =20240722.0=cxx17* + - libabseil-static =20250127.1=cxx17* + - abseil-cpp =20250127.1 license: Apache-2.0 license_family: Apache - size: 1784929 - timestamp: 1736008778245 + size: 1836732 + timestamp: 1742370096247 - conda: https://prefix.dev/conda-forge/linux-64/libaec-1.1.4-h3f801dc_0.conda sha256: 410ab78fe89bc869d435de04c9ffa189598ac15bb0fe1ea8ace8fb1b860a2aa3 md5: 01ba04e414e47f95c03d6ddd81fd37be @@ -6871,6 +7004,75 @@ packages: license: ISC size: 138347 timestamp: 1743207022781 +- conda: https://prefix.dev/conda-forge/linux-64/libavif16-1.3.0-h766b0b6_0.conda + sha256: 170b51a3751c2f842ff9e11d22423494ef7254b448ef2b24751256ef18aa1302 + md5: f17f2d0e5c9ad6b958547fd67b155771 + depends: + - __glibc >=2.17,<3.0.a0 + - aom >=3.9.1,<3.10.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - libgcc >=13 + - rav1e >=0.7.1,<0.8.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 140052 + timestamp: 1746836263991 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libavif16-1.3.0-hb72faec_0.conda + sha256: f9f788398dbb5eea297132ba7dcade06a2d59c61aa722708d30b4a2f69def1ac + md5: 6f699633a5967c4d44c777b7f7856d40 + depends: + - aom >=3.9.1,<3.10.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - libgcc >=13 + - rav1e >=0.7.1,<0.8.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 137787 + timestamp: 1746836360100 +- conda: https://prefix.dev/conda-forge/osx-64/libavif16-1.3.0-h679cce7_0.conda + sha256: 3dcb4f2681a6d827bca7b1642e74ef856f750f99e6e1af0084e0aecf4d770381 + md5: 67fcf8cbdcc619e3ac8f6e613f91a22d + depends: + - __osx >=10.13 + - aom >=3.9.1,<3.10.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - rav1e >=0.7.1,<0.8.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 124257 + timestamp: 1746836368490 +- conda: https://prefix.dev/conda-forge/osx-arm64/libavif16-1.3.0-hf1e31eb_0.conda + sha256: bd8bc77a0c81c73ba955a05c4b4179b1bf9d0fef1a379bdb37fcd41961650175 + md5: c61522d664c4ee27234f802d631ddb88 + depends: + - __osx >=11.0 + - aom >=3.9.1,<3.10.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - rav1e >=0.7.1,<0.8.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + license: BSD-2-Clause + license_family: BSD + size: 111817 + timestamp: 1746836468929 +- conda: https://prefix.dev/conda-forge/win-64/libavif16-1.3.0-hf2698fe_0.conda + sha256: 648bfe7404db62cc9c908341fbdc68f5b94254a8de31ede23f5abc3213c6651b + md5: cd552166ea3c57d74c797d68e643a659 + depends: + - _libavif_api >=1.3.0,<1.3.1.0a0 + - aom >=3.9.1,<3.10.0a0 + - dav1d >=1.2.1,<1.2.2.0a0 + - rav1e >=0.7.1,<0.8.0a0 + - svt-av1 >=3.0.2,<3.0.3.0a0 + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 115816 + timestamp: 1746836897887 - conda: https://prefix.dev/conda-forge/linux-64/libblas-3.9.0-32_h59b9bed_openblas.conda build_number: 32 sha256: 1540bf739feb446ff71163923e7f044e867d163c50b605c8b421c55ff39aa338 @@ -7367,17 +7569,17 @@ packages: license_family: MIT size: 245845 timestamp: 1749230909225 -- conda: https://prefix.dev/conda-forge/linux-64/libcap-2.71-h39aace5_0.conda - sha256: 2bbefac94f4ab8ff7c64dc843238b6c8edcc9ff1f2b5a0a48407a904dc7ccfb2 - md5: dd19e4e3043f6948bd7454b946ee0983 +- conda: https://prefix.dev/conda-forge/linux-64/libcap-2.77-h3ff7636_0.conda + sha256: 9517cce5193144af0fcbf19b7bd67db0a329c2cc2618f28ffecaa921a1cbe9d3 + md5: 09c264d40c67b82b49a3f3b89037bd2e depends: - __glibc >=2.17,<3.0.a0 - - attr >=2.5.1,<2.6.0a0 - - libgcc >=13 + - attr >=2.5.2,<2.6.0a0 + - libgcc >=14 license: BSD-3-Clause license_family: BSD - size: 102268 - timestamp: 1729940917945 + size: 121429 + timestamp: 1762349484074 - conda: https://prefix.dev/conda-forge/linux-aarch64/libcap-2.75-h51d75a7_0.conda sha256: d77e8bd8d5714a80c1fa88037e71d5c29f21bae1e9281528006c9c5a6175ac1a md5: c5456e13665779bf7a62dc7724ca2938 @@ -7977,109 +8179,109 @@ packages: license_family: BSD size: 371550 timestamp: 1687765491794 -- conda: https://prefix.dev/conda-forge/linux-64/libfreetype-2.13.3-ha770c72_1.conda - sha256: 7be9b3dac469fe3c6146ff24398b685804dfc7a1de37607b84abd076f57cc115 - md5: 51f5be229d83ecd401fb369ab96ae669 +- conda: https://prefix.dev/conda-forge/linux-64/libfreetype-2.14.1-ha770c72_0.conda + sha256: 4641d37faeb97cf8a121efafd6afd040904d4bca8c46798122f417c31d5dfbec + md5: f4084e4e6577797150f9b04a4560ceb0 depends: - - libfreetype6 >=2.13.3 + - libfreetype6 >=2.14.1 license: GPL-2.0-only OR FTL - size: 7693 - timestamp: 1745369988361 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype-2.13.3-h8af1aa0_1.conda - sha256: c1bb6726b054b00ad509b9ace5e04f4bfe97e6fdaf5c4473c537e6c03d1f660b - md5: 2d4a1c3dcabb80b4a56d5c34bdacea08 + size: 7664 + timestamp: 1757945417134 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype-2.14.1-h8af1aa0_0.conda + sha256: 342c07e4be3d09d04b531c889182a11a488e7e9ba4b75f642040e4681c1e9b98 + md5: 1e61fb236ccd3d6ccaf9e91cb2d7e12d depends: - - libfreetype6 >=2.13.3 + - libfreetype6 >=2.14.1 license: GPL-2.0-only OR FTL - size: 7774 - timestamp: 1745370050680 -- conda: https://prefix.dev/conda-forge/osx-64/libfreetype-2.13.3-h694c41f_1.conda - sha256: afe0e2396844c8cfdd6256ac84cabc9af823b1727f704c137b030b85839537a6 - md5: 07c8d3fbbe907f32014b121834b36dd5 + size: 7753 + timestamp: 1757945484817 +- conda: https://prefix.dev/conda-forge/osx-64/libfreetype-2.14.1-h694c41f_0.conda + sha256: 035e23ef87759a245d51890aedba0b494a26636784910c3730d76f3dc4482b1d + md5: e0e2edaf5e0c71b843e25a7ecc451cc9 depends: - - libfreetype6 >=2.13.3 + - libfreetype6 >=2.14.1 license: GPL-2.0-only OR FTL - size: 7805 - timestamp: 1745370212559 -- conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype-2.13.3-hce30654_1.conda - sha256: 1f8c16703fe333cdc2639f7cdaf677ac2120843453222944a7c6c85ec342903c - md5: d06282e08e55b752627a707d58779b8f + size: 7780 + timestamp: 1757945952392 +- conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype-2.14.1-hce30654_0.conda + sha256: 9de25a86066f078822d8dd95a83048d7dc2897d5d655c0e04a8a54fca13ef1ef + md5: f35fb38e89e2776994131fbf961fa44b depends: - - libfreetype6 >=2.13.3 + - libfreetype6 >=2.14.1 license: GPL-2.0-only OR FTL - size: 7813 - timestamp: 1745370144506 -- conda: https://prefix.dev/conda-forge/win-64/libfreetype-2.13.3-h57928b3_1.conda - sha256: e5bc7d0a8d11b7b234da4fcd9d78f297f7dec3fec8bd06108fd3ac7b2722e32e - md5: 410ba2c8e7bdb278dfbb5d40220e39d2 + size: 7810 + timestamp: 1757947168537 +- conda: https://prefix.dev/conda-forge/win-64/libfreetype-2.14.1-h57928b3_0.conda + sha256: 2029702ec55e968ce18ec38cc8cf29f4c8c4989a0d51797164dab4f794349a64 + md5: 3235024fe48d4087721797ebd6c9d28c depends: - - libfreetype6 >=2.13.3 + - libfreetype6 >=2.14.1 license: GPL-2.0-only OR FTL - size: 8159 - timestamp: 1745370227235 -- conda: https://prefix.dev/conda-forge/linux-64/libfreetype6-2.13.3-h48d6fc4_1.conda - sha256: 7759bd5c31efe5fbc36a7a1f8ca5244c2eabdbeb8fc1bee4b99cf989f35c7d81 - md5: 3c255be50a506c50765a93a6644f32fe + size: 8109 + timestamp: 1757946135015 +- conda: https://prefix.dev/conda-forge/linux-64/libfreetype6-2.14.1-h73754d4_0.conda + sha256: 4a7af818a3179fafb6c91111752954e29d3a2a950259c14a2fc7ba40a8b03652 + md5: 8e7251989bca326a28f4a5ffbd74557a depends: - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - libpng >=1.6.47,<1.7.0a0 + - libgcc >=14 + - libpng >=1.6.50,<1.7.0a0 - libzlib >=1.3.1,<2.0a0 constrains: - - freetype >=2.13.3 + - freetype >=2.14.1 license: GPL-2.0-only OR FTL - size: 380134 - timestamp: 1745369987697 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype6-2.13.3-he93130f_1.conda - sha256: 9f189f75bb79f6b97c48804e89b4f1db5dc3fba5729551e4cbd2deca98580635 - md5: 51eae9012d75b8f7e4b0adfe61a83330 + size: 386739 + timestamp: 1757945416744 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libfreetype6-2.14.1-hdae7a39_0.conda + sha256: cedc83d9733363aca353872c3bfed2e188aa7caf57b57842ba0c6d2765652b7c + md5: 9c2f56b6e011c6d8010ff43b796aab2f depends: - - libgcc >=13 - - libpng >=1.6.47,<1.7.0a0 + - libgcc >=14 + - libpng >=1.6.50,<1.7.0a0 - libzlib >=1.3.1,<2.0a0 constrains: - - freetype >=2.13.3 + - freetype >=2.14.1 license: GPL-2.0-only OR FTL - size: 408198 - timestamp: 1745370049871 -- conda: https://prefix.dev/conda-forge/osx-64/libfreetype6-2.13.3-h40dfd5c_1.conda - sha256: 058165962aa64fc5a6955593212c0e1ea42ca6d6dba60ee61dff612d4c3818d7 - md5: c76e6f421a0e95c282142f820835e186 + size: 423210 + timestamp: 1757945484108 +- conda: https://prefix.dev/conda-forge/osx-64/libfreetype6-2.14.1-h6912278_0.conda + sha256: f5f28092e368efc773bcd1c381d123f8b211528385a9353e36f8808d00d11655 + md5: dfbdc8fd781dc3111541e4234c19fdbd depends: - __osx >=10.13 - - libpng >=1.6.47,<1.7.0a0 + - libpng >=1.6.50,<1.7.0a0 - libzlib >=1.3.1,<2.0a0 constrains: - - freetype >=2.13.3 + - freetype >=2.14.1 license: GPL-2.0-only OR FTL - size: 357654 - timestamp: 1745370210187 -- conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype6-2.13.3-h1d14073_1.conda - sha256: c278df049b1a071841aa0aca140a338d087ea594e07dcf8a871d2cfe0e330e75 - md5: b163d446c55872ef60530231879908b9 + size: 374993 + timestamp: 1757945949585 +- conda: https://prefix.dev/conda-forge/osx-arm64/libfreetype6-2.14.1-h6da58f4_0.conda + sha256: cc4aec4c490123c0f248c1acd1aeab592afb6a44b1536734e20937cda748f7cd + md5: 6d4ede03e2a8e20eb51f7f681d2a2550 depends: - __osx >=11.0 - - libpng >=1.6.47,<1.7.0a0 + - libpng >=1.6.50,<1.7.0a0 - libzlib >=1.3.1,<2.0a0 constrains: - - freetype >=2.13.3 + - freetype >=2.14.1 license: GPL-2.0-only OR FTL - size: 333529 - timestamp: 1745370142848 -- conda: https://prefix.dev/conda-forge/win-64/libfreetype6-2.13.3-h0b5ce68_1.conda - sha256: 61308653e7758ff36f80a60d598054168a1389ddfbac46d7864c415fafe18e69 - md5: a84b7d1a13060a9372bea961a8131dbc + size: 346703 + timestamp: 1757947166116 +- conda: https://prefix.dev/conda-forge/win-64/libfreetype6-2.14.1-hdbac1cb_0.conda + sha256: 223710600b1a5567163f7d66545817f2f144e4ef8f84e99e90f6b8a4e19cb7ad + md5: 6e7c5c5ab485057b5d07fd8188ba5c28 depends: - - libpng >=1.6.47,<1.7.0a0 + - libpng >=1.6.50,<1.7.0a0 - libzlib >=1.3.1,<2.0a0 - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 constrains: - - freetype >=2.13.3 + - freetype >=2.14.1 license: GPL-2.0-only OR FTL - size: 337007 - timestamp: 1745370226578 + size: 340264 + timestamp: 1757946133889 - conda: https://prefix.dev/conda-forge/linux-64/libgcc-15.1.0-h767d61c_3.conda sha256: 59a87161212abe8acc57d318b0cc8636eb834cdfdfddcf1f588b5493644b39a3 md5: 9e60c55e725c20d23125a5f0dd69af5d @@ -8137,16 +8339,6 @@ packages: license_family: GPL size: 29009 timestamp: 1750808930406 -- conda: https://prefix.dev/conda-forge/linux-64/libgcrypt-lib-1.11.1-hb9d3cd8_0.conda - sha256: dc9c7d7a6c0e6639deee6fde2efdc7e119e7739a6b229fa5f9049a449bae6109 - md5: 8504a291085c9fb809b66cabd5834307 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - libgpg-error >=1.55,<2.0a0 - license: LGPL-2.1-or-later - size: 590353 - timestamp: 1747060639058 - conda: https://prefix.dev/conda-forge/linux-aarch64/libgcrypt-lib-1.11.1-h86ecc28_0.conda sha256: 5c572886ae3bf8f55fbc8f18275317679b559a9dd00cf1f128d24057dc6de70e md5: 50df370cbbbcfb4aa67556879e6643a1 @@ -8615,17 +8807,6 @@ packages: license_family: GPL size: 535456 timestamp: 1750808243424 -- conda: https://prefix.dev/conda-forge/linux-64/libgpg-error-1.55-h3f2d84a_0.conda - sha256: 697334de4786a1067ea86853e520c64dd72b11a05137f5b318d8a444007b5e60 - md5: 2bd47db5807daade8500ed7ca4c512a4 - depends: - - libstdcxx >=13 - - libgcc >=13 - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - license: LGPL-2.1-only - size: 312184 - timestamp: 1745575272035 - conda: https://prefix.dev/conda-forge/linux-aarch64/libgpg-error-1.55-h5ad3122_0.conda sha256: a744c0a137a084af7cee4a33de9bffb988182b5be4edb8a45d51d2a1efd3724c md5: 39f742598d0f18c8e1cb01712bc03ee8 @@ -9094,25 +9275,15 @@ packages: license: 0BSD size: 104935 timestamp: 1749230611612 -- conda: https://prefix.dev/conda-forge/linux-64/liblzma-devel-5.8.1-hb9d3cd8_2.conda - sha256: 329e66330a8f9cbb6a8d5995005478188eb4ba8a6b6391affa849744f4968492 - md5: f61edadbb301530bd65a32646bd81552 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - liblzma 5.8.1 hb9d3cd8_2 - license: 0BSD - size: 439868 - timestamp: 1749230061968 -- conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h5ddbaa4_116.conda - sha256: 6c61842c8d8f885019f52a2f989d197b6bf33c030b030226e665f01ca0fa3f71 - md5: f51573abc223afed7e5374f34135ce05 +- conda: https://prefix.dev/conda-forge/linux-64/libnetcdf-4.9.2-nompi_h00e09a9_116.conda + sha256: 8c389b867452b13e7a2e0cf9c8120e0124a4ac1ab419fab23a565e2659084840 + md5: 417864857bdb6c2be2e923e89bffd2e8 depends: - __glibc >=2.17,<3.0.a0 - blosc >=1.21.6,<2.0a0 - bzip2 >=1.0.8,<2.0a0 - hdf4 >=4.2.15,<4.2.16.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - libaec >=1.1.3,<2.0a0 - libcurl >=8.10.1,<9.0a0 - libgcc >=13 @@ -9125,16 +9296,16 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: MIT license_family: MIT - size: 832800 - timestamp: 1733232193218 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_h46655bb_116.conda - sha256: 3cef53598ba8cad6b5dd3ddedafe681f439df84599c91cd446f026532851b4d8 - md5: 94e5e219d5a306226c30472cfa429285 + size: 834890 + timestamp: 1733232226707 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libnetcdf-4.9.2-nompi_h1c53c35_116.conda + sha256: 4080c6f37fe50c0a0a1333199e0856e31cab1e296a447adcd702080884dba226 + md5: 87acf9b412e416cf6073323ab07fa701 depends: - blosc >=1.21.6,<2.0a0 - bzip2 >=1.0.8,<2.0a0 - hdf4 >=4.2.15,<4.2.16.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - libaec >=1.1.3,<2.0a0 - libcurl >=8.10.1,<9.0a0 - libgcc >=13 @@ -9147,17 +9318,17 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: MIT license_family: MIT - size: 852231 - timestamp: 1733232606148 -- conda: https://prefix.dev/conda-forge/osx-64/libnetcdf-4.9.2-nompi_hd7a758f_116.conda - sha256: d0d766af25adce60b6308a41104358007a08e06359b7e9318784a24a44618c0a - md5: 25ba70595ea5495448e9dd55e4836177 + size: 851584 + timestamp: 1733232221854 +- conda: https://prefix.dev/conda-forge/osx-64/libnetcdf-4.9.2-nompi_hf3c7182_116.conda + sha256: eee773dcec4fff8ba3582a0994e868cef90d728a033c1577937083946b12f62a + md5: f26fc0c5404ecaa3f1644692b9c433ed depends: - __osx >=10.13 - blosc >=1.21.6,<2.0a0 - bzip2 >=1.0.8,<2.0a0 - hdf4 >=4.2.15,<4.2.16.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - libaec >=1.1.3,<2.0a0 - libcurl >=8.10.1,<9.0a0 - libcxx >=18 @@ -9169,17 +9340,17 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: MIT license_family: MIT - size: 726457 - timestamp: 1733232775356 -- conda: https://prefix.dev/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_h6569565_116.conda - sha256: 09d0194d8639e1f061f1a11d809a61030abcf335feefb10a10e65e43812a1205 - md5: 6257f1136b1285acf5c3b171249fdf52 + size: 726315 + timestamp: 1733232411914 +- conda: https://prefix.dev/conda-forge/osx-arm64/libnetcdf-4.9.2-nompi_h610d594_116.conda + sha256: 70f185c3a6aca2a5d1b5d27e4155cae23ae19b42bdfee6d4b2f4c9b522b3f93b + md5: edff7b961600d73f88953eadd659fa40 depends: - __osx >=11.0 - blosc >=1.21.6,<2.0a0 - bzip2 >=1.0.8,<2.0a0 - hdf4 >=4.2.15,<4.2.16.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - libaec >=1.1.3,<2.0a0 - libcurl >=8.10.1,<9.0a0 - libcxx >=18 @@ -9191,16 +9362,16 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: MIT license_family: MIT - size: 685178 - timestamp: 1733232329857 -- conda: https://prefix.dev/conda-forge/win-64/libnetcdf-4.9.2-nompi_h5bdc103_116.conda - sha256: fa0591430e03ac302782dec8261bc85e1bb1e374f47e2bbbcd23469680d8e5f2 - md5: a95ec17163d3e07bc0bf3f5ca9c86fde + size: 685490 + timestamp: 1733232513009 +- conda: https://prefix.dev/conda-forge/win-64/libnetcdf-4.9.2-nompi_h008f77d_116.conda + sha256: f2976ffb686974f6df6195f34b36d1366e66ac9c57edc501f65474133eb4d357 + md5: cb226a2cc8909d2fa636fba3f623ae6b depends: - blosc >=1.21.6,<2.0a0 - bzip2 >=1.0.8,<2.0a0 - hdf4 >=4.2.15,<4.2.16.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - libaec >=1.1.3,<2.0a0 - libcurl >=8.10.1,<9.0a0 - libxml2 >=2.13.5,<2.14.0a0 @@ -9213,8 +9384,8 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: MIT license_family: MIT - size: 625802 - timestamp: 1733232741492 + size: 624813 + timestamp: 1733232696254 - conda: https://prefix.dev/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda sha256: b0f2b3695b13a989f75d8fd7f4778e1c7aabe3b36db83f0fe80b2cd812c0e975 md5: 19e57602824042dfd0446292ef90488b @@ -9445,231 +9616,246 @@ packages: license_family: BSD size: 3951163 timestamp: 1750381722322 -- conda: https://prefix.dev/conda-forge/linux-64/libopencv-4.10.0-qt6_py311h023d011_615.conda - sha256: 57cd077a677df7ba51126cb1a319f39b227eceffbed79b3f1248756602486e4f - md5: 3682fa0f3b3c8ca88a844e3c31723bcf +- conda: https://prefix.dev/conda-forge/linux-64/libopencv-4.11.0-qt6_py311h178ae83_605.conda + sha256: 43593330d17238583b5ad96fdc43f27c49943a6b34aa5ea3f2ab0ee4fa2cec45 + md5: 161adc7af450006286deb9fc0f5e2e4d depends: - __glibc >=2.17,<3.0.a0 - _openmp_mutex >=4.5 - - ffmpeg >=7.1.0,<8.0a0 - - freetype >=2.12.1,<3.0a0 - - harfbuzz >=10.1.0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - jasper >=4.2.4,<5.0a0 - - libasprintf >=0.22.5,<1.0a0 + - ffmpeg >=7.1.1,<8.0a0 + - freetype >=2.13.3,<3.0a0 + - harfbuzz >=11.1.0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - jasper >=4.2.5,<5.0a0 + - libasprintf >=0.23.1,<1.0a0 + - libavif16 >=1.2.1,<2.0a0 - libcblas >=3.9.0,<4.0a0 - libegl >=1.7.0,<2.0a0 - - libexpat >=2.6.4,<3.0a0 + - libexpat >=2.7.0,<3.0a0 - libgcc >=13 - - libgettextpo >=0.22.5,<1.0a0 + - libgettextpo >=0.23.1,<1.0a0 - libgl >=1.7.0,<2.0a0 - - libglib >=2.82.2,<3.0a0 - - libiconv >=1.17,<2.0a0 + - libglib >=2.84.1,<3.0a0 + - libiconv >=1.18,<2.0a0 - libjpeg-turbo >=3.0.0,<4.0a0 - liblapack >=3.9.0,<4.0a0 - liblapacke >=3.9.0,<4.0a0 - - libopenvino >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-intel-cpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-intel-gpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-intel-npu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 - - libpng >=1.6.44,<1.7.0a0 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-gpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-npu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libprotobuf >=5.29.3,<5.29.4.0a0 - libstdcxx >=13 - libtiff >=4.7.0,<4.8.0a0 - libwebp-base >=1.5.0,<2.0a0 - libzlib >=1.3.1,<2.0a0 - numpy >=1.19,<3 - - openexr >=3.3.2,<3.4.0a0 - - qt6-main >=6.8.1,<6.9.0a0 + - openexr >=3.3.3,<3.4.0a0 + - qt6-main >=6.8.3,<6.9.0a0 + constrains: + - imath<3.2.0a0 license: Apache-2.0 license_family: Apache - size: 30885212 - timestamp: 1735820959304 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopencv-4.10.0-headless_py311he0e9b4f_15.conda - sha256: e133b05539a1455fb727a16c89332014e1bb2210157c94a631e77474d14eaf5f - md5: ff429dd10e5201e18b6143227ede5539 + size: 30858684 + timestamp: 1744985747230 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopencv-4.11.0-headless_py311hdd1b4fe_5.conda + sha256: bdea0f70f243fa3ec0286d8380454c7aca603a35c0575c168cb3c0e45166a5da + md5: 215ea3df23b7db7de9affd20e5fc860d depends: - _openmp_mutex >=4.5 - - ffmpeg >=7.1.0,<8.0a0 - - freetype >=2.12.1,<3.0a0 - - harfbuzz >=10.1.0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - jasper >=4.2.4,<5.0a0 - - libasprintf >=0.22.5,<1.0a0 + - ffmpeg >=7.1.1,<8.0a0 + - freetype >=2.13.3,<3.0a0 + - harfbuzz >=11.1.0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - jasper >=4.2.5,<5.0a0 + - libasprintf >=0.23.1,<1.0a0 + - libavif16 >=1.2.1,<2.0a0 - libcblas >=3.9.0,<4.0a0 - - libexpat >=2.6.4,<3.0a0 + - libexpat >=2.7.0,<3.0a0 - libgcc >=13 - - libgettextpo >=0.22.5,<1.0a0 - - libglib >=2.82.2,<3.0a0 - - libiconv >=1.17,<2.0a0 + - libgettextpo >=0.23.1,<1.0a0 + - libglib >=2.84.1,<3.0a0 + - libiconv >=1.18,<2.0a0 - libjpeg-turbo >=3.0.0,<4.0a0 - liblapack >=3.9.0,<4.0a0 - liblapacke >=3.9.0,<4.0a0 - - libopenvino >=2024.6.0,<2024.6.1.0a0 - - libopenvino-arm-cpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 - - libpng >=1.6.44,<1.7.0a0 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-arm-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libprotobuf >=5.29.3,<5.29.4.0a0 - libstdcxx >=13 - libtiff >=4.7.0,<4.8.0a0 - libwebp-base >=1.5.0,<2.0a0 - libzlib >=1.3.1,<2.0a0 - numpy >=1.19,<3 - - openexr >=3.3.2,<3.4.0a0 + - openexr >=3.3.3,<3.4.0a0 - python >=3.11,<3.12.0a0 *_cpython + constrains: + - imath<3.2.0a0 license: Apache-2.0 license_family: Apache - size: 20136227 - timestamp: 1735823731192 -- conda: https://prefix.dev/conda-forge/osx-64/libopencv-4.10.0-headless_py311hfe71332_15.conda - sha256: ee6c1a5f7de4c3f2455aee0ecbd39a38da20d7a0541277388b58a2370b5a9403 - md5: 4982b6004988b800abfe1098119c8061 + size: 20075594 + timestamp: 1744986393723 +- conda: https://prefix.dev/conda-forge/osx-64/libopencv-4.11.0-headless_py311h31cfaaf_5.conda + sha256: 016f060358bb415005bf6d783ddf14765c114ae2aed3e8c02c0a4c2869476457 + md5: 5ff39c7392f24e7548ebbbe05470350f depends: - - __osx >=10.13 - - ffmpeg >=7.1.0,<8.0a0 - - freetype >=2.12.1,<3.0a0 - - harfbuzz >=10.1.0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - jasper >=4.2.4,<5.0a0 - - libasprintf >=0.22.5,<1.0a0 + - __osx >=10.14 + - ffmpeg >=7.1.1,<8.0a0 + - freetype >=2.13.3,<3.0a0 + - harfbuzz >=11.1.0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - jasper >=4.2.5,<5.0a0 + - libasprintf >=0.23.1,<1.0a0 + - libavif16 >=1.2.1,<2.0a0 - libcblas >=3.9.0,<4.0a0 - libcxx >=18 - - libexpat >=2.6.4,<3.0a0 - - libgettextpo >=0.22.5,<1.0a0 - - libglib >=2.82.2,<3.0a0 - - libiconv >=1.17,<2.0a0 - - libintl >=0.22.5,<1.0a0 + - libexpat >=2.7.0,<3.0a0 + - libgettextpo >=0.23.1,<1.0a0 + - libglib >=2.84.0,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.23.1,<1.0a0 - libjpeg-turbo >=3.0.0,<4.0a0 - liblapack >=3.9.0,<4.0a0 - liblapacke >=3.9.0,<4.0a0 - - libopenvino >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-intel-cpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 - - libpng >=1.6.44,<1.7.0a0 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libprotobuf >=5.29.3,<5.29.4.0a0 - libtiff >=4.7.0,<4.8.0a0 - libwebp-base >=1.5.0,<2.0a0 - libzlib >=1.3.1,<2.0a0 - numpy >=1.19,<3 - - openexr >=3.3.2,<3.4.0a0 + - openexr >=3.3.3,<3.4.0a0 + constrains: + - imath<3.2.0a0 license: Apache-2.0 license_family: Apache - size: 27328730 - timestamp: 1735820031884 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopencv-4.10.0-headless_py311h83e8daa_15.conda - sha256: e7946d6b9ffc345253b7f56689730657a4fce7aa9abcc596f1e64f7ecb66e009 - md5: f375f2758431e9abf7f97ceca59261fe + size: 27225307 + timestamp: 1744985709485 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopencv-4.11.0-headless_py311h756a469_5.conda + sha256: a4443498c3c01f228232a48a303fec2d5d9f30d052dc8f9576dba9da54ea116c + md5: 0824bba7f8d9ad5e76e1ee01c2c7339c depends: - __osx >=11.0 - - ffmpeg >=7.1.0,<8.0a0 - - freetype >=2.12.1,<3.0a0 - - harfbuzz >=10.1.0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - jasper >=4.2.4,<5.0a0 - - libasprintf >=0.22.5,<1.0a0 + - ffmpeg >=7.1.1,<8.0a0 + - freetype >=2.13.3,<3.0a0 + - harfbuzz >=11.1.0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - jasper >=4.2.5,<5.0a0 + - libasprintf >=0.23.1,<1.0a0 + - libavif16 >=1.2.1,<2.0a0 - libcblas >=3.9.0,<4.0a0 - libcxx >=18 - - libexpat >=2.6.4,<3.0a0 - - libgettextpo >=0.22.5,<1.0a0 - - libglib >=2.82.2,<3.0a0 - - libiconv >=1.17,<2.0a0 - - libintl >=0.22.5,<1.0a0 + - libexpat >=2.7.0,<3.0a0 + - libgettextpo >=0.23.1,<1.0a0 + - libglib >=2.84.0,<3.0a0 + - libiconv >=1.18,<2.0a0 + - libintl >=0.23.1,<1.0a0 - libjpeg-turbo >=3.0.0,<4.0a0 - liblapack >=3.9.0,<4.0a0 - liblapacke >=3.9.0,<4.0a0 - - libopenvino >=2024.6.0,<2024.6.1.0a0 - - libopenvino-arm-cpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 - - libpng >=1.6.44,<1.7.0a0 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-arm-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libprotobuf >=5.29.3,<5.29.4.0a0 - libtiff >=4.7.0,<4.8.0a0 - libwebp-base >=1.5.0,<2.0a0 - libzlib >=1.3.1,<2.0a0 - numpy >=1.19,<3 - - openexr >=3.3.2,<3.4.0a0 + - openexr >=3.3.3,<3.4.0a0 - python >=3.11,<3.12.0a0 *_cpython + constrains: + - imath<3.2.0a0 license: Apache-2.0 license_family: Apache - size: 21941853 - timestamp: 1735824312283 -- conda: https://prefix.dev/conda-forge/win-64/libopencv-4.10.0-qt6_py311h9ec153a_615.conda - sha256: b33ca1fcf544a290ca6d72247e26e60b438e988d2e7c9dea1079de44c698b263 - md5: 7f77fa4b3ae5a4c9383b44033699c2ae + size: 16915495 + timestamp: 1744985757014 +- conda: https://prefix.dev/conda-forge/win-64/libopencv-4.11.0-qt6_py311hc940b1f_605.conda + sha256: f924976838b6ea49bb549cad88632952a1985bc138f16412008754002ce23883 + md5: d3fff4a6ff21524fc862550fbeeaba94 depends: - - ffmpeg >=7.1.0,<8.0a0 - - freetype >=2.12.1,<3.0a0 - - harfbuzz >=10.1.0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - jasper >=4.2.4,<5.0a0 + - ffmpeg >=7.1.1,<8.0a0 + - freetype >=2.13.3,<3.0a0 + - harfbuzz >=11.1.0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - jasper >=4.2.5,<5.0a0 - libasprintf >=0.22.5,<1.0a0 + - libavif16 >=1.2.1,<2.0a0 - libcblas >=3.9.0,<4.0a0 - - libexpat >=2.6.4,<3.0a0 + - libexpat >=2.7.0,<3.0a0 - libgettextpo >=0.22.5,<1.0a0 - - libglib >=2.82.2,<3.0a0 + - libglib >=2.84.1,<3.0a0 - libintl >=0.22.5,<1.0a0 - libjpeg-turbo >=3.0.0,<4.0a0 - liblapack >=3.9.0,<4.0a0 - liblapacke >=3.9.0,<4.0a0 - - libopenvino >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-batch-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-auto-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-hetero-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-intel-cpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-intel-gpu-plugin >=2024.6.0,<2024.6.1.0a0 - - libopenvino-ir-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-onnx-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-paddle-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-pytorch-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-frontend >=2024.6.0,<2024.6.1.0a0 - - libopenvino-tensorflow-lite-frontend >=2024.6.0,<2024.6.1.0a0 - - libpng >=1.6.44,<1.7.0a0 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-batch-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-auto-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-hetero-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-cpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-intel-gpu-plugin >=2025.0.0,<2025.0.1.0a0 + - libopenvino-ir-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-onnx-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-paddle-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-pytorch-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-frontend >=2025.0.0,<2025.0.1.0a0 + - libopenvino-tensorflow-lite-frontend >=2025.0.0,<2025.0.1.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libprotobuf >=5.29.3,<5.29.4.0a0 - libtiff >=4.7.0,<4.8.0a0 - libwebp-base >=1.5.0,<2.0a0 - libzlib >=1.3.1,<2.0a0 - numpy >=1.19,<3 - - openexr >=3.3.2,<3.4.0a0 - - qt6-main >=6.8.1,<6.9.0a0 + - openexr >=3.3.3,<3.4.0a0 + - qt6-main >=6.8.3,<6.9.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 + constrains: + - imath<3.2.0a0 license: Apache-2.0 license_family: Apache - size: 33150194 - timestamp: 1735826274328 + size: 32852911 + timestamp: 1744987040091 - conda: https://prefix.dev/conda-forge/linux-64/libopengl-1.7.0-ha4b6fd6_2.conda sha256: 215086c108d80349e96051ad14131b751d17af3ed2cb5a34edd62fa89bfe8ead md5: 7df50d44d4a14d6c31a2c54f2cd92157 @@ -9687,647 +9873,647 @@ packages: license: LicenseRef-libglvnd size: 56355 timestamp: 1731331001820 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-2024.6.0-hac27bb2_3.conda - sha256: a02009d753d2f6af953f6bb19d8c34acf5666baf7bab77b2535c9afbe8635d9b - md5: 10ee0153cd8ddc6bd2ec147e7fd56280 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-2025.0.0-hdc3f47d_3.conda + sha256: fe0e184141a3563d4c97134a1b7a60c66302cf0e2692d15d49c41382cdf61648 + md5: 3a88245058baa9d18ef4ea6df18ff63e depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - libstdcxx >=13 - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - size: 5508929 - timestamp: 1735814214700 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-2024.6.0-hd7d4d4f_3.conda - sha256: 6bedd3d1a40e6ccf11afaec3135ef317ef5ca7a3222d88c61cb10e6930802de6 - md5: 78156088e69307eced6ae1e902b8ef02 + size: 5698665 + timestamp: 1742046924817 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-2025.0.0-hd63d6c0_3.conda + sha256: d4e774708a073ba4a240fd2bc0f524d8b6d9fe68a24074bc7affe70c7fd9d8b7 + md5: 97277bfdfcc0dd59c0a74869fb31269a depends: - libgcc >=13 - libstdcxx >=13 - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - size: 5011501 - timestamp: 1735808415300 -- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-2024.6.0-h5e1b680_3.conda - sha256: 5491ed4a2a93a0cff1301b2e5a9f0cbafdf4912ba9bd3228aee939f13e5bd828 - md5: 318e4f80b31f94b3fe99526a80291e17 + size: 5068959 + timestamp: 1742043279584 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-2025.0.0-h84fdd48_3.conda + sha256: 27d9fa801f0e9213c7182108f1cc08dc3a8c304b4b6ac1426d5d3a616e9a6225 + md5: cb70b84de8b891111f7ae8960e033891 depends: - - __osx >=10.15 + - __osx >=10.14 - libcxx >=18 - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - size: 4349521 - timestamp: 1735808738890 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-2024.6.0-h97facdf_3.conda - sha256: 17c148924803e266387c5d6ba4e32bbb194b4a7a65cfbaec589002558f18b1fe - md5: 62dca883e9b7839ffb017f7cf7aa61a9 + size: 4463685 + timestamp: 1742043110262 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-2025.0.0-h3f17238_3.conda + sha256: 4c67becaa1cd8b5970d80daa85c637eac06adb52a060515e1179ebd1fae4c7b5 + md5: 219301646c04667a4513b1d5a360e903 depends: - __osx >=11.0 - libcxx >=18 - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - size: 4034356 - timestamp: 1735809774149 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-2024.6.0-hfe1841e_3.conda - sha256: a831e4b909da15583ba20d52417fed37c4b5d41997667912cbdf08bb32350a23 - md5: 0f56cd5241542ce5017f594a8e46820a + size: 4139593 + timestamp: 1742042352150 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-2025.0.0-hb1d9b14_3.conda + sha256: 739f3570dd9ff9261d3e8a1f965a81cb379d8cdaac1b3727284f01c3af3bae7b + md5: 265783a27455cbfd3634778d9b931ed7 depends: - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 3386917 - timestamp: 1735816454962 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2024.6.0-hd7d4d4f_3.conda - sha256: 1c308d35e56694c46015338ace3c88ed78666cd75c5418f9877049697fe10cbb - md5: d7182cda6c78e0b093c3d4399fe7f10d + size: 3506414 + timestamp: 1742051437791 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-arm-cpu-plugin-2025.0.0-hd63d6c0_3.conda + sha256: 1097bf9bfff8a9dade6b2a033b107aafed75d0dd2b4430a1754d8b89cb12f47d + md5: 387c0cad41f9e9cf330da02e9f7d4898 depends: - libgcc >=13 - - libopenvino 2024.6.0 hd7d4d4f_3 + - libopenvino 2025.0.0 hd63d6c0_3 - libstdcxx >=13 - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - size: 8538037 - timestamp: 1735808433766 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-arm-cpu-plugin-2024.6.0-h97facdf_3.conda - sha256: a0e865d7f7f3b1fdcba499df6371899c379e669170077cc607d5262dcfa979b7 - md5: 3da816efbc5b9e5dc222904b2a9d152d + size: 8652305 + timestamp: 1742043300690 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-arm-cpu-plugin-2025.0.0-h3f17238_3.conda + sha256: b4ac5b146e0289e7f244ac0fcd8abdae0b6d657143f12e92e13289e781caeaf4 + md5: ec1181e2f403d8ef1056ffbd147dfc85 depends: - __osx >=11.0 - libcxx >=18 - - libopenvino 2024.6.0 h97facdf_3 - - pugixml >=1.14,<1.15.0a0 + - libopenvino 2025.0.0 h3f17238_3 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - size: 7525786 - timestamp: 1735809807343 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-batch-plugin-2024.6.0-h4d9b6c2_3.conda - sha256: 0a75925ebbc7354a4f32d76e1aad16ec5712308f1c1c26fda58be5879b633292 - md5: 9a3ade47ab98a071c3538246cfc138c2 + size: 7894815 + timestamp: 1742042384778 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-batch-plugin-2025.0.0-h4d9b6c2_3.conda + sha256: b4c61b3e8fc4d7090a94e3fd3936faf347eea07cac993417153dd99bd293c08d + md5: 2e349bafc75b212879bf70ef80e0d08c depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 + - libopenvino 2025.0.0 hdc3f47d_3 - libstdcxx >=13 - tbb >=2021.13.0 - size: 114567 - timestamp: 1735814240969 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2024.6.0-hf15766e_3.conda - sha256: cf1deba2d031073c103e64dbb1e28c879ffaac215449c759519acaa4f4419420 - md5: 14efee7f38d46b3611570d58392e5cca + size: 111823 + timestamp: 1742046947746 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-batch-plugin-2025.0.0-hf15766e_3.conda + sha256: 829a98d1dd0859fec5536419c9d7b1b99a612a91c629f173f6e9f05003e85749 + md5: 70a507a1ce0a13f5562953631deec2fd depends: - libgcc >=13 - - libopenvino 2024.6.0 hd7d4d4f_3 + - libopenvino 2025.0.0 hd63d6c0_3 - libstdcxx >=13 - tbb >=2021.13.0 - size: 110548 - timestamp: 1735808460688 -- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-batch-plugin-2024.6.0-h4464f52_3.conda - sha256: 1a3db5d17a1faf03e20fcae95f5dab0a68a39896ceb0f220fe025dc0a9bbca13 - md5: 7b26b49cc8a303288930842cbf53371a + size: 109653 + timestamp: 1742043331132 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-batch-plugin-2025.0.0-hf8d533f_3.conda + sha256: afa35cd8948757c51b78a29e9bbbe0944cb8992dd8a87e6cbabf98728795bfb4 + md5: 481dfc09226ac2058a1722508723f090 depends: - - __osx >=10.15 + - __osx >=10.14 - libcxx >=18 - - libopenvino 2024.6.0 h5e1b680_3 + - libopenvino 2025.0.0 h84fdd48_3 - tbb >=2021.13.0 - size: 108568 - timestamp: 1735808768636 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-batch-plugin-2024.6.0-h7f72211_3.conda - sha256: f3280e43dcfa3df63fc65c351a92404478b9c866ccb3bcb8c2e1b4b1d1044344 - md5: 19269d66687d35707ef257186ee3aa39 + size: 102790 + timestamp: 1742043137886 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-batch-plugin-2025.0.0-h7f72211_3.conda + sha256: d8992f2b7b59cb9d0962fd05f5c10c29e60196663fc956f51d96f11350f2ec82 + md5: 0f17b7f12b079ff6e30b01d9e0009c7d depends: - __osx >=11.0 - libcxx >=18 - - libopenvino 2024.6.0 h97facdf_3 + - libopenvino 2025.0.0 h3f17238_3 - tbb >=2021.13.0 - size: 107453 - timestamp: 1735809859441 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-batch-plugin-2024.6.0-h04f32e0_3.conda - sha256: 63715b97564cd851fc1fde5e156c959a611657874af4a86a3537237fa661322f - md5: 0c1766a1f813acf576fde1dc257f16eb + size: 104368 + timestamp: 1742042427434 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-batch-plugin-2025.0.0-h04f32e0_3.conda + sha256: 0f0527efc2028f30022031e8815ccd281d693e1a3cf7634935dbe14804cccb62 + md5: 22588deedffa127c26d96f85412c1b73 depends: - - libopenvino 2024.6.0 hfe1841e_3 + - libopenvino 2025.0.0 hb1d9b14_3 - tbb >=2021.13.0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 101730 - timestamp: 1735816507685 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-plugin-2024.6.0-h4d9b6c2_3.conda - sha256: 74165827852afe50ae3625c832bc9dc9d8bd6f0d5ed4aa5bc4b6917974f0f553 - md5: 246bbf8c6e41b5ea85b2af7c2c51bda5 + size: 101175 + timestamp: 1742051488732 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-auto-plugin-2025.0.0-h4d9b6c2_3.conda + sha256: ae72903e0718897b85aae2110d9bb1bfa9490b0496522e3735b65c771e7da0ea + md5: 74d074a3ac7af3378e16bfa6ff9cba30 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 + - libopenvino 2025.0.0 hdc3f47d_3 - libstdcxx >=13 - tbb >=2021.13.0 - size: 241845 - timestamp: 1735814255900 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-plugin-2024.6.0-hf15766e_3.conda - sha256: 0f764ac8885210b0b63412df763a66f7c5970c25db0b273d8f5e6989bf1e36bc - md5: 3a05f26435bfc6e224704b127eddee86 + size: 238973 + timestamp: 1742046961091 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-auto-plugin-2025.0.0-hf15766e_3.conda + sha256: af207ffa6f3a8a150620ca32c2996e941645689596ad2dc923115cef3ac1706d + md5: 8399dc85b397fdb3770613c4b10f5a49 depends: - libgcc >=13 - - libopenvino 2024.6.0 hd7d4d4f_3 + - libopenvino 2025.0.0 hd63d6c0_3 - libstdcxx >=13 - tbb >=2021.13.0 - size: 227993 - timestamp: 1735808471393 -- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-plugin-2024.6.0-h4464f52_3.conda - sha256: cb39d6fdc281071e15b12ba3517620fa1a3314d8e73b780d1372150cc67058e0 - md5: e05440d009f16007193c7818622b2a8c + size: 227098 + timestamp: 1742043342711 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-auto-plugin-2025.0.0-hf8d533f_3.conda + sha256: daf428d2605a53d0d2f2f861a2e5c1a226ea26efe9e33ea747f35338cff6e573 + md5: 6a873ebce5c8c7336194dd6c6b48da2d depends: - - __osx >=10.15 + - __osx >=10.14 - libcxx >=18 - - libopenvino 2024.6.0 h5e1b680_3 + - libopenvino 2025.0.0 h84fdd48_3 - tbb >=2021.13.0 - size: 217550 - timestamp: 1735808794380 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-plugin-2024.6.0-h7f72211_3.conda - sha256: 5103606717f943e924626217b055f9f6c54fa83d4c742394fe922c8749b605a2 - md5: 280df638cf92ad3198817d425a888a88 + size: 207431 + timestamp: 1742043158493 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-auto-plugin-2025.0.0-h7f72211_3.conda + sha256: c1be7b09754b5a87fb1af78d5cafe172a5dff139c64cb0d40a13c9b78e9961e8 + md5: f9d8eaf30b47202e9307aa787ad4c39f depends: - __osx >=11.0 - libcxx >=18 - - libopenvino 2024.6.0 h97facdf_3 + - libopenvino 2025.0.0 h3f17238_3 - tbb >=2021.13.0 - size: 212834 - timestamp: 1735809891578 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-plugin-2024.6.0-h04f32e0_3.conda - sha256: e277e9796af3d9ab5fe92bf53120b33098b6e4f0f563db1b7027112214c95b7f - md5: af0f3ac9c1cf732b87e4bab821807d3d + size: 208634 + timestamp: 1742042444660 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-auto-plugin-2025.0.0-h04f32e0_3.conda + sha256: 5cf3594d461aa98c0fe3d4840e1e8694ad51fff0e6868ace9d1813b6ed1d210b + md5: 05f7ca19e5ed62a1394ea8de850b3e39 depends: - - libopenvino 2024.6.0 hfe1841e_3 + - libopenvino 2025.0.0 hb1d9b14_3 - tbb >=2021.13.0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 196097 - timestamp: 1735816552617 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-hetero-plugin-2024.6.0-h3f63f65_3.conda - sha256: 4e9e37541e03e271f58810dde57903bc913821925bbcc718769da59fa27e3e0f - md5: 0027d0eb0b43817adf23778721fc2156 + size: 193549 + timestamp: 1742051539379 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-hetero-plugin-2025.0.0-h981d57b_3.conda + sha256: b2c9ef97907f9c77817290bfb898897b476cc7ccf1737f0b1254437dda3d4903 + md5: 21f7997d68220d7356c1f80dc500bfad depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 + - libopenvino 2025.0.0 hdc3f47d_3 - libstdcxx >=13 - - pugixml >=1.14,<1.15.0a0 - size: 201005 - timestamp: 1735814274360 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2024.6.0-h6ef32b0_3.conda - sha256: 8cc99e4a686f95aa4a5889e770550d808b1a5eca58d863b1dd4ec373b8061aea - md5: 2f0ea6d15ae11af0aee404198451afde + - pugixml >=1.15,<1.16.0a0 + size: 196083 + timestamp: 1742046974588 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-hetero-plugin-2025.0.0-ha8e9e04_3.conda + sha256: 69c8e3a060a10900f6d35df32264f48560e153fe370c6a2ee7fcff1b969629bb + md5: e12bff64bfd2ef9e282383afb3cccc13 depends: - libgcc >=13 - - libopenvino 2024.6.0 hd7d4d4f_3 + - libopenvino 2025.0.0 hd63d6c0_3 - libstdcxx >=13 - - pugixml >=1.14,<1.15.0a0 - size: 186851 - timestamp: 1735808482448 -- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-hetero-plugin-2024.6.0-h3435d20_3.conda - sha256: 417ae8824c961d913863fe8d9bf9685afc57418edd0213dd876c38a1de72eb46 - md5: b074d38a88f4f3be85dd48009aebf57d + - pugixml >=1.15,<1.16.0a0 + size: 187049 + timestamp: 1742043354710 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-hetero-plugin-2025.0.0-h035ecc0_3.conda + sha256: 635fd6117abb398e8ce52a433aca2e5f7108fbba074f9b9043621672a1a114c1 + md5: 572e1e73f768291c88a19b7bb1d15eee depends: - - __osx >=10.15 + - __osx >=10.14 - libcxx >=18 - - libopenvino 2024.6.0 h5e1b680_3 - - pugixml >=1.14,<1.15.0a0 - size: 185085 - timestamp: 1735808817869 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-hetero-plugin-2024.6.0-hd3d436d_3.conda - sha256: 614416be981f064d76b3b02e15f47a72e2d900530545c188cad409b16b387806 - md5: ad92cb923e315d4377222d922e3a76be + - libopenvino 2025.0.0 h84fdd48_3 + - pugixml >=1.15,<1.16.0a0 + size: 178271 + timestamp: 1742043179399 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-hetero-plugin-2025.0.0-h718ad69_3.conda + sha256: a6d29d0f288efcd453bfe31376f6d3fc6a908a3003c1dc02756a5dcc777c3566 + md5: 2d422a8742205a0b963126e074ac61df depends: - __osx >=11.0 - libcxx >=18 - - libopenvino 2024.6.0 h97facdf_3 - - pugixml >=1.14,<1.15.0a0 - size: 178488 - timestamp: 1735809914243 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-hetero-plugin-2024.6.0-h372dad0_3.conda - sha256: 4e48f9694939909bc948adb4ae33c17ca3a63adec838c7e44760a4ff491ebd0e - md5: d06d0a58b05c4404a42bf3ce6d2d2994 + - libopenvino 2025.0.0 h3f17238_3 + - pugixml >=1.15,<1.16.0a0 + size: 174158 + timestamp: 1742042462067 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-hetero-plugin-2025.0.0-hb61b842_3.conda + sha256: f7f5ae68081da308644103775d38ea194347ea8b55363e8ff49da9fd2fd5dd47 + md5: 8bf1a9d0e65f2a58e0be816cb801c4db depends: - - libopenvino 2024.6.0 hfe1841e_3 - - pugixml >=1.14,<1.15.0a0 + - libopenvino 2025.0.0 hb1d9b14_3 + - pugixml >=1.15,<1.16.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 162073 - timestamp: 1735816608419 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2024.6.0-hac27bb2_3.conda - sha256: 984bed886951bc785228c09085f5574b8a57367dce3a907f755b9852e7054213 - md5: 59f8fb2a68214d2a672b245392ffd640 + size: 160679 + timestamp: 1742051582498 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-cpu-plugin-2025.0.0-hdc3f47d_3.conda + sha256: 9f6613906386a0c679c9a683ca97a5a2070111d9ada4f115c1806d921313e32d + md5: 3385f38d15c7aebcc3b453e4d8dfb0fe depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 + - libopenvino 2025.0.0 hdc3f47d_3 - libstdcxx >=13 - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - size: 12330259 - timestamp: 1735814289764 -- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2024.6.0-h5e1b680_3.conda - sha256: 7952a70f86eb2f7aba4bac8bea6fdfb581e8c9c4faf8b598e84cf4f519b8dc85 - md5: a90ff7c25aac35bd96110290ea49a0ba + size: 12419296 + timestamp: 1742046988488 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-intel-cpu-plugin-2025.0.0-h84fdd48_3.conda + sha256: df3a75cb5ffdcf7463fb17ce77a8c97f888ddbbe9f3a87d863291f52a4722139 + md5: 097ead7a86bb61891e0f8a040e0499c5 depends: - - __osx >=10.15 + - __osx >=10.14 - libcxx >=18 - - libopenvino 2024.6.0 h5e1b680_3 - - pugixml >=1.14,<1.15.0a0 + - libopenvino 2025.0.0 h84fdd48_3 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - size: 11347887 - timestamp: 1735808854637 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-cpu-plugin-2024.6.0-hfe1841e_3.conda - sha256: a9ddb142dec23ac9bdd3404765df68d86e53604f3cf2f66f8247e82d79583bfb - md5: 4f2303ae7299f6f893fe9a96b7f2ae30 + size: 11667694 + timestamp: 1742043215871 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-cpu-plugin-2025.0.0-hb1d9b14_3.conda + sha256: bca7df94a926c80494385f257a9d81f3e8e783386e5c8a75a28eb49cb2ddba90 + md5: f96e1b760d32fa17c4dc12978eace146 depends: - - libopenvino 2024.6.0 hfe1841e_3 - - pugixml >=1.14,<1.15.0a0 + - libopenvino 2025.0.0 hb1d9b14_3 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 8175991 - timestamp: 1735816655106 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2024.6.0-hac27bb2_3.conda - sha256: 6eb5dc3c2a423d2e4096acbe87857a726b2551bbfa2d4bd047ec8078030de8ba - md5: 236616fe93f334dd180e0bf188fde7bd + size: 8739469 + timestamp: 1742051626525 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-gpu-plugin-2025.0.0-hdc3f47d_3.conda + sha256: 8430f87a3cc65d3ef1ec8f9bfa990f6fb635601ad34ce08d70209099ff03f39c + md5: f2d50e234edd843d9d695f7da34c7e96 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 + - libopenvino 2025.0.0 hdc3f47d_3 - libstdcxx >=13 - ocl-icd >=2.3.2,<3.0a0 - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - size: 9521880 - timestamp: 1735814336571 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-gpu-plugin-2024.6.0-hfe1841e_3.conda - sha256: 2f6b011a725ab9f20661e49054bf49baa469cc371587f53e158343fcec8b723b - md5: d0c94a62911436fccf1d212f133f7259 + size: 10119530 + timestamp: 1742047030958 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-intel-gpu-plugin-2025.0.0-hb1d9b14_3.conda + sha256: f8ebf9385485357dcfef937e574852568a3240b0e190f19417802692fccb7062 + md5: 37278c95cc7faa59a80b3886606e25c5 depends: - khronos-opencl-icd-loader >=2024.10.24 - - libopenvino 2024.6.0 hfe1841e_3 - - pugixml >=1.14,<1.15.0a0 + - libopenvino 2025.0.0 hb1d9b14_3 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 7706462 - timestamp: 1735816724542 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-npu-plugin-2024.6.0-hac27bb2_3.conda - sha256: 620dc78a00bce9586c360d565b3a051a696b075f2a350660c2bd1378ded01252 - md5: 61466e67e4cf21d832dfebc8e9368ecd + size: 8117490 + timestamp: 1742051694854 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-intel-npu-plugin-2025.0.0-hdc3f47d_3.conda + sha256: 37ec3e304bf14d2d7b7781c4b6a8b3a54deae90bc7275f6ae160589ef219bcef + md5: f632cad865436394eebd41c3afa2cda3 depends: - __glibc >=2.17,<3.0.a0 - - level-zero >=1.19.2,<2.0a0 + - level-zero >=1.21.2,<2.0a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 + - libopenvino 2025.0.0 hdc3f47d_3 - libstdcxx >=13 - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - tbb >=2021.13.0 - size: 983378 - timestamp: 1735814373420 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-ir-frontend-2024.6.0-h3f63f65_3.conda - sha256: b21dfc69dcbfaa13e230a01f0e35f5ca487f7c5e55c4b121cd212622c9ee71b0 - md5: b977bfc0c549a779f812a655a8a69e6b + size: 1092544 + timestamp: 1742047065987 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-ir-frontend-2025.0.0-h981d57b_3.conda + sha256: 268716b5c1858c1fddd51d63c7fcd7f3544ef04f221371ab6a2f9c579ca001e4 + md5: 94f25cc6fe70f507897abb8e61603023 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 + - libopenvino 2025.0.0 hdc3f47d_3 - libstdcxx >=13 - - pugixml >=1.14,<1.15.0a0 - size: 210368 - timestamp: 1735814388484 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-ir-frontend-2024.6.0-h6ef32b0_3.conda - sha256: 585a435ecae4105d829782228c7a96a53d275dd10e540d0b0b5a8bdef5ca5a31 - md5: 80cae97a85295571eb86325d849d23aa + - pugixml >=1.15,<1.16.0a0 + size: 206013 + timestamp: 1742047080381 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-ir-frontend-2025.0.0-ha8e9e04_3.conda + sha256: 3901f6922cfbac4de21622445d8a201862f46f502c95251bd2cba11eb67bf839 + md5: a3edb4a113c03ec3a3db3f89c7dabfb8 depends: - libgcc >=13 - - libopenvino 2024.6.0 hd7d4d4f_3 + - libopenvino 2025.0.0 hd63d6c0_3 - libstdcxx >=13 - - pugixml >=1.14,<1.15.0a0 - size: 198160 - timestamp: 1735808494463 -- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-ir-frontend-2024.6.0-h3435d20_3.conda - sha256: 55ff112bf7f71c81a2a49426587539c071f23a2f3ad732274b40c36d1a2aff2d - md5: 0f15e576764630027251ecf707c60002 + - pugixml >=1.15,<1.16.0a0 + size: 197852 + timestamp: 1742043366449 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-ir-frontend-2025.0.0-h035ecc0_3.conda + sha256: 94c43d988546758aae81b93f1d9e9bcb269ff4c1190499025dab4cc302415fb2 + md5: 0bccce16efd9db8c232ff495df54119a depends: - - __osx >=10.15 + - __osx >=10.14 - libcxx >=18 - - libopenvino 2024.6.0 h5e1b680_3 - - pugixml >=1.14,<1.15.0a0 - size: 186851 - timestamp: 1735808925544 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-ir-frontend-2024.6.0-hd3d436d_3.conda - sha256: d9d99fc8c26d99a09f0bf15d07d1a706d30a23a24def3a03330850222ac56567 - md5: 999c4fc9d0ed1ecc7c11f368eb5fced2 + - libopenvino 2025.0.0 h84fdd48_3 + - pugixml >=1.15,<1.16.0a0 + size: 178710 + timestamp: 1742043273967 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-ir-frontend-2025.0.0-h718ad69_3.conda + sha256: aae478ba876d0dc68688107d36773c912b236f89e9c969eed9d8d2257218d228 + md5: 373636c589b6c9e516cb1c5dee40e5a2 depends: - __osx >=11.0 - libcxx >=18 - - libopenvino 2024.6.0 h97facdf_3 - - pugixml >=1.14,<1.15.0a0 - size: 176569 - timestamp: 1735809938944 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-ir-frontend-2024.6.0-h372dad0_3.conda - sha256: 0deb10aa5b43578d4bf0baa12f2fa4560a78c8ad43f90d6401ce81e32549a35e - md5: af26d18bc8ab78b8d229aae1d52058ef + - libopenvino 2025.0.0 h3f17238_3 + - pugixml >=1.15,<1.16.0a0 + size: 174794 + timestamp: 1742042478544 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-ir-frontend-2025.0.0-hb61b842_3.conda + sha256: 93f38e934e3359f50052c3507bc35207de1f9b266283e38012662d962be1a3e8 + md5: c15601d32d79f5fc25341b97b1d66593 depends: - - libopenvino 2024.6.0 hfe1841e_3 - - pugixml >=1.14,<1.15.0a0 + - libopenvino 2025.0.0 hb1d9b14_3 + - pugixml >=1.15,<1.16.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 161486 - timestamp: 1735816789251 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-onnx-frontend-2024.6.0-h6363af5_3.conda - sha256: 28e984c3f1d45986dbd8ca6d2ba0eebc0e4baf994f34ad886e452e266ff2a822 - md5: be7d67d6363a63df1661aead734cb5cc + size: 159598 + timestamp: 1742051755104 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-onnx-frontend-2025.0.0-h0e684df_3.conda + sha256: 5ce66c01f6ea365a497f488e8eecea8930b6a016f9809db7f33b8a1ebbe5644e + md5: 7cd3272c3171c1d43ed1c2b3d6795269 depends: - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino 2025.0.0 hdc3f47d_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 - libstdcxx >=13 - size: 1626413 - timestamp: 1735814403492 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2024.6.0-h2c07a0f_3.conda - sha256: 4b8242f76acbbd0e0d04ecba9187286587857b1d66bd0ddfedac73c7bdd79e28 - md5: ed0b4eb0ad89e8cc5df77f9131c31e22 + size: 1668681 + timestamp: 1742047094228 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-onnx-frontend-2025.0.0-hd8f0270_3.conda + sha256: 72097ef28507f41ff371cb10540261b7cbd433a9932a9c42d073f4d56335bfbe + md5: cf46d328c1b254d16d18128999d31d61 depends: - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libgcc >=13 - - libopenvino 2024.6.0 hd7d4d4f_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino 2025.0.0 hd63d6c0_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 - libstdcxx >=13 - size: 1460762 - timestamp: 1735808505663 -- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-onnx-frontend-2024.6.0-h40b3fd7_3.conda - sha256: 77dfd2d358671ac8899eb4b1264df695b609b2c1957b43bdba0a9a31269b0b0a - md5: 2c93697536a568dcfbbdc40a0bfed0f5 + size: 1466096 + timestamp: 1742043380485 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-onnx-frontend-2025.0.0-h84dae0a_3.conda + sha256: bf41faf2e7b785caf79fc41926ea88ac27919ecef2d0b8b71e9de873676aa004 + md5: cf9ff11a2688fa7ea110f38d7e11d5ba depends: - - __osx >=10.15 + - __osx >=10.14 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libcxx >=18 - - libopenvino 2024.6.0 h5e1b680_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 - size: 1330841 - timestamp: 1735808971253 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-onnx-frontend-2024.6.0-h76e6831_3.conda - sha256: b6259a5910c1cb093faf8bbbecff831783433212177c6a677f40c9307e94bdaf - md5: 4f9eef45e5bfd1da700b9400c9f70f63 + - libopenvino 2025.0.0 h84fdd48_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + size: 1327850 + timestamp: 1742043314276 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-onnx-frontend-2025.0.0-h1ae5b81_3.conda + sha256: fea1dcfd136637f75a2c3044a1ee8af3ac9ab0ca89e5b44a4896f73267821f7a + md5: b086f7f97f8e6e1d1398e2f8f3c763ff depends: - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libcxx >=18 - - libopenvino 2024.6.0 h97facdf_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 - size: 1274339 - timestamp: 1735809978819 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-onnx-frontend-2024.6.0-h6e6c283_3.conda - sha256: d091eb851d7c55018aa5e9e597b3bdb8210f5bf390027a412251155fa565ea5b - md5: 5c90e08745846c434c2260182160e762 + - libopenvino 2025.0.0 h3f17238_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + size: 1284556 + timestamp: 1742042510559 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-onnx-frontend-2025.0.0-hf9c6bd6_3.conda + sha256: 2afb3f8df012068b370efca994bd224bfa75e1228e8e7cea646e59f585d8c59a + md5: 75e66013b7b10ee5abbcfd988c97c81e depends: - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 - - libopenvino 2024.6.0 hfe1841e_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libabseil >=20250127.0,<20250128.0a0 + - libopenvino 2025.0.0 hb1d9b14_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 1026682 - timestamp: 1735816837456 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-paddle-frontend-2024.6.0-h6363af5_3.conda - sha256: 576fd23a3df95a54cc59c7e74496d02ae2d2cefc61d3495e98f1e70968fe41f7 - md5: cf097d1aa9f828ac24d9ec686411f459 + size: 1037137 + timestamp: 1742051801359 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-paddle-frontend-2025.0.0-h0e684df_3.conda + sha256: 826507ac4ea2d496bdbec02dd9e3c8ed2eab253daa9d7f9119a8bc05c516d026 + md5: 5b66cbc9965b429922b8e69cd4e464d7 depends: - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino 2025.0.0 hdc3f47d_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 - libstdcxx >=13 - size: 660629 - timestamp: 1735814420357 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2024.6.0-h2c07a0f_3.conda - sha256: 8308c2a6f102694534993d0f4f8c81e81d430881aa733d0f88c34eb0c5333829 - md5: f72a0067bfea95a7157c039d34f5d32e + size: 690226 + timestamp: 1742047109935 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-paddle-frontend-2025.0.0-hd8f0270_3.conda + sha256: b7666e63f7399e94599829b9b8901e1e6541d9d4d0c156359eb24846a434bcb7 + md5: 9d6043d6fae5342567173f949af80e4f depends: - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libgcc >=13 - - libopenvino 2024.6.0 hd7d4d4f_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino 2025.0.0 hd63d6c0_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 - libstdcxx >=13 - size: 612643 - timestamp: 1735808518394 -- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-paddle-frontend-2024.6.0-h40b3fd7_3.conda - sha256: 92d2d974bf8b5a9d45fa1b836c9d63157b9f7628da15f1c7c4b2c46cc03a281c - md5: 58226f42590260e0327f25104090d793 + size: 625570 + timestamp: 1742043394408 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-paddle-frontend-2025.0.0-h84dae0a_3.conda + sha256: 192888a5b4deec3a9cbed0d0f1ef2378906f85d5dfe2fcc246fa99b74f692e56 + md5: 5a3c6228f38606f6261a8ac127c8e031 depends: - - __osx >=10.15 + - __osx >=10.14 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libcxx >=18 - - libopenvino 2024.6.0 h5e1b680_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 - size: 439613 - timestamp: 1735809002644 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-paddle-frontend-2024.6.0-h76e6831_3.conda - sha256: f1ecf9ef58201c217086e3c99567a475b330e1fe1412b756d90468457dadefbf - md5: 47466a871ae17d609100c6a30ab8bfeb + - libopenvino 2025.0.0 h84fdd48_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + size: 437667 + timestamp: 1742043341683 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-paddle-frontend-2025.0.0-h1ae5b81_3.conda + sha256: efe7c26d5aa4c1728ff1ed3a4f6c2b506bc0593d306feefac067ab5497a6fa4b + md5: 734f72cda4d91f730a20832650ab9981 depends: - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libcxx >=18 - - libopenvino 2024.6.0 h97facdf_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 - size: 429395 - timestamp: 1735810014213 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-paddle-frontend-2024.6.0-h6e6c283_3.conda - sha256: 0bdda5736fb811ee294305815d6d4d804f4354519b4a3deeca3f2ed1823301af - md5: 4351acead8a0e9a6eea31a1855f44a32 + - libopenvino 2025.0.0 h3f17238_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 + size: 431639 + timestamp: 1742042534121 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-paddle-frontend-2025.0.0-hf9c6bd6_3.conda + sha256: aef47b7f002ca930eb97165c3bc14146a57daf642107a1030aaf0055dab88c3a + md5: a43f8073e100f8630df3b151c2fd9362 depends: - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 - - libopenvino 2024.6.0 hfe1841e_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libabseil >=20250127.0,<20250128.0a0 + - libopenvino 2025.0.0 hb1d9b14_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 424301 - timestamp: 1735816887982 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-pytorch-frontend-2024.6.0-h5888daf_3.conda - sha256: a1572462e7799a24f03f959c9445c57118c8903ffc832676f333fee95ab06bfc - md5: 8bd1132dd3bcc6017ca73efa06422299 + size: 427623 + timestamp: 1742051849619 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-pytorch-frontend-2025.0.0-h5888daf_3.conda + sha256: fda07e70a23aac329be68ae488b790f548d687807f0e47bae7129df34f0adb5b + md5: a6ece96eff7f60b2559ba699156b0edf depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 + - libopenvino 2025.0.0 hdc3f47d_3 - libstdcxx >=13 - size: 1110234 - timestamp: 1735814437441 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2024.6.0-h5ad3122_3.conda - sha256: 354ec9ff86f2df982ee0a19443dec05e7c6a1799103c2cd0f784cbc348258d5c - md5: 59156010db667b418889987b45821306 + size: 1123885 + timestamp: 1742047125703 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-pytorch-frontend-2025.0.0-h5ad3122_3.conda + sha256: 174f630bdc3ffc6728fc83aefef15cf9a9a9fcd00712ce809df7a3b5c37dae99 + md5: d740a43f206611d7ab09488a6cb2f8eb depends: - libgcc >=13 - - libopenvino 2024.6.0 hd7d4d4f_3 + - libopenvino 2025.0.0 hd63d6c0_3 - libstdcxx >=13 - size: 1027323 - timestamp: 1735808529687 -- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-pytorch-frontend-2024.6.0-hbcac03e_3.conda - sha256: 39c568f1ba53aa2c9f9f1eeee059dfc4ddf162a2c7ea6d777ae9037eec8c7787 - md5: 0f451648bdad986680d10fe0107c02b9 + size: 1016003 + timestamp: 1742043406713 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-pytorch-frontend-2025.0.0-hb639f4d_3.conda + sha256: 3bb981b7bfe14e0f6d0c88f2db5018efc4964f324aa9813c01049996f657ea5b + md5: f21626e0a4616f64f156b13efca48bbf depends: - - __osx >=10.15 + - __osx >=10.14 - libcxx >=18 - - libopenvino 2024.6.0 h5e1b680_3 - size: 817661 - timestamp: 1735809036174 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-pytorch-frontend-2024.6.0-h286801f_3.conda - sha256: 51d7c0208ec19be686e92c912feb8f75d73d17b8d56f01052757ec948861b416 - md5: 3b259e7e34c53658748bdba62d923af3 + - libopenvino 2025.0.0 h84fdd48_3 + size: 810778 + timestamp: 1742043369877 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-pytorch-frontend-2025.0.0-h286801f_3.conda + sha256: 36f58b4bd2f3d3be8eb54ddf5f7e03dafce4e46f14f80191e75325c409d8c92d + md5: eabf9e1db9ab6498c0d8f2a1210a34d7 depends: - __osx >=11.0 - libcxx >=18 - - libopenvino 2024.6.0 h97facdf_3 - size: 794463 - timestamp: 1735810037589 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-pytorch-frontend-2024.6.0-he0c23c2_3.conda - sha256: 7d2cffcc03eb23cdb7676f5747621fe2a386f42d0b8fc6443f7361696f2b93dd - md5: 04ecc5110a625be12494384cbb2211bf + - libopenvino 2025.0.0 h3f17238_3 + size: 789148 + timestamp: 1742042551199 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-pytorch-frontend-2025.0.0-he0c23c2_3.conda + sha256: ec4f3a2f057302dc2d15b60a3fdec9e65d4a0415fcd1ca9bd9409631a9c9a47c + md5: eefe7c5981902b97678d900458e4248b depends: - - libopenvino 2024.6.0 hfe1841e_3 + - libopenvino 2025.0.0 hb1d9b14_3 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 696656 - timestamp: 1735816933473 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-frontend-2024.6.0-h630ec5c_3.conda - sha256: c8b26c22017b90945e69d3dd43bbfc1ee12e0b28a4a9fdd7d58e397531a73c39 - md5: c5681cdf084833631ed5633a4e1d42fc + size: 693193 + timestamp: 1742051893216 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-frontend-2025.0.0-h684f15b_3.conda + sha256: e02990fccd4676e362a026acff3d706b5839ebf6ae681d56a2903f62a63e03ef + md5: e1aeb108f4731db088782c8a20abf40a depends: - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino 2025.0.0 hdc3f47d_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 - libstdcxx >=13 - snappy >=1.2.1,<1.3.0a0 - size: 1314247 - timestamp: 1735814454031 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2024.6.0-h8231d02_3.conda - sha256: 671961c59db6acc79e91f8270290f5cb0d7d7ec58385da737e8afad55ee17f70 - md5: fd3268684d7b5b93ebcc169eeefd10da + size: 1313789 + timestamp: 1742047140816 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-frontend-2025.0.0-h33e842c_3.conda + sha256: 437fc934eaa6282258ac2dc3e58d276b208079ee2440264cd19b67a9b6ff6827 + md5: 9083c0e4a30698bdbab0598d964e4540 depends: - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libgcc >=13 - - libopenvino 2024.6.0 hd7d4d4f_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino 2025.0.0 hd63d6c0_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 - libstdcxx >=13 - snappy >=1.2.1,<1.3.0a0 - size: 1220609 - timestamp: 1735808542138 -- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-frontend-2024.6.0-hacd10b5_3.conda - sha256: 10388f9044fc4dbc0917ec051a5e5a78af1eac8be1fafbb251d48c3ed0200a95 - md5: 25efa940648f08f1c1bfc6e56e5af740 + size: 1204132 + timestamp: 1742043420133 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-frontend-2025.0.0-hbe29116_3.conda + sha256: 53e49d395756d2dcdb1e520582b843dab0e30b98e2c47c5debc7beb3c30a837f + md5: 09bc2445ef813cd2ca14f8c1e7e02fe1 depends: - - __osx >=10.15 + - __osx >=10.14 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libcxx >=18 - - libopenvino 2024.6.0 h5e1b680_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino 2025.0.0 h84fdd48_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 - snappy >=1.2.1,<1.3.0a0 - size: 998180 - timestamp: 1735809101490 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-frontend-2024.6.0-he275e1d_3.conda - sha256: 043cb1ef50c984123498d2d84dd6b41b7eba885b75024318115a9353a1b8b1f5 - md5: 045f90f2aa7c3add3198db9bdb8b291b + size: 982850 + timestamp: 1742043426796 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-frontend-2025.0.0-heb6e3e1_3.conda + sha256: d463cd39d3d9165d6a42341cb8d61237613dd8b7e16f74a0a7d9bd2de3a236bf + md5: b3d717c7190032e55234d4f728053248 depends: - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.0,<20250128.0a0 - libcxx >=18 - - libopenvino 2024.6.0 h97facdf_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libopenvino 2025.0.0 h3f17238_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 - snappy >=1.2.1,<1.3.0a0 - size: 958238 - timestamp: 1735810097527 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-frontend-2024.6.0-ha83d810_3.conda - sha256: d95a215784af0b1cb64f33ed562f30a85dbec113cf99492063f3f0837c8ea549 - md5: d33484b32bff992520a369c0bc1a5a90 + size: 945306 + timestamp: 1742042598581 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-frontend-2025.0.0-hd51e7bd_3.conda + sha256: 9fbefd6ff948c27528d52bf4d84e0d7e4e366b3f0de540e538d3204e4f6a88f3 + md5: dee8acb258065e4144ffee81a9e746ad depends: - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 - - libopenvino 2024.6.0 hfe1841e_3 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - libabseil >=20250127.0,<20250128.0a0 + - libopenvino 2025.0.0 hb1d9b14_3 + - libprotobuf >=5.29.3,<5.29.4.0a0 - snappy >=1.2.1,<1.3.0a0 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 895946 - timestamp: 1735816982590 -- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2024.6.0-h5888daf_3.conda - sha256: c22c2acedb95e9c1cacb06315e83ca8f9b76232085cab928b7c425085b17ade2 - md5: dfbbe82b7a068af10f55b40837e1b942 + size: 884926 + timestamp: 1742051940351 +- conda: https://prefix.dev/conda-forge/linux-64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5888daf_3.conda + sha256: 236569eb4d472d75412a3384c2aad92b006afed721feec23ca08730a25932da7 + md5: a6fe9c25b834988ac88651aff731dd31 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - libopenvino 2024.6.0 hac27bb2_3 + - libopenvino 2025.0.0 hdc3f47d_3 - libstdcxx >=13 - size: 489241 - timestamp: 1735814470194 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2024.6.0-h5ad3122_3.conda - sha256: 691e0f73ee120f686398e295b6b981cea7b357be6317d2955c9071ba05c8f179 - md5: 54c06cbd29d19434aac5040dcd42d567 + size: 488142 + timestamp: 1742047155790 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libopenvino-tensorflow-lite-frontend-2025.0.0-h5ad3122_3.conda + sha256: e1328d5e6ef41e112c1e79d06e2309b89da302806a5ec7b18cf7bfe47d321be6 + md5: bb1da88624792f47b7ac93ae0bb8206e depends: - libgcc >=13 - - libopenvino 2024.6.0 hd7d4d4f_3 + - libopenvino 2025.0.0 hd63d6c0_3 - libstdcxx >=13 - size: 451309 - timestamp: 1735808555431 -- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2024.6.0-hbcac03e_3.conda - sha256: 9078dbbe3b840ccbf2e4dbe61fac83c773dcf1ea672e0b93eb5f98131438ea42 - md5: dcab9679d1e02f2a0e2c7da61166c076 + size: 445050 + timestamp: 1742043433188 +- conda: https://prefix.dev/conda-forge/osx-64/libopenvino-tensorflow-lite-frontend-2025.0.0-hb639f4d_3.conda + sha256: d72e6710226fb3108db78eac9a0fb98024e4a337f9338db1c927c93e61e17c6e + md5: 5cab301d54af83bcb9f01db42c6ec804 depends: - - __osx >=10.15 + - __osx >=10.14 - libcxx >=18 - - libopenvino 2024.6.0 h5e1b680_3 - size: 385380 - timestamp: 1735809134950 -- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-lite-frontend-2024.6.0-h286801f_3.conda - sha256: defecfce7ba4c70e5dd96931c868d0328645c67275732684575fa03e8898fc9b - md5: 646db4cfc8ca604e411fe66756f47034 + - libopenvino 2025.0.0 h84fdd48_3 + size: 374976 + timestamp: 1742043459394 +- conda: https://prefix.dev/conda-forge/osx-arm64/libopenvino-tensorflow-lite-frontend-2025.0.0-h286801f_3.conda + sha256: d5d701d237db31b659154ee07534dc73c5cf08564fb7ee2b9407372c3f06ce24 + md5: 759a3781b101a619ac12e20723eda024 depends: - __osx >=11.0 - libcxx >=18 - - libopenvino 2024.6.0 h97facdf_3 - size: 388265 - timestamp: 1735810134888 -- conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-lite-frontend-2024.6.0-he0c23c2_3.conda - sha256: 991088b87dd5dc8475725dbe2e38da4acf440004cd181800c6a50b700eccec49 - md5: 5e37d666794de8aeb58d12534dacf383 + - libopenvino 2025.0.0 h3f17238_3 + size: 384569 + timestamp: 1742042618165 +- conda: https://prefix.dev/conda-forge/win-64/libopenvino-tensorflow-lite-frontend-2025.0.0-he0c23c2_3.conda + sha256: 55f7764ae0f7fce4b1b28f5fc9db963804f6c5612d162a689d375db8e37e54bd + md5: 392d4d2e9dc870aa63d2642448d8f3d9 depends: - - libopenvino 2024.6.0 hfe1841e_3 + - libopenvino 2025.0.0 hb1d9b14_3 - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 - size: 339694 - timestamp: 1735817028472 + size: 336816 + timestamp: 1742051984246 - conda: https://prefix.dev/conda-forge/linux-64/libopus-1.5.2-hd0c01bc_0.conda sha256: 786d43678d6d1dc5f88a6bad2d02830cfd5a0184e84a8caa45694049f0e3ea5f md5: b64523fb87ac6f87f0790f324ad43046 @@ -10495,73 +10681,73 @@ packages: license: PostgreSQL size: 2502508 timestamp: 1746744054052 -- conda: https://prefix.dev/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda - sha256: 51125ebb8b7152e4a4e69fd2398489c4ec8473195c27cde3cbdf1cb6d18c5493 - md5: d8703f1ffe5a06356f06467f1d0b9464 +- conda: https://prefix.dev/conda-forge/linux-64/libprotobuf-5.29.3-h7460b1f_2.conda + sha256: 674635c341a7838138a0698fc5704eab3b9a3a14f85e6f47a9d7568b8fa01a11 + md5: 25b96b519eb2ed19faeef1c12954e82b depends: - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 - - libgcc >=13 - - libstdcxx >=13 + - libabseil >=20250127.1,<20250128.0a0 + - libgcc >=14 + - libstdcxx >=14 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2960815 - timestamp: 1735577210663 -- conda: https://prefix.dev/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda - sha256: ecb69f2b1668e784b41ba667493be846662d5ef702bef64fb2e013bb1364cdc4 - md5: 68f807f7cc13951652bbe048253fd405 + size: 3475015 + timestamp: 1753801238063 +- conda: https://prefix.dev/conda-forge/linux-aarch64/libprotobuf-5.29.3-h9267e96_2.conda + sha256: 7be4115ef64df71774eb2e09a30a6a552d08bb35841c0395307965bf4f018a6b + md5: 467c4c27e67e484b8e60d5e44fad9160 depends: - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 - - libgcc >=13 - - libstdcxx >=13 + - libabseil >=20250127.1,<20250128.0a0 + - libgcc >=14 + - libstdcxx >=14 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2788074 - timestamp: 1735576315676 -- conda: https://prefix.dev/conda-forge/osx-64/libprotobuf-5.28.3-h6401091_1.conda - sha256: 7bd8467402040312cf1030d98427b6bdce9905e519a1979cd7aa5f0fb0902cad - md5: 5601e7ce099eb72741e9cd6413f42a07 + size: 3412146 + timestamp: 1753800967488 +- conda: https://prefix.dev/conda-forge/osx-64/libprotobuf-5.29.3-h14f6895_2.conda + sha256: c0b766c87a50098685f43d57424eebae35f1c4b812fc6d025cbb15a8c0a2800e + md5: 8abbe99f9b80602f94a801321ec06ace depends: - - __osx >=10.13 + - __osx >=10.14 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 - - libcxx >=18 + - libabseil >=20250127.1,<20250128.0a0 + - libcxx >=19 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2312598 - timestamp: 1735576514825 -- conda: https://prefix.dev/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda - sha256: f58a16b13ad53346903c833e266f83c3d770a43a432659b98710aed85ca885e7 - md5: bdbfea4cf45ae36652c6bbcc2e7ebe91 + size: 2694250 + timestamp: 1753800435072 +- conda: https://prefix.dev/conda-forge/osx-arm64/libprotobuf-5.29.3-h6c9c1dd_2.conda + sha256: 8c6350afed4c78fc5fbab85b8f00af084586176fd5f6e4340f66d2e239d028dc + md5: cb31a05af57f76e19766ef8b30b3b6d3 depends: - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 - - libcxx >=18 + - libabseil >=20250127.1,<20250128.0a0 + - libcxx >=19 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2271580 - timestamp: 1735576361997 -- conda: https://prefix.dev/conda-forge/win-64/libprotobuf-5.28.3-h8309712_1.conda - sha256: 78c1b917d50c0317579bd9a5714a6d544d69786fd3228a4201dc4e8710ef6348 - md5: 3be9f2fb7dce19d66d5cf1003a34b0e1 + size: 2637991 + timestamp: 1753800039682 +- conda: https://prefix.dev/conda-forge/win-64/libprotobuf-5.29.3-hd33f5f0_2.conda + sha256: f7e0361a5381a98d5c06fed675a064f3c40c9db45867af9482847bb798099d9e + md5: 0faeceb0375c86c2b6762962cac5a038 depends: - libabseil * cxx17* - - libabseil >=20240722.0,<20240723.0a0 + - libabseil >=20250127.1,<20250128.0a0 - libzlib >=1.3.1,<2.0a0 - ucrt >=10.0.20348.0 - - vc >=14.2,<15 - - vc14_runtime >=14.29.30139 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 license: BSD-3-Clause license_family: BSD - size: 6172959 - timestamp: 1735577517299 + size: 7029282 + timestamp: 1753801672011 - conda: https://prefix.dev/conda-forge/linux-64/libraw-0.21.4-h9969a89_0.conda sha256: 96bbd009b3d7f82e9af37e980af9285431ecd5c6f098a0f1afe0021d8d02b88a md5: e4fdd13a67d5b30459463e925b9e7e1f @@ -10923,20 +11109,16 @@ packages: license_family: GPL size: 29078 timestamp: 1750808974598 -- conda: https://prefix.dev/conda-forge/linux-64/libsystemd0-256.9-h2774228_0.conda - sha256: a93e45c12c2954942a994ff3ffc8b9a144261288032da834ed80a6210708ad49 - md5: 7b283ff97a87409a884bc11283855c17 +- conda: https://prefix.dev/conda-forge/linux-64/libsystemd0-257.10-hd0affe5_2.conda + sha256: b30c06f60f03c2cf101afeb3452f48f12a2553b4cb631c9460c8a8ccf0813ae5 + md5: b04e0a2163a72588a40cde1afd6f2d18 depends: - __glibc >=2.17,<3.0.a0 - - libcap >=2.71,<2.72.0a0 - - libgcc >=13 - - libgcrypt-lib >=1.11.0,<2.0a0 - - lz4-c >=1.9.3,<1.10.0a0 - - xz >=5.2.6,<6.0a0 - - zstd >=1.5.6,<1.6.0a0 + - libcap >=2.77,<2.78.0a0 + - libgcc >=14 license: LGPL-2.1-or-later - size: 410424 - timestamp: 1733312416327 + size: 491211 + timestamp: 1763011323224 - conda: https://prefix.dev/conda-forge/linux-aarch64/libsystemd0-257.7-h2bb824b_0.conda sha256: 35ecfc98c22d4f035b051fe72398206607d48944e7bd4f60431e63eb95538e0d md5: 63b49a2d12a1739f72be430c2ed58727 @@ -11096,16 +11278,16 @@ packages: license: HPND size: 979074 timestamp: 1747067408877 -- conda: https://prefix.dev/conda-forge/linux-64/libudev1-257.4-h9a4d06a_0.conda - sha256: 65ebc2185cdc008f8da92864e8063e60293c59134b11b13e4bc44fd6f6e04eec - md5: 8b87f46f586167c54b2d4c0fd4a72001 +- conda: https://prefix.dev/conda-forge/linux-64/libudev1-257.10-hd0affe5_2.conda + sha256: 751cf346f0f56cc9bfa43f7b5c9c30df2fcec8d84d164ac0cd74a27a3af79f30 + md5: 2f6b30acaa0d6e231d01166549108e2c depends: - __glibc >=2.17,<3.0.a0 - - libcap >=2.71,<2.72.0a0 - - libgcc >=13 + - libcap >=2.77,<2.78.0a0 + - libgcc >=14 license: LGPL-2.1-or-later - size: 143836 - timestamp: 1741612453664 + size: 144395 + timestamp: 1763011330153 - conda: https://prefix.dev/conda-forge/linux-aarch64/libudev1-257.7-h7b9e449_0.conda sha256: 8c9847a934e251479f343f0be3b771836cdccfcf132145bd2da34946acd01988 md5: d19d804623b40d7ab5f807c240b4caaf @@ -11866,16 +12048,17 @@ packages: license: BSD-3-Clause and MIT-CMU size: 1238616 timestamp: 1751022037147 -- conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f - md5: 318b08df404f9c9be5712aaa5a6f0bb0 +- conda: https://prefix.dev/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda + sha256: 47326f811392a5fd3055f0f773036c392d26fdb32e4d8e7a8197eed951489346 + md5: 9de5350a85c4a20c685259b889aa6393 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 license: BSD-2-Clause license_family: BSD - size: 143402 - timestamp: 1674727076728 + size: 167055 + timestamp: 1733741040117 - conda: https://prefix.dev/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda sha256: 67e55058d275beea76c1882399640c37b5be8be4eb39354c94b610928e9a0573 md5: 6654e411da94011e8fbe004eacb8fe11 @@ -11896,15 +12079,16 @@ packages: license_family: BSD size: 159500 timestamp: 1733741074747 -- conda: https://prefix.dev/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - sha256: fc343b8c82efe40819b986e29ba748366514e5ab94a1e1138df195af5f45fa24 - md5: 45505bec548634f7d05e02fb25262cb9 +- conda: https://prefix.dev/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda + sha256: 94d3e2a485dab8bdfdd4837880bde3dd0d701e2b97d6134b8806b7c8e69c8652 + md5: 01511afc6cc1909c5303cf31be17b44f depends: - - libcxx >=14.0.6 + - __osx >=11.0 + - libcxx >=18 license: BSD-2-Clause license_family: BSD - size: 141188 - timestamp: 1674727268278 + size: 148824 + timestamp: 1733741047892 - conda: https://prefix.dev/conda-forge/win-64/lz4-c-1.10.0-h2466b09_1.conda sha256: 632cf3bdaf7a7aeb846de310b6044d90917728c73c77f138f08aa9438fc4d6b5 md5: 0b69331897a92fac3d8923549d48d092 @@ -12580,6 +12764,14 @@ packages: license_family: BSD size: 6347 timestamp: 1732243385797 +- conda: https://prefix.dev/conda-forge/win-64/nsis-3.11-h9ead6bc_log_0.conda + sha256: cfc2385e759b3af12cdd9b1b765f8f8836e07c64c2adebb2476d217363e36ca7 + md5: 19b50839bf7e45a403d7919247fe6946 + track_features: + - nsis_log_enabled + license: zlib-acknowledgement AND bzip2-1.0.6 AND CPL-1.0 AND LGPL-2.1-or-later + size: 1501757 + timestamp: 1741518123127 - conda: https://prefix.dev/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda sha256: 3f4365e11b28e244c95ba8579942b0802761ba7bb31c026f50d1a9ea9c728149 md5: a502d7aad449a1206efb366d6a12c52d @@ -12915,71 +13107,71 @@ packages: license_family: APACHE size: 55411 timestamp: 1749853655608 -- conda: https://prefix.dev/conda-forge/linux-64/opencv-4.10.0-qt6_py311h216f146_615.conda - sha256: a2ac8935dc44703aaa68731826f8f8655ffc1982011e7e59dc2f87dd50eb94c7 - md5: beb49ed0fb3f144aaabcd3175d6ea39c +- conda: https://prefix.dev/conda-forge/linux-64/opencv-4.11.0-qt6_py311hc286bd8_605.conda + sha256: 379da6abe9fb95a2ddaa60c073c6c1807b7ff8f5bbbcb848d01477f92e74b177 + md5: 5cd25c5558db5d1de1fd372f676e12c9 depends: - - hdf5 >=1.14.4,<1.14.5.0a0 - - libopencv 4.10.0 qt6_py311h023d011_615 - - libprotobuf >=5.28.3,<5.28.4.0a0 - - py-opencv 4.10.0 qt6_py311hd8ed033_615 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libopencv 4.11.0 qt6_py311h178ae83_605 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - py-opencv 4.11.0 qt6_py311h934794e_605 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 26400 - timestamp: 1735821097218 -- conda: https://prefix.dev/conda-forge/linux-aarch64/opencv-4.10.0-headless_py311h91ebf2d_15.conda - sha256: 67ea64aede12679f7fc3a3fe9b8599683e97d710fe3e8a44d7339c59b23c53b5 - md5: a8cda53c0e69eac234a8a3bc12973b1a + size: 29050 + timestamp: 1744985912331 +- conda: https://prefix.dev/conda-forge/linux-aarch64/opencv-4.11.0-headless_py311h3291592_5.conda + sha256: 034beb652c5fc0bc0a8e7106d4305a90dc4c100fa327a800a2efd735d09dbd23 + md5: c6a7d23f7e9452ee82353a038bbc7b09 depends: - - hdf5 >=1.14.4,<1.14.5.0a0 - - libopencv 4.10.0 headless_py311he0e9b4f_15 - - libprotobuf >=5.28.3,<5.28.4.0a0 - - py-opencv 4.10.0 headless_py311h36726d0_15 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libopencv 4.11.0 headless_py311hdd1b4fe_5 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - py-opencv 4.11.0 headless_py311h97b2e0c_5 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 26570 - timestamp: 1735823805994 -- conda: https://prefix.dev/conda-forge/osx-64/opencv-4.10.0-headless_py311h735d82c_15.conda - sha256: 933ecdd9b82f85eaa4897fd7b044d00089106f05d439504e4803fcf20bc7af40 - md5: 64d9ffaf25faae235001d3c996b67be1 + size: 29133 + timestamp: 1744986485515 +- conda: https://prefix.dev/conda-forge/osx-64/opencv-4.11.0-headless_py311h3536bda_5.conda + sha256: 998a01d649b7d1379344a6b9a5ac077d702e82e00b4e025d0c7e033dd617bee5 + md5: dd3b2fea285839f35b6af2fe42644a61 depends: - - hdf5 >=1.14.4,<1.14.5.0a0 - - libopencv 4.10.0 headless_py311hfe71332_15 - - libprotobuf >=5.28.3,<5.28.4.0a0 - - py-opencv 4.10.0 headless_py311h9a37508_15 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libopencv 4.11.0 headless_py311h31cfaaf_5 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - py-opencv 4.11.0 headless_py311hcd52236_5 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 26642 - timestamp: 1735820112079 -- conda: https://prefix.dev/conda-forge/osx-arm64/opencv-4.10.0-headless_py311hcb0fb6c_15.conda - sha256: 3ec5d8cc740491f2cd7e5933dc8d8e3414403f971887404a0d9a0118174c4ffa - md5: 4aa567808c56d7a2737ded3f8cf622cd + size: 29271 + timestamp: 1744985826646 +- conda: https://prefix.dev/conda-forge/osx-arm64/opencv-4.11.0-headless_py311h62ba8ec_5.conda + sha256: 327f549998716ff84d741a310eabb02a3414e7746bca95242418da94fa92f736 + md5: 45edcb26af0e189fb376c07b56d704fa depends: - - hdf5 >=1.14.4,<1.14.5.0a0 - - libopencv 4.10.0 headless_py311h83e8daa_15 - - libprotobuf >=5.28.3,<5.28.4.0a0 - - py-opencv 4.10.0 headless_py311ha58826d_15 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libopencv 4.11.0 headless_py311h756a469_5 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - py-opencv 4.11.0 headless_py311h5ce6bc0_5 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 26706 - timestamp: 1735824401841 -- conda: https://prefix.dev/conda-forge/win-64/opencv-4.10.0-qt6_py311hee0cb61_615.conda - sha256: 10c796d98e37f2b4f07922045865833a5a6595847ca0f7bd6e6739f97699bd6b - md5: 682c32a97377729494fac2cddb5e0144 + size: 29149 + timestamp: 1744985832356 +- conda: https://prefix.dev/conda-forge/win-64/opencv-4.11.0-qt6_py311h1822dc9_605.conda + sha256: 8c7f51f2eb9e0860c98df474aec2be0e843a5ebc2591ef4d755814724ddee2ec + md5: 39cde486070956e4e8972deb8ed0b0da depends: - - hdf5 >=1.14.4,<1.14.5.0a0 - - libopencv 4.10.0 qt6_py311h9ec153a_615 - - libprotobuf >=5.28.3,<5.28.4.0a0 - - py-opencv 4.10.0 qt6_py311h957eb32_615 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libopencv 4.11.0 qt6_py311hc940b1f_605 + - libprotobuf >=5.29.3,<5.29.4.0a0 + - py-opencv 4.11.0 qt6_py311h9756b35_605 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 26660 - timestamp: 1735826432952 + size: 29298 + timestamp: 1744987175340 - conda: https://prefix.dev/conda-forge/linux-64/openexr-3.3.5-h09fa569_0.conda sha256: db6bac8013542227eda2153b7473b10faef11fd2bae57591d1f729993109e152 md5: f46ae82586acba0872546bd79261fafc @@ -13045,47 +13237,47 @@ packages: license: BSD-3-Clause size: 1060265 timestamp: 1753614985511 -- conda: https://prefix.dev/conda-forge/linux-64/openh264-2.5.0-hf92e6e3_0.conda - sha256: dedda20c58aec3d8f9c12e3660225608b93a257a21e0da703fdd814789291519 - md5: d1b18a73fc3cfd0de9c7e786d2febb8f +- conda: https://prefix.dev/conda-forge/linux-64/openh264-2.6.0-hc22cd8d_0.conda + sha256: 3f231f2747a37a58471c82a9a8a80d92b7fece9f3fce10901a5ac888ce00b747 + md5: b28cf020fd2dead0ca6d113608683842 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - libstdcxx >=13 license: BSD-2-Clause license_family: BSD - size: 727504 - timestamp: 1731068122274 -- conda: https://prefix.dev/conda-forge/linux-aarch64/openh264-2.5.0-h6c5ec6d_0.conda - sha256: 1e9623c4cb34d1f8b43884c629cb61ddbe8dfbdf03f6043ec9a772c12b6867ed - md5: d9407eab893d3bbf706d8ede547ae639 + size: 731471 + timestamp: 1739400677213 +- conda: https://prefix.dev/conda-forge/linux-aarch64/openh264-2.6.0-h0564a2a_0.conda + sha256: 3b7a519e3b7d7721a0536f6cba7f1909b878c71962ee67f02242958314748341 + md5: 0abed5d78c07a64e85c54f705ba14d30 depends: - libgcc >=13 - libstdcxx >=13 license: BSD-2-Clause license_family: BSD - size: 785332 - timestamp: 1731068180758 -- conda: https://prefix.dev/conda-forge/osx-64/openh264-2.5.0-hdfcf091_0.conda - sha256: 521aac4f5dfb36bbaa6b9fd17aeb3dfabff30a555e3c493d8d91db98056d69c8 - md5: 402f09a0168dcebd162f5e8b0e89c997 + size: 774512 + timestamp: 1739400731652 +- conda: https://prefix.dev/conda-forge/osx-64/openh264-2.6.0-h4883158_0.conda + sha256: a6d734ddbfed9b6b972e7564f5d5eeaab9db2ba128ef92677abd11d36192ff2f + md5: 774f56cba369e2286e4922c8f143694a depends: - __osx >=10.13 - libcxx >=18 license: BSD-2-Clause license_family: BSD - size: 657866 - timestamp: 1731068138921 -- conda: https://prefix.dev/conda-forge/osx-arm64/openh264-2.5.0-h774163f_0.conda - sha256: d8a72fd9a72e4a01b614485fbeca32c59cdc9a9f6ca8a344f0bb81e6e8f84f6e - md5: d30a8420d9e45cf160bbe731c9d0a1be + size: 660864 + timestamp: 1739400822452 +- conda: https://prefix.dev/conda-forge/osx-arm64/openh264-2.6.0-hb5b2745_0.conda + sha256: fbea05722a8e8abfb41c989e2cec7ba6597eabe27cb6b88ff0b6443a5abb9069 + md5: 6ff0890a94972aca7cc7f8f8ef1ff142 depends: - __osx >=11.0 - libcxx >=18 license: BSD-2-Clause license_family: BSD - size: 599874 - timestamp: 1731068229253 + size: 601538 + timestamp: 1739400923874 - conda: https://prefix.dev/conda-forge/win-64/openh264-2.6.0-hb17fa0b_0.conda sha256: 914702d9a64325ff3afb072c8bc0f8cbea3f19955a8395a8c190e45604f83c76 md5: ad4cac6ceb9e4c8e01802e3f15e87bb2 @@ -14223,55 +14415,58 @@ packages: license_family: MIT size: 9389 timestamp: 1726802555076 -- conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.14-h59595ed_0.conda - sha256: ea5f2d593177318f6b19af05018c953f41124cbb3bf21f9fdedfdb6ac42913ae - md5: 2c97dd90633508b422c11bd3018206ab +- conda: https://prefix.dev/conda-forge/linux-64/pugixml-1.15-h3f63f65_0.conda + sha256: 23c98a5000356e173568dc5c5770b53393879f946f3ace716bbdefac2a8b23d2 + md5: b11a4c6bf6f6f44e5e143f759ffa2087 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 114871 - timestamp: 1696182708943 -- conda: https://prefix.dev/conda-forge/linux-aarch64/pugixml-1.14-h2f0025b_0.conda - sha256: 4f37f0a94bb465157e66f1a38ac1843f223db72b80c5e6a87ff354219ee86037 - md5: 9af93a191056b12e841b7d32f1b01b1c + size: 118488 + timestamp: 1736601364156 +- conda: https://prefix.dev/conda-forge/linux-aarch64/pugixml-1.15-h6ef32b0_0.conda + sha256: adc17205a87e064508d809fe5542b7cf49f9b9a458418f8448e2fc895fcd04f3 + md5: 53e14f45d38558aa2b9a15b07416e472 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 110831 - timestamp: 1696182637281 -- conda: https://prefix.dev/conda-forge/osx-64/pugixml-1.14-he965462_0.conda - sha256: 8ba30eb9ead058a19a472bb8e795ab408c629b0b84fc5bb7b6899e7429d5e625 - md5: 92f9416f48c010bf04c34c9841c84b09 + size: 113424 + timestamp: 1737355438448 +- conda: https://prefix.dev/conda-forge/osx-64/pugixml-1.15-h46091d4_0.conda + sha256: d22fd205d2db21c835e233c30e91e348735e18418c35327b0406d2d917e39a90 + md5: 7a1ad34efe728093c36a76afeaf30586 depends: - - libcxx >=15.0.7 + - __osx >=10.13 + - libcxx >=18 license: MIT license_family: MIT - size: 94175 - timestamp: 1696182807580 -- conda: https://prefix.dev/conda-forge/osx-arm64/pugixml-1.14-h13dd4ca_0.conda - sha256: 0bfeac4f1a374da9ff0a322344cdab577d397d6a0a0e5591f08cb7b491926825 - md5: 4de774bb04e03af9704ec1a2618c636c + size: 97559 + timestamp: 1736601483485 +- conda: https://prefix.dev/conda-forge/osx-arm64/pugixml-1.15-hd3d436d_0.conda + sha256: 5ad8d036040b095f85d23c70624d3e5e1e4c00bc5cea97831542f2dcae294ec9 + md5: b9a4004e46de7aeb005304a13b35cb94 depends: - - libcxx >=15.0.7 + - __osx >=11.0 + - libcxx >=18 license: MIT license_family: MIT - size: 92472 - timestamp: 1696182843052 -- conda: https://prefix.dev/conda-forge/win-64/pugixml-1.14-h63175ca_0.conda - sha256: 68a5cb9a7560b2ce0d72ccebc7f6623e13ca66a67f80feb1094a75199bd1a50c - md5: 6794ab7a1f26ebfe0452297eba029d4f + size: 91283 + timestamp: 1736601509593 +- conda: https://prefix.dev/conda-forge/win-64/pugixml-1.15-h372dad0_0.conda + sha256: 97b34ed73b6f559fcf5e706d4c8435923ba95cfed478d3fd50b475f94f60dc6e + md5: cadea4c6edb512e979edbf793bf979ac depends: - ucrt >=10.0.20348.0 - vc >=14.2,<15 - vc14_runtime >=14.29.30139 license: MIT license_family: MIT - size: 111324 - timestamp: 1696182979614 + size: 113967 + timestamp: 1736601565527 - conda: https://prefix.dev/conda-forge/linux-64/pulseaudio-client-17.0-hb77b528_0.conda sha256: b27c0c8671bd95c205a61aeeac807c095b60bc76eb5021863f919036d7a964fc md5: 07f45f1be1c25345faddb8db0de8039b @@ -14304,76 +14499,76 @@ packages: license_family: LGPL size: 763814 timestamp: 1742507234837 -- conda: https://prefix.dev/conda-forge/linux-64/py-opencv-4.10.0-qt6_py311hd8ed033_615.conda - sha256: d177635ae2ad261897287b4df22b33f74d5e5a237dbb1694b7194bbc90eb8297 - md5: ee9021c99d5b7125056d690229927d52 +- conda: https://prefix.dev/conda-forge/linux-64/py-opencv-4.11.0-qt6_py311h934794e_605.conda + sha256: a3a223f682781ecd58f849a974bec09e0c460b663fc39ac585dcec343dfe0556 + md5: ce16a20b91b48d863d2da60c6bf27157 depends: - - hdf5 >=1.14.4,<1.14.5.0a0 - - libopencv 4.10.0 qt6_py311h023d011_615 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libopencv 4.11.0 qt6_py311h178ae83_605 + - libprotobuf >=5.29.3,<5.29.4.0a0 - numpy >=1.19,<3 - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 1153223 - timestamp: 1735821082266 -- conda: https://prefix.dev/conda-forge/linux-aarch64/py-opencv-4.10.0-headless_py311h36726d0_15.conda - sha256: 6316992565009a5cf84d6ebdaf8e0d44e8635aaf048dfa693dba4a764fef4915 - md5: 83084d9a97cec676b028bb6e9e10e05d + size: 1155857 + timestamp: 1744985901876 +- conda: https://prefix.dev/conda-forge/linux-aarch64/py-opencv-4.11.0-headless_py311h97b2e0c_5.conda + sha256: ae3e5253506f96e5c98ebca6eb76fb785d1507a4fbbe666755161b2c6fa9e433 + md5: a855fee8b0fc98c3d4eb93f20da35fcf depends: - - hdf5 >=1.14.4,<1.14.5.0a0 - - libopencv 4.10.0 headless_py311he0e9b4f_15 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libopencv 4.11.0 headless_py311hdd1b4fe_5 + - libprotobuf >=5.29.3,<5.29.4.0a0 - numpy >=1.19,<3 - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 1153119 - timestamp: 1735823797160 -- conda: https://prefix.dev/conda-forge/osx-64/py-opencv-4.10.0-headless_py311h9a37508_15.conda - sha256: 4b699dfe090a15c9bfd2c4b1df0902a7ac32247b80fa0bb4e76c7374a11714ce - md5: acf424bc241099be42a187a0f68de8d5 + size: 1155855 + timestamp: 1744986476406 +- conda: https://prefix.dev/conda-forge/osx-64/py-opencv-4.11.0-headless_py311hcd52236_5.conda + sha256: 74459a74e790f34383719a092c224d54050fba7c1358e703a00107e204eb9011 + md5: 0aaee98929de2d25b7989dc7a7cb1e4c depends: - - hdf5 >=1.14.4,<1.14.5.0a0 - - libopencv 4.10.0 headless_py311hfe71332_15 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libopencv 4.11.0 headless_py311h31cfaaf_5 + - libprotobuf >=5.29.3,<5.29.4.0a0 - numpy >=1.19,<3 - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 1153030 - timestamp: 1735820095489 -- conda: https://prefix.dev/conda-forge/osx-arm64/py-opencv-4.10.0-headless_py311ha58826d_15.conda - sha256: 46eb15b966448d7adc547d469fb04af4f346ef993c50f4aa8fcec9cf25686594 - md5: ddb660527f98c2d5c90aa0420bd88534 + size: 1155828 + timestamp: 1744985807985 +- conda: https://prefix.dev/conda-forge/osx-arm64/py-opencv-4.11.0-headless_py311h5ce6bc0_5.conda + sha256: ec496b6fe56d277cb9335451351d1b60254eed884d1f2f43eef3858e5aa4b0e6 + md5: d1362879cdd2c93859a3f88c84d0b545 depends: - - hdf5 >=1.14.4,<1.14.5.0a0 - - libopencv 4.10.0 headless_py311h83e8daa_15 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libopencv 4.11.0 headless_py311h756a469_5 + - libprotobuf >=5.29.3,<5.29.4.0a0 - numpy >=1.19,<3 - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 1153349 - timestamp: 1735824381118 -- conda: https://prefix.dev/conda-forge/win-64/py-opencv-4.10.0-qt6_py311h957eb32_615.conda - sha256: df386dffdb179192c364d7a6a187d0222285e1447d1c38d8f67a0e1c460eef99 - md5: 6fb673a00e2f62ee7bc15796c1037f47 + size: 1156189 + timestamp: 1744985810633 +- conda: https://prefix.dev/conda-forge/win-64/py-opencv-4.11.0-qt6_py311h9756b35_605.conda + sha256: 0f9e5e03bfbb541602146f5ee71064c94123a67bf3ae25cb90389e401ea032bb + md5: c2a951ad060374d4690b47f64653efa6 depends: - - hdf5 >=1.14.4,<1.14.5.0a0 - - libopencv 4.10.0 qt6_py311h9ec153a_615 - - libprotobuf >=5.28.3,<5.28.4.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - libopencv 4.11.0 qt6_py311hc940b1f_605 + - libprotobuf >=5.29.3,<5.29.4.0a0 - numpy >=1.19,<3 - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 1153244 - timestamp: 1735826405290 + size: 1156400 + timestamp: 1744987155047 - conda: https://prefix.dev/conda-forge/noarch/pycollada-0.9.2-pyhd8ed1ab_0.conda sha256: 9c8a9fdd4e7ed6f21d89bb11c8afd9788bf386356c2213b844256de35ec6e820 md5: abf90cd2cdac17282454c77ec7f641ff @@ -14395,6 +14590,85 @@ packages: license_family: BSD size: 110100 timestamp: 1733195786147 +- conda: https://prefix.dev/conda-forge/osx-64/pyobjc-core-12.0-py311h1540d37_0.conda + sha256: c305432f39b0768f4b279a89ecffacb3ba17c66c29553578377b62428bd90862 + md5: 4957707252cca3ea0d97b77fc5087f75 + depends: + - __osx >=10.13 + - libffi >=3.4.6,<3.5.0a0 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - setuptools + license: MIT + license_family: MIT + size: 488427 + timestamp: 1761037887495 +- conda: https://prefix.dev/conda-forge/osx-arm64/pyobjc-core-12.0-py311h0cf0eac_0.conda + sha256: 2fcf1c5b398defc5bd7db714bd58f5ed2e0d496377b8969ad124b8b398ef7036 + md5: b04a8378b3ad0ea32eca39fb946fda9b + depends: + - __osx >=11.0 + - libffi >=3.4.6,<3.5.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - setuptools + license: MIT + license_family: MIT + size: 479977 + timestamp: 1761038383438 +- conda: https://prefix.dev/conda-forge/osx-64/pyobjc-framework-cocoa-12.0-py311h5977a1f_0.conda + sha256: d42c1c1d534696a7776bc2aa64ba7d322213ac6f939b7b59122db5d431996ff9 + md5: 27e23a947d423fd4ebada336251687a4 + depends: + - __osx >=10.13 + - libffi >=3.4.6,<3.5.0a0 + - pyobjc-core 12.0.* + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 379716 + timestamp: 1761043029028 +- conda: https://prefix.dev/conda-forge/osx-arm64/pyobjc-framework-cocoa-12.0-py311h71564db_0.conda + sha256: 118ba19be891905a6a530010b986833e37a3ce50e46bb60b5b8052e5d8c5a9b4 + md5: cf7023b9c79a10c450db8bff7f61f247 + depends: + - __osx >=11.0 + - libffi >=3.4.6,<3.5.0a0 + - pyobjc-core 12.0.* + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 382221 + timestamp: 1761043129808 +- conda: https://prefix.dev/conda-forge/osx-64/pyobjc-framework-quartz-12.0-py311hdb0ec4c_0.conda + sha256: 851eba8fe9ca40b5b1cb341b72f8059cd0487ee599db3da49d6325e7667728d3 + md5: 99e3e0cee3b0beeba74bb9b2b924ffff + depends: + - python + - pyobjc-core >=12.0 + - pyobjc-framework-cocoa >=12.0 + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 159463 + timestamp: 1761252150815 +- conda: https://prefix.dev/conda-forge/osx-arm64/pyobjc-framework-quartz-12.0-py311hf339f9d_0.conda + sha256: 5a347e2b1756dee387b51910ac1efc5140ff791c0853aa69f980dc46185f6818 + md5: a54aba5a7ba375f9130effe821a7d890 + depends: + - python + - pyobjc-core >=12.0 + - pyobjc-framework-cocoa >=12.0 + - python 3.11.* *_cpython + - python_abi 3.11.* *_cp311 + license: MIT + license_family: MIT + size: 184078 + timestamp: 1761252095977 - conda: https://prefix.dev/conda-forge/noarch/pyparsing-3.2.3-pyhd8ed1ab_1.conda sha256: b92afb79b52fcf395fd220b29e0dd3297610f2059afac45298d44e00fcbf23b6 md5: 513d3c262ee49b54a8fec85c5bc99764 @@ -15147,6 +15421,62 @@ packages: license_family: MIT size: 153477 timestamp: 1742820803681 +- conda: https://prefix.dev/conda-forge/linux-64/rav1e-0.7.1-h8fae777_3.conda + sha256: 6e5e704c1c21f820d760e56082b276deaf2b53cf9b751772761c3088a365f6f4 + md5: 2c42649888aac645608191ffdc80d13a + depends: + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + constrains: + - __glibc >=2.17 + license: BSD-2-Clause + license_family: BSD + size: 5176669 + timestamp: 1746622023242 +- conda: https://prefix.dev/conda-forge/linux-aarch64/rav1e-0.7.1-ha3529ed_3.conda + sha256: f1631eb0be7391b0f470fdd7c902741551eb00381efd52b234ceadfccf34588b + md5: 0a6e034273782e6e863d46f1d2a5078b + depends: + - libgcc >=13 + constrains: + - __glibc >=2.17 + license: BSD-2-Clause + license_family: BSD + size: 4822159 + timestamp: 1746621943955 +- conda: https://prefix.dev/conda-forge/osx-64/rav1e-0.7.1-h371c88c_3.conda + sha256: d86b9631d6237f5a62957f9461d321d9bd2fef0807fb60de823b8dea2028501b + md5: 30e2344bbe29f60bb535ec0bfff31008 + depends: + - __osx >=10.13 + constrains: + - __osx >=10.13 + license: BSD-2-Clause + license_family: BSD + size: 1093718 + timestamp: 1746622590144 +- conda: https://prefix.dev/conda-forge/osx-arm64/rav1e-0.7.1-h0716509_3.conda + sha256: 65f862b2b31ef2b557990a82015cbd41e5a66041c2f79b4451dd14b4595d4c04 + md5: 7b37f30516100b86ea522350c8cab44c + depends: + - __osx >=11.0 + constrains: + - __osx >=11.0 + license: BSD-2-Clause + license_family: BSD + size: 856271 + timestamp: 1746622200646 +- conda: https://prefix.dev/conda-forge/win-64/rav1e-0.7.1-ha073cba_3.conda + sha256: d19a58b882a0387c7c8efbfce4e67a0df4b19d8da6cf6cec3011b6079e5bc743 + md5: 3bd3626822633688691ed41d661c2b2e + depends: + - ucrt >=10.0.20348.0 + - vc >=14.2,<15 + - vc14_runtime >=14.29.30139 + license: BSD-2-Clause + license_family: BSD + size: 4122383 + timestamp: 1746622805379 - conda: https://prefix.dev/conda-forge/linux-64/readline-8.2-h8c095d6_2.conda sha256: 2d6d0c026902561ed77cd646b5021aef2d4db22e57a5b0178dfc669231e06d2c md5: 283b96675859b20a825f8fa30f311446 @@ -15481,6 +15811,75 @@ packages: license_family: MIT size: 748788 timestamp: 1748804951958 +- conda: https://prefix.dev/conda-forge/linux-64/shapely-2.1.2-py311h8a92878_2.conda + sha256: f94a6b098158f74c14452c9ab7d2f7bd16fdf74645c3b1cdc784df29031ce34c + md5: b37c338ff0f69883188c9b3b127be059 + depends: + - __glibc >=2.17,<3.0.a0 + - geos >=3.14.1,<3.14.2.0a0 + - libgcc >=14 + - numpy >=1.23,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 647441 + timestamp: 1762523749992 +- conda: https://prefix.dev/conda-forge/linux-aarch64/shapely-2.1.2-py311hb862c81_2.conda + sha256: fc985e83a3e9bd3ebe70d971c9eb2c144b29114be7066d6ffbe81fafe837a9a4 + md5: 1890553fe06373d364beb0959d8b2446 + depends: + - geos >=3.14.1,<3.14.2.0a0 + - libgcc >=14 + - numpy >=1.23,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 647894 + timestamp: 1762524837080 +- conda: https://prefix.dev/conda-forge/osx-64/shapely-2.1.2-py311hda9c9d0_2.conda + sha256: 93bddb0e658b9a3bfb4120e08a9e27c73e49a8d7838b5f13d84bcf7637bd88d9 + md5: ddd7abb52933288e74874b28c5d53ab5 + depends: + - __osx >=10.13 + - geos >=3.14.1,<3.14.2.0a0 + - numpy >=1.23,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 618170 + timestamp: 1762523855191 +- conda: https://prefix.dev/conda-forge/osx-arm64/shapely-2.1.2-py311hd4fb369_2.conda + sha256: d3e42d424dfed3d8aed1260cd50a855999d04707c371a93e5c5ccbbaa23e5958 + md5: 254f47aa45148e698c9bca05cbb52473 + depends: + - __osx >=11.0 + - geos >=3.14.1,<3.14.2.0a0 + - numpy >=1.23,<3 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + license: BSD-3-Clause + license_family: BSD + size: 611088 + timestamp: 1762524188575 +- conda: https://prefix.dev/conda-forge/win-64/shapely-2.1.2-py311h362461e_2.conda + sha256: ec35fa644af33ee0ccacad05c62e57ddac8a010ce201da3d1dc78295710fd916 + md5: fe3ffdb05c2c887a7423ed5d320fd300 + depends: + - geos >=3.14.1,<3.14.2.0a0 + - numpy >=1.23,<3 + - python >=3.11,<3.12.0a0 + - python_abi 3.11.* *_cp311 + - ucrt >=10.0.20348.0 + - vc >=14.3,<15 + - vc14_runtime >=14.44.35208 + license: BSD-3-Clause + license_family: BSD + size: 611895 + timestamp: 1762523733515 - conda: https://prefix.dev/conda-forge/noarch/six-1.17.0-pyhe01879c_1.conda sha256: 458227f759d5e3fcec5d9b7acce54e10c9e1f4f4b7ec978f3bfd54ce4ee9853d md5: 3339e3b65d58accf4ca4fb8748ab16b3 @@ -15766,47 +16165,47 @@ packages: license_family: MIT size: 55407 timestamp: 1734380310892 -- conda: https://prefix.dev/conda-forge/linux-64/svt-av1-2.3.0-h5888daf_0.conda - sha256: df30a9be29f1a8b5a2e314dd5b16ccfbcbd1cc6a4f659340e8bc2bd4de37bc6f - md5: 355898d24394b2af353eb96358db9fdd +- conda: https://prefix.dev/conda-forge/linux-64/svt-av1-3.0.2-h5888daf_0.conda + sha256: fb4b97a3fd259eff4849b2cfe5678ced0c5792b697eb1f7bcd93a4230e90e80e + md5: 0096882bd623e6cc09e8bf920fc8fb47 depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - libstdcxx >=13 license: BSD-2-Clause license_family: BSD - size: 2746291 - timestamp: 1730246036363 -- conda: https://prefix.dev/conda-forge/linux-aarch64/svt-av1-2.3.0-h5ad3122_0.conda - sha256: 2fad2496a21d198ea72f5dabfdace2fae0ced5cc3ea243922cb372fcf4c18222 - md5: efb60b536bbf64772929b57f6b30298b + size: 2750235 + timestamp: 1742907589246 +- conda: https://prefix.dev/conda-forge/linux-aarch64/svt-av1-3.0.2-h5ad3122_0.conda + sha256: 6d2ac9e4f68355ba3b42395054a7558b9eb6bcf3d70e91bb99ada1450a74d2f6 + md5: 4fafb3aafa73a875312cb4a1099d2a46 depends: - libgcc >=13 - libstdcxx >=13 license: BSD-2-Clause license_family: BSD - size: 1796731 - timestamp: 1730246027014 -- conda: https://prefix.dev/conda-forge/osx-64/svt-av1-2.3.0-h97d8b74_0.conda - sha256: 8cd3878eb1d31ecf21fe982e6d2ca557787100aed2f0c7fd44d01d504e704e30 - md5: c54053b3d1752308a38a9a8c48ce10da + size: 1975547 + timestamp: 1742910351387 +- conda: https://prefix.dev/conda-forge/osx-64/svt-av1-3.0.2-h240833e_0.conda + sha256: 2093e44ad4a8ea8e4cfeb05815d593ce8e1b27a6d07726075676bd02ba2e6a00 + md5: 36d6e9324bf2061fe0d7be431a76e25a depends: - __osx >=10.13 - - libcxx >=17 + - libcxx >=18 license: BSD-2-Clause license_family: BSD - size: 2413474 - timestamp: 1730246540736 -- conda: https://prefix.dev/conda-forge/osx-arm64/svt-av1-2.3.0-hf24288c_0.conda - sha256: ab876ed8bdd20e22a868dcb8d03e9ce9bbba7762d7e652d49bfff6af768a5b8f - md5: 114c33e9eec335a379c9ee6c498bb807 + size: 2408109 + timestamp: 1742907925748 +- conda: https://prefix.dev/conda-forge/osx-arm64/svt-av1-3.0.2-h8ab69cd_0.conda + sha256: d6bb376dc9a00728be26be2b1b859d13534067922c13cc4adbbc441ca4c4ca6d + md5: 76f20156833dea73510379b6cd7975e5 depends: - __osx >=11.0 - - libcxx >=17 + - libcxx >=18 license: BSD-2-Clause license_family: BSD - size: 1387330 - timestamp: 1730246134730 + size: 1484549 + timestamp: 1742907655838 - conda: https://prefix.dev/conda-forge/win-64/svt-av1-3.0.2-he0c23c2_0.conda sha256: 2307695366b92fffe69e33da9eae0df4e32ba5fdbae28ba4489ebf6cb223c203 md5: b10f556afee1579f3c710a4790a6ed28 @@ -15886,9 +16285,9 @@ packages: license_family: APACHE size: 120092 timestamp: 1753179245301 -- conda: https://prefix.dev/conda-forge/win-64/tbb-2022.2.0-h18a62a1_0.conda - sha256: 298bdaf65059a0dd9e61ae8a236da945adc8fcac006920ae4d06a0ba7a7364d9 - md5: 179798037f659777ecbb84d825b0e9b4 +- conda: https://prefix.dev/conda-forge/win-64/tbb-2022.3.0-hd094cb3_1.conda + sha256: c31cac57913a699745d124cdc016a63e31c5749f16f60b3202414d071fc50573 + md5: 17c38aaf14c640b85c4617ccb59c1146 depends: - libhwloc >=2.12.1,<2.12.2.0a0 - ucrt >=10.0.20348.0 @@ -15896,17 +16295,8 @@ packages: - vc14_runtime >=14.44.35208 license: Apache-2.0 license_family: APACHE - size: 156259 - timestamp: 1753179607590 -- conda: https://prefix.dev/conda-forge/osx-arm64/tbb-devel-2022.2.0-h89693d0_0.conda - sha256: 5986aa330b5b509a6f0a6f7d6f3f22c085553ce591a1029bea2214ce0f8e135e - md5: d04e4c6f537c4f4742d4cd68a27c2b0e - depends: - - __osx >=11.0 - - libcxx >=19 - - tbb 2022.2.0 h5b2e6d4_0 - size: 1090642 - timestamp: 1753179267646 + size: 155714 + timestamp: 1762510341121 - conda: https://prefix.dev/conda-forge/linux-64/tk-8.6.13-noxft_hd72426e_102.conda sha256: a84ff687119e6d8752346d1d408d5cf360dee0badd487a472aa8ddedfdc219e1 md5: a0116df4f4ed05c303811a837d5b39d8 @@ -16129,156 +16519,178 @@ packages: license_family: BSD size: 18249 timestamp: 1753739241918 -- conda: https://prefix.dev/conda-forge/linux-64/vtk-9.3.1-qt_py311h3d4e8c9_211.conda - sha256: 5d18471e0599290eb63342e7efe706ddec17f7fa675742a3cff15fb33b029ccd - md5: cfd2ce8f51539f6e52e83922b5235a79 +- conda: https://prefix.dev/conda-forge/win-64/vs2022_win-64-19.44.35207-ha74f236_32.conda + sha256: 0694683d118d0d8448cd997fe776dbe33858c0f3957d9886b2b855220babe895 + md5: c61ef6a81142ee3bd6c3b0c9a0c91e35 depends: - - vtk-base 9.3.1 qt_py311h5011d52_211 - - vtk-io-ffmpeg 9.3.1 qt_py311h3d4e8c9_211 + - vswhere + constrains: + - vs_win-64 2022.14 + track_features: + - vc14 license: BSD-3-Clause license_family: BSD - size: 23377 - timestamp: 1734568485830 -- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-9.3.1-qt_py311h502ffb0_213.conda - sha256: 4e8bbffd1046416a3814b5a94deeb7373a231fe22ee13870f915958f6c72060a - md5: 5213a57652f415f14600a707981844c1 + size: 22206 + timestamp: 1760418596437 +- conda: https://prefix.dev/conda-forge/noarch/vswhere-3.1.7-h40126e0_1.conda + sha256: b72270395326dc56de9bd6ca82f63791b3c8c9e2b98e25242a9869a4ca821895 + md5: f622897afff347b715d046178ad745a5 depends: - - vtk-base 9.3.1 qt_py311h71e73b3_213 - - vtk-io-ffmpeg 9.3.1 qt_py311h502ffb0_213 + - __win + license: MIT + license_family: MIT + size: 238764 + timestamp: 1745560912727 +- conda: https://prefix.dev/conda-forge/linux-64/vtk-9.3.1-qt_py311h71fb23e_216.conda + sha256: a137219a81f87ca4a350f3426a6a20d4cb64cadd27673e2669a6ce82ab804e09 + md5: 89d868f87f6b0da51a22248a48214bb6 + depends: + - vtk-base 9.3.1 qt_py311hbeb5509_216 + - vtk-io-ffmpeg 9.3.1 qt_py311h71fb23e_216 license: BSD-3-Clause license_family: BSD - size: 23356 - timestamp: 1736180423622 -- conda: https://prefix.dev/conda-forge/osx-64/vtk-9.3.1-qt_py311h6e7d914_213.conda - sha256: a5fff5fdb1adfdcbf40dc40e3529487f72025e860f9c4029c4dee9d5d6f3d019 - md5: c174a8c1906a0b50dc50566be432cbbc + size: 24181 + timestamp: 1740054026603 +- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-9.3.1-qt_py311h3356f26_216.conda + sha256: d3f8415e808a5c235e0f35c9ac88f19296eeaca3f1d6472980247256d394a0cd + md5: 310a587959bc012fb52b0af2078be614 depends: - - vtk-base 9.3.1 qt_py311h544662b_213 - - vtk-io-ffmpeg 9.3.1 qt_py311h6e7d914_213 + - vtk-base 9.3.1 qt_py311h412eec7_216 + - vtk-io-ffmpeg 9.3.1 qt_py311h3356f26_216 license: BSD-3-Clause license_family: BSD - size: 23563 - timestamp: 1736173391637 -- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-9.3.1-qt_py311h8d5bf7a_209.conda - sha256: 5ebc1a2e1710f6224a3043c66f9cb21a75edd275a2bb472357bbfd5bac65289b - md5: a737d4315b13206fc472e740493a0511 + size: 24363 + timestamp: 1740055428334 +- conda: https://prefix.dev/conda-forge/osx-64/vtk-9.3.1-qt_py311hb7aed01_216.conda + sha256: e0ef213f811c3a0768589a11f9a03dcf448fd0db516f0d8fe06a70effeae98ff + md5: 328444de3b18e239213aa5ffb614d010 depends: - - vtk-base 9.3.1 qt_py311h8fa80b4_209 - - vtk-io-ffmpeg 9.3.1 qt_py311hf99a90b_209 + - vtk-base 9.3.1 qt_py311h12068e6_216 + - vtk-io-ffmpeg 9.3.1 qt_py311hb7aed01_216 license: BSD-3-Clause license_family: BSD - size: 23065 - timestamp: 1728213827689 -- conda: https://prefix.dev/conda-forge/win-64/vtk-9.3.1-qt_py311h88e836f_213.conda - sha256: f2bd419f358ac8e6f6c89d6f59a1004148688c95e04d1e435f2de41f02bcb7a7 - md5: 46dcdb8a2f505f691ff9b6f75810e49c + size: 23963 + timestamp: 1740052986613 +- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-9.3.1-qt_py311he4b582b_216.conda + sha256: ed0a23943e721f6522f7f3abbc09d3a661701b7c989c71d6ad02e5f1cd261425 + md5: 9748d357eebf14aa2896cfafd7b752a4 depends: - - vtk-base 9.3.1 qt_py311hbefa3f5_213 + - vtk-base 9.3.1 qt_py311hb64ca2f_216 + - vtk-io-ffmpeg 9.3.1 qt_py311he4b582b_216 license: BSD-3-Clause license_family: BSD - size: 23677 - timestamp: 1736175272716 -- conda: https://prefix.dev/conda-forge/linux-64/vtk-base-9.3.1-qt_py311h5011d52_211.conda - sha256: cea7e6de4ab01db5f530c01cb365737c20617197b51043aacec074d45fce97de - md5: 92a2d6c0c3bd77a20a1b74c8941910b0 + size: 24057 + timestamp: 1740055175429 +- conda: https://prefix.dev/conda-forge/win-64/vtk-9.3.1-qt_py311h85ceb33_216.conda + sha256: e57c8da5e189728e9c12865797d60fa6af00fa937b60b3fb1da09fee1feba079 + md5: 70584075f211f2d2c358ee6e7239ba9c + depends: + - vtk-base 9.3.1 qt_py311h1fd4e03_216 + license: BSD-3-Clause + license_family: BSD + size: 23930 + timestamp: 1740059615971 +- conda: https://prefix.dev/conda-forge/linux-64/vtk-base-9.3.1-qt_py311hbeb5509_216.conda + sha256: 9a537cfcf4ee21865e55e518db59b28c3a2629cb9e2cfd1afab06073478bb645 + md5: 961cdc92d7d631d4f6bb6269f0f9feae depends: - __glibc >=2.17,<3.0.a0 - - double-conversion >=3.3.0,<3.4.0a0 + - double-conversion >=3.3.1,<3.4.0a0 - freetype >=2.12.1,<3.0a0 - gl2ps >=1.4.2,<1.4.3.0a0 - glew >=2.1.0,<2.2.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - jsoncpp >=1.9.6,<1.9.7.0a0 - libexpat >=2.6.4,<3.0a0 - libgcc >=13 - libgl >=1.7.0,<2.0a0 - libglvnd >=1.7.0,<2.0a0 - libjpeg-turbo >=3.0.0,<4.0a0 - - liblzma >=5.6.3,<6.0a0 + - liblzma >=5.6.4,<6.0a0 - libnetcdf >=4.9.2,<4.9.3.0a0 - libogg >=1.3.5,<1.4.0a0 - - libpng >=1.6.44,<1.7.0a0 - - libsqlite >=3.47.2,<4.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libsqlite >=3.49.1,<4.0a0 - libstdcxx >=13 - libtheora >=1.1.1,<1.2.0a0 - libtiff >=4.7.0,<4.8.0a0 - libuuid >=2.38.1,<3.0a0 - libxcb >=1.17.0,<2.0a0 - - libxml2 >=2.13.5,<2.14.0a0 - - libzlib >=1.3.1,<2.0a0 - - loguru - - lz4-c >=1.9.3,<1.10.0a0 - - nlohmann_json - - numpy - - proj >=9.5.1,<9.6.0a0 - - pugixml >=1.14,<1.15.0a0 - - python >=3.11,<3.12.0a0 - - python_abi 3.11.* *_cp311 - - qt6-main >=6.7.3,<6.9.0a0 - - tbb >=2021.13.0 - - tk >=8.6.13,<8.7.0a0 - - utfcpp - - wslink - - xorg-libice >=1.1.2,<2.0a0 - - xorg-libsm >=1.2.5,<2.0a0 - - xorg-libx11 >=1.8.10,<2.0a0 - - xorg-libxau >=1.0.12,<2.0a0 - - xorg-libxdamage >=1.1.6,<2.0a0 - - xorg-libxext >=1.3.6,<2.0a0 - - xorg-libxfixes >=6.0.1,<7.0a0 - - xorg-libxt >=1.3.1,<2.0a0 - - xorg-libxxf86vm >=1.1.6,<2.0a0 - constrains: - - paraview ==9999999999 - - libboost_headers - license: BSD-3-Clause - license_family: BSD - size: 46483349 - timestamp: 1734568287617 -- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-base-9.3.1-qt_py311h71e73b3_213.conda - sha256: ff578ca800aa2f6b5740392e10c1cd44f31b8c704eca3d7aa7137fb81a0cc420 - md5: 870229f627884a24edb4eca55e779b22 - depends: - - double-conversion >=3.3.0,<3.4.0a0 - - freetype >=2.12.1,<3.0a0 - - gl2ps >=1.4.2,<1.4.3.0a0 - - glew >=2.1.0,<2.2.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 - - jsoncpp >=1.9.6,<1.9.7.0a0 - - libexpat >=2.6.4,<3.0a0 - - libgcc >=13 - - libgl >=1.7.0,<2.0a0 - - libglvnd >=1.7.0,<2.0a0 - - libjpeg-turbo >=3.0.0,<4.0a0 - - liblzma >=5.6.3,<6.0a0 - - libnetcdf >=4.9.2,<4.9.3.0a0 - - libogg >=1.3.5,<1.4.0a0 - - libpng >=1.6.44,<1.7.0a0 - - libsqlite >=3.47.2,<4.0a0 - - libstdcxx >=13 - - libtheora >=1.1.1,<1.2.0a0 - - libtiff >=4.7.0,<4.8.0a0 - - libuuid >=2.38.1,<3.0a0 - - libxcb >=1.17.0,<2.0a0 - - libxml2 >=2.13.5,<2.14.0a0 + - libxml2 >=2.13.6,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - loguru - lz4-c >=1.10.0,<1.11.0a0 - nlohmann_json - numpy - proj >=9.5.1,<9.6.0a0 - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 - - qt6-main >=6.7.3,<6.9.0a0 + - qt6-main >=6.8.2,<6.9.0a0 - tbb >=2021.13.0 - tk >=8.6.13,<8.7.0a0 - utfcpp - wslink - xorg-libice >=1.1.2,<2.0a0 - xorg-libsm >=1.2.5,<2.0a0 - - xorg-libx11 >=1.8.10,<2.0a0 + - xorg-libx11 >=1.8.11,<2.0a0 + - xorg-libxau >=1.0.12,<2.0a0 + - xorg-libxdamage >=1.1.6,<2.0a0 + - xorg-libxext >=1.3.6,<2.0a0 + - xorg-libxfixes >=6.0.1,<7.0a0 + - xorg-libxt >=1.3.1,<2.0a0 + - xorg-libxxf86vm >=1.1.6,<2.0a0 + constrains: + - libboost_headers + - paraview ==9999999999 + license: BSD-3-Clause + license_family: BSD + size: 46530131 + timestamp: 1740053816423 +- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-base-9.3.1-qt_py311h412eec7_216.conda + sha256: 63b120c574becb8e61b96aac52e27e62c8038942cb7bdde658372224b8d7e2dc + md5: 9920cc87413ff2f9d881dce86f2c9e1b + depends: + - double-conversion >=3.3.1,<3.4.0a0 + - freetype >=2.12.1,<3.0a0 + - gl2ps >=1.4.2,<1.4.3.0a0 + - glew >=2.1.0,<2.2.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 + - jsoncpp >=1.9.6,<1.9.7.0a0 + - libexpat >=2.6.4,<3.0a0 + - libgcc >=13 + - libgl >=1.7.0,<2.0a0 + - libglvnd >=1.7.0,<2.0a0 + - libjpeg-turbo >=3.0.0,<4.0a0 + - liblzma >=5.6.4,<6.0a0 + - libnetcdf >=4.9.2,<4.9.3.0a0 + - libogg >=1.3.5,<1.4.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libsqlite >=3.49.1,<4.0a0 + - libstdcxx >=13 + - libtheora >=1.1.1,<1.2.0a0 + - libtiff >=4.7.0,<4.8.0a0 + - libuuid >=2.38.1,<3.0a0 + - libxcb >=1.17.0,<2.0a0 + - libxml2 >=2.13.6,<2.14.0a0 + - libzlib >=1.3.1,<2.0a0 + - loguru + - lz4-c >=1.10.0,<1.11.0a0 + - nlohmann_json + - numpy + - proj >=9.5.1,<9.6.0a0 + - pugixml >=1.15,<1.16.0a0 + - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython + - python_abi 3.11.* *_cp311 + - qt6-main >=6.8.2,<6.9.0a0 + - tbb >=2021.13.0 + - tk >=8.6.13,<8.7.0a0 + - utfcpp + - wslink + - xorg-libice >=1.1.2,<2.0a0 + - xorg-libsm >=1.2.5,<2.0a0 + - xorg-libx11 >=1.8.11,<2.0a0 - xorg-libxau >=1.0.12,<2.0a0 - xorg-libxdamage >=1.1.6,<2.0a0 - xorg-libxext >=1.3.6,<2.0a0 @@ -16290,40 +16702,40 @@ packages: - libboost_headers license: BSD-3-Clause license_family: BSD - size: 43045121 - timestamp: 1736180223827 -- conda: https://prefix.dev/conda-forge/osx-64/vtk-base-9.3.1-qt_py311h544662b_213.conda - sha256: 9847a2350ef55d6d0a167fc77c984671f70e139d9dbde0d68bd09c20bfa338bf - md5: a24dd8326ceb056aac4c1b1b186c7986 + size: 43079200 + timestamp: 1740055266403 +- conda: https://prefix.dev/conda-forge/osx-64/vtk-base-9.3.1-qt_py311h12068e6_216.conda + sha256: b4364bcf0163f0005e5a34897ff007177b27bfb7a2f6d57e7fb06113ce40f093 + md5: b151dc25ae2f3638e80d484d326384cb depends: - - __osx >=10.13 - - double-conversion >=3.3.0,<3.4.0a0 + - __osx >=11.0 + - double-conversion >=3.3.1,<3.4.0a0 - freetype >=2.12.1,<3.0a0 - gl2ps >=1.4.2,<1.4.3.0a0 - glew >=2.1.0,<2.2.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - jsoncpp >=1.9.6,<1.9.7.0a0 - libcxx >=18 - libexpat >=2.6.4,<3.0a0 - libjpeg-turbo >=3.0.0,<4.0a0 - - liblzma >=5.6.3,<6.0a0 + - liblzma >=5.6.4,<6.0a0 - libnetcdf >=4.9.2,<4.9.3.0a0 - libogg >=1.3.5,<1.4.0a0 - - libpng >=1.6.44,<1.7.0a0 - - libsqlite >=3.47.2,<4.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libsqlite >=3.49.1,<4.0a0 - libtheora >=1.1.1,<1.2.0a0 - libtiff >=4.7.0,<4.8.0a0 - - libxml2 >=2.13.5,<2.14.0a0 + - libxml2 >=2.13.6,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - loguru - lz4-c >=1.10.0,<1.11.0a0 - nlohmann_json - numpy - proj >=9.5.1,<9.6.0a0 - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 - - qt6-main >=6.7.3,<6.9.0a0 + - qt6-main >=6.8.2,<6.9.0a0 - tbb >=2021.13.0 - tk >=8.6.13,<8.7.0a0 - utfcpp @@ -16333,74 +16745,70 @@ packages: - paraview ==9999999999 license: BSD-3-Clause license_family: BSD - size: 36624842 - timestamp: 1736173219378 -- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-base-9.3.1-qt_py311h8fa80b4_209.conda - sha256: 501362db19f9d58e2a2aca0d17295c57dd2b4220aef1e312bc760bdfa0f00d84 - md5: 685ef160a99679750f8bf09e7c0456fb + size: 36609986 + timestamp: 1740052850029 +- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-base-9.3.1-qt_py311hb64ca2f_216.conda + sha256: bf5b3a6281a354f219d04056308be98fcb82c792aa1a3152f44a1caacaca6e70 + md5: 37c98201a4727a54f48971044eb7f080 depends: - __osx >=11.0 - - double-conversion >=3.3.0,<3.4.0a0 - - eigen - - expat + - double-conversion >=3.3.1,<3.4.0a0 - freetype >=2.12.1,<3.0a0 - gl2ps >=1.4.2,<1.4.3.0a0 - glew >=2.1.0,<2.2.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - jsoncpp >=1.9.6,<1.9.7.0a0 - - libcxx >=17 - - libexpat >=2.6.3,<3.0a0 + - libcxx >=18 + - libexpat >=2.6.4,<3.0a0 - libjpeg-turbo >=3.0.0,<4.0a0 + - liblzma >=5.6.4,<6.0a0 - libnetcdf >=4.9.2,<4.9.3.0a0 - libogg >=1.3.5,<1.4.0a0 - - libpng >=1.6.44,<1.7.0a0 - - libsqlite >=3.46.1,<4.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libsqlite >=3.49.1,<4.0a0 - libtheora >=1.1.1,<1.2.0a0 - libtiff >=4.7.0,<4.8.0a0 - - libxml2 >=2.12.7,<2.14.0a0 + - libxml2 >=2.13.6,<2.14.0a0 - libzlib >=1.3.1,<2.0a0 - loguru - - lz4-c >=1.9.3,<1.10.0a0 + - lz4-c >=1.10.0,<1.11.0a0 - nlohmann_json - numpy - - proj >=9.5.0,<9.6.0a0 - - pugixml >=1.14,<1.15.0a0 + - proj >=9.5.1,<9.6.0a0 + - pugixml >=1.15,<1.16.0a0 - python >=3.11,<3.12.0a0 - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 - - qt6-main >=6.7.3,<6.9.0a0 - - sqlite + - qt6-main >=6.8.2,<6.9.0a0 - tbb >=2021.13.0 - - tbb-devel - tk >=8.6.13,<8.7.0a0 - utfcpp - wslink - - zlib constrains: - libboost_headers - paraview ==9999999999 license: BSD-3-Clause license_family: BSD - size: 34679986 - timestamp: 1728213730572 -- conda: https://prefix.dev/conda-forge/win-64/vtk-base-9.3.1-qt_py311hbefa3f5_213.conda - sha256: 030257955d73996ca605b211aa01ecae21a62d03d083968c489a8c57df78f415 - md5: f5eb7480d8b302acada42cc7eecd858f + size: 34706863 + timestamp: 1740054992275 +- conda: https://prefix.dev/conda-forge/win-64/vtk-base-9.3.1-qt_py311h1fd4e03_216.conda + sha256: 6878345b3d909c203530a5baf8809ba841304f35bdefceb812f6599fd8052181 + md5: 0a0a24d5cdd86e36dd85d887a04f4634 depends: - - double-conversion >=3.3.0,<3.4.0a0 + - double-conversion >=3.3.1,<3.4.0a0 - ffmpeg >=7.1.0,<8.0a0 - freetype >=2.12.1,<3.0a0 - gl2ps >=1.4.2,<1.4.3.0a0 - glew >=2.1.0,<2.2.0a0 - - hdf5 >=1.14.4,<1.14.5.0a0 + - hdf5 >=1.14.3,<1.14.4.0a0 - jsoncpp >=1.9.6,<1.9.7.0a0 - libexpat >=2.6.4,<3.0a0 - libjpeg-turbo >=3.0.0,<4.0a0 - - liblzma >=5.6.3,<6.0a0 + - liblzma >=5.6.4,<6.0a0 - libnetcdf >=4.9.2,<4.9.3.0a0 - libogg >=1.3.5,<1.4.0a0 - - libpng >=1.6.44,<1.7.0a0 - - libsqlite >=3.47.2,<4.0a0 + - libpng >=1.6.47,<1.7.0a0 + - libsqlite >=3.49.1,<4.0a0 - libtheora >=1.1.1,<1.2.0a0 - libtiff >=4.7.0,<4.8.0a0 - libxml2 >=2.13.5,<2.14.0a0 @@ -16410,10 +16818,10 @@ packages: - nlohmann_json - numpy - proj >=9.5.1,<9.6.0a0 - - pugixml >=1.14,<1.15.0a0 + - pugixml >=1.15,<1.16.0a0 - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 - - qt6-main >=6.7.3,<6.9.0a0 + - qt6-main >=6.8.2,<6.9.0a0 - tbb >=2021.13.0 - ucrt >=10.0.20348.0 - utfcpp @@ -16421,52 +16829,52 @@ packages: - vc14_runtime >=14.29.30139 - wslink constrains: - - libboost_headers - paraview ==9999999999 + - libboost_headers license: BSD-3-Clause license_family: BSD - size: 34679461 - timestamp: 1736175146565 -- conda: https://prefix.dev/conda-forge/linux-64/vtk-io-ffmpeg-9.3.1-qt_py311h3d4e8c9_211.conda - sha256: ec0bd2cdf52aef039875cbb403054acbf605f000109437b6ae9c3176a07d5503 - md5: 5b887ad0f1d5f462f1f509df54d2c711 + size: 34778027 + timestamp: 1740059459070 +- conda: https://prefix.dev/conda-forge/linux-64/vtk-io-ffmpeg-9.3.1-qt_py311h71fb23e_216.conda + sha256: 5bf639f12ca854f9c170c5d4e2bafd5b9e3111e997ed5af5e4762ce64b312030 + md5: fa11e02c8bed345e4a0e3b6c2cffba06 depends: - ffmpeg >=7.1.0,<8.0a0 - - vtk-base 9.3.1 qt_py311h5011d52_211 + - vtk-base 9.3.1 qt_py311hbeb5509_216 license: BSD-3-Clause license_family: BSD - size: 81013 - timestamp: 1734568485294 -- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-io-ffmpeg-9.3.1-qt_py311h502ffb0_213.conda - sha256: 0a9562ce699aaabfb489e08a24533d1eefb3bb9a0436b6e3164a69feb5460d43 - md5: 83e71efdc8afcd4b9730ca849bbf71c8 + size: 82239 + timestamp: 1740054025910 +- conda: https://prefix.dev/conda-forge/linux-aarch64/vtk-io-ffmpeg-9.3.1-qt_py311h3356f26_216.conda + sha256: 3c5ee2ca3c104a92b73667adf604803b828c1bb369e09a8d75e08531a02108b3 + md5: b30ddcd6b3dd290e24ed9a856c80c738 depends: - ffmpeg >=7.1.0,<8.0a0 - - vtk-base 9.3.1 qt_py311h71e73b3_213 + - vtk-base 9.3.1 qt_py311h412eec7_216 license: BSD-3-Clause license_family: BSD - size: 81139 - timestamp: 1736180423072 -- conda: https://prefix.dev/conda-forge/osx-64/vtk-io-ffmpeg-9.3.1-qt_py311h6e7d914_213.conda - sha256: 4fab3a57ecf0ece1bf0d033d947cf51062ef2de827cb9a9bb8ecb890115d6bdd - md5: 50192bba11365931bcbdfa326089754c + size: 82144 + timestamp: 1740055427585 +- conda: https://prefix.dev/conda-forge/osx-64/vtk-io-ffmpeg-9.3.1-qt_py311hb7aed01_216.conda + sha256: 19bab94f1a1ee010111da970e97494ae8f0a29514bae7c52937e9e58f52bd546 + md5: b8cc649b2a48a51a51589f873e00d652 depends: - ffmpeg >=7.1.0,<8.0a0 - - vtk-base 9.3.1 qt_py311h544662b_213 + - vtk-base 9.3.1 qt_py311h12068e6_216 license: BSD-3-Clause license_family: BSD - size: 70922 - timestamp: 1736173390286 -- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-io-ffmpeg-9.3.1-qt_py311hf99a90b_209.conda - sha256: daeda1f2abb155e5b6979f10903b7fc0fcc7afdc9e7c4954e071a0ab23abfa3a - md5: d6e3361356c41501899b0c9e45408239 + size: 71897 + timestamp: 1740052985150 +- conda: https://prefix.dev/conda-forge/osx-arm64/vtk-io-ffmpeg-9.3.1-qt_py311he4b582b_216.conda + sha256: 40df57185b8b26becbb4243b5964b8a48a9d9e8d9628f469a6012cbc216173af + md5: 8af74cb5f55c7b8f7a9fb45a7ad18895 depends: - ffmpeg >=7.1.0,<8.0a0 - - vtk-base 9.3.1 qt_py311h8fa80b4_209 + - vtk-base 9.3.1 qt_py311hb64ca2f_216 license: BSD-3-Clause license_family: BSD - size: 71252 - timestamp: 1728213825451 + size: 71588 + timestamp: 1740055173838 - conda: https://prefix.dev/conda-forge/linux-64/wayland-1.24.0-h3e06ad9_0.conda sha256: ba673427dcd480cfa9bbc262fd04a9b1ad2ed59a159bd8f7e750d4c52282f34c md5: 0f2ca7906bf166247d1d760c3422cb8a @@ -17563,43 +17971,6 @@ packages: license_family: MIT size: 18185 timestamp: 1734214652726 -- conda: https://prefix.dev/conda-forge/linux-64/xz-5.8.1-hbcc6ac9_2.conda - sha256: 802725371682ea06053971db5b4fb7fbbcaee9cb1804ec688f55e51d74660617 - md5: 68eae977d7d1196d32b636a026dc015d - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - liblzma 5.8.1 hb9d3cd8_2 - - liblzma-devel 5.8.1 hb9d3cd8_2 - - xz-gpl-tools 5.8.1 hbcc6ac9_2 - - xz-tools 5.8.1 hb9d3cd8_2 - license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later - size: 23987 - timestamp: 1749230104359 -- conda: https://prefix.dev/conda-forge/linux-64/xz-gpl-tools-5.8.1-hbcc6ac9_2.conda - sha256: 840838dca829ec53f1160f3fca6dbfc43f2388b85f15d3e867e69109b168b87b - md5: bf627c16aa26231720af037a2709ab09 - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - liblzma 5.8.1 hb9d3cd8_2 - constrains: - - xz 5.8.1.* - license: 0BSD AND LGPL-2.1-or-later AND GPL-2.0-or-later - size: 33911 - timestamp: 1749230090353 -- conda: https://prefix.dev/conda-forge/linux-64/xz-tools-5.8.1-hb9d3cd8_2.conda - sha256: 58034f3fca491075c14e61568ad8b25de00cb3ae479de3e69be6d7ee5d3ace28 - md5: 1bad2995c8f1c8075c6c331bf96e46fb - depends: - - __glibc >=2.17,<3.0.a0 - - libgcc >=13 - - liblzma 5.8.1 hb9d3cd8_2 - constrains: - - xz 5.8.1.* - license: 0BSD AND LGPL-2.1-or-later - size: 96433 - timestamp: 1749230076687 - conda: https://prefix.dev/conda-forge/linux-64/yaml-0.2.5-h280c20c_3.conda sha256: 6d9ea2f731e284e9316d95fa61869fe7bbba33df7929f82693c121022810f4ad md5: a77f85f77be52ff59391544bfe73390a diff --git a/package/rattler-build/pixi.toml b/package/rattler-build/pixi.toml index 343072243c..ca17d4b22c 100644 --- a/package/rattler-build/pixi.toml +++ b/package/rattler-build/pixi.toml @@ -22,44 +22,37 @@ freecad = { path = "." } [feature.package.dependencies] python = ">=3.11,<3.12" +[feature.package.tasks] +create_bundle = 'bash -c "cd $(bash scripts/get_os.bash) && bash create_bundle.sh"' + ## Linux (x86-64) [feature.package.target.linux-64.dependencies] coreutils = "*" -[feature.package.target.linux-64.tasks] -create_bundle = 'bash -c "cd linux && bash create_bundle.sh"' - ## Linux (aarch64) [feature.package.target.linux-aarch64.dependencies] coreutils = "*" -[feature.package.target.linux-aarch64.tasks] -create_bundle = 'bash -c "cd linux && bash create_bundle.sh"' - ## macOS (Intel) [feature.package.target.osx-64.dependencies] coreutils = "*" dmgbuild = "*" +pyobjc-framework-Quartz = "*" sed = "*" -[feature.package.target.osx-64.tasks] -create_bundle = 'bash -c "cd osx && bash create_bundle.sh"' - ## macOS (Apple Silicon) [feature.package.target.osx-arm64.dependencies] coreutils = "*" dmgbuild = "*" +pyobjc-framework-Quartz = "*" sed = "*" -[feature.package.target.osx-arm64.tasks] -create_bundle = 'bash -c "cd osx && bash create_bundle.sh"' - ## Windows dependencies (x86-64) [feature.package.target.win-64.dependencies] git = "*" - -[feature.package.target.win-64.tasks] -create_bundle = 'bash -c "cd windows && bash create_bundle.sh"' +nsis = { version = "*", build = "*_log*" } +7zip = "*" +vs2022_win-64 = "*" [environments] default = ["freecad"] diff --git a/package/rattler-build/recipe.yaml b/package/rattler-build/recipe.yaml index e50fb7f409..08dc2f366d 100644 --- a/package/rattler-build/recipe.yaml +++ b/package/rattler-build/recipe.yaml @@ -145,7 +145,6 @@ requirements: - gmsh - graphviz - ifcopenshell - - jinja2 - lark - lxml - matplotlib-base diff --git a/package/rattler-build/scripts/disable_git_info.patch b/package/rattler-build/scripts/disable_git_info.patch deleted file mode 100644 index 4dc370fa63..0000000000 --- a/package/rattler-build/scripts/disable_git_info.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/src/Tools/SubWCRev.py b/src/Tools/SubWCRev.py -index 1f3f0a436343..c314003736f1 100644 ---- a/src/Tools/SubWCRev.py -+++ b/src/Tools/SubWCRev.py -@@ -523,7 +523,7 @@ def main(): - inp = open("%s/src/Build/Version.h.in" % (bindir)) - lines = inp.readlines() - inp.close() -- lines = i.writeVersion(lines) -+ #lines = i.writeVersion(lines) - out = open("%s/src/Build/Version.h.out" % (bindir), "w") - out.writelines(lines) - out.write("\n") diff --git a/package/rattler-build/scripts/get_freecad_version.py b/package/rattler-build/scripts/get_freecad_version.py deleted file mode 100644 index b18ea6d6ce..0000000000 --- a/package/rattler-build/scripts/get_freecad_version.py +++ /dev/null @@ -1,53 +0,0 @@ -import sys -import os -import subprocess -import platform -from datetime import datetime - -import freecad -import FreeCAD - -package_manager = "conda" -system = platform.platform().split("-")[0] -arch = platform.machine() - -# Windows uses a different syntax -if arch == "AMD64": - arch = "x86_64" - -if "ARCH" in os.environ: - if os.environ["ARCH"] != "": - arch = os.environ["ARCH"] - -python_version = platform.python_version().split(".") -python_version = "py" + python_version[0] + python_version[1] -date = str(datetime.now()).split(" ")[0] - -version_info = FreeCAD.Version() -build_version_suffix = FreeCAD.ConfigGet("BuildVersionSuffix") -dev_version = version_info[0] + "." + version_info[1] + "." + version_info[2] + build_version_suffix -revision = version_info[3].split(" ")[0] - -if system == "macOS": - import jinja2 - print("create plist from template") - osx_directory = os.path.join(os.path.dirname(__file__), "..", "osx") - with open(os.path.join(osx_directory, "Info.plist.template")) as template_file: - template_str = template_file.read() - template = jinja2.Template(template_str) - rendered_str = template.render( FREECAD_VERSION="{}-{}".format(dev_version, revision), - APPLICATION_MENU_NAME="FreeCAD-{}-{}".format(dev_version, revision) ) - with open(os.path.join(osx_directory, "FreeCAD.app", "Contents", "Info.plist"), "w") as rendered_file: - rendered_file.write(rendered_str) - -if "DEPLOY_RELEASE" in os.environ and os.environ["DEPLOY_RELEASE"] == "weekly-builds": - dev_version = "weekly-builds" - revision_separator = "-" -else: - revision_separator = "" - revision = "" - -bundle_name = f"FreeCAD_{dev_version}{revision_separator}{revision}-{package_manager}-{system}-{arch}-{python_version}" - -with open("bundle_name.txt", "w") as bundle_name_file: - bundle_name_file.write(bundle_name) diff --git a/package/rattler-build/scripts/get_os.bash b/package/rattler-build/scripts/get_os.bash new file mode 100644 index 0000000000..8c01816c7a --- /dev/null +++ b/package/rattler-build/scripts/get_os.bash @@ -0,0 +1,8 @@ +#!/usr/bin/env bash +if [[ "$OSTYPE" =~ (msys*|cygwin*|mingw*) ]]; then + echo windows +elif [[ "$OSTYPE" == darwin* ]]; then + echo osx +elif [[ "$OSTYPE" == linux* ]]; then + echo linux +fi diff --git a/package/rattler-build/windows/create_bundle.bat b/package/rattler-build/windows/create_bundle.bat deleted file mode 100644 index aaf60049e0..0000000000 --- a/package/rattler-build/windows/create_bundle.bat +++ /dev/null @@ -1,56 +0,0 @@ -set conda_env="fc_env" - -robocopy ..\.pixi\envs\default\* %conda_env% /S /MT:%NUMBER_OF_PROCESSORS% > nul - -%conda_env%\python ..\scripts\get_freecad_version.py -set /p freecad_version_name= nul -robocopy %conda_env%\Lib %copy_dir%\bin\Lib /XD __pycache__ /S /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Scripts %copy_dir%\bin\Scripts /S /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\python*.* %copy_dir%\bin\ /XF *.pdb /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\msvc*.* %copy_dir%\bin\ /XF *.pdb /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\ucrt*.* %copy_dir%\bin\ /XF *.pdb /MT:%NUMBER_OF_PROCESSORS% > nul -REM Copy meaningful executables -robocopy %conda_env%\Library\bin %copy_dir%\bin\ ccx.exe /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Library\bin %copy_dir%\bin\ gmsh.exe /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Library\bin %copy_dir%\bin\ dot.exe /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Library\bin %copy_dir%\bin\ unflatten.exe /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Library\mingw-w64\bin * %copy_dir%\bin\ /MT:%NUMBER_OF_PROCESSORS% > nul -REM Copy Conda's QT5/plugins to FreeCAD/bin -robocopy %conda_env%\Library\plugins %copy_dir%\bin\ /S /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Library\resources %copy_dir%\resources /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Library\translations %copy_dir%\translations /MT:%NUMBER_OF_PROCESSORS% > nul -REM get all the dependency .dlls -robocopy %conda_env%\Library\bin *.dll %copy_dir%\bin /XF *.pdb /XF api*.* /MT:%NUMBER_OF_PROCESSORS% > nul -REM Copy FreeCAD build -robocopy %conda_env%\Library\bin FreeCAD* %copy_dir%\bin /XF *.pdb /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Library\data %copy_dir%\data /XF *.txt /S /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Library\Ext %copy_dir%\Ext /S /XD __pycache__ /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Library\lib %copy_dir%\lib /XF *.lib /XF *.prl /XF *.sh /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Library\Mod %copy_dir%\Mod /S /XD __pycache__ /MT:%NUMBER_OF_PROCESSORS% > nul -robocopy %conda_env%\Library\doc %copy_dir%\doc ThirdPartyLibraries.html LICENSE.html /MT:%NUMBER_OF_PROCESSORS% > nul -REM Apply Patches -rename %copy_dir%\bin\Lib\ssl.py ssl-orig.py -copy ssl-patch.py %copy_dir%\bin\Lib\ssl.py - -cd %copy_dir%\.. -ren %copy_dir% %freecad_version_name% -dir - -REM if errorlevel1 exit 1 - -"%ProgramFiles%\7-Zip\7z.exe" a -t7z -mx9 -mmt=%NUMBER_OF_PROCESSORS% %freecad_version_name%.7z %freecad_version_name%\ -bb -certutil -hashfile "%freecad_version_name%.7z" SHA256 > "%freecad_version_name%.7z"-SHA256.txt -echo %date%-%time% >>"%freecad_version_name%.7z"-SHA256.txt diff --git a/package/rattler-build/windows/create_bundle.sh b/package/rattler-build/windows/create_bundle.sh index c9e42b7062..ddb69e87bd 100644 --- a/package/rattler-build/windows/create_bundle.sh +++ b/package/rattler-build/windows/create_bundle.sh @@ -3,23 +3,9 @@ set -e set -x -conda_env="fc_env" +conda_env="$(pwd)/../.pixi/envs/default/" -mkdir -p ${conda_env} - -cp -a ../.pixi/envs/default/* ${conda_env} - -export PATH="${PWD}/${conda_env}/bin:${PATH}" -export CONDA_PREFIX="${PWD}/${conda_env}" - -# remove arm binaries that fail to extract unless using latest 7zip -rm $(find ${conda_env} -name \*arm\*.exe) - -# delete unnecessary stuff -rm -rf ${conda_env}/include -find ${conda_env} -name \*.a -delete - -copy_dir="FreeCAD_Conda_Build" +copy_dir="FreeCAD_Windows" mkdir -p ${copy_dir}/bin # Copy Conda's Python and (U)CRT to FreeCAD/bin @@ -48,16 +34,28 @@ cp -a ${conda_env}/Library/lib ${copy_dir}/lib cp -a ${conda_env}/Library/Mod ${copy_dir}/Mod mkdir -p ${copy_dir}/doc cp -a ${conda_env}/Library/doc/{ThirdPartyLibraries.html,LICENSE.html} ${copy_dir}/doc -rm -rf ${conda_env}/bin_tmp + +# delete unnecessary stuff +find ${copy_dir} -name \*.a -delete +find ${copy_dir} -name \*.lib -delete +find ${copy_dir} -name \*arm\*.exe -delete # arm binaries that fail to extract unless using latest 7zip # Apply Patches -mv ${copy_dir}/bin/Lib/ssl.py ssl-orig.py +mv ${copy_dir}/bin/Lib/ssl.py .ssl-orig.py cp ssl-patch.py ${copy_dir}/bin/Lib/ssl.py echo '[Paths]' >> ${copy_dir}/bin/qt6.conf echo 'Prefix = ../lib/qt6' >> ${copy_dir}/bin/qt6.conf -python_version=$(python -c 'import platform; print("py" + platform.python_version_tuple()[0] + platform.python_version_tuple()[1])') +# convenient shortcuts to run the binaries +if [ -x /c/ProgramData/chocolatey/tools/shimgen.exe ]; then + pushd ${copy_dir} + /c/ProgramData/chocolatey/tools/shimgen.exe -p bin/freecadcmd.exe -i "$(pwd)/../../../WindowsInstaller/icons/FreeCAD.ico" -o "$(pwd)/FreeCADCmd.exe" + /c/ProgramData/chocolatey/tools/shimgen.exe --gui -p bin/freecad.exe -i "$(pwd)/../../../WindowsInstaller/icons/FreeCAD.ico" -o "$(pwd)/FreeCAD.exe" + popd +fi + +python_version=$("${copy_dir}"/bin/python.exe -c 'import platform; print("py" + platform.python_version_tuple()[0] + platform.python_version_tuple()[1])') version_name="FreeCAD_${BUILD_TAG}-Windows-$(uname -m)-${python_version}" echo -e "################" @@ -69,11 +67,37 @@ sed -i '1s/.*/\nLIST OF PACKAGES:/' ${copy_dir}/packages.txt mv ${copy_dir} ${version_name} -"${PROGRAMFILES}/7-Zip/7z.exe" a -t7z -mx9 -mmt=${NUMBER_OF_PROCESSORS} ${version_name}.7z ${version_name} -bb - +7z a -t7z -mx9 -mmt=${NUMBER_OF_PROCESSORS} ${version_name}.7z ${version_name} -bb # create hash sha256sum ${version_name}.7z > ${version_name}.7z-SHA256.txt +if [ "${MAKE_INSTALLER}" == "true" ]; then + FILES_FREECAD="$(cygpath -w $(pwd))\\${version_name}" + nsis_cpdir=$(pwd)/.nsis_tmp + cp -r "${CONDA_PREFIX}/NSIS" "${nsis_cpdir}" + # curl -L -o ".nsis-log.zip" http://prdownloads.sourceforge.net/nsis/nsis-3.11-log.zip # we use the log variant of the package already + # curl -L -o ".nsis-strlen_8192.zip" "http://prdownloads.sourceforge.net/nsis/nsis-3.11-strlen_8192.zip" + curl -L -o ".NsProcess.7z" "https://nsis.sourceforge.io/mediawiki/images/1/18/NsProcess.zip" + if [ ! $(echo fc19fc66a5219a233570fafd5daeb0c9b85387b379f6df5ac8898159a57c5944 .NsProcess.7z | sha256sum --check --status) ]; then + 7z x .NsProcess.7z -o"${nsis_cpdir}" -y + mv "${nsis_cpdir}"/Plugin/nsProcess.dll "${nsis_cpdir}"/Plugins/x86-ansi/nsProcess.dll + mv "${nsis_cpdir}"/Plugin/nsProcessW.dll "${nsis_cpdir}"/Plugins/x86-unicode/nsProcess.dll + "${nsis_cpdir}"/makensis.exe -V4 \ + -D"ExeFile=${version_name}-installer.exe" \ + -D"FILES_FREECAD=${FILES_FREECAD}" \ + -X'SetCompressor /FINAL lzma' \ + ../../WindowsInstaller/FreeCAD-installer.nsi + mv ../../WindowsInstaller/${version_name}-installer.exe . + sha256sum ${version_name}-installer.exe > ${version_name}-installer.exe-SHA256.txt + else + echo "Error: Failed to get NsProcess plugin. Aborting installer creation..." + fi + rm -rf "${nsis_cpdir}" +fi + if [ "${UPLOAD_RELEASE}" == "true" ]; then gh release upload --clobber ${BUILD_TAG} "${version_name}.7z" "${version_name}.7z-SHA256.txt" + if [ "${MAKE_INSTALLER}" == "true" ]; then + gh release upload --clobber ${BUILD_TAG} "${version_name}-installer.exe" "${version_name}-installer.exe-SHA256.txt" + fi fi diff --git a/package/rattler-build/osx/macos_sign_and_notarize.zsh b/package/scripts/macos_sign_and_notarize.zsh similarity index 88% rename from package/rattler-build/osx/macos_sign_and_notarize.zsh rename to package/scripts/macos_sign_and_notarize.zsh index 3b73f29dcd..80c90f4271 100755 --- a/package/rattler-build/osx/macos_sign_and_notarize.zsh +++ b/package/scripts/macos_sign_and_notarize.zsh @@ -83,8 +83,11 @@ fi # Check for dmgbuild executable if ! command -v dmgbuild &> /dev/null; then - echo "Error: dmgbuild not installed. Please install it for example using pip:" - echo 'pip3 install "dmgbuild[badge_icons]>=1.6.0,<1.7.0"' + echo 'Error: dmgbuild not installed. Please install it' + echo '- using pixi:' + echo 'pixi g install dmgbuild --with pyobjc-framework-Quartz' + echo '- using pip:' + echo 'pip3 install dmgbuild pyobjc-framework-Quartz' exit 1 fi @@ -125,13 +128,13 @@ ID_FILE="${DMG_NAME}.notarization_id" # This is a *very slow* process, and occasionally the GitHub runners lose the internet connection for a short time # during the run. So in order to be fault-tolerant, this script polls, instead of using --wait submit_notarization_request() { - if [[ -s "$ID_FILE" ]]; then - cat "$ID_FILE" + if [[ -s "${ID_FILE}" ]]; then + cat "${ID_FILE}" return fi local out - if ! out=$(xcrun notarytool submit --keychain-profile "$KEYCHAIN_PROFILE" \ - --output-format json --no-progress "$DMG_NAME" 2>&1); then + if ! out=$(xcrun notarytool submit --keychain-profile "${KEYCHAIN_PROFILE}" \ + --output-format json --no-progress "${DMG_NAME}" 2>&1); then print -r -- "$out" >&2 return 1 fi @@ -142,14 +145,14 @@ submit_notarization_request() { /usr/bin/python3 -c 'import sys, json; print(json.load(sys.stdin).get("id",""))' ) [[ -n "$id" ]] || { print -r -- "Could not parse submission id" >&2; return 1; } - print -r -- "$id" > "$ID_FILE" + print -r -- "$id" > "${ID_FILE}" print -r -- "$id" # ID is a string here, not an integer, so I can't just return it } wait_for_notarization_result() { local id="$1" attempt=0 while :; do - if xcrun notarytool wait "$id" --keychain-profile "$KEYCHAIN_PROFILE" \ + if xcrun notarytool wait "$id" --keychain-profile "${KEYCHAIN_PROFILE}" \ --timeout 10m --no-progress >/dev/null; then return 0 fi @@ -161,7 +164,7 @@ wait_for_notarization_result() { tmp_json=$(mktemp) trap 'rm -f "$tmp_json"' EXIT INT TERM - xcrun notarytool info "$id" --keychain-profile "$KEYCHAIN_PROFILE" --output-format json 2>/dev/null > "$tmp_json" + xcrun notarytool info "$id" --keychain-profile "${KEYCHAIN_PROFILE}" --output-format json 2>/dev/null > "$tmp_json" /usr/bin/python3 - "$tmp_json" <<'PY' import sys, json try: @@ -180,7 +183,7 @@ PY if [[ $rc == 2 ]]; then print -r -- "Notarization was not accepted by Apple:" >&2 - xcrun notarytool log "$id" --keychain-profile "$KEYCHAIN_PROFILE" >&2 + xcrun notarytool log "$id" --keychain-profile "${KEYCHAIN_PROFILE}" >&2 return 3 fi @@ -204,9 +207,9 @@ print "Notarization submission ID: $id" if wait_for_notarization_result "$id"; then print "✅ Notarization succeeded. Stapling..." - xcrun stapler staple "$DMG_NAME" - print "Stapled: $DMG_NAME" - rm -f "$ID_FILE" + xcrun stapler staple "${DMG_NAME}" + print "Stapled: ${DMG_NAME}" + rm -f "${ID_FILE}" else rc=$? print "❌ Notarization failed (code $rc)." >&2 diff --git a/package/rattler-build/scripts/make_version_file.py b/package/scripts/write_version_info.py similarity index 70% rename from package/rattler-build/scripts/make_version_file.py rename to package/scripts/write_version_info.py index 053f731fe8..d6cff41e89 100755 --- a/package/rattler-build/scripts/make_version_file.py +++ b/package/scripts/write_version_info.py @@ -11,12 +11,10 @@ import SubWCRev gitInfo = SubWCRev.GitControl() gitInfo.extractInfo("","") -gitDescription = os.environ['BUILD_TAG'] i = open("src/Build/Version.h.cmake") content = [] for line in i.readlines(): - line = line.replace("-${PACKAGE_VERSION_SUFFIX}",gitDescription) line = line.replace("${PACKAGE_WCREF}",gitInfo.rev) line = line.replace("${PACKAGE_WCDATE}",gitInfo.date) line = line.replace("${PACKAGE_WCURL}",gitInfo.url) @@ -28,6 +26,14 @@ with open("src/Build/Version.h.cmake", "w") as o: content.append('#define FCRepositoryBranch "%s"\n' % (gitInfo.branch)) o.writelines(content) +with open("src/Tools/SubWCRev.py", "r") as f: + new_subwcrev = f.read() + new_subwcrev = new_subwcrev.replace("lines = i.writeVersion(lines)", + "#lines = i.writeVersion(lines) # this source package already has git info, we do nothing here") + +with open("src/Tools/SubWCRev.py", "w") as f: + f.writelines(new_subwcrev) + with open(os.sys.argv[1], "w") as f: f.write(f"rev_number: {gitInfo.rev}\n") f.write(f"branch_name: {gitInfo.branch}\n") @@ -35,8 +41,9 @@ with open(os.sys.argv[1], "w") as f: f.write(f"commit_hash: {gitInfo.hash}\n") f.write(f"remote_url: {gitInfo.url}\n") -p = subprocess.Popen(["git", "-c", "user.name='github-actions[bot]'", "-c", "user.email='41898282+github-actions[bot]@users.noreply.github.com'", - "commit", "-a", "-m", "add git information"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) +p = subprocess.Popen(["git", "-c", "user.name='github-actions[bot]'", "-c", + "user.email='41898282+github-actions[bot]@users.noreply.github.com'", "commit", "-a", "-m", + "add git version information"], stdout=subprocess.PIPE, stderr=subprocess.PIPE) out, err = p.communicate() diff --git a/src/Tools/dmg_settings.py b/src/Tools/dmg_settings.py deleted file mode 100644 index b960b1bec4..0000000000 --- a/src/Tools/dmg_settings.py +++ /dev/null @@ -1,8 +0,0 @@ -# SPDX-License-Identifier: LGPL-2.1-or-later - -files = [f"{containing_folder}/FreeCAD.app"] -symlinks = {"Applications": "/Applications"} -badge_icon = f"{containing_folder}/FreeCAD.app/Contents/Resources/freecad.icns" -window_rect = ((200, 200), (600, 400)) -icon_locations = {"FreeCAD.app": (180, 150), "Applications": (420, 150)} -size = "3g" diff --git a/src/Tools/macos_sign_and_notarize.sh b/src/Tools/macos_sign_and_notarize.sh deleted file mode 100644 index 4e3c18bfdc..0000000000 --- a/src/Tools/macos_sign_and_notarize.sh +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/zsh - -# SPDX-License-Identifier: LGPL-2.1-or-later - -# This script signs and notarizes a FreeCAD.app bundle. It expects that the bundle is in a folder -# by itself (that folder will be used as the basis for the created disk image file, so anything -# else in it will become part of the image). That folder should be located in the same folder as -# this script. - -# An environment variable called FREECAD_SIGNING_KEY_ID must exist that contains the ID of a -# Developer ID Application certificate that has been installed into the login keychain. See the -# output of -# security find-identity -p basic -v -# for a list of available keys, and the documentation for -# xcrun notarytool store-credentials -# for instructions on how to configure the credentials for the tool for use before running this -# script. - -# CONFIGURATION OPTIONS -CONTAINING_FOLDER="FreeCAD_0.21.1_arm64" # Must contain FreeCAD.app and nothing else -ARCH="arm64" # intel_x86 or arm64 -VERSION_MAJOR="0" -VERSION_MINOR="21" -VERSION_PATCH="1" -VERSION_SUFFIX="" # e.g. alpha, beta, RC1, RC2, release - -function run_codesign { - echo "Signing $1" - codesign --options runtime -f -s ${FREECAD_SIGNING_KEY_ID} --timestamp --entitlements entitlements.plist $1 -} - -IFS=$'\n' -dylibs=($(find ${CONTAINING_FOLDER}/FreeCAD.app -name "*.dylib")) -shared_objects=($(find ${CONTAINING_FOLDER}/FreeCAD.app -name "*.so")) -executables=($(file `find . -type f -perm +111 -print` | grep "Mach-O 64-bit executable" | sed 's/:.*//g')) -IFS=$' \t\n' # The default - -signed_files=("${dylibs[@]}" "${shared_objects[@]}" "${executables[@]}") - -# This list of files is generated from: -# file `find . -type f -perm +111 -print` | grep "Mach-O 64-bit executable" | sed 's/:.*//g' -for exe in ${signed_files}; do - run_codesign "${exe}" -done - -# Two additional files that must be signed that aren't caught by the above searches: -run_codesign "${CONTAINING_FOLDER}/FreeCAD.app/Contents/packages.txt" -run_codesign "${CONTAINING_FOLDER}/FreeCAD.app/Contents/Library/QuickLook/QuicklookFCStd.qlgenerator/Contents/MacOS/QuicklookFCStd" - -# Finally, sign the app itself (must be done last) -run_codesign "${CONTAINING_FOLDER}/FreeCAD.app" - -# Create a disk image from the folder -DMG_NAME="FreeCAD-${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}-mac-${ARCH}.dmg" -echo "Creating disk image ${DMG_NAME}" -pip3 install "dmgbuild[badge_icons]>=1.6.0,<1.7.0" -dmgbuild -s dmg_settings.py -Dcontaining_folder="${CONTAINING_FOLDER}" "FreeCAD" "${DMG_NAME}.dmg" - -# Submit it for notarization (requires that an App Store API Key has been set up in the notarytool) -xcrun notarytool submit --wait --keychain-profile "FreeCAD" ${DMG_NAME} - -# Assuming that notarization succeeded, it's a good practice to staple that notarization to the DMG -xcrun stapler staple ${DMG_NAME} diff --git a/tools/build/AppImage/build-with-conda.sh b/tools/build/AppImage/build-with-conda.sh deleted file mode 100755 index 4fa21a4d16..0000000000 --- a/tools/build/AppImage/build-with-conda.sh +++ /dev/null @@ -1,206 +0,0 @@ -#!/bin/sh - -# *************************************************************************** -# * Copyright (c) 2023 Yorik van Havre * -# * and FreeCAD maintainers (looooo, adrianinsaval ) * -# * * -# * This program is free software; you can redistribute it and/or modify * -# * it under the terms of the GNU Lesser General Public License (LGPL) * -# * as published by the Free Software Foundation; either version 2 of * -# * the License, or (at your option) any later version. * -# * for detail see the LICENCE text file. * -# * * -# * This program is distributed in the hope that it will be useful, * -# * but WITHOUT ANY WARRANTY; without even the implied warranty of * -# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * -# * GNU Library General Public License for more details. * -# * * -# * You should have received a copy of the GNU Library General Public * -# * License along with this program; if not, write to the Free Software * -# * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 * -# * USA * -# * * -# *************************************************************************** - -# adapted from https://github.com/FreeCAD/FreeCAD-Bundle/blob/master/conda/linux/create_bundle.sh - -# This script produces a FreeCAD AppImage locally using conda repositories. It -# is an all-in-one script that fetches FreeCAD and all dependencies from conda -# repo (it also extracts a couple of XDG files from the FreeCAD source). Everything -# comes from conda repositories, therefore, you need to make sure they contain the -# FreeCAD package you want to build. An easy way to check is by searching for -# available FreeCAD packages: -# -# conda search "freecad=0.21.0" -c adrianinsaval/label/dev -c freecad -c conda-forge -# - - -# To use this script, you will need: -# -# 1) Mambaforge from https://github.com/conda-forge/miniforge#mambaforge -# if you choose to not install the conda environment when installing Mambaforge, -# you will need to do it before running this script, by running the following -# in your terminal. This will make the "conda" and "mamba" commands available: -# eval "$(/home/yorik/Mambaforge/bin/conda shell.zsh hook)" -# (replace the Mambaforge path by yours and zsh by your shell name) -# -# 2) appimagetool from https://appimage.github.io/appimagetool/ -# place it in your exec path so it can be found by this script -# -# 3) a gpg key to sign the package -# -# 4) verify or change the config values here below -# -# 5) If you are on Fedora, there are lines to uncomment below in the script -# -# When done, just run this script and you should get an appimage with the -# corresponding sha hash in the current folder. -# -# To cleanup after build: Just delete the "AppDir" folder (not done automatically since -# next builds can reuse the downloaded packages). - -# config - -# make sure you have a gpg key for this email -gpg_key="yorik@freecad.org" -# the FreeCAD version we're looking for -target_version="1.1.0" -# make sure target_python matches the one FreeCAD is built with! Check with -# conda search "freecad=1.1.0" -c adrianinsaval/label/dev -c freecad -c conda-forge -target_python="3.10" - -# end config - -# export MAMBA_NO_BANNER=1 - -# building needed files -mkdir -p AppDir -cat > AppDir/AppRun < AppDir/packages.txt -sed -i "1s/.*/\nLIST OF PACKAGES:/" AppDir/packages.txt - -echo "\nDeleting unnecessary stuff" -rm -rf ${conda_env}/include -find ${conda_env} -name \*.a -delete -mv ${conda_env}/bin ${conda_env}/bin_tmp -mkdir ${conda_env}/bin -cp ${conda_env}/bin_tmp/freecad ${conda_env}/bin/ -cp ${conda_env}/bin_tmp/freecadcmd ${conda_env}/bin/ -cp ${conda_env}/bin_tmp/ccx ${conda_env}/bin/ -cp ${conda_env}/bin_tmp/python ${conda_env}/bin/ -cp ${conda_env}/bin_tmp/pip ${conda_env}/bin/ -cp ${conda_env}/bin_tmp/pyside2-rcc ${conda_env}/bin/ -cp ${conda_env}/bin_tmp/assistant ${conda_env}/bin/ -sed -i '1s|.*|#!/usr/bin/env python|' ${conda_env}/bin/pip -rm -rf ${conda_env}/bin_tmp - -echo "\nCreating qt config" -echo "[Paths]\nPrefix = ./../" > qt.conf -cp qt.conf ${conda_env}/bin/ -cp qt.conf ${conda_env}/libexec/ -rm qt.conf - -echo "\nCopying icons and .desktop file" -mkdir -p ${conda_env}/share/icons/hicolor/scalable/apps/ -cp ../../../src/Gui/Icons/freecad.svg ${conda_env}/share/icons/hicolor/scalable/apps/org.freecadweb.FreeCAD.svg -cp ${conda_env}/share/icons/hicolor/scalable/apps/org.freecadweb.FreeCAD.svg AppDir -mkdir -p ${conda_env}/share/icons/hicolor/64x64/apps/ -cp ../../../src/Gui/Icons/freecad-icon-64.png ${conda_env}/share/icons/hicolor/64x64/apps/org.freecadweb.FreeCAD.png -cp ${conda_env}/share/icons/hicolor/64x64/apps/org.freecadweb.FreeCAD.png AppDir -mkdir -p ${conda_env}/share/applications/ -cp ../../../src/XDGData/org.freecadweb.FreeCAD.desktop ${conda_env}/share/applications/ -sed -i "s/Exec\=FreeCAD\ \%F/Exec=AppRun/g" ${conda_env}/share/applications/org.freecadweb.FreeCAD.desktop -cp ${conda_env}/share/applications/org.freecadweb.FreeCAD.desktop AppDir -cp ../../../src/XDGData/org.freecadweb.FreeCAD.appdata.xml.in ${conda_env}/share/metainfo/org.freecadweb.FreeCAD.appdata.xml -sed -i "s/@PACKAGE_VERSION@/${target_version}/g" ${conda_env}/share/metainfo/org.freecadweb.FreeCAD.appdata.xml -sed -i "s/@APPDATA_RELEASE_DATE@/${target_date}/g" ${conda_env}/share/metainfo/org.freecadweb.FreeCAD.appdata.xml - -echo "\nCleaning" - -# Remove __pycache__ folders and .pyc files -find . -path "*/__pycache__/*" -delete -find . -name "*.pyc" -type f -delete - -# reduce size -rm -rf ${conda_env}/conda-meta/ -rm -rf ${conda_env}/doc/global/ -rm -rf ${conda_env}/share/gtk-doc/ -rm -rf ${conda_env}/lib/cmake/ - -# remove unnecessary development files -find . -name "*.h" -type f -delete -find . -name "*.cmake" -type f -delete - -# The following two lines must be uncommented if using this on Fedora 28 and up -# echo "\nAdd libnsl" -# cp ../../libc6/lib/$ARCH-linux-gnu/libnsl* ${conda_env}/lib/ - -echo "\nCreating the appimage" -chmod a+x ./AppDir/AppRun -appimagetool-${arch}.AppImage --sign --sign-key ${gpg_key} AppDir ${package_name}.AppImage - -echo "\nCreating hash" -shasum -a 256 ${package_name}.AppImage > ${package_name}.AppImage-SHA256.txt - -echo "\nAll done! You can delete the AppDir folder" diff --git a/tools/build/WindowsInstaller/Bitmaps/BackgroundBitmap.bmp b/tools/build/WindowsInstaller/Bitmaps/BackgroundBitmap.bmp deleted file mode 100644 index 29785fdcb1..0000000000 Binary files a/tools/build/WindowsInstaller/Bitmaps/BackgroundBitmap.bmp and /dev/null differ diff --git a/tools/build/WindowsInstaller/Bitmaps/BanerBitmap.bmp b/tools/build/WindowsInstaller/Bitmaps/BanerBitmap.bmp deleted file mode 100644 index a516a0f837..0000000000 Binary files a/tools/build/WindowsInstaller/Bitmaps/BanerBitmap.bmp and /dev/null differ diff --git a/tools/build/WindowsInstaller/Delete.bat b/tools/build/WindowsInstaller/Delete.bat deleted file mode 100644 index 78fe714e39..0000000000 --- a/tools/build/WindowsInstaller/Delete.bat +++ /dev/null @@ -1,88 +0,0 @@ -del /S *_d.* -del /S *_debug.* -del /S *.pyc -del /S *.pdb -del /S boost*-gd-*.dll -cd bin -del assistant.exe -del Coin4d.dll -del designer.exe -del freetyped.dll -del libcrypto-3d.dll -del libEGLd.dll -del libGLESv2d.dll -del libssl-3d.dll -del linguist.exe -del qdoc.exe -del Qt53DAnimationd.dll -del Qt53DCored.dll -del Qt53DExtrasd.dll -del Qt53DInputd.dll -del Qt53DLogicd.dll -del Qt53DQuickAnimationd.dll -del Qt53DQuickd.dll -del Qt53DQuickExtrasd.dll -del Qt53DQuickInputd.dll -del Qt53DQuickRenderd.dll -del Qt53DQuickScene2Dd.dll -del Qt53DRenderd.dll -del Qt5Bluetoothd.dll -del Qt5Bodymovind.dll -del Qt5Chartsd.dll -del Qt5Concurrentd.dll -del Qt5Cored.dll -del Qt5DataVisualizationd.dll -del Qt5DBusd.dll -del Qt5DesignerComponentsd.dll -del Qt5Designerd.dll -del Qt5Gamepadd.dll -del Qt5Guid.dll -del Qt5Helpd.dll -del Qt5Locationd.dll -del Qt5Multimediad.dll -del Qt5MultimediaQuickd.dll -del Qt5MultimediaWidgetsd.dll -del Qt5NetworkAuthd.dll -del Qt5Networkd.dll -del Qt5Nfcd.dll -del Qt5OpenGLd.dll -del Qt5Pdfd.dll -del Qt5PdfWidgetsd.dll -del Qt5Positioningd.dll -del Qt5PositioningQuickd.dll -del Qt5PrintSupportd.dll -del Qt5Purchasingd.dll -del Qt5Qmld.dll -del Qt5QmlModelsd.dll -del Qt5QmlWorkerScriptd.dll -del Qt5Quick3DAssetImportd.dll -del Qt5Quick3Dd.dll -del Qt5Quick3DRenderd.dll -del Qt5Quick3DRuntimeRenderd.dll -del Qt5Quick3DUtilsd.dll -del Qt5QuickControls2d.dll -del Qt5Quickd.dll -del Qt5QuickParticlesd.dll -del Qt5QuickShapesd.dll -del Qt5QuickTemplates2d.dll -del Qt5QuickTestd.dll -del Qt5QuickWidgetsd.dll -del Qt5RemoteObjectsd.dll -del Qt5Scriptd.dll -del Qt5ScriptToolsd.dll -del Qt5Scxmld.dll -del Qt5Sensorsd.dll -del Qt5SerialBusd.dll -del Qt5SerialPortd.dll -del Qt5Sqld.dll -del Qt5Svgd.dll -del Qt5Testd.dll -del Qt5TextToSpeechd.dll -del Qt5VirtualKeyboardd.dll -del Qt5Widgetsd.dll -del Qt5WinExtrasd.dll -del Qt5Xmld.dll -del Qt5XmlPatternsd.dll -del Quarter1d.dll -del xerces-c_3_2D.dll -del zlibd.dll diff --git a/tools/build/WindowsInstaller/Settings.nsh b/tools/build/WindowsInstaller/Settings.nsh deleted file mode 100644 index 77c4815c0a..0000000000 --- a/tools/build/WindowsInstaller/Settings.nsh +++ /dev/null @@ -1,46 +0,0 @@ -/* - -Settings for FreeCAD installer - -These typically need to be modified for each FreeCAD release - -*/ - -# Make the installer as small as possible -# comment this for testing builds since it will reduce the time to create an installer -# a lot - for the cost of a much greater file size. -# So assure it is active for release builds! -SetCompressor /SOLID lzma - -#-------------------------------- -# Version number - -!define APP_VERSION_MAJOR 0 -!define APP_VERSION_MINOR 22 -!define APP_VERSION_REVISION 0 -!define APP_VERSION_EMERGENCY "beta" # use "1" for an emergency release of FreeCAD otherwise "" - # alternatively you can use APP_VERSION_EMERGENCY for a custom suffix of the version number -!define APP_EMERGENCY_DOT "" # use "." for an emergency release of FreeCAD otherwise "" -!define APP_VERSION_BUILD 1 # Start with 1 for the installer releases of each version - -!define APP_VERSION "${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_REVISION}${APP_EMERGENCY_DOT}${APP_VERSION_EMERGENCY}" # Version to display - -!define COPYRIGHT_YEAR 2023 - -#-------------------------------- -# Installer file name -# Typical names for the release are "FreeCAD-020-Installer-1.exe" etc. - -!define ExeFile "${APP_NAME}-${APP_VERSION_MAJOR}.${APP_VERSION_MINOR}.${APP_VERSION_REVISION}${APP_VERSION_EMERGENCY}-WIN-x64-installer-${APP_VERSION_BUILD}.exe" - -#-------------------------------- -# installer bit type - FreeCAD is only provided as 64bit build -!define MULTIUSER_USE_PROGRAMFILES64 - -#-------------------------------- -# File locations -# !!! you need to adjust them to the folders in your Windows system !!! - -!define FILES_FREECAD "G:\FreeCADInst\Installer\FreeCAD" -!define FILES_DEPS "G:\FreeCADInst\Installer\MSVCRedist" -!define FILES_THUMBS "G:\FreeCADInst\Installer\thumbnail" diff --git a/tools/build/WindowsInstaller/graphics/header.bmp b/tools/build/WindowsInstaller/graphics/header.bmp deleted file mode 100644 index e66c600887..0000000000 Binary files a/tools/build/WindowsInstaller/graphics/header.bmp and /dev/null differ diff --git a/tools/build/WindowsInstaller/graphics/orange.bmp b/tools/build/WindowsInstaller/graphics/orange.bmp deleted file mode 100644 index 26f5f30be1..0000000000 Binary files a/tools/build/WindowsInstaller/graphics/orange.bmp and /dev/null differ