diff --git a/examples/opencv/.gitignore b/examples/opencv/.gitignore index 152ee41c6..68150b65f 100644 --- a/examples/opencv/.gitignore +++ b/examples/opencv/.gitignore @@ -1,3 +1,4 @@ # pixi environments .pixi haarcascade_frontalface_default.xml +*.png diff --git a/examples/opencv/README.md b/examples/opencv/README.md new file mode 100644 index 000000000..40b282fbd --- /dev/null +++ b/examples/opencv/README.md @@ -0,0 +1,29 @@ +# OpenCV example +OpenCV is a powerfull tool to do computer vision and fully opensource. + +Here are some example on how to use it with `pixi`. + +## Simple face detection algorithm +```shell +pixi run start +``` +![Face detection result](https://github.com/ruben-arts/pixi/assets/12893423/c0151496-caae-407c-9e90-0f71f3c19aa7) + + +## Simple camera calibration script +```shell +pixi run calibrate +``` + +You'll need a checkerboard for this to work. +Print this: [![chessboard](https://github.com/opencv/opencv/blob/4.x/doc/pattern.png?raw=true)](https://github.com/opencv/opencv/blob/4.x/doc/pattern.png) + +To make a picture for calibration press `SPACE` +Do this approximately 10 times with the chessboard in view of the camera + +After that press `ESC` which will start the calibration. + +When the calibration is done the camera will be used again to find the distance to the checkerboard. + +![callibrated camera result](https://github.com/ruben-arts/pixi/assets/12893423/f42825d7-5010-4805-9f6b-b02075395413) + diff --git a/examples/opencv/calibrate.py b/examples/opencv/calibrate.py new file mode 100644 index 000000000..525102653 --- /dev/null +++ b/examples/opencv/calibrate.py @@ -0,0 +1,132 @@ +import cv2 +import numpy as np + +# Termination criteria +criteria = (cv2.TERM_CRITERIA_EPS + cv2.TERM_CRITERIA_MAX_ITER, 10, 0.001) + +# Prepare object points +# The example chessboard is 9x6. +CHESSBOARD_X = 6 +CHESSBOARD_Y = 9 +# The example chessboard printed on a A4 paper will approximaly be 24mm in width and height. +SQUARE_SIZE_MM = 22.5 + +objp = np.zeros((CHESSBOARD_X * CHESSBOARD_Y, 3), np.float32) +objp[:,:2] = np.mgrid[0:CHESSBOARD_Y, 0:CHESSBOARD_X].T.reshape(-1, 2) * (SQUARE_SIZE_MM * 0.001) + +# Arrays to store object points and image points +objpoints = [] +imgpoints = [] + +# Initialize the camera +cap = cv2.VideoCapture(0) + +# Set the frame width and height +cap.set(cv2.CAP_PROP_FRAME_WIDTH, 1280) +cap.set(cv2.CAP_PROP_FRAME_HEIGHT, 720) + +img_counter = 0 + +print("Press SPACE to capture an image for calibration.") +print("Press ESC to calibrate the camera using the previously captured images.") + +while True: + ret, frame = cap.read() + if not ret: + break + + frame_clean = cv2.copyTo(frame, None) + # Find the chess board corners + gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) + ret, corners = cv2.findChessboardCorners(gray, (CHESSBOARD_Y, CHESSBOARD_X), None) + + if ret: + cv2.drawChessboardCorners(frame, (CHESSBOARD_Y, CHESSBOARD_X), corners, ret) + + cv2.imshow("Test", frame) + k = cv2.waitKey(1) + + if k%256 == 27: + # ESC pressed + print("Escape hit, closing...") + break + elif k%256 == 32: + # SPACE pressed + img_name = "opencv_frame_{}.png".format(img_counter) + cv2.imwrite(img_name, frame_clean) + print("{} written!".format(img_name)) + img_counter += 1 + + # Convert to grayscale + gray = cv2.cvtColor(frame_clean, cv2.COLOR_BGR2GRAY) + + # Find the chess board corners + ret, corners = cv2.findChessboardCorners(gray, (CHESSBOARD_Y, CHESSBOARD_X), None) + + # If found, add object points, image points (after refining them) + if ret: + objpoints.append(objp) + + corners2 = cv2.cornerSubPix(gray, corners, (11,11), (-1,-1), criteria) + imgpoints.append(corners2) + else: + print("No chessboard detected in this image: {img_name}") + +cv2.destroyAllWindows() + +if len(objpoints) > 0: + # Perform camera calibration + ret, mtx, dist, rvecs, tvecs = cv2.calibrateCamera(objpoints, imgpoints, gray.shape[::-1], None, None) + + # Print out the camera calibration results + print("Camera matrix : \n") + print(mtx) + print("dist : \n") + print(dist) + print("rvecs : \n") + print(rvecs) + print("tvecs : \n") + print(tvecs) + + while True: + ret, frame = cap.read() + if not ret: + break + k = cv2.waitKey(1) + + if k%256 == 27: + # ESC pressed + print("Escape hit, closing...") + break + + # Convert to grayscale + gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) + + # Find the chess board corners + ret, corners = cv2.findChessboardCorners(gray, (CHESSBOARD_Y, CHESSBOARD_X), None) + + if ret: + corners2 = cv2.cornerSubPix(gray, corners, (11,11), (-1,-1), criteria) + imgpoints.append(corners2) + + # Draw and display the corners + frame = cv2.drawChessboardCorners(frame, (CHESSBOARD_Y, CHESSBOARD_X), corners2, ret) + + # Estimate pose of pattern + _, rvecs, tvecs, _ = cv2.solvePnPRansac(objp, corners2, mtx, dist) + + # Compute distance from camera to pattern + x_distance = tvecs[0][0] + y_distance = tvecs[1][0] + z_distance = tvecs[2][0] + + text = f"X: {x_distance:.2f}m, Y: {y_distance:.2f}m, Z: {z_distance:.2f}m" + cv2.putText(frame, text, (10, 30), cv2.FONT_HERSHEY_SIMPLEX, 1, (0, 255, 0), 2, cv2.LINE_AA) + + cv2.imshow('Result', frame) + +else: + print("Not enough images where corners were found. Please capture more images.") + +cap.release() +cv2.destroyAllWindows() diff --git a/examples/opencv/pixi.lock b/examples/opencv/pixi.lock index e20e53922..ca0942776 100644 --- a/examples/opencv/pixi.lock +++ b/examples/opencv/pixi.lock @@ -1,4753 +1,4554 @@ metadata: content_hash: - win-64: '"09e4f36874ab64d0983557abb659cb1e7697a3938835e00e86e0eb061d481e0a"' - linux-64: '"09e4f36874ab64d0983557abb659cb1e7697a3938835e00e86e0eb061d481e0a"' - osx-64: '"09e4f36874ab64d0983557abb659cb1e7697a3938835e00e86e0eb061d481e0a"' - osx-arm64: '"09e4f36874ab64d0983557abb659cb1e7697a3938835e00e86e0eb061d481e0a"' + linux-64: '"e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d"' + osx-arm64: '"e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d"' + win-64: '"e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d"' + osx-64: '"e90c2ee71ad70fc0a1c8302029533a7d1498f2bffcd0eaa8d2934700e775dc1d"' channels: - url: https://conda.anaconda.org/conda-forge/ used_env_vars: [] platforms: - - osx-arm64 - linux-64 - - win-64 - osx-64 + - osx-arm64 + - win-64 sources: [] time_metadata: null git_metadata: null inputs_metadata: null custom_metadata: null package: +- name: requests + version: 2.31.0 + manager: conda + platform: linux-64 + dependencies: + certifi: '>=2017.4.17' + python: '>=3.7' + charset-normalizer: '>=2,<4' + urllib3: '>=1.21.1,<3' + idna: '>=2.5,<4' + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + hash: + md5: a30144e4156cdbb236f99ebb49828f8b + sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad + optional: false + category: main + source: null + build: pyhd8ed1ab_0 - name: opencv version: 4.7.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - libopencv: ==4.7.0 py310h74ad70b_4 - py-opencv: ==4.7.0 py310hbbfc1a7_4 + py-opencv: ==4.7.0 py310hfdc917e_4 python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/win-64/opencv-4.7.0-py310h5588dad_4.conda + libopencv: ==4.7.0 py310h245f934_4 + url: https://conda.anaconda.org/conda-forge/linux-64/opencv-4.7.0-py310hff52083_4.conda hash: - md5: cc83e2be1f9ae7bad1fa52f7cafaca28 - sha256: 936b87de53ece135c8e2beb3e538bb5072fe60c9fdb238f2b0b86cfbe16dbc4e + md5: fbbdde68a622d37f5c7a56c0ab68c603 + sha256: 1fe19c6441691132c5b973fb906f3930604e74ed4bbd5e5e1fd0b4c403a401d3 optional: false category: main source: null - build: py310h5588dad_4 + build: py310hff52083_4 - name: libopencv version: 4.7.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - jasper: '>=4.0.0,<5.0a0' + _openmp_mutex: '>=4.5' + libpng: '>=1.6.39,<1.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + libprotobuf: '>=3.21.12,<3.22.0a0' qt-main: '>=5.15.8,<5.16.0a0' + libcblas: '>=3.9.0,<4.0a0' + jasper: '>=4.0.0,<5.0a0' + harfbuzz: '>=7.3.0,<8.0a0' liblapacke: '>=3.9.0,<4.0a0' - liblapack: '>=3.9.0,<4.0a0' - ffmpeg: '>=5.1.2,<6.0a0' + libglib: '>=2.76.2,<3.0a0' hdf5: '>=1.14.0,<1.14.1.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - libprotobuf: '>=3.21.12,<3.22.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - numpy: '>=1.21.6,<2.0a0' - ucrt: '>=10.0.20348.0' - libpng: '>=1.6.39,<1.7.0a0' - vc: '>=14.2,<15' - libwebp-base: '>=1.3.0,<2.0a0' - harfbuzz: '>=7.3.0,<8.0a0' - libcblas: '>=3.9.0,<4.0a0' - vc14_runtime: '>=14.29.30139' freetype: '>=2.12.1,<3.0a0' + libwebp-base: '>=1.3.0,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + ffmpeg: '>=6.0.0,<7.0a0' + __glibc: '>=2.17,<3.0.a0' libtiff: '>=4.5.0,<4.6.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libopencv-4.7.0-py310h74ad70b_4.conda + numpy: '>=1.21.6,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopencv-4.7.0-py310h245f934_4.conda hash: - md5: 18536aa1f447a3a2b0b47d4ca4678168 - sha256: 73a9e6f45d57c00b62937c9cd99cc30bc97d5f17090d15a7bf759a4ffaa63a62 + md5: 2a0a6e82936caa5fcdd5f8c7e234195c + sha256: d7d856a645ab5577af463576e9a4dd5ab993f99cf2daeb978ec856e965d5d56f optional: false category: main source: null - build: py310h74ad70b_4 + build: py310h245f934_4 - name: py-opencv version: 4.7.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - python_abi: 3.10.* *_cp310 - python: '>=3.10,<3.11.0a0' - libopencv: ==4.7.0 py310h74ad70b_4 numpy: '>=1.21.6,<2.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/py-opencv-4.7.0-py310hbbfc1a7_4.conda + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libopencv: ==4.7.0 py310h245f934_4 + url: https://conda.anaconda.org/conda-forge/linux-64/py-opencv-4.7.0-py310hfdc917e_4.conda hash: - md5: 35cdfcece2dbf052d54db64a3cd6a607 - sha256: d9a85d1da41861119080b61db8ea74e330e575f88ff0e4125eda6b033f04bd8c + md5: 548cd36a4f6da0bc75b0d4b1a1a88599 + sha256: b7dd26e1b68d08253aa3d296ee908fffb7b91b6630178986fbacb4138dc4fee4 optional: false category: main source: null - build: py310hbbfc1a7_4 + build: py310hfdc917e_4 - name: libpng version: 1.6.39 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.39-h19919ed_0.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda hash: - md5: ab6febdb2dbd9c00803609079db4de71 - sha256: 1f139a72109366ba1da69f5bdc569b0e6783f887615807c02d7bfcc2c7575067 + md5: e1c890aebdebbfbf87e2c917187b4416 + sha256: a32b36d34e4f2490b99bddbc77d01a674d304f667f0e62c89e02c961addef462 optional: false category: main source: null - build: h19919ed_0 -- name: libzlib - version: 1.2.13 + build: h753d276_0 +- name: harfbuzz + version: 7.3.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_4.tar.bz2 + libglib: '>=2.76.2,<3.0a0' + icu: '>=72.1,<73.0a0' + libstdcxx-ng: '>=12' + graphite2: '*' + cairo: '>=1.16.0,<2.0a0' + freetype: '>=2.12.1,<3.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-7.3.0-hdb3a94d_0.conda hash: - md5: 0cc5c5cc64ee1637f37f8540a175854c - sha256: 184da12b4296088a47086f4e69e65eb5f8537a824ee3131d8076775e1d1ea767 + md5: 765bc76c0dfaf24ff9d8a2935b2510df + sha256: 9d99416e9d4a01ea0915f65ea7fac71dee11916de115fbd0325c0cb82e0b63f8 optional: false category: main source: null - build: hcfcfb64_4 + build: hdb3a94d_0 - name: libjpeg-turbo version: 2.1.5.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-2.1.5.1-hcfcfb64_0.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-2.1.5.1-h0b41bf4_0.conda hash: - md5: f2fad2ae9f1365e343e4329fdb1e9d63 - sha256: 42a874448d060b59f9b5c900b260c992df9543da55c2ac9537b442450d6e6497 + md5: 1edd9e67bdb90d78cea97733ff6b54e6 + sha256: b19de7bda34eac4fa931be11fa8d7640cdf1441dfd51c91786586a4a4c64c92f optional: false category: main source: null - build: hcfcfb64_0 + build: h0b41bf4_0 - name: libwebp-base version: 1.3.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.0-hcfcfb64_0.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.0-h0b41bf4_0.conda hash: - md5: 381a3645c51cbf478872899b16490318 - sha256: 9355940270db76592a1cdbcb840740afb5f6b81d167ac4f2cb0fbb2c37397566 + md5: 0d4a7508d8c6c65314f2b9c1f56ad408 + sha256: ac3e073ea77803da71eb77e7fcef07defb345bda95eee3327c73ddf85b5714da optional: false category: main source: null - build: hcfcfb64_0 + build: h0b41bf4_0 - name: libprotobuf version: 3.21.12 manager: conda - platform: win-64 + platform: linux-64 dependencies: - ucrt: '>=10.0.20348.0' libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-3.21.12-h12be248_0.conda - hash: - md5: 065644957b64030c520c732a0b7eb43d - sha256: 78340c88bcf39d0968a47509e8d15b30805dd8e3dda77eb67b30c10d3a552a32 - optional: false - category: main - source: null - build: h12be248_0 -- name: harfbuzz - version: 7.3.0 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.2,<15' - icu: '>=72.1,<73.0a0' - libglib: '>=2.76.2,<3.0a0' - cairo: '>=1.16.0,<2.0a0' - freetype: '>=2.12.1,<3.0a0' - vc14_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - graphite2: '*' - url: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-7.3.0-h196d34a_0.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.21.12-h3eb15da_0.conda hash: - md5: 40c65245e53d8eaa9bb9cb5f24f5f6ef - sha256: b9ffdff0a9fc6f0dfab67eba16df6021c0ca43da834151901926acbf6d89fcb1 + md5: 4b36c68184c6c85d88c6e595a32a1ede + sha256: 760118d7879b5524e118db1c75cc2a5dfceb2c4940dcae94751a94786c8cf12b optional: false category: main source: null - build: h196d34a_0 + build: h3eb15da_0 - name: icu version: '72.1' manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/icu-72.1-h63175ca_0.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/icu-72.1-hcb278e6_0.conda hash: - md5: a108731562663d787066bd17c9595114 - sha256: 06ceff1f021f4a540a6b5c8a037b79b3d98757b1f9659a4b08ad352912b8ef2e + md5: 7c8d20d847bb45f56bd941578fcfa146 + sha256: e44cc00eec068e7f7a6dd117ba17bf5d57658729b7b841945546f82505138292 optional: false category: main source: null - build: h63175ca_0 + build: hcb278e6_0 - name: jasper version: 4.0.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.2,<15' - freeglut: '>=3.2.2,<4.0a0' libjpeg-turbo: '>=2.1.5.1,<3.0a0' - vs2015_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/jasper-4.0.0-h00710e9_1.conda + freeglut: '>=3.2.2,<4.0a0' + libglu: '>=9.0.0,<10.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.0.0-h32699f2_1.conda hash: - md5: 2eea2d8fc4f3d9ba44bb192661cd96a0 - sha256: 00862dead62e48c09d8c45276b56da690266bbe358a0b75f8770524497729acf + md5: fdde5424ecef5f7ad310b4242229291c + sha256: 030b3e6da1ed79c700d73641259c7489b66632c96d9db6232e342951bb16d606 optional: false category: main source: null - build: h00710e9_1 + build: h32699f2_1 - name: python version: 3.10.11 manager: conda - platform: win-64 + platform: linux-64 dependencies: - libsqlite: '>=3.41.2,<4.0a0' - tk: '>=8.6.12,<8.7.0a0' - libffi: '>=3.4,<4.0a0' - vc14_runtime: '>=14.16.27033' + tzdata: '*' openssl: '>=3.1.0,<4.0a0' - bzip2: '>=1.0.8,<2.0a0' + readline: '>=8.2,<9.0a0' + libffi: '>=3.4,<4.0a0' + libnsl: '>=2.0.0,<2.1.0a0' + libsqlite: '>=3.41.2,<4.0a0' + libgcc-ng: '>=12' libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.1,<15' + bzip2: '>=1.0.8,<2.0a0' + libuuid: '>=2.38.1,<3.0a0' + ncurses: '>=6.3,<7.0a0' + ld_impl_linux-64: '>=2.36.1' + tk: '>=8.6.12,<8.7.0a0' xz: '>=5.2.6,<6.0a0' - tzdata: '*' - url: https://conda.anaconda.org/conda-forge/win-64/python-3.10.11-h4de0772_0_cpython.conda + url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.11-he550d4f_0_cpython.conda hash: - md5: db564a923e0197854756c727ad3e4b8f - sha256: 1a437ff15647fe8566e6ae2118945080b8cbaebe95bc50d3fb65c1cbefffc22f + md5: 7439c9d24378a82b73a7a53868dacdf1 + sha256: 6682c75caf3456796fb76313a25475738d85729b43f8c0e904407c0ed8362ede optional: false category: main source: null - build: h4de0772_0_cpython -- name: tk - version: 8.6.12 + build: he550d4f_0_cpython +- name: readline + version: '8.2' manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.1,<15' - vs2015_runtime: '>=14.16.27033' - url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2 + ncurses: '>=6.3,<7.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda hash: - md5: c69a5047cc9291ae40afd4a1ad6f0c0f - sha256: 087795090a99a1d397ef1ed80b4a01fabfb0122efb141562c168e3c0a76edba6 + md5: 47d31b792659ce70f470b5c82fdfb7a4 + sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 optional: false category: main source: null - build: h8ffe710_0 -- name: xz - version: 5.2.6 + build: h8228510_1 +- name: tk + version: 8.6.12 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.16.27033' - vc: '>=14.1,<15' - url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 + libzlib: '>=1.2.11,<1.3.0a0' + libgcc-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2 hash: - md5: 515d77642eaa3639413c6b1bc3f94219 - sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 + md5: 5b8c42eb62e9fc961af70bdd6a26e168 + sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 optional: false category: main source: null - build: h8d14728_0 -- name: requests - version: 2.31.0 + build: h27826a3_0 +- name: libuuid + version: 2.38.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - idna: '>=2.5,<4' - urllib3: '>=1.21.1,<3' - python: '>=3.7' - charset-normalizer: '>=2,<4' - certifi: '>=2017.4.17' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda hash: - md5: a30144e4156cdbb236f99ebb49828f8b - sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad + md5: 40b61aab5c7ba9ff276c41cfffe6b80b + sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: freetype - version: 2.12.1 + build: h0b41bf4_0 +- name: xz + version: 5.2.6 manager: conda - platform: win-64 + platform: linux-64 dependencies: - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - vs2015_runtime: '>=14.16.27033' - vc: '>=14.1,<15' - url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-h546665d_1.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 hash: - md5: 1b513009cd012591f3fdc9e03a74ec0a - sha256: fe027235660d9dfe7889c350a51e96bc0134c3f408827a4c58c4b0557409984c + md5: 2161070d867d1b1204ea749c8eec4ef0 + sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 optional: false category: main source: null - build: h546665d_1 -- name: vc14_runtime - version: 14.34.31931 + build: h166bdaf_0 +- name: libnsl + version: 2.0.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.34.31931-h5081d32_16.conda + libgcc-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2 hash: - md5: 22125178654c6a8a393f9743d585704b - sha256: 1161f4848e1c0663897a6324fbc4ff13dafd11650b42c9864428da73593dda95 + md5: 39b1328babf85c7c3a61636d9cd50206 + sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad optional: false category: main source: null - build: h5081d32_16 -- name: vs2015_runtime - version: 14.34.31931 + build: h7f98852_0 +- name: libgcc-ng + version: 13.1.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc14_runtime: '>=14.34.31931' - url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.34.31931-hed1258a_16.conda + _libgcc_mutex: ==0.1 conda_forge + _openmp_mutex: '>=4.5' + url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.1.0-he5830b7_0.conda hash: - md5: 0374eae69b6dbfb27c3dc27167109eb4 - sha256: 25d852887a501ca8cb6753a4f3dae1549fa49592d51aec1a230b1f0c85fe4297 + md5: cd93f779ff018dd85c7544c015c9db3c + sha256: fba897a02f35b2b5e6edc43a746d1fa6970a77b422f258246316110af8966911 optional: false category: main source: null - build: hed1258a_16 -- name: ucrt - version: 10.0.22621.0 + build: he5830b7_0 +- name: _libgcc_mutex + version: '0.1' manager: conda - platform: win-64 + platform: linux-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 hash: - md5: 72608f6cd3e5898229c3ea16deb1ac43 - sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 + md5: d7c89558ba9fa0495403155b64376d81 + sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 optional: false category: main source: null - build: h57928b3_0 -- name: libglib - version: 2.76.3 + build: conda_forge +- name: libstdcxx-ng + version: 13.1.0 manager: conda - platform: win-64 - dependencies: - vc14_runtime: '>=14.29.30139' - vc: '>=14.2,<15' - libffi: '>=3.4,<4.0a0' - ucrt: '>=10.0.20348.0' - libiconv: '>=1.17,<2.0a0' - pcre2: '>=10.40,<10.41.0a0' - gettext: '>=0.21.1,<1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.76.3-he8f3873_0.conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.1.0-hfd8a6a1_0.conda hash: - md5: 4695e6acaf4790170161048d56cb51fc - sha256: 170d42dcf0c73f5846dfb0c4a241c065cd9830c644d98042f076f25c309e7571 + md5: 067bcc23164642f4c226da631f2a2e1d + sha256: 6f9eb2d7a96687938c0001166a3b308460a8eb02b10e9d0dd9e251f0219ea05c optional: false category: main source: null - build: he8f3873_0 -- name: libiconv - version: '1.17' + build: hfd8a6a1_0 +- name: libzlib + version: 1.2.13 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.16.27033' - vc: '>=14.1,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda hash: - md5: 050119977a86e4856f0416e2edcf81bb - sha256: 657c2a992c896475021a25faebd9ccfaa149c5d70c7dc824d4069784b686cea1 + md5: f36c115f1ee199da648e0597ec2047ad + sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4 optional: false category: main source: null - build: h8ffe710_0 -- name: gettext - version: 0.21.1 + build: hd590300_5 +- name: ncurses + version: '6.4' manager: conda - platform: win-64 + platform: linux-64 dependencies: - libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda hash: - md5: 299d4fd6798a45337042ff5a48219e5f - sha256: 71c75b0a4dc2cf95d2860ea0076edf9f5558baeb4dacaeecb32643b199074616 + md5: 681105bccc2a3f7f1a837d47d39c9179 + sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a optional: false category: main source: null - build: h5728263_0 -- name: pcre2 - version: '10.40' + build: hcb278e6_0 +- name: numpy + version: 1.25.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - ucrt: '>=10.0.20348.0' - libzlib: '>=1.2.12,<1.3.0a0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - bzip2: '>=1.0.8,<2.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2 + libcblas: '>=3.9.0,<4.0a0' + liblapack: '>=3.9.0,<4.0a0' + libstdcxx-ng: '>=12' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libblas: '>=3.9.0,<4.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.25.0-py310ha4c1d20_0.conda hash: - md5: 2519de0d9620dc2bc7e19caf6867136d - sha256: 5833c63548e4fae91da6d77739eab7dc9bf6542e43f105826b23c01bfdd9cb57 + md5: 03319f78e5c9c8d90c0110e2c6ed24f6 + sha256: bee4c383e78effeccbf854636b174e7242cfb486daa5387cfa57963d3c65628e optional: false category: main source: null - build: h17e33f8_0 -- name: graphite2 - version: 1.3.13 + build: py310ha4c1d20_0 +- name: python_abi + version: '3.10' manager: conda - platform: win-64 - dependencies: - vc: 14.* - url: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-1000.tar.bz2 + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-3_cp310.conda hash: - md5: 8fc0e04e5c852cadf2cad68b86a906ab - sha256: ed47008df8e57a83f45112985b76ac4339177486bd4d1d1b305d685a832532aa + md5: 4eb33d14d794b0f4be116443ffed3853 + sha256: bcb15db27eb6fbc0fe15d23aa60dcfa58ef451d92771441068d4a911aea7bb9f optional: false category: main source: null - build: '1000' -- name: cairo - version: 1.16.0 + build: 3_cp310 +- name: libtiff + version: 4.5.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - zlib: '*' - libpng: '>=1.6.39,<1.7.0a0' - ucrt: '>=10.0.20348.0' - icu: '>=72.1,<73.0a0' - vc: '>=14.2,<15' - libglib: '>=2.76.2,<3.0a0' - pixman: '>=0.40.0,<1.0a0' - freetype: '>=2.12.1,<3.0a0' - fontconfig: '>=2.14.2,<3.0a0' - fonts-conda-ecosystem: '*' + libdeflate: '>=1.18,<1.19.0a0' libzlib: '>=1.2.13,<1.3.0a0' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/cairo-1.16.0-hdecc03f_1016.conda + libgcc-ng: '>=12' + libwebp-base: '>=1.3.0,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + xz: '>=5.2.6,<6.0a0' + libstdcxx-ng: '>=12' + lerc: '>=4.0.0,<5.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.1-h8b53f26_0.conda hash: - md5: d5a082e08ff9a0206ad03ebb0fafdf8d - sha256: a0e37d9fdd4069141889ab78154ed0dcee5417fe8fcd3585a744993660a7adc0 + md5: 8ad377fb60abab446a9f02c62b3c2190 + sha256: 920943ad46869938bd070ccd4c0117594e07538bc6b27b75462594c67b6f215d optional: false category: main source: null - build: hdecc03f_1016 -- name: fonts-conda-ecosystem - version: '1' + build: h8b53f26_0 +- name: lerc + version: 4.0.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - fonts-conda-forge: '*' - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 hash: - md5: fee5683a3f04bd15cbd8318b096a27ab - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + md5: 76bbff344f0134279f225174e9064c8f + sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 optional: false category: main source: null - build: '0' -- name: zlib - version: 1.2.13 - manager: conda - platform: win-64 + build: h27087fc_0 +- name: libdeflate + version: '1.18' + manager: conda + platform: linux-64 dependencies: - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - vs2015_runtime: '>=14.29.30139' - libzlib: ==1.2.13 hcfcfb64_4 - url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_4.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.18-h0b41bf4_0.conda hash: - md5: eed9fec3e6d2e8865135b09d24ca040c - sha256: 28e9fe3ca91ccc50080d777cb1642c64e385dbb8843162d7cadad418a12ef35d + md5: 6aa9c9de5542ecb07fdda9ca626252d8 + sha256: 949d84ceea543802c1e085b2aa58f1d6cb5dd8cec5a9abaaf4e8ac65d6094b3a optional: false category: main source: null - build: hcfcfb64_4 -- name: fontconfig - version: 2.14.2 + build: h0b41bf4_0 +- name: ffmpeg + version: 6.0.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - expat: '>=2.5.0,<3.0a0' - ucrt: '>=10.0.20348.0' - vs2015_runtime: '>=14.29.30139' + libxml2: '>=2.11.4,<2.12.0a0' + openh264: '>=2.3.1,<2.3.2.0a0' + dav1d: '>=1.2.1,<1.2.2.0a0' + svt-av1: '>=1.6.0,<1.6.1.0a0' + x265: '>=3.5,<3.6.0a0' libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + x264: '>=1!164.3095,<1!165' + aom: '>=3.5.0,<3.6.0a0' + gnutls: '>=3.7.8,<3.8.0a0' + libopus: '>=1.3.1,<2.0a0' + lame: '>=3.100,<3.101.0a0' + gmp: '>=6.2.1,<7.0a0' + libvpx: '>=1.13.0,<1.14.0a0' freetype: '>=2.12.1,<3.0a0' - vc: '>=14.2,<15' - libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda + libass: '>=0.17.1,<0.17.2.0a0' + libva: '>=2.18.0,<3.0a0' + fontconfig: '>=2.14.2,<3.0a0' + bzip2: '>=1.0.8,<2.0a0' + libstdcxx-ng: '>=12' + fonts-conda-ecosystem: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.0.0-gpl_hdbbbd96_103.conda hash: - md5: 08767992f1a4f1336a257af1241034bd - sha256: 643f2b95be68abeb130c53d543dcd0c1244bebabd58c774a21b31e4b51ac3c96 + md5: 20eeaa513f8cc355e8b0ebce04ff96d6 + sha256: b2e9d075f6517d9e9c63ef4a0b245ed091e32a137d9ed3bb386618000b74dfbc optional: false category: main source: null - build: hbde0cde_0 -- name: pixman - version: 0.40.0 + build: gpl_hdbbbd96_103 +- name: fonts-conda-ecosystem + version: '1' manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.16.27012' - vc: '>=14.1,<15.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/pixman-0.40.0-h8ffe710_0.tar.bz2 + fonts-conda-forge: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 hash: - md5: 32b45d3fcffddc84cc1a014a0b5f0d58 - sha256: 7f0ceed590a717ddc7612f67657119df1e6df0d031a822b570d741a89a3ba784 + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 optional: false category: main source: null - build: h8ffe710_0 -- name: fonts-conda-forge - version: '1' + build: '0' +- name: gnutls + version: 3.7.8 manager: conda - platform: win-64 + platform: linux-64 dependencies: - font-ttf-inconsolata: '*' - font-ttf-ubuntu: '*' - font-ttf-dejavu-sans-mono: '*' - font-ttf-source-code-pro: '*' - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + p11-kit: '>=0.24.1,<0.25.0a0' + libstdcxx-ng: '>=12' + libidn2: '>=2,<3.0a0' + nettle: '>=3.8.1,<3.9.0a0' + libgcc-ng: '>=12' + libtasn1: '>=4.19.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.8-hf3e180e_0.tar.bz2 hash: - md5: f766549260d6815b0c52253f1fb1bb29 - sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + md5: cbe8e27140d67c3f30e01cfb642a6e7c + sha256: 4a47e4558395b98fff4c1c44ad358dade62b350a03b5a784d4bc589d6eb7ac9e optional: false category: main source: null - build: '0' -- name: font-ttf-dejavu-sans-mono - version: '2.37' + build: hf3e180e_0 +- name: gmp + version: 6.2.1 manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + platform: linux-64 + dependencies: + libgcc-ng: '>=7.5.0' + libstdcxx-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2 hash: - md5: 0c96522c6bdaed4b1566d11387caaf45 - sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + md5: b94cf2db16066b242ebd26db2facbd56 + sha256: 07a5319e1ac54fe5d38f50c60f7485af7f830b036da56957d0bfb7558a886198 optional: false category: main source: null - build: hab24e00_0 -- name: font-ttf-ubuntu - version: '0.83' + build: h58526e2_0 +- name: libvpx + version: 1.13.0 manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + platform: linux-64 + dependencies: + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.13.0-hcb278e6_0.conda hash: - md5: 19410c3df09dfb12d1206132a1d357c5 - sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + md5: 911a6c4fc35db915c069df32f0ea2376 + sha256: f1d029c3a1b1026843f02541fff0d2407236c7b9fa46595e9e0dfd6e246de09e optional: false category: main source: null - build: hab24e00_0 -- name: freeglut - version: 3.2.2 + build: hcb278e6_0 +- name: libxml2 + version: 2.11.4 manager: conda - platform: win-64 + platform: linux-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/freeglut-3.2.2-h63175ca_2.conda + xz: '>=5.2.6,<6.0a0' + icu: '>=72.1,<73.0a0' + libiconv: '>=1.17,<2.0a0' + libgcc-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.11.4-h0d562d8_0.conda hash: - md5: e2d290a0159d485932abed83878e6952 - sha256: 42fd40d97dab1adb63ff0bb001e4ed9b3eef377a2de5e572bf989c6db79262c8 + md5: e46fad17d5fb57316b956f88dca765e4 + sha256: bc7fa8590c15ffdea5101075ce02de09441c9f378ac1d05e26510d12d25d7099 optional: false category: main source: null - build: h63175ca_2 -- name: numpy - version: 1.24.3 + build: h0d562d8_0 +- name: aom + version: 3.5.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.29.30139' - libcblas: '>=3.9.0,<4.0a0' - libblas: '>=3.9.0,<4.0a0' - vc: '>=14.2,<15' - liblapack: '>=3.9.0,<4.0a0' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.24.3-py310hd02465a_0.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.5.0-h27087fc_0.tar.bz2 hash: - md5: 5c97f796ca054e3bd9861db68094cd5f - sha256: 7fcb1c3a4d23986ad801fbbd2bf72c8278c8e1869b84cde1347f399e85317deb + md5: a08150fd2298460cd1fcccf626305642 + sha256: ed05f72ffa891e3c6a507eac6f0221c85c1f0611491328cd098308060740891c optional: false category: main source: null - build: py310hd02465a_0 -- name: python_abi - version: '3.10' + build: h27087fc_0 +- name: libva + version: 2.18.0 manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-3_cp310.conda + platform: linux-64 + dependencies: + libdrm: '>=2.4.114,<2.5.0a0' + xorg-libxfixes: '*' + xorg-libx11: '>=1.8.4,<2.0a0' + libgcc-ng: '>=12' + xorg-libxext: '>=1.3.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.18.0-h0b41bf4_0.conda hash: - md5: f4cfd883c0d91bb17164d8e34f4900d5 - sha256: 8212c6f1a68d5a494bcde5cd64196626024059dcbe8995469c8a5ed32694efa0 + md5: 56e049224de34bbe0478aad422227942 + sha256: e7254d0111a403ffe707e2ad39b6ce49a2be733e751d14a7255b0cb20da2a16b optional: false category: main source: null - build: 3_cp310 -- name: libtiff - version: 4.5.0 + build: h0b41bf4_0 +- name: svt-av1 + version: 1.6.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - lerc: '>=4.0.0,<5.0a0' - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - xz: '>=5.2.6,<6.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - vs2015_runtime: '>=14.29.30139' - zstd: '>=1.5.2,<1.6.0a0' - libdeflate: '>=1.18,<1.19.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.5.0-h6c8260b_6.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-1.6.0-h59595ed_0.conda hash: - md5: 12628df645fcf0f74922138858724831 - sha256: 854c90084d43a8c5e3a41c0e698ee579257d8e3eacbed73b61728501e4f6bcc5 + md5: 26d28bba29ad67e81fa278b417f7e00a + sha256: 910a1c9eda41ea4d6aa5f2f32468790462292442277b8c81e610ae3377fc0782 optional: false category: main source: null - build: h6c8260b_6 -- name: lerc - version: 4.0.0 + build: h59595ed_0 +- name: fontconfig + version: 2.14.2 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30037' - url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + libuuid: '>=2.32.1,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libgcc-ng: '>=12' + expat: '>=2.5.0,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda hash: - md5: 1900cb3cab5055833cfddb0ba233b074 - sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 + md5: 0f69b688f52ff6da70bccb7ff7001d1d + sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 optional: false category: main source: null - build: h63175ca_0 -- name: libdeflate - version: '1.18' + build: h14ed4e7_0 +- name: libass + version: 0.17.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.18-hcfcfb64_0.conda + fribidi: '>=1.0.10,<2.0a0' + freetype: '>=2.12.1,<3.0a0' + libgcc-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + libexpat: '>=2.5.0,<3.0a0' + fontconfig: '>=2.14.2,<3.0a0' + fonts-conda-ecosystem: '*' + harfbuzz: '>=7.2.0,<8.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-hc9aadba_0.conda hash: - md5: 493acc14c556ef6f1d13ba00b099c679 - sha256: 9a9a1a6e47777c9bf6086d88f6567ed3fc32d4f849b3d42b51bbf0b9fa4727f7 + md5: 436f1014ae041c6d94fcac397461a299 + sha256: 8df959388e1968ea14f27c4af209bb667ba3da7b15a76b25931090a6a47d3e1f optional: false category: main source: null - build: hcfcfb64_0 -- name: liblapacke - version: 3.9.0 + build: hc9aadba_0 +- name: dav1d + version: 1.2.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - libcblas: ==3.9.0 17_win64_mkl - libblas: ==3.9.0 17_win64_mkl - liblapack: ==3.9.0 17_win64_mkl - url: https://conda.anaconda.org/conda-forge/win-64/liblapacke-3.9.0-17_win64_mkl.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda hash: - md5: 6c98bb1c41479063f089459dcdedcecb - sha256: 41edcf08345477f661675bf2595ae4c523b88bb712ded4d5a9bc40b0fdd1f10a + md5: 418c6ca5929a611cbd69204907a83995 + sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020 optional: false category: main source: null - build: 17_win64_mkl -- name: libblas - version: 3.9.0 + build: hd590300_0 +- name: fonts-conda-forge + version: '1' manager: conda - platform: win-64 + platform: linux-64 dependencies: - mkl: ==2022.1.0 h6a75c08_874 - url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-17_win64_mkl.conda + font-ttf-ubuntu: '*' + font-ttf-inconsolata: '*' + font-ttf-dejavu-sans-mono: '*' + font-ttf-source-code-pro: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 hash: - md5: 9e42ac6b256b96bfaa19f829c25940e8 - sha256: 56c5394e80c429acfee53a075e3d1b6ccd8c294510084cd6a2a4b7d8cc80abfb + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 optional: false category: main source: null - build: 17_win64_mkl -- name: libcblas - version: 3.9.0 + build: '0' +- name: nettle + version: 3.8.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - libblas: ==3.9.0 17_win64_mkl - url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-17_win64_mkl.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.8.1-hc379101_1.tar.bz2 hash: - md5: 768b2c3be666ecf9e62f939ea919f819 - sha256: 5b9914c3b95d947a613a9b6d3c1c1515257a61e7838a1f2484927f0c9fe23063 + md5: 3cb2c7df59990bd37c2ce27fd906de68 + sha256: 49c569a69608eee784e815179a70c6ae4d088dac42b7df999044f68058d593bb optional: false category: main source: null - build: 17_win64_mkl -- name: liblapack - version: 3.9.0 + build: hc379101_1 +- name: libtasn1 + version: 4.19.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - libblas: ==3.9.0 17_win64_mkl - url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-17_win64_mkl.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2 hash: - md5: 278121fe8f0d65d496998aa290f36322 - sha256: 68922a63d92a414af06b208136c9304be179c6fc911e8636430b0e15c0a9aa3b + md5: 93840744a8552e9ebf6bb1a5dffc125a + sha256: 5bfeada0e1c6ec2574afe2d17cdbc39994d693a41431338a6cb9dfa7c4d7bfc8 optional: false category: main source: null - build: 17_win64_mkl -- name: mkl - version: 2022.1.0 + build: h166bdaf_0 +- name: p11-kit + version: 0.24.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - intel-openmp: '*' - tbb: 2021.* - url: https://conda.anaconda.org/conda-forge/win-64/mkl-2022.1.0-h6a75c08_874.tar.bz2 + libffi: '>=3.4.2,<3.5.0a0' + libgcc-ng: '>=12' + libtasn1: '>=4.18.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2 hash: - md5: 2ff89a7337a9636029b4db9466e9f8e3 - sha256: b130d13dba6a798cbcce8f19c52e9765b75b8668d2f8f95ba8210c63b6fa84eb + md5: 56ee94e34b71742bbdfa832c974e47a8 + sha256: aa8d3887b36557ad0c839e4876c0496e0d670afe843bf5bba4a87764b868196d optional: false category: main source: null - build: h6a75c08_874 -- name: qt-main - version: 5.15.8 + build: hc5aa10d_0 +- name: libiconv + version: '1.17' manager: conda - platform: win-64 + platform: linux-64 dependencies: - openssl: '>=3.1.0,<4.0a0' - ucrt: '>=10.0.20348.0' - libglib: '>=2.76.3,<3.0a0' - gst-plugins-base: '>=1.22.3,<1.23.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - krb5: '>=1.20.1,<1.21.0a0' - libsqlite: '>=3.42.0,<4.0a0' - icu: '>=72.1,<73.0a0' - libclang13: '>=15.0.7' - libpng: '>=1.6.39,<1.7.0a0' - gstreamer: '>=1.22.3,<1.23.0a0' - vc: '>=14.2,<15' - libclang: '>=15.0.7,<16.0a0' - zstd: '>=1.5.2,<1.6.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/qt-main-5.15.8-h2c8576c_13.conda + libgcc-ng: '>=10.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2 hash: - md5: b00e4814feb5fa92b864ef031130c2cf - sha256: 9f638055e92c8faf4d52511a14f01accc801b293e70565d284f2522d94ec71b0 + md5: b62b52da46c39ee2bc3c162ac7f1804d + sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 optional: false category: main source: null - build: h2c8576c_13 -- name: libsqlite - version: 3.42.0 + build: h166bdaf_0 +- name: libdrm + version: 2.4.114 manager: conda - platform: win-64 + platform: linux-64 dependencies: - ucrt: '>=10.0.20348.0' - vc14_runtime: '>=14.29.30139' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.42.0-hcfcfb64_0.conda + libpciaccess: '>=0.17,<0.18.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.114-h166bdaf_0.tar.bz2 hash: - md5: 9a71d93deb99cc09d8939d5235b5909a - sha256: 70bc1fdb72de847807355c13144666d4f151894f9b141ee559f5d243bdf577e2 + md5: efb58e80f5d0179a783c4e76c3df3b9c + sha256: 9316075084ad66f9f96d31836e83303a8199eec93c12d68661e41c44eed101e3 optional: false category: main source: null - build: hcfcfb64_0 -- name: ffmpeg - version: 5.1.2 + build: h166bdaf_0 +- name: libexpat + version: 2.5.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - fontconfig: '>=2.14.2,<3.0a0' - vc: '>=14.2,<15' - libzlib: '>=1.2.13,<1.3.0a0' - vc14_runtime: '>=14.29.30139' - x265: '>=3.5,<3.6.0a0' - aom: '>=3.5.0,<3.6.0a0' - freetype: '>=2.12.1,<3.0a0' - dav1d: '>=1.2.1,<1.2.2.0a0' - svt-av1: '>=1.4.1,<1.4.2.0a0' - bzip2: '>=1.0.8,<2.0a0' - fonts-conda-ecosystem: '*' - ucrt: '>=10.0.20348.0' - libopus: '>=1.3.1,<2.0a0' - libxml2: '>=2.11.4,<2.12.0a0' - x264: '>=1 !164.3095,<1!165' - openh264: '>=2.3.1,<2.3.2.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-5.1.2-gpl_he426399_111.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda hash: - md5: 4988eb01855af480a61aa1e959d2c06d - sha256: 2dc846aaff335bc4c9a81f6aa71d3aaf1143e629f79395aae7a6ab100796e739 + md5: 6305a3dd2752c76335295da4e581f2fd + sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3 optional: false category: main source: null - build: gpl_he426399_111 -- name: libxml2 - version: 2.11.4 + build: hcb278e6_1 +- name: font-ttf-dejavu-sans-mono + version: '2.37' manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - libzlib: '>=1.2.13,<1.3.0a0' - vc14_runtime: '>=14.29.30139' - libiconv: '>=1.17,<2.0a0' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.11.4-hc3477c8_0.conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 hash: - md5: 586627982a63815637f871a6360fe3f9 - sha256: d9d2210436ac28d1a15de08468202a944135d17da3b37fd82c0e90a36ce8ef72 + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b optional: false category: main source: null - build: hc3477c8_0 -- name: aom - version: 3.5.0 + build: hab24e00_0 +- name: font-ttf-ubuntu + version: '0.83' manager: conda - platform: win-64 - dependencies: - vs2015_runtime: '>=14.29.30139' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/aom-3.5.0-h63175ca_0.tar.bz2 + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 hash: - md5: 455524d2bf9625a42a1848c0d08ac063 - sha256: 76a2fc753c372facbb83bc9fc063cbc9c439ec0922d5c776a4d280fc42ff885c + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e optional: false category: main source: null - build: h63175ca_0 -- name: svt-av1 - version: 1.4.1 + build: hab24e00_0 +- name: libpciaccess + version: '0.17' manager: conda - platform: win-64 + platform: linux-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/svt-av1-1.4.1-h63175ca_0.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.17-h166bdaf_0.tar.bz2 hash: - md5: 4e0b494c944e58a4de7aed21bb80645c - sha256: ca68968390a6811de0568241e254b5b29e86c96221d1760228efa584ce4c4f65 + md5: b7463391cf284065294e2941dd41ab95 + sha256: 9fe4aaf5629b4848d9407b9ed4da941ba7e5cebada63ee0becb9aa82259dc6e2 optional: false category: main source: null - build: h63175ca_0 -- name: x265 - version: '3.5' + build: h166bdaf_0 +- name: freetype + version: 2.12.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.1,<15' - vs2015_runtime: '>=14.16.27033' - url: https://conda.anaconda.org/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + libpng: '>=1.6.39,<1.7.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda hash: - md5: ca7129a334198f08347fb19ac98a2de9 - sha256: 02b9874049112f2b7335c9a3e880ac05d99a08d9a98160c5a98898b2b3ac42b2 + md5: e1232042de76d24539a436d37597eb06 + sha256: 1eb913727b54e9aa63c6d9a1177db4e2894cee97c5f26910a2b61899d5ac904f optional: false category: main source: null - build: h2d74725_3 -- name: dav1d - version: 1.2.1 + build: hca18f0e_1 +- name: liblapacke + version: 3.9.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda + libcblas: ==3.9.0 17_linux64_openblas + libblas: ==3.9.0 17_linux64_openblas + liblapack: ==3.9.0 17_linux64_openblas + url: https://conda.anaconda.org/conda-forge/linux-64/liblapacke-3.9.0-17_linux64_openblas.conda hash: - md5: ed2c27bda330e3f0ab41577cf8b9b585 - sha256: 2aa2083c9c186da7d6f975ccfbef654ed54fff27f4bc321dbcd12cee932ec2c4 + md5: 949709aa6ee6a2dcdb3de6dd99147d17 + sha256: 6d936873d3f9ad6cc39117bc0b2f71bfd4eae93a2d2e32e9e2102b8346a5d99f optional: false category: main source: null - build: hcfcfb64_0 -- name: zstd - version: 1.5.2 - manager: conda - platform: win-64 - dependencies: - ucrt: '>=10.0.20348.0' - vs2015_runtime: '>=14.29.30139' - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.2-h12be248_6.conda - hash: - md5: 62826565682d013b3e2346aaf7bded0e - sha256: ef23b2eb748b0b2139755e5a20d49a642340af1313017918dc91b4a4ce8f3bd9 - optional: false - category: main - source: null - build: h12be248_6 -- name: tzdata - version: 2023c - manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda - hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 - optional: false - category: main - source: null - build: h71feb2d_0 -- name: bzip2 - version: 1.0.8 - manager: conda - platform: win-64 - dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 - hash: - md5: 7c03c66026944073040cb19a4f3ec3c9 - sha256: 5389dad4e73e4865bb485f460fc60b120bae74404003d457ecb1a62eb7abf0c1 - optional: false - category: main - source: null - build: h8ffe710_4 -- name: libffi - version: 3.4.2 + build: 17_linux64_openblas +- name: libblas + version: 3.9.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.16.27012' - vc: '>=14.1,<15.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 + libopenblas: '>=0.3.23,<1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-17_linux64_openblas.conda hash: - md5: 2c96d1b6915b408893f9472569dee135 - sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 + md5: 57fb44770b1bc832fb2dbefa1bd502de + sha256: 5a9dfeb9ede4b7ac136ac8c0b589309f8aba5ce79d14ca64ad8bffb3876eb04b optional: false category: main source: null - build: h8ffe710_5 -- name: openssl - version: 3.1.1 + build: 17_linux64_openblas +- name: libcblas + version: 3.9.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - ca-certificates: '*' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.1-hcfcfb64_1.conda + libblas: ==3.9.0 17_linux64_openblas + url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-17_linux64_openblas.conda hash: - md5: 1d913a5de46c6b2f7e4cfbd26b106b8b - sha256: 4424486fb9a2aeaba912a8dd8a5b5cdb6fcd65d7708fd854e3ea27449bb352a3 + md5: 7ef0969b00fe3d6eef56a8151d3afb29 + sha256: 535bc0a6bc7641090b1bdd00a001bb6c4ac43bce2a11f238bc6676252f53eb3f optional: false category: main source: null - build: hcfcfb64_1 -- name: krb5 - version: 1.20.1 + build: 17_linux64_openblas +- name: liblapack + version: 3.9.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - openssl: '>=3.0.7,<4.0a0' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-heb0366b_0.conda - hash: - md5: a07b05ee8f451ab15698397185efe989 - sha256: 429edc4fa9e2420c55cdbd9febb154d2358bf662735efda4372f62142ff310cd - optional: false - category: main - source: null - build: heb0366b_0 -- name: font-ttf-inconsolata - version: '3.000' - manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 - hash: - md5: 34893075a5c9e55cdafac56607368fc6 - sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c - optional: false - category: main - source: null - build: h77eed37_0 -- name: font-ttf-source-code-pro - version: '2.038' - manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + libblas: ==3.9.0 17_linux64_openblas + url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-17_linux64_openblas.conda hash: - md5: 4d59c254e01d9cde7957100457e2d5fb - sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + md5: a2103882c46492e26500fcb56c03de8b + sha256: 45128394d2f4d4caf949c1b02bff1cace3ef2e33762dbe8f0edec7701a16aaa9 optional: false category: main source: null - build: h77eed37_0 -- name: certifi - version: 2023.5.7 + build: 17_linux64_openblas +- name: _openmp_mutex + version: '4.5' manager: conda - platform: win-64 + platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda + libgomp: '>=7.5.0' + _libgcc_mutex: ==0.1 conda_forge + url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 hash: - md5: 5d1b71c942b8421285934dad1d891ebc - sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 + md5: 73aaf86a425cc6e73fcf236a5a46396d + sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: idna - version: '3.4' + build: 2_gnu +- name: libgomp + version: 13.1.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 + _libgcc_mutex: ==0.1 conda_forge + url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + md5: 56ca14d57ac29a75d23a39eb3ee0ddeb + sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: urllib3 - version: 2.0.3 + build: he5830b7_0 +- name: libopenblas + version: 0.3.23 manager: conda - platform: win-64 + platform: linux-64 dependencies: - brotli: '>=1.0.9' - python: '>=3.7' - pysocks: '>=1.5.6,<2.0,!=1.5.7' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_0.conda + libgfortran-ng: '*' + libgcc-ng: '>=12' + libgfortran5: '>=11.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.23-pthreads_h80387f5_0.conda hash: - md5: ae465d0fbf9f1979cb2d8d4043d885e2 - sha256: 91d999539132f4b04091642df62b51c63c8a1fd61ecdff1ed704fc11405f9a34 + md5: 9c5ea51ccb8ffae7d06c645869d24ce6 + sha256: 00aee12d04979d024c7f9cabccff5f5db2852c934397ec863a4abde3e09d5a79 optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: charset-normalizer - version: 3.1.0 + build: pthreads_h80387f5_0 +- name: libglib + version: 2.76.3 manager: conda - platform: win-64 + platform: linux-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda + libzlib: '>=1.2.13,<1.3.0a0' + gettext: '>=0.21.1,<1.0a0' + libstdcxx-ng: '>=12' + pcre2: '>=10.40,<10.41.0a0' + libffi: '>=3.4,<4.0a0' + libgcc-ng: '>=12' + libiconv: '>=1.17,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.76.3-hebfc3b9_0.conda hash: - md5: 7fcff9f6f123696e940bda77bd4d6551 - sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 + md5: a64f11b244b2c112cd3fa1cbe9493999 + sha256: 6a34c6b123f06fcee7e28e981ec0daad09bce35616ad8e9e61ef84be7fad4d92 optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: expat - version: 2.5.0 + build: hebfc3b9_0 +- name: gettext + version: 0.21.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - libexpat: ==2.5.0 h63175ca_1 - url: https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h63175ca_1.conda - hash: - md5: 87c77fe1b445aedb5c6d207dd236fa3e - sha256: 3bcd88290cd462d5573c2923c796599d0dece2ff9d9c9d6c914d31e9c5881aaf - optional: false - category: main - source: null - build: h63175ca_1 -- name: libexpat - version: 2.5.0 - manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda - hash: - md5: 636cc3cbbd2e28bcfd2f73b2044aac2c - sha256: 794b2a9be72f176a2767c299574d330ffb76b2ed75d7fd20bee3bbadce5886cf - optional: false - category: main - source: null - build: h63175ca_1 -- name: intel-openmp - version: 2023.1.0 - manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2023.1.0-h57928b3_46319.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2 hash: - md5: dbc4636f419722fbf3ab6501377228ba - sha256: b3006690844eedbb51030e71778767acc9967f4148b6f335ba3fddf8aa42aa5b + md5: 14947d8770185e5153fdd04d4673ed37 + sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a optional: false category: main source: null - build: h57928b3_46319 -- name: tbb - version: 2021.9.0 + build: h27087fc_0 +- name: pcre2 + version: '10.40' manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - libhwloc: '>=2.9.1,<2.9.2.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.9.0-h91493d7_0.conda + libzlib: '>=1.2.12,<1.3.0a0' + bzip2: '>=1.0.8,<2.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2 hash: - md5: 6aa3f1becefeaa00a4d2a79b2a478aee - sha256: bf9a0f71aa9234776fc5d940464f47b760e5b4907c6c4f7eb0273221fe1b834c + md5: 69e2c796349cd9b273890bee0febfe1b + sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a optional: false category: main source: null - build: h91493d7_0 -- name: libhwloc - version: 2.9.1 + build: hc3806b6_0 +- name: qt-main + version: 5.15.8 manager: conda - platform: win-64 + platform: linux-64 dependencies: - pthreads-win32: '*' - vc14_runtime: '>=14.29.30139' libxml2: '>=2.11.4,<2.12.0a0' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.1-nocuda_h15da153_6.conda + nspr: '>=4.35,<5.0a0' + xcb-util-renderutil: '>=0.3.9,<0.4.0a0' + libsqlite: '>=3.42.0,<4.0a0' + xorg-libsm: '*' + libexpat: '>=2.5.0,<3.0a0' + mysql-libs: '>=8.0.32,<8.1.0a0' + xorg-libxext: '>=1.3.4,<2.0a0' + libxkbcommon: '>=1.5.0,<2.0a0' + xorg-libice: '*' + nss: '>=3.89,<4.0a0' + xcb-util-keysyms: '>=0.4.0,<0.5.0a0' + fontconfig: '>=2.14.2,<3.0a0' + libstdcxx-ng: '>=12' + libclang: '>=15.0.7,<16.0a0' + fonts-conda-ecosystem: '*' + xcb-util-image: '>=0.4.0,<0.5.0a0' + openssl: '>=3.1.0,<4.0a0' + libpng: '>=1.6.39,<1.7.0a0' + xcb-util-wm: '>=0.4.1,<0.5.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + alsa-lib: '>=1.2.8,<1.2.9.0a0' + libgcc-ng: '>=12' + libcups: '>=2.3.3,<2.4.0a0' + gstreamer: '>=1.22.3,<1.23.0a0' + xorg-xf86vidmodeproto: '*' + harfbuzz: '>=7.3.0,<8.0a0' + pulseaudio-client: '>=16.1,<16.2.0a0' + dbus: '>=1.13.6,<2.0a0' + libevent: '>=2.1.12,<2.1.13.0a0' + xcb-util: '>=0.4.0,<0.5.0a0' + icu: '>=72.1,<73.0a0' + zstd: '>=1.5.2,<1.6.0a0' + libglib: '>=2.76.3,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + gst-plugins-base: '>=1.22.3,<1.23.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + libxcb: '>=1.15,<1.16.0a0' + __glibc: '>=2.17,<3.0.a0' + libpq: '>=15.3,<16.0a0' + libclang13: '>=15.0.7' + krb5: '>=1.20.1,<1.21.0a0' + xorg-libx11: '>=1.8.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h01ceb2d_13.conda hash: - md5: 95b1bd8df3033d08ae5125ed69d71194 - sha256: dbb221db2ca66075fc12976c55db511dd88433c4db91ed20da59ffada2f6e6bb + md5: 99ca83a166224f46a62c9545b8d66401 + sha256: dce3d4e4765ee786fc616fb90b2e5363ad22d99b849c21686e03d5618d777dea optional: false category: main source: null - build: nocuda_h15da153_6 -- name: openh264 - version: 2.3.1 + build: h01ceb2d_13 +- name: libsqlite + version: 3.42.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/openh264-2.3.1-h63175ca_2.conda + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.42.0-h2797004_0.conda hash: - md5: 76e822d93cdc32b00b61810d3fa030e0 - sha256: 251566b5326a292215a3db5a184c255a092242a371431b617c7baf300fa9d170 + md5: fdaae20a1cf7cd62130a0973190a31b7 + sha256: 72e958870f49174ebc0ddcd4129e9a9f48de815f20aa3b553f136b514f29bb3a optional: false category: main source: null - build: h63175ca_2 -- name: x264 - version: 1!164.3095 + build: h2797004_0 +- name: libxcb + version: '1.15' manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.16.27033' - vc: '>=14.1,<15' - url: https://conda.anaconda.org/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2 + xorg-libxau: '*' + xorg-libxdmcp: '*' + libgcc-ng: '>=12' + pthread-stubs: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda hash: - md5: 19e39905184459760ccb8cf5c75f148b - sha256: 97166b318f8c68ffe4d50b2f4bd36e415219eeaef233e7d41c54244dc6108249 + md5: 33277193f5b92bad9fdd230eb700929c + sha256: a670902f0a3173a466c058d2ac22ca1dd0df0453d3a80e0212815c20a16b0485 optional: false category: main source: null - build: h8ffe710_2 -- name: libopus - version: 1.3.1 + build: h0b41bf4_0 +- name: nspr + version: '4.35' manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda hash: - md5: e35a6bcfeb20ea83aab21dfc50ae62a4 - sha256: b2e5ec193762a5b4f905f8100437370e164df3db0ea5c18b4ce09390f5d3d525 + md5: da0ec11a6454ae19bff5b02ed881a2b1 + sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c optional: false category: main source: null - build: h8ffe710_1 -- name: libclang - version: 15.0.7 + build: h27087fc_0 +- name: nss + version: '3.89' manager: conda - platform: win-64 + platform: linux-64 dependencies: - libclang13: ==15.0.7 default_h77d9078_2 - ucrt: '>=10.0.20348.0' - vc14_runtime: '>=14.29.30139' + libstdcxx-ng: '>=12' + __glibc: '>=2.17,<3.0.a0' + nspr: '>=4.35,<5.0a0' libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libclang-15.0.7-default_h77d9078_2.conda + libsqlite: '>=3.40.0,<4.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/nss-3.89-he45b914_0.conda hash: - md5: 70188b1b3e0b1716405adab9050894d1 - sha256: af265f9358565c650ec3f09557d47c6ced441164d10cd500b74651513f61be46 + md5: 2745719a58eeaab6657256a3f142f099 + sha256: 6d512e4a7ffae4fed9feac2cb2037398c78ade47e5358fc79ac3e58494de0cad optional: false category: main source: null - build: default_h77d9078_2 -- name: libclang13 - version: 15.0.7 + build: he45b914_0 +- name: alsa-lib + version: 1.2.8 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc14_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libclang13-15.0.7-default_h77d9078_2.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.8-h166bdaf_0.tar.bz2 hash: - md5: c2e1def32a19610ac26db453501760b6 - sha256: 0be9e57f50f33c813df6e1ad65b8bf8ccf1c23f734785236146b56b9078e7c7b + md5: be733e69048951df1e4b4b7bb8c7666f + sha256: 2c0a618d0fa695e4e01a30e7ff31094be540c52e9085cbd724edb132c65cf9cd optional: false category: main source: null - build: default_h77d9078_2 -- name: gst-plugins-base - version: 1.22.3 + build: h166bdaf_0 +- name: xcb-util-renderutil + version: 0.3.9 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.2,<15' - libvorbis: '>=1.3.7,<1.4.0a0' - gettext: '>=0.21.1,<1.0a0' - gstreamer: ==1.22.3 h6b5321d_1 - ucrt: '>=10.0.20348.0' - vc14_runtime: '>=14.29.30139' - libglib: '>=2.76.2,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/gst-plugins-base-1.22.3-h001b923_1.conda + libxcb: '>=1.15,<1.16.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-hd590300_1.conda hash: - md5: bd6347f397891bf4eb264c652221507c - sha256: 5a9c3032a033d1cacf313527e1f492e17492d121c07c3f8213ffede1fef60d09 + md5: e995b155d938b6779da6ace6c6b13816 + sha256: 6987588e6fff5892056021c2ea52f7a0deefb2c7348e70d24750e2d60dabf009 optional: false category: main source: null - build: h001b923_1 -- name: gstreamer - version: 1.22.3 + build: hd590300_1 +- name: xcb-util-image + version: 0.4.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc14_runtime: '>=14.29.30139' - libglib: '>=2.76.2,<3.0a0' - glib: '>=2.76.2,<3.0a0' - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - gettext: '>=0.21.1,<1.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/gstreamer-1.22.3-h6b5321d_1.conda + libxcb: '>=1.15,<1.16.0a0' + libgcc-ng: '>=12' + xcb-util: '>=0.4.0,<0.5.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h8ee46fc_1.conda hash: - md5: 00afb31665a8028ca2ff9af61fea64e1 - sha256: 328c1ddd1328d7419d827cf18e05522011337739302f332847f2d9d731f68d14 + md5: 9d7bcddf49cbf727730af10e71022c73 + sha256: 92ffd68d2801dbc27afe223e04ae7e78ef605fc8575f107113c93c7bafbd15b0 optional: false category: main source: null - build: h6b5321d_1 -- name: glib - version: 2.76.3 + build: h8ee46fc_1 +- name: cairo + version: 1.16.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: + xorg-libxrender: '*' + libpng: '>=1.6.39,<1.7.0a0' libzlib: '>=1.2.13,<1.3.0a0' - python: '*' - vc14_runtime: '>=14.29.30139' - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - gettext: '>=0.21.1,<1.0a0' - glib-tools: ==2.76.3 h12be248_0 - libglib: ==2.76.3 he8f3873_0 - url: https://conda.anaconda.org/conda-forge/win-64/glib-2.76.3-h12be248_0.conda + libgcc-ng: '>=12' + xorg-libsm: '*' + xorg-libxext: '>=1.3.4,<2.0a0' + icu: '>=72.1,<73.0a0' + libglib: '>=2.76.2,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + xorg-libice: '*' + zlib: '*' + fontconfig: '>=2.14.2,<3.0a0' + libxcb: '>=1.15,<1.16.0a0' + fonts-conda-ecosystem: '*' + xorg-libx11: '>=1.8.4,<2.0a0' + pixman: '>=0.40.0,<1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-hbbf8b49_1016.conda hash: - md5: fa3f1af2dc70e0d00a755667a741fad3 - sha256: 6c6f526cc153feeee786daf16f2790a8ff4478fde752b2d0d3619c884f00b898 + md5: c1dd96500b9b1a75e9e511931f415cbc + sha256: 1fffecc684c26e0f1aed6d9857ad0f2abfe3a849977f718ad82366c68c7a9a36 optional: false category: main source: null - build: h12be248_0 -- name: glib-tools - version: 2.76.3 + build: hbbf8b49_1016 +- name: freeglut + version: 3.2.2 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - vc14_runtime: '>=14.29.30139' - libglib: ==2.76.3 he8f3873_0 - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/glib-tools-2.76.3-h12be248_0.conda + xorg-libxi: '*' + xorg-libxfixes: '*' + libgcc-ng: '>=12' + libxcb: '>=1.15,<1.16.0a0' + libstdcxx-ng: '>=12' + xorg-libxau: '>=1.0.11,<2.0a0' + xorg-libx11: '>=1.8.4,<2.0a0' + xorg-libxext: '>=1.3.4,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda hash: - md5: 3015483cb3ffa200d51aac3c691fcda0 - sha256: 10cc47bc9194e42ea984e437e3d99c794d5d6e7c5ac2994716054fcbcf65d33a + md5: 6e553df297f6e64668efb54302e0f139 + sha256: 6dc7be5d0853ea5bcbb2b1921baf7d069605594c207e8ce36a662f447cd81a3f optional: false category: main source: null - build: h12be248_0 -- name: ca-certificates - version: 2023.5.7 + build: hac7e632_2 +- name: zlib + version: 1.2.13 manager: conda - platform: win-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.5.7-h56e8100_0.conda + platform: linux-64 + dependencies: + libzlib: ==1.2.13 hd590300_5 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-hd590300_5.conda hash: - md5: 604212634bd8c4d6f20d44b946e8eedb - sha256: d0488a3e7a86cc11f8c847a7c12a5f1fb8567f05646faae78944807862f9d167 + md5: 68c34ec6149623be41a1933ab996a209 + sha256: 9887a04d7e7cb14bd2b52fa01858f05a6d7f002c890f618d9fcd864adbfecb1b optional: false category: main source: null - build: h56e8100_0 -- name: hdf5 - version: 1.14.0 + build: hd590300_5 +- name: pixman + version: 0.40.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.29.30139' - openssl: '>=3.0.8,<4.0a0' - vc: '>=14.2,<15' - libcurl: '>=7.88.1,<9.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libaec: '>=1.0.6,<2.0a0' - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.0-nompi_h918d9b7_103.conda + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2 hash: - md5: cdd3ab75e65f0aad08ff7e25a4dc825d - sha256: 56d4543daffd3028481e85a583ed28a74b064faf151fa4b4c0890e6a1df11312 + md5: 660e72c82f2e75a6b3fe6a6e75c79f19 + sha256: 6a0630fff84b5a683af6185a6c67adc8bdfa2043047fcb251add0d352ef60e79 optional: false category: main source: null - build: nompi_h918d9b7_103 -- name: pysocks - version: 1.7.1 + build: h36c2ea0_0 +- name: xorg-libxau + version: 1.0.11 manager: conda - platform: win-64 + platform: linux-64 dependencies: - win_inet_pton: '*' - python: '>=3.8' - __win: '*' - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda hash: - md5: 56cd9fe388baac0e90c7149cfac95b60 - sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7 + md5: 2c80dc38fface310c9bd81b17037fee5 + sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4 optional: false category: main source: null - build: pyh0701188_6 -- name: brotli - version: 1.0.9 + build: hd590300_0 +- name: bzip2 + version: 1.0.8 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.29.30139' - vc: '>=14.2,<15' - brotli-bin: ==1.0.9 hcfcfb64_8 - libbrotlienc: ==1.0.9 hcfcfb64_8 - libbrotlidec: ==1.0.9 hcfcfb64_8 - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.0.9-hcfcfb64_8.tar.bz2 + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 hash: - md5: 2e661f21e1741c11506bdc7226e6b0bc - sha256: 6d2fc2f147c9fc6685124d984089683988729463193578ba1d62f80263bce3c5 + md5: a1fd65c7ccbf10880423d82bca54eb54 + sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa optional: false category: main source: null - build: hcfcfb64_8 -- name: brotli-bin - version: 1.0.9 + build: h7f98852_4 +- name: x264 + version: 1!164.3095 manager: conda - platform: win-64 + platform: linux-64 dependencies: - ucrt: '>=10.0.20348.0' - libbrotlidec: ==1.0.9 hcfcfb64_8 - vs2015_runtime: '>=14.29.30139' - libbrotlienc: ==1.0.9 hcfcfb64_8 - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.0.9-hcfcfb64_8.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 hash: - md5: e18b70ed349d96086fd60a9c642b1b58 - sha256: e8b55a51cb907f336c6f308d5d052483b0cad6a8b09040b811a7f12f4f199d67 + md5: 6c99772d483f566d59e25037fea2c4b1 + sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5 optional: false category: main source: null - build: hcfcfb64_8 -- name: libbrotlidec - version: 1.0.9 + build: h166bdaf_2 +- name: openh264 + version: 2.3.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.29.30139' - libbrotlicommon: ==1.0.9 hcfcfb64_8 - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.0.9-hcfcfb64_8.tar.bz2 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.3.1-hcb278e6_2.conda hash: - md5: 99839d9d81f33afa173c0fa82a702038 - sha256: 66814b8c0235bcc9124d32cb4b99845bcb2af0eba1d2ba609a501a6d8194e9a0 + md5: 37d01894f256b2a6921c5a218f42f8a2 + sha256: 3be6de15d40f02c9bb34d5095c65b6b3f07e04fc21a0fb63d1885f1a31de5ae2 optional: false category: main source: null - build: hcfcfb64_8 -- name: libbrotlienc - version: 1.0.9 + build: hcb278e6_2 +- name: lame + version: '3.100' manager: conda - platform: win-64 + platform: linux-64 dependencies: - libbrotlicommon: ==1.0.9 hcfcfb64_8 - vc: '>=14.2,<15' - ucrt: '>=10.0.20348.0' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.0.9-hcfcfb64_8.tar.bz2 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 hash: - md5: 88e62627120c20289bf8982b15e0a6a1 - sha256: 3abf0f0b124d54ad892bd74fe77089a712d6dad81a04583331a58728c58a69e0 + md5: a8832b479f93521a9e7b5b743803be51 + sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab optional: false category: main source: null - build: hcfcfb64_8 -- name: libbrotlicommon - version: 1.0.9 + build: h166bdaf_1003 +- name: x265 + version: '3.5' manager: conda - platform: win-64 + platform: linux-64 dependencies: - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - vs2015_runtime: '>=14.29.30139' - url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.0.9-hcfcfb64_8.tar.bz2 + libgcc-ng: '>=10.3.0' + libstdcxx-ng: '>=10.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 hash: - md5: e8078e37208cd7d3e1eb5053f370ded8 - sha256: 0e771d447108219f43de770f7ca9428b2e3b5a4fd08475a27ac442ad310cb684 + md5: e7f6ed84d4623d52ee581325c1587a6b + sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0 optional: false category: main source: null - build: hcfcfb64_8 -- name: pthreads-win32 - version: 2.9.1 + build: h924138e_3 +- name: libopus + version: 1.3.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: 14.* - url: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2 + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 hash: - md5: e2da8758d7d51ff6aa78a14dfb9dbed4 - sha256: 576a228630a72f25d255a5e345e5f10878e153221a96560f2498040cd6f54005 + md5: 15345e56d527b330e1cacbdf58676e8f + sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f optional: false category: main source: null - build: hfa6e2cd_3 -- name: libcurl - version: 8.1.2 + build: h7f98852_1 +- name: zstd + version: 1.5.2 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.2,<15' - vc14_runtime: '>=14.29.30139' - krb5: '>=1.20.1,<1.21.0a0' - libssh2: '>=1.10.0,<2.0a0' libzlib: '>=1.2.13,<1.3.0a0' - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.1.2-h68f0423_0.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda hash: - md5: 94b9b7d0e882461fdb72d8d4e7441746 - sha256: a9d21b363c6d3c81ec85903f86989157e7d93d8f247e023ff3b3f69789115a72 + md5: 6b63daed8feeca47be78f323e793d555 + sha256: fbe49a8c8df83c2eccb37c5863ad98baeb29796ec96f2c503783d7b89bf80c98 optional: false category: main source: null - build: h68f0423_0 -- name: libaec - version: 1.0.6 + build: h3eb15da_6 +- name: libglu + version: 9.0.0 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - vc: '>=14.2,<15' - url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.0.6-h63175ca_1.conda + libxcb: '>=1.15,<1.16.0a0' + libstdcxx-ng: '>=12' + xorg-xextproto: '>=7.3.0,<8.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1002.conda hash: - md5: f98474a8245f55f4a273889dbe7bf193 - sha256: 441f580f90279bd62bd27fb82d0bbbb2c2d9f850fcc4c8781f199c5287cd1499 + md5: 4c4dce87e96b321308f81ba2c10d2897 + sha256: 71bfd2955cf5fe8a4876d31fffe7da0c9504727582900ce96cefc8f77598c908 optional: false category: main source: null - build: h63175ca_1 -- name: win_inet_pton - version: 1.1.0 + build: hac7e632_1002 +- name: tzdata + version: 2023c manager: conda - platform: win-64 - dependencies: - python: '>=3.6' - __win: '*' - url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: - md5: 30878ecc4bd36e8deeea1e3c151b2e0b - sha256: a11ae693a0645bf6c7b8a47bac030be9c0967d0b1924537b9ff7458e832c0511 + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 optional: false category: main source: null - build: pyhd8ed1ab_6 -- name: libssh2 - version: 1.11.0 + build: h71feb2d_0 +- name: openssl + version: 3.1.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - vc: '>=14.2,<15' - openssl: '>=3.1.1,<4.0a0' - vc14_runtime: '>=14.29.30139' - ucrt: '>=10.0.20348.0' - url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda + ca-certificates: '*' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.1-hd590300_1.conda hash: - md5: dc262d03aae04fe26825062879141a41 - sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec + md5: 2e1d7b458ac8f1e3ca4e18b77add6277 + sha256: 407d655643389bdb49266842a816815c981ae98f3513a6a2059b908b3abb380a optional: false category: main source: null - build: h7dfc565_0 -- name: vc - version: '14.3' + build: hd590300_1 +- name: krb5 + version: 1.20.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc14_runtime: '>=14.32.31332' - url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hb25d44b_16.conda + libstdcxx-ng: '>=12' + openssl: '>=3.0.7,<4.0a0' + libedit: '>=3.1.20191231,<4.0a0' + libgcc-ng: '>=12' + keyutils: '>=1.6.1,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda hash: - md5: ea326b37e3bd6d2616988e09f3a9396c - sha256: 29bc108d66150ca75cab937f844f4ac4a836beb6ea3ee167d03c611444bb2a82 + md5: 89a41adce7106749573d883b2f657d78 + sha256: 51a346807ce981e1450eb04c3566415b05eed705bc9e6c98c198ec62367b7c62 optional: false category: main source: null - build: hb25d44b_16 -- name: libvorbis - version: 1.3.7 + build: h81ceb04_0 +- name: keyutils + version: 1.6.1 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vs2015_runtime: '>=14.16.27012' - libogg: '>=1.3.4,<1.4.0a0' - vc: '>=14.1,<15.0a0' - url: https://conda.anaconda.org/conda-forge/win-64/libvorbis-1.3.7-h0e60522_0.tar.bz2 + libgcc-ng: '>=10.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 hash: - md5: e1a22282de0169c93e4ffe6ce6acc212 - sha256: 6cdc018a024908270205d8512d92f92cf0adaaa5401c2b403757189b138bf56a + md5: 30186d27e2c9fa62b45fb1476b7200e3 + sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb optional: false category: main source: null - build: h0e60522_0 -- name: libogg - version: 1.3.4 + build: h166bdaf_0 +- name: libcups + version: 2.3.3 manager: conda - platform: win-64 + platform: linux-64 dependencies: - vc: '>=14.1,<15.0a0' - vs2015_runtime: '>=14.16.27012' - url: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.4-h8ffe710_1.tar.bz2 + libstdcxx-ng: '>=12' + krb5: '>=1.20.1,<1.21.0a0' + libgcc-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h36d4200_3.conda hash: - md5: 04286d905a0dcb7f7d4a12bdfe02516d - sha256: ef20f04ad2121a07e074b34bfc211587df18180e680963f5c02c54d1951b9ee6 + md5: c9f4416a34bc91e0eb029f912c68f81f + sha256: 0ccd610207807f53328f137b2adc99c413f8e1dcd1302f0325412796a94eaaf7 optional: false category: main source: null - build: h8ffe710_1 -- name: opencv - version: 4.7.0 + build: h36d4200_3 +- name: libffi + version: 3.4.2 manager: conda platform: linux-64 dependencies: - python_abi: 3.10.* *_cp310 - py-opencv: ==4.7.0 py310hfdc917e_4 - libopencv: ==4.7.0 py310h245f934_4 - url: https://conda.anaconda.org/conda-forge/linux-64/opencv-4.7.0-py310hff52083_4.conda + libgcc-ng: '>=9.4.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 hash: - md5: fbbdde68a622d37f5c7a56c0ab68c603 - sha256: 1fe19c6441691132c5b973fb906f3930604e74ed4bbd5e5e1fd0b4c403a401d3 + md5: d645c6d2ac96843a2bfaccd2d62b3ac3 + sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e optional: false category: main source: null - build: py310hff52083_4 -- name: libopencv - version: 4.7.0 + build: h7f98852_5 +- name: ld_impl_linux-64 + version: '2.40' manager: conda platform: linux-64 - dependencies: - ffmpeg: '>=6.0.0,<7.0a0' - freetype: '>=2.12.1,<3.0a0' - libprotobuf: '>=3.21.12,<3.22.0a0' - liblapack: '>=3.9.0,<4.0a0' - libstdcxx-ng: '>=12' - qt-main: '>=5.15.8,<5.16.0a0' - harfbuzz: '>=7.3.0,<8.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - hdf5: '>=1.14.0,<1.14.1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - numpy: '>=1.21.6,<2.0a0' - libtiff: '>=4.5.0,<4.6.0a0' - libcblas: '>=3.9.0,<4.0a0' - liblapacke: '>=3.9.0,<4.0a0' - jasper: '>=4.0.0,<5.0a0' - libwebp-base: '>=1.3.0,<2.0a0' - libgcc-ng: '>=12' - _openmp_mutex: '>=4.5' - libpng: '>=1.6.39,<1.7.0a0' - __glibc: '>=2.17,<3.0.a0' - libglib: '>=2.76.2,<3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopencv-4.7.0-py310h245f934_4.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + hash: + md5: 7aca3059a1729aa76c597603f10b0dd3 + sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + optional: false + category: main + source: null + build: h41732ed_0 +- name: font-ttf-inconsolata + version: '3.000' + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + hash: + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + optional: false + category: main + source: null + build: h77eed37_0 +- name: font-ttf-source-code-pro + version: '2.038' + manager: conda + platform: linux-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 hash: - md5: 2a0a6e82936caa5fcdd5f8c7e234195c - sha256: d7d856a645ab5577af463576e9a4dd5ab993f99cf2daeb978ec856e965d5d56f + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 optional: false category: main source: null - build: py310h245f934_4 -- name: py-opencv - version: 4.7.0 + build: h77eed37_0 +- name: certifi + version: 2023.5.7 manager: conda platform: linux-64 dependencies: - libopencv: ==4.7.0 py310h245f934_4 - numpy: '>=1.21.6,<2.0a0' - python_abi: 3.10.* *_cp310 - python: '>=3.10,<3.11.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/py-opencv-4.7.0-py310hfdc917e_4.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda hash: - md5: 548cd36a4f6da0bc75b0d4b1a1a88599 - sha256: b7dd26e1b68d08253aa3d296ee908fffb7b91b6630178986fbacb4138dc4fee4 + md5: 5d1b71c942b8421285934dad1d891ebc + sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 optional: false category: main source: null - build: py310hfdc917e_4 -- name: libzlib - version: 1.2.13 + build: pyhd8ed1ab_0 +- name: idna + version: '3.4' manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-h166bdaf_4.tar.bz2 + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 hash: - md5: f3f9de449d32ca9b9c66a22863c96f41 - sha256: 22f3663bcf294d349327e60e464a51cd59664a71b8ed70c28a9f512d10bc77dd + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 optional: false category: main source: null - build: h166bdaf_4 -- name: libpng - version: 1.6.39 + build: pyhd8ed1ab_0 +- name: urllib3 + version: 2.0.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.39-h753d276_0.conda + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: '>=3.7' + brotli: '>=1.0.9' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_0.conda hash: - md5: e1c890aebdebbfbf87e2c917187b4416 - sha256: a32b36d34e4f2490b99bddbc77d01a674d304f667f0e62c89e02c961addef462 + md5: ae465d0fbf9f1979cb2d8d4043d885e2 + sha256: 91d999539132f4b04091642df62b51c63c8a1fd61ecdff1ed704fc11405f9a34 optional: false category: main source: null - build: h753d276_0 -- name: harfbuzz - version: 7.3.0 + build: pyhd8ed1ab_0 +- name: charset-normalizer + version: 3.1.0 manager: conda platform: linux-64 dependencies: - cairo: '>=1.16.0,<2.0a0' - freetype: '>=2.12.1,<3.0a0' - graphite2: '*' - icu: '>=72.1,<73.0a0' - libgcc-ng: '>=12' - libglib: '>=2.76.2,<3.0a0' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/harfbuzz-7.3.0-hdb3a94d_0.conda + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda hash: - md5: 765bc76c0dfaf24ff9d8a2935b2510df - sha256: 9d99416e9d4a01ea0915f65ea7fac71dee11916de115fbd0325c0cb82e0b63f8 + md5: 7fcff9f6f123696e940bda77bd4d6551 + sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 optional: false category: main source: null - build: hdb3a94d_0 -- name: libjpeg-turbo - version: 2.1.5.1 + build: pyhd8ed1ab_0 +- name: xcb-util + version: 0.4.0 manager: conda platform: linux-64 dependencies: + libxcb: '>=1.15,<1.16.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-2.1.5.1-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-hd590300_1.conda hash: - md5: 1edd9e67bdb90d78cea97733ff6b54e6 - sha256: b19de7bda34eac4fa931be11fa8d7640cdf1441dfd51c91786586a4a4c64c92f + md5: 9bfac7ccd94d54fd21a0501296d60424 + sha256: 0c91d87f0efdaadd4e56a5f024f8aab20ec30f90aa2ce9e4ebea05fbc20f71ad optional: false category: main source: null - build: h0b41bf4_0 -- name: libwebp-base - version: 1.3.0 + build: hd590300_1 +- name: xorg-libice + version: 1.1.1 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.3.0-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda hash: - md5: 0d4a7508d8c6c65314f2b9c1f56ad408 - sha256: ac3e073ea77803da71eb77e7fcef07defb345bda95eee3327c73ddf85b5714da + md5: b462a33c0be1421532f28bfe8f4a7514 + sha256: 5aa9b3682285bb2bf1a8adc064cb63aff76ef9178769740d855abb42b0d24236 optional: false category: main source: null - build: h0b41bf4_0 -- name: libprotobuf - version: 3.21.12 + build: hd590300_0 +- name: xorg-libsm + version: 1.2.4 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libstdcxx-ng: '>=12' + xorg-libice: '>=1.1.1,<2.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-3.21.12-h3eb15da_0.conda + libuuid: '>=2.38.1,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda hash: - md5: 4b36c68184c6c85d88c6e595a32a1ede - sha256: 760118d7879b5524e118db1c75cc2a5dfceb2c4940dcae94751a94786c8cf12b + md5: 93ee23f12bc2e684548181256edd2cf6 + sha256: 089ad5f0453c604e18985480218a84b27009e9e6de9a0fa5f4a20b8778ede1f1 optional: false category: main source: null - build: h3eb15da_0 -- name: icu - version: '72.1' + build: h7391055_0 +- name: xorg-libx11 + version: 1.8.6 manager: conda platform: linux-64 dependencies: + xorg-xproto: '*' + libxcb: '>=1.15,<1.16.0a0' + xorg-kbproto: '*' + xorg-xextproto: '>=7.3.0,<8.0a0' libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/icu-72.1-hcb278e6_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.6-h8ee46fc_0.conda hash: - md5: 7c8d20d847bb45f56bd941578fcfa146 - sha256: e44cc00eec068e7f7a6dd117ba17bf5d57658729b7b841945546f82505138292 + md5: 7590b76c3d11d21caa44f3fc38ac584a + sha256: 3360f81f7687179959a6bf1c762938240172e8bb3aef957e0a14fb12a0b7c105 optional: false category: main source: null - build: hcb278e6_0 -- name: jasper - version: 4.0.0 + build: h8ee46fc_0 +- name: xorg-libxi + version: 1.7.10 manager: conda platform: linux-64 dependencies: - libglu: '>=9.0.0,<10.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - freeglut: '>=3.2.2,<4.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/jasper-4.0.0-h32699f2_1.conda + xorg-inputproto: '*' + xorg-libxfixes: 5.0.* + xorg-libx11: '>=1.7.0,<2.0a0' + libgcc-ng: '>=9.3.0' + xorg-libxext: 1.3.* + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2 hash: - md5: fdde5424ecef5f7ad310b4242229291c - sha256: 030b3e6da1ed79c700d73641259c7489b66632c96d9db6232e342951bb16d606 + md5: e77615e5141cad5a2acaa043d1cf0ca5 + sha256: 745c1284a96b4282fe6fe122b2643e1e8c26a7ff40b733a8f4b61357238c4e68 optional: false category: main source: null - build: h32699f2_1 -- name: python - version: 3.10.11 + build: h7f98852_0 +- name: xorg-libxfixes + version: 5.0.3 manager: conda platform: linux-64 dependencies: - tzdata: '*' - xz: '>=5.2.6,<6.0a0' - libnsl: '>=2.0.0,<2.1.0a0' - libffi: '>=3.4,<4.0a0' - openssl: '>=3.1.0,<4.0a0' - libgcc-ng: '>=12' - libuuid: '>=2.38.1,<3.0a0' - libsqlite: '>=3.41.2,<4.0a0' - bzip2: '>=1.0.8,<2.0a0' - ld_impl_linux-64: '>=2.36.1' - libzlib: '>=1.2.13,<1.3.0a0' - ncurses: '>=6.3,<7.0a0' - readline: '>=8.2,<9.0a0' - tk: '>=8.6.12,<8.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.11-he550d4f_0_cpython.conda + xorg-fixesproto: '*' + xorg-libx11: '>=1.7.0,<2.0a0' + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2 hash: - md5: 7439c9d24378a82b73a7a53868dacdf1 - sha256: 6682c75caf3456796fb76313a25475738d85729b43f8c0e904407c0ed8362ede + md5: e9a21aa4d5e3e5f1aed71e8cefd46b6a + sha256: 1e426a1abb774ef1dcf741945ed5c42ad12ea2dc7aeed7682d293879c3e1e4c3 optional: false category: main source: null - build: he550d4f_0_cpython -- name: readline - version: '8.2' + build: h7f98852_1004 +- name: xorg-libxrender + version: 0.9.10 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - ncurses: '>=6.3,<7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda + xorg-renderproto: '*' + xorg-libx11: '>=1.7.0,<2.0a0' + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2 hash: - md5: 47d31b792659ce70f470b5c82fdfb7a4 - sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7 + md5: f59c1242cc1dd93e72c2ee2b360979eb + sha256: 7d907ed9e2ec5af5d7498fb3ab744accc298914ae31497ab6dcc6ef8bd134d00 optional: false category: main source: null - build: h8228510_1 -- name: tk - version: 8.6.12 + build: h7f98852_1003 +- name: xorg-libxext + version: 1.3.4 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.4.0' - libzlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2 + xorg-libx11: '>=1.7.2,<2.0a0' + libgcc-ng: '>=12' + xorg-xextproto: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda hash: - md5: 5b8c42eb62e9fc961af70bdd6a26e168 - sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 + md5: 82b6df12252e6f32402b96dacc656fec + sha256: 73e5cfbdff41ef8a844441f884412aa5a585a0f0632ec901da035a03e1fe1249 optional: false category: main source: null - build: h27826a3_0 -- name: libuuid - version: 2.38.1 + build: h0b41bf4_2 +- name: dbus + version: 1.13.6 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda + libglib: '>=2.70.2,<3.0a0' + libgcc-ng: '>=9.4.0' + expat: '>=2.4.2,<3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 hash: - md5: 40b61aab5c7ba9ff276c41cfffe6b80b - sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18 + md5: ecfff944ba3960ecb334b9a2663d708d + sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 optional: false category: main source: null - build: h0b41bf4_0 -- name: xz - version: 5.2.6 + build: h5008d03_3 +- name: gst-plugins-base + version: 1.22.3 manager: conda platform: linux-64 dependencies: + libpng: '>=1.6.39,<1.7.0a0' + libglib: '>=2.76.2,<3.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' + alsa-lib: '>=1.2.8,<1.2.9.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + gstreamer: ==1.22.3 h977cf35_1 + gettext: '>=0.21.1,<1.0a0' + __glibc: '>=2.17,<3.0.a0' + libstdcxx-ng: '>=12' + libopus: '>=1.3.1,<2.0a0' + libxcb: '>=1.15,<1.16.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.3-h938bd60_1.conda hash: - md5: 2161070d867d1b1204ea749c8eec4ef0 - sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 + md5: 1f317eb7f00db75f4112a07476345376 + sha256: 1abfeadd880adbbebe37c097a13914f7ad383d19ff0249c35e06ddbba268ac5d optional: false category: main source: null - build: h166bdaf_0 -- name: libnsl - version: 2.0.0 + build: h938bd60_1 +- name: gstreamer + version: 1.22.3 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2 + glib: '>=2.76.2,<3.0a0' + gettext: '>=0.21.1,<1.0a0' + __glibc: '>=2.17,<3.0.a0' + libglib: '>=2.76.2,<3.0a0' + libstdcxx-ng: '>=12' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.3-h977cf35_1.conda hash: - md5: 39b1328babf85c7c3a61636d9cd50206 - sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad + md5: 410ed3b168e5a139d12ebaf4143072cd + sha256: c04dcf43d09a2d0b879ad21515309fb89a496e12f7efceb8aa0c93c2c8746378 optional: false category: main source: null - build: h7f98852_0 -- name: requests - version: 2.31.0 + build: h977cf35_1 +- name: glib + version: 2.76.3 manager: conda platform: linux-64 dependencies: - charset-normalizer: '>=2,<4' - python: '>=3.7' - urllib3: '>=1.21.1,<3' - certifi: '>=2017.4.17' - idna: '>=2.5,<4' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + glib-tools: ==2.76.3 hfc55251_0 + python: '*' + gettext: '>=0.21.1,<1.0a0' + libstdcxx-ng: '>=12' + libglib: ==2.76.3 hebfc3b9_0 + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/glib-2.76.3-hfc55251_0.conda hash: - md5: a30144e4156cdbb236f99ebb49828f8b - sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad + md5: 950e02f5665f5f4ff0437a6acba58798 + sha256: c783d185d4f1296b9e9810f400b208d5e3a073198d753b3203ae83521941325d optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: libgcc-ng - version: 13.1.0 + build: hfc55251_0 +- name: glib-tools + version: 2.76.3 manager: conda platform: linux-64 dependencies: - _openmp_mutex: '>=4.5' - _libgcc_mutex: ==0.1 conda_forge - url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.1.0-he5830b7_0.conda + libstdcxx-ng: '>=12' + libglib: ==2.76.3 hebfc3b9_0 + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.76.3-hfc55251_0.conda hash: - md5: cd93f779ff018dd85c7544c015c9db3c - sha256: fba897a02f35b2b5e6edc43a746d1fa6970a77b422f258246316110af8966911 + md5: 8951eedf3cdf94dd733c1b5eee1f4880 + sha256: 22882b3516eee26fc0482ad85b0c697ab8be4f345e238b60891866758392ebb6 optional: false category: main source: null - build: he5830b7_0 -- name: _libgcc_mutex - version: '0.1' + build: hfc55251_0 +- name: libclang + version: 15.0.7 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + libstdcxx-ng: '>=12' + libclang13: ==15.0.7 default_h9986a30_2 + libgcc-ng: '>=12' + libllvm15: '>=15.0.7,<15.1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_h7634d5b_2.conda hash: - md5: d7c89558ba9fa0495403155b64376d81 - sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726 + md5: 1a4fe5162abe4a19b5a9dedf158a0ff9 + sha256: 9fd064ed59a07ed096fe3c641752be5279f6696bc8b25da0ca4e41fb92758a5b optional: false category: main source: null - build: conda_forge -- name: libstdcxx-ng - version: 13.1.0 + build: default_h7634d5b_2 +- name: libclang13 + version: 15.0.7 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.1.0-hfd8a6a1_0.conda + dependencies: + libstdcxx-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + libllvm15: '>=15.0.7,<15.1.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h9986a30_2.conda hash: - md5: 067bcc23164642f4c226da631f2a2e1d - sha256: 6f9eb2d7a96687938c0001166a3b308460a8eb02b10e9d0dd9e251f0219ea05c + md5: 907344cee64101d44d806bbe0fccb01d + sha256: d9f9fb5622489d7e5c3237a4a6a46db20ead3c6bafb7277de1a25278db59b863 optional: false category: main source: null - build: hfd8a6a1_0 -- name: python_abi - version: '3.10' + build: default_h9986a30_2 +- name: libllvm15 + version: 15.0.7 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-3_cp310.conda + dependencies: + libxml2: '>=2.11.3,<2.12.0a0' + libstdcxx-ng: '>=12' + libzlib: '>=1.2.13,<1.3.0a0' + libgcc-ng: '>=12' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-h5cf9203_2.conda hash: - md5: 4eb33d14d794b0f4be116443ffed3853 - sha256: bcb15db27eb6fbc0fe15d23aa60dcfa58ef451d92771441068d4a911aea7bb9f + md5: 5c0a511fa7d223d8661fefcf77b2a877 + sha256: c9438d40c00a70a1bd959cd133ffb2416e0528edfaefd8a25a73024da9aba5c1 optional: false category: main source: null - build: 3_cp310 -- name: numpy - version: 1.24.3 + build: h5cf9203_2 +- name: libxkbcommon + version: 1.5.0 manager: conda platform: linux-64 dependencies: - liblapack: '>=3.9.0,<4.0a0' + libxml2: '>=2.11.4,<2.12.0a0' + libxcb: '>=1.15,<1.16.0a0' libstdcxx-ng: '>=12' - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - libcblas: '>=3.9.0,<4.0a0' libgcc-ng: '>=12' - libblas: '>=3.9.0,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.24.3-py310ha4c1d20_0.conda + xkeyboard-config: '*' + url: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.5.0-h5d7e998_3.conda hash: - md5: 844b150744d30f256d7937f3f60fcd2f - sha256: d531c8dcbecb2d47d26fcafce00dd244bfb4fdc787eddea40e61b5b57b0e5da2 + md5: c91ea308d7bf70b62ddda568478aa03b + sha256: 28d7971db21e4cb3a52a550950ae91ff38896ba05938b1e3492b666988e87bd3 optional: false category: main source: null - build: py310ha4c1d20_0 -- name: libtiff - version: 4.5.0 + build: h5d7e998_3 +- name: libevent + version: 2.1.12 manager: conda platform: linux-64 dependencies: - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - libwebp-base: '>=1.3.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - zstd: '>=1.5.2,<1.6.0a0' - libstdcxx-ng: '>=12' - xz: '>=5.2.6,<6.0a0' - libdeflate: '>=1.18,<1.19.0a0' libgcc-ng: '>=12' - lerc: '>=4.0.0,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.5.0-ha587672_6.conda + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda hash: - md5: 4e5ee4b062c21519efbee7e2ae608748 - sha256: caacb23e1b95fbdd8115be69228f9c82068ed87bf57f055027e31d093ae6a1a2 + md5: a1cfcc585f0c42bf8d5546bb1dfb668d + sha256: 2e14399d81fb348e9d231a82ca4d816bf855206923759b69ad006ba482764131 optional: false category: main source: null - build: ha587672_6 -- name: lerc - version: 4.0.0 + build: hf998b51_1 +- name: libpq + version: '15.3' manager: conda platform: linux-64 dependencies: + openssl: '>=3.1.0,<4.0a0' + krb5: '>=1.20.1,<1.21.0a0' libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libpq-15.3-hbcd7760_1.conda hash: - md5: 76bbff344f0134279f225174e9064c8f - sha256: cb55f36dcd898203927133280ae1dc643368af041a48bcf7c026acb7c47b0c12 + md5: 8afb2a97d256ffde95b91a6283bc598c + sha256: 96031c853d1a8b32c50c04b791aa199508ab1f0fa879ab7fcce175ee24620f78 optional: false category: main source: null - build: h27087fc_0 -- name: libdeflate - version: '1.18' + build: hbcd7760_1 +- name: mysql-libs + version: 8.0.33 manager: conda platform: linux-64 dependencies: + zstd: '>=1.5.2,<1.6.0a0' + libstdcxx-ng: '>=12' + openssl: '>=3.1.1,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.18-h0b41bf4_0.conda + mysql-common: ==8.0.33 hf1915f5_0 + url: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.33-hca2cd23_0.conda hash: - md5: 6aa9c9de5542ecb07fdda9ca626252d8 - sha256: 949d84ceea543802c1e085b2aa58f1d6cb5dd8cec5a9abaaf4e8ac65d6094b3a + md5: 276339b0115d92c6e0793dcdc7afe308 + sha256: 44ced085e8ccaef349bbc86f95b34595cf907abe56b6268551fe99b31d2dd007 optional: false category: main source: null - build: h0b41bf4_0 -- name: ffmpeg - version: 6.0.0 + build: hca2cd23_0 +- name: mysql-common + version: 8.0.33 manager: conda platform: linux-64 dependencies: - fonts-conda-ecosystem: '*' - libstdcxx-ng: '>=12' - bzip2: '>=1.0.8,<2.0a0' - libxml2: '>=2.11.4,<2.12.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - x264: '>=1 !164.3095,<1!165' - fontconfig: '>=2.14.2,<3.0a0' - gmp: '>=6.2.1,<7.0a0' + openssl: '>=3.1.1,<4.0a0' libgcc-ng: '>=12' - lame: '>=3.100,<3.101.0a0' - libass: '>=0.17.1,<0.17.2.0a0' - libva: '>=2.18.0,<3.0a0' - aom: '>=3.5.0,<3.6.0a0' - freetype: '>=2.12.1,<3.0a0' - libvpx: '>=1.13.0,<1.14.0a0' - openh264: '>=2.3.1,<2.3.2.0a0' - dav1d: '>=1.2.1,<1.2.2.0a0' - libopus: '>=1.3.1,<2.0a0' - gnutls: '>=3.7.8,<3.8.0a0' - svt-av1: '>=1.5.0,<1.5.1.0a0' - x265: '>=3.5,<3.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/ffmpeg-6.0.0-gpl_h17d8df4_102.conda + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.33-hf1915f5_0.conda hash: - md5: 9aceff0c81b17e1994de18c52b6eaf85 - sha256: cd2084d1ccdd071fe3c2cec4df8c1d6323034712f86c095e6b67ca3ad356e72a + md5: aa8b86066614c4573f6db62c91978fa9 + sha256: 4131cd3a3e35050053da45e4f10415a8e4d1acaf169c4f3ad6a2fae9caa53c06 optional: false category: main source: null - build: gpl_h17d8df4_102 -- name: fonts-conda-ecosystem - version: '1' + build: hf1915f5_0 +- name: xcb-util-keysyms + version: 0.4.0 manager: conda platform: linux-64 dependencies: - fonts-conda-forge: '*' - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + libxcb: '>=1.15,<1.16.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h8ee46fc_1.conda hash: - md5: fee5683a3f04bd15cbd8318b096a27ab - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + md5: 632413adcd8bc16b515cab87a2932913 + sha256: 8451d92f25d6054a941b962179180728c48c62aab5bf20ac10fef713d5da6a9a optional: false category: main source: null - build: '0' -- name: gnutls - version: 3.7.8 + build: h8ee46fc_1 +- name: xcb-util-wm + version: 0.4.1 manager: conda platform: linux-64 dependencies: - libidn2: '>=2,<3.0a0' - libtasn1: '>=4.19.0,<5.0a0' - p11-kit: '>=0.24.1,<0.25.0a0' - nettle: '>=3.8.1,<3.9.0a0' - libstdcxx-ng: '>=12' + libxcb: '>=1.15,<1.16.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gnutls-3.7.8-hf3e180e_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h8ee46fc_1.conda hash: - md5: cbe8e27140d67c3f30e01cfb642a6e7c - sha256: 4a47e4558395b98fff4c1c44ad358dade62b350a03b5a784d4bc589d6eb7ac9e + md5: 90108a432fb5c6150ccfee3f03388656 + sha256: 08ba7147c7579249b6efd33397dc1a8c2404278053165aaecd39280fee705724 optional: false category: main source: null - build: hf3e180e_0 -- name: gmp - version: 6.2.1 + build: h8ee46fc_1 +- name: pulseaudio-client + version: '16.1' manager: conda platform: linux-64 dependencies: - libstdcxx-ng: '>=7.5.0' - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/gmp-6.2.1-h58526e2_0.tar.bz2 + libsystemd0: '>=253' + libsndfile: '>=1.2.0,<1.3.0a0' + libglib: '>=2.76.3,<3.0a0' + libgcc-ng: '>=12' + dbus: '>=1.13.6,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-16.1-hb77b528_4.conda hash: - md5: b94cf2db16066b242ebd26db2facbd56 - sha256: 07a5319e1ac54fe5d38f50c60f7485af7f830b036da56957d0bfb7558a886198 + md5: 8f349ca16d30950aa00870484d9d30c4 + sha256: efd5ca5d5b0e55d25b8b2085449618f9777a07a89958c1d557d44f53eff061fe optional: false category: main - source: null - build: h58526e2_0 -- name: libvpx - version: 1.13.0 + source: null + build: hb77b528_4 +- name: libsndfile + version: 1.2.0 manager: conda platform: linux-64 dependencies: + lame: '>=3.100,<3.101.0a0' + libflac: '>=1.4.2,<1.5.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' libgcc-ng: '>=12' libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libvpx-1.13.0-hcb278e6_0.conda + libopus: '>=1.3.1,<2.0a0' + mpg123: '>=1.31.1,<1.32.0a0' + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.0-hb75c966_0.conda hash: - md5: 911a6c4fc35db915c069df32f0ea2376 - sha256: f1d029c3a1b1026843f02541fff0d2407236c7b9fa46595e9e0dfd6e246de09e + md5: c648d19cd9c8625898d5d370414de7c7 + sha256: 52ab2460d626d1cc95092daa4f7191f84d4950aeb9925484135f96af6b6391d8 optional: false category: main source: null - build: hcb278e6_0 -- name: libxml2 - version: 2.11.4 + build: hb75c966_0 +- name: libflac + version: 1.4.2 manager: conda platform: linux-64 dependencies: + gettext: '>=0.21.1,<1.0a0' + libstdcxx-ng: '>=12' libgcc-ng: '>=12' - icu: '>=72.1,<73.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libiconv: '>=1.17,<2.0a0' - xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.11.4-h0d562d8_0.conda + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.2-h27087fc_0.tar.bz2 hash: - md5: e46fad17d5fb57316b956f88dca765e4 - sha256: bc7fa8590c15ffdea5101075ce02de09441c9f378ac1d05e26510d12d25d7099 + md5: 7daf72d8e2a8e848e11d63ed6d1026e0 + sha256: 095cfa4e2df8622b8f9eebec3c60710ea0f4732c64cd24769ccf9ed63fd45545 optional: false category: main source: null - build: h0d562d8_0 -- name: aom - version: 3.5.0 + build: h27087fc_0 +- name: xkeyboard-config + version: '2.39' manager: conda platform: linux-64 dependencies: - libstdcxx-ng: '>=12' + xorg-libx11: '>=1.8.5,<2.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/aom-3.5.0-h27087fc_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.39-hd590300_0.conda hash: - md5: a08150fd2298460cd1fcccf626305642 - sha256: ed05f72ffa891e3c6a507eac6f0221c85c1f0611491328cd098308060740891c + md5: d88c7fc8a11858fb14761832e4da1954 + sha256: 364dd7781383336d701bf3f2e10662079b30094b5a9d2a679edeeea9d11cf059 optional: false category: main source: null - build: h27087fc_0 -- name: libva - version: 2.18.0 + build: hd590300_0 +- name: expat + version: 2.5.0 manager: conda platform: linux-64 dependencies: - xorg-libxfixes: '*' - libdrm: '>=2.4.114,<2.5.0a0' - xorg-libx11: '>=1.8.4,<2.0a0' + libexpat: ==2.5.0 hcb278e6_1 libgcc-ng: '>=12' - xorg-libxext: '>=1.3.4,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libva-2.18.0-h0b41bf4_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda hash: - md5: 56e049224de34bbe0478aad422227942 - sha256: e7254d0111a403ffe707e2ad39b6ce49a2be733e751d14a7255b0cb20da2a16b + md5: 8b9b5aca60558d02ddaa09d599e55920 + sha256: 36dfeb4375059b3bba75ce9b38c29c69fd257342a79e6cf20e9f25c1523f785f optional: false category: main source: null - build: h0b41bf4_0 -- name: svt-av1 - version: 1.5.0 + build: hcb278e6_1 +- name: xorg-xextproto + version: 7.3.0 manager: conda platform: linux-64 dependencies: - libstdcxx-ng: '>=12' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-1.5.0-h59595ed_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda hash: - md5: 63843bd67c7a3785daf38b860135969e - sha256: 28fd545f93f2a0be4473ef429f83090d9a1d03d38a0f6401d611119247051436 + md5: bce9f945da8ad2ae9b1d7165a64d0f87 + sha256: b8dda3b560e8a7830fe23be1c58cc41f407b2e20ae2f3b6901eb5842ba62b743 optional: false category: main source: null - build: h59595ed_0 -- name: fontconfig - version: 2.14.2 + build: h0b41bf4_1003 +- name: libgfortran-ng + version: 13.1.0 manager: conda platform: linux-64 dependencies: - freetype: '>=2.12.1,<3.0a0' - expat: '>=2.5.0,<3.0a0' - libuuid: '>=2.32.1,<3.0a0' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/fontconfig-2.14.2-h14ed4e7_0.conda + libgfortran5: ==13.1.0 h15d22d2_0 + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.1.0-h69a702a_0.conda hash: - md5: 0f69b688f52ff6da70bccb7ff7001d1d - sha256: 155d534c9037347ea7439a2c6da7c24ffec8e5dd278889b4c57274a1d91e0a83 + md5: 506dc07710dd5b0ba63cbf134897fc10 + sha256: 429e1d8a3e70b632df5b876e3fc322a56f769756693daa07114c46fa5098684e optional: false category: main source: null - build: h14ed4e7_0 -- name: libass - version: 0.17.1 + build: h69a702a_0 +- name: libgfortran5 + version: 13.1.0 manager: conda platform: linux-64 - dependencies: - freetype: '>=2.12.1,<3.0a0' - fribidi: '>=1.0.10,<2.0a0' - libexpat: '>=2.5.0,<3.0a0' - fontconfig: '>=2.14.2,<3.0a0' - fonts-conda-ecosystem: '*' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - harfbuzz: '>=7.2.0,<8.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libass-0.17.1-hc9aadba_0.conda + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.1.0-h15d22d2_0.conda hash: - md5: 436f1014ae041c6d94fcac397461a299 - sha256: 8df959388e1968ea14f27c4af209bb667ba3da7b15a76b25931090a6a47d3e1f + md5: afb656a334c409dd9805508af1c89c7a + sha256: a06235f4c4b85b463d9b8a73c9e10c1b5b4105f8a0ea8ac1f2f5f64edac3dfe7 optional: false category: main source: null - build: hc9aadba_0 -- name: dav1d - version: 1.2.1 + build: h15d22d2_0 +- name: libidn2 + version: 2.3.4 manager: conda platform: linux-64 dependencies: + libunistring: '>=0,<1.0a0' + gettext: '>=0.21.1,<1.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/dav1d-1.2.1-hd590300_0.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.4-h166bdaf_0.tar.bz2 hash: - md5: 418c6ca5929a611cbd69204907a83995 - sha256: 22053a5842ca8ee1cf8e1a817138cdb5e647eb2c46979f84153f6ad7bde73020 + md5: 7440fbafd870b8bab68f83a064875d34 + sha256: 888848ae85be9df86f56407639c63bdce8e7651f0b2517be9bc0ac6e38b2d21d optional: false category: main source: null - build: hd590300_0 -- name: fonts-conda-forge - version: '1' + build: h166bdaf_0 +- name: ca-certificates + version: 2023.5.7 manager: conda platform: linux-64 - dependencies: - font-ttf-dejavu-sans-mono: '*' - font-ttf-source-code-pro: '*' - font-ttf-inconsolata: '*' - font-ttf-ubuntu: '*' - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.5.7-hbcca054_0.conda hash: - md5: f766549260d6815b0c52253f1fb1bb29 - sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 + md5: f5c65075fc34438d5b456c7f3f5ab695 + sha256: 0cf1bb3d0bfc5519b60af2c360fa4888fb838e1476b1e0f65b9dbc48b45c7345 optional: false category: main source: null - build: '0' -- name: nettle - version: 3.8.1 + build: hbcca054_0 +- name: hdf5 + version: 1.14.0 manager: conda platform: linux-64 dependencies: + libgfortran-ng: '*' + libcurl: '>=7.88.1,<9.0a0' + openssl: '>=3.0.8,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/nettle-3.8.1-hc379101_1.tar.bz2 + libgfortran5: '>=11.3.0' + libaec: '>=1.0.6,<2.0a0' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.0-nompi_hb72d44e_103.conda hash: - md5: 3cb2c7df59990bd37c2ce27fd906de68 - sha256: 49c569a69608eee784e815179a70c6ae4d088dac42b7df999044f68058d593bb + md5: 975973a4350ab45ff1981fe535a12af5 + sha256: 989019cdf2a1319afb299f47dde9a52dedc16906ec53e2d32e0627caf557d034 optional: false category: main source: null - build: hc379101_1 -- name: libtasn1 - version: 4.19.0 + build: nompi_hb72d44e_103 +- name: libcurl + version: 8.1.2 manager: conda platform: linux-64 dependencies: + libssh2: '>=1.10.0,<2.0a0' + zstd: '>=1.5.2,<1.6.0a0' + libnghttp2: '>=1.52.0,<2.0a0' + openssl: '>=3.1.0,<4.0a0' + krb5: '>=1.20.1,<1.21.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libtasn1-4.19.0-h166bdaf_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.1.2-h409715c_0.conda hash: - md5: 93840744a8552e9ebf6bb1a5dffc125a - sha256: 5bfeada0e1c6ec2574afe2d17cdbc39994d693a41431338a6cb9dfa7c4d7bfc8 + md5: 50c873c9660ed116707ae15b663928d8 + sha256: d572c31ff48d2db6ca5bab476bf325811cfc82577480b3791487c3fe7bff2ffa optional: false category: main source: null - build: h166bdaf_0 -- name: p11-kit - version: 0.24.1 + build: h409715c_0 +- name: libnghttp2 + version: 1.52.0 manager: conda platform: linux-64 dependencies: + libstdcxx-ng: '>=12' + c-ares: '>=1.18.1,<2.0a0' + libev: '>=4.33,<4.34.0a0' + libzlib: '>=1.2.13,<1.3.0a0' libgcc-ng: '>=12' - libffi: '>=3.4.2,<3.5.0a0' - libtasn1: '>=4.18.0,<5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/p11-kit-0.24.1-hc5aa10d_0.tar.bz2 + openssl: '>=3.0.8,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda hash: - md5: 56ee94e34b71742bbdfa832c974e47a8 - sha256: aa8d3887b36557ad0c839e4876c0496e0d670afe843bf5bba4a87764b868196d + md5: 613955a50485812985c059e7b269f42e + sha256: ecd6b08c2b5abe7d1586428c4dd257dcfa00ee53700d79cdc8bca098fdfbd79a optional: false category: main source: null - build: hc5aa10d_0 -- name: libiconv - version: '1.17' + build: h61bc06f_0 +- name: libaec + version: 1.0.6 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2 + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.0.6-hcb278e6_1.conda hash: - md5: b62b52da46c39ee2bc3c162ac7f1804d - sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7 + md5: 0f683578378cddb223e7fd24f785ab2a + sha256: 4df6a29b71264fb25462065e8cddcf5bca60776b1801974af8cbd26b7425fcda optional: false category: main source: null - build: h166bdaf_0 -- name: libdrm - version: 2.4.114 + build: hcb278e6_1 +- name: pysocks + version: 1.7.1 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libpciaccess: '>=0.17,<0.18.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libdrm-2.4.114-h166bdaf_0.tar.bz2 + __unix: '*' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 hash: - md5: efb58e80f5d0179a783c4e76c3df3b9c - sha256: 9316075084ad66f9f96d31836e83303a8199eec93c12d68661e41c44eed101e3 + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b optional: false category: main source: null - build: h166bdaf_0 -- name: libexpat - version: 2.5.0 + build: pyha2e5f31_6 +- name: brotli + version: 1.0.9 manager: conda platform: linux-64 dependencies: + libbrotlienc: ==1.0.9 h166bdaf_8 + brotli-bin: ==1.0.9 h166bdaf_8 libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda + libbrotlidec: ==1.0.9 h166bdaf_8 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2 hash: - md5: 6305a3dd2752c76335295da4e581f2fd - sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3 + md5: 2ff08978892a3e8b954397c461f18418 + sha256: 74c0fa22ea7c62d2c8f7a7aea03a3bd4919f7f3940ef5b027ce0dfb5feb38c06 optional: false category: main source: null - build: hcb278e6_1 -- name: font-ttf-dejavu-sans-mono - version: '2.37' + build: h166bdaf_8 +- name: brotli-bin + version: 1.0.9 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + dependencies: + libgcc-ng: '>=12' + libbrotlienc: ==1.0.9 h166bdaf_8 + libbrotlidec: ==1.0.9 h166bdaf_8 + url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2 hash: - md5: 0c96522c6bdaed4b1566d11387caaf45 - sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + md5: e5613f2bc717e9945840ff474419b8e4 + sha256: ab1994e03bdd88e4b27f9f802ac18e45ed29b92cce25e1fd86da43b89734950f optional: false category: main source: null - build: hab24e00_0 -- name: font-ttf-ubuntu - version: '0.83' + build: h166bdaf_8 +- name: libbrotlidec + version: 1.0.9 manager: conda platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + dependencies: + libbrotlicommon: ==1.0.9 h166bdaf_8 + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2 hash: - md5: 19410c3df09dfb12d1206132a1d357c5 - sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + md5: 4ae4d7795d33e02bd20f6b23d91caf82 + sha256: d88ba07c3be27c89cb4975cc7edf63ee7b1c62d01f70d5c3f7efeb987c82b052 optional: false category: main source: null - build: hab24e00_0 -- name: libpciaccess - version: '0.17' + build: h166bdaf_8 +- name: libbrotlienc + version: 1.0.9 manager: conda platform: linux-64 dependencies: + libbrotlicommon: ==1.0.9 h166bdaf_8 libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libpciaccess-0.17-h166bdaf_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2 hash: - md5: b7463391cf284065294e2941dd41ab95 - sha256: 9fe4aaf5629b4848d9407b9ed4da941ba7e5cebada63ee0becb9aa82259dc6e2 + md5: 04bac51ba35ea023dc48af73c1c88c25 + sha256: a0468858b2f647f51509a32040e93512818a8f9980f20b3554cccac747bcc4be optional: false category: main source: null - build: h166bdaf_0 -- name: freetype - version: 2.12.1 + build: h166bdaf_8 +- name: libbrotlicommon + version: 1.0.9 manager: conda platform: linux-64 dependencies: libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - libpng: '>=1.6.39,<1.7.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-hca18f0e_1.conda + url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2 hash: - md5: e1232042de76d24539a436d37597eb06 - sha256: 1eb913727b54e9aa63c6d9a1177db4e2894cee97c5f26910a2b61899d5ac904f + md5: 9194c9bf9428035a05352d031462eae4 + sha256: ddc961a36d498aaafd5b71078836ad5dd247cc6ba7924157f3801a2f09b77b14 optional: false category: main source: null - build: hca18f0e_1 -- name: liblapacke - version: 3.9.0 + build: h166bdaf_8 +- name: libogg + version: 1.3.4 manager: conda platform: linux-64 dependencies: - liblapack: ==3.9.0 17_linux64_openblas - libblas: ==3.9.0 17_linux64_openblas - libcblas: ==3.9.0 17_linux64_openblas - url: https://conda.anaconda.org/conda-forge/linux-64/liblapacke-3.9.0-17_linux64_openblas.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 hash: - md5: 949709aa6ee6a2dcdb3de6dd99147d17 - sha256: 6d936873d3f9ad6cc39117bc0b2f71bfd4eae93a2d2e32e9e2102b8346a5d99f + md5: 6e8cc2173440d77708196c5b93771680 + sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 optional: false category: main source: null - build: 17_linux64_openblas -- name: libblas - version: 3.9.0 + build: h7f98852_1 +- name: mpg123 + version: 1.31.3 manager: conda platform: linux-64 dependencies: - libopenblas: '>=0.3.23,<1.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-17_linux64_openblas.conda + libgcc-ng: '>=12' + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.31.3-hcb278e6_0.conda hash: - md5: 57fb44770b1bc832fb2dbefa1bd502de - sha256: 5a9dfeb9ede4b7ac136ac8c0b589309f8aba5ce79d14ca64ad8bffb3876eb04b + md5: 141a126675b6d1a4eabb111a4a353898 + sha256: 7e4a64329595c0cbfc770585827b72a63d224606324dff5b399467486dc68344 optional: false category: main source: null - build: 17_linux64_openblas -- name: libcblas - version: 3.9.0 + build: hcb278e6_0 +- name: libsystemd0 + version: '253' manager: conda platform: linux-64 dependencies: - libblas: ==3.9.0 17_linux64_openblas - url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-17_linux64_openblas.conda + libgcrypt: '>=1.10.1,<2.0a0' + xz: '>=5.2.6,<6.0a0' + libcap: '>=2.67,<2.68.0a0' + __glibc: '>=2.17,<3.0.a0' + lz4-c: '>=1.9.3,<1.10.0a0' + zstd: '>=1.5.2,<1.6.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-253-h8c4010b_1.conda hash: - md5: 7ef0969b00fe3d6eef56a8151d3afb29 - sha256: 535bc0a6bc7641090b1bdd00a001bb6c4ac43bce2a11f238bc6676252f53eb3f + md5: 9176b1e2cb8beca37a7510b0e801e38f + sha256: 13f5db46b7ded028f5b53fd5373e27a47789b9a655b52a92c4b324099602f29a optional: false category: main source: null - build: 17_linux64_openblas -- name: liblapack - version: 3.9.0 + build: h8c4010b_1 +- name: libcap + version: '2.67' manager: conda platform: linux-64 dependencies: - libblas: ==3.9.0 17_linux64_openblas - url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-17_linux64_openblas.conda + attr: '>=2.5.1,<2.6.0a0' + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.67-he9d0100_0.conda hash: - md5: a2103882c46492e26500fcb56c03de8b - sha256: 45128394d2f4d4caf949c1b02bff1cace3ef2e33762dbe8f0edec7701a16aaa9 + md5: d05556c80caffff164d17bdea0105a1a + sha256: 4dcf2290b9b90ad2654fbfff52e9c1d49885ce71f0bb853520e2b9d54809605b optional: false category: main source: null - build: 17_linux64_openblas -- name: _openmp_mutex - version: '4.5' + build: he9d0100_0 +- name: libgcrypt + version: 1.10.1 manager: conda platform: linux-64 dependencies: - libgomp: '>=7.5.0' - _libgcc_mutex: ==0.1 conda_forge - url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 + libgcc-ng: '>=10.3.0' + libgpg-error: '>=1.44,<2.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.1-h166bdaf_0.tar.bz2 hash: - md5: 73aaf86a425cc6e73fcf236a5a46396d - sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 + md5: f967fc95089cd247ceed56eda31de3a9 + sha256: 8fd7e6db1021cd9298d9896233454de204116840eb66a06fcb712e1015ff132a optional: false category: main source: null - build: 2_gnu -- name: libgomp - version: 13.1.0 + build: h166bdaf_0 +- name: c-ares + version: 1.19.1 manager: conda platform: linux-64 dependencies: - _libgcc_mutex: ==0.1 conda_forge - url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda + libgcc-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.19.1-hd590300_0.conda hash: - md5: 56ca14d57ac29a75d23a39eb3ee0ddeb - sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d + md5: e8c18d865be43e2fb3f7a145b6adf1f5 + sha256: c4276b1a0e8f18ab08018b1881666656742b325e0fcf2354f714e924d28683b6 optional: false category: main source: null - build: he5830b7_0 -- name: libopenblas - version: 0.3.23 + build: hd590300_0 +- name: libev + version: '4.33' manager: conda platform: linux-64 dependencies: - libgfortran-ng: '*' - libgcc-ng: '>=12' - libgfortran5: '>=11.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.23-pthreads_h80387f5_0.conda + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2 hash: - md5: 9c5ea51ccb8ffae7d06c645869d24ce6 - sha256: 00aee12d04979d024c7f9cabccff5f5db2852c934397ec863a4abde3e09d5a79 + md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3 + sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9 optional: false category: main source: null - build: pthreads_h80387f5_0 -- name: libglib - version: 2.76.3 + build: h516909a_1 +- name: libssh2 + version: 1.11.0 manager: conda platform: linux-64 dependencies: libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.40,<10.41.0a0' - libiconv: '>=1.17,<2.0a0' - gettext: '>=0.21.1,<1.0a0' - libffi: '>=3.4,<4.0a0' libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.76.3-hebfc3b9_0.conda + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda hash: - md5: a64f11b244b2c112cd3fa1cbe9493999 - sha256: 6a34c6b123f06fcee7e28e981ec0daad09bce35616ad8e9e61ef84be7fad4d92 + md5: 1f5a58e686b13bcfde88b93f547d23fe + sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d optional: false category: main source: null - build: hebfc3b9_0 -- name: gettext - version: 0.21.1 + build: h0841786_0 +- name: libgpg-error + version: '1.47' manager: conda platform: linux-64 dependencies: + libstdcxx-ng: '>=12' + gettext: '>=0.21.1,<1.0a0' libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.47-h71f35ed_0.conda hash: - md5: 14947d8770185e5153fdd04d4673ed37 - sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a + md5: c2097d0b46367996f09b4e8e4920384a + sha256: 0306b3c2d65863048983a50bd8b86f6f26e457ef55d1da745a5796af25093f5a optional: false category: main source: null - build: h27087fc_0 -- name: pcre2 - version: '10.40' + build: h71f35ed_0 +- name: lz4-c + version: 1.9.4 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.12,<1.3.0a0' libgcc-ng: '>=12' - bzip2: '>=1.0.8,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2 + libstdcxx-ng: '>=12' + url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda hash: - md5: 69e2c796349cd9b273890bee0febfe1b - sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a + md5: 318b08df404f9c9be5712aaa5a6f0bb0 + sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f optional: false category: main source: null - build: hc3806b6_0 -- name: qt-main - version: 5.15.8 + build: hcb278e6_0 +- name: attr + version: 2.5.1 manager: conda platform: linux-64 dependencies: - libclang13: '>=15.0.7' - xcb-util: '>=0.4.0,<0.5.0a0' - xcb-util-keysyms: '>=0.4.0,<0.5.0a0' - xorg-libx11: '>=1.8.4,<2.0a0' - xorg-libxext: '>=1.3.4,<2.0a0' libgcc-ng: '>=12' - zstd: '>=1.5.2,<1.6.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - freetype: '>=2.12.1,<3.0a0' - libxcb: '>=1.15,<1.16.0a0' - xcb-util-image: '>=0.4.0,<0.5.0a0' - harfbuzz: '>=7.3.0,<8.0a0' - krb5: '>=1.20.1,<1.21.0a0' - dbus: '>=1.13.6,<2.0a0' - pulseaudio-client: '>=16.1,<16.2.0a0' - xorg-xf86vidmodeproto: '*' - nss: '>=3.89,<4.0a0' - libxml2: '>=2.11.4,<2.12.0a0' - fontconfig: '>=2.14.2,<3.0a0' - libstdcxx-ng: '>=12' - libclang: '>=15.0.7,<16.0a0' - libpng: '>=1.6.39,<1.7.0a0' - fonts-conda-ecosystem: '*' - __glibc: '>=2.17,<3.0.a0' - libpq: '>=15.3,<16.0a0' - alsa-lib: '>=1.2.8,<1.2.9.0a0' - xorg-libsm: '*' - libexpat: '>=2.5.0,<3.0a0' - gst-plugins-base: '>=1.22.3,<1.23.0a0' - libcups: '>=2.3.3,<2.4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - icu: '>=72.1,<73.0a0' - libglib: '>=2.76.3,<3.0a0' - nspr: '>=4.35,<5.0a0' - mysql-libs: '>=8.0.32,<8.1.0a0' - gstreamer: '>=1.22.3,<1.23.0a0' - openssl: '>=3.1.0,<4.0a0' - libxkbcommon: '>=1.5.0,<2.0a0' - xcb-util-renderutil: '>=0.3.9,<0.4.0a0' - libsqlite: '>=3.42.0,<4.0a0' - xcb-util-wm: '>=0.4.1,<0.5.0a0' - libevent: '>=2.1.12,<2.1.13.0a0' - xorg-libice: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/qt-main-5.15.8-h01ceb2d_13.conda + url: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 hash: - md5: 99ca83a166224f46a62c9545b8d66401 - sha256: dce3d4e4765ee786fc616fb90b2e5363ad22d99b849c21686e03d5618d777dea + md5: d9c69a24ad678ffce24c6543a0176b00 + sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 optional: false category: main source: null - build: h01ceb2d_13 -- name: libsqlite - version: 3.42.0 + build: h166bdaf_1 +- name: graphite2 + version: 1.3.13 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.42.0-h2797004_0.conda + libgcc-ng: '>=7.5.0' + libstdcxx-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2 hash: - md5: fdaae20a1cf7cd62130a0973190a31b7 - sha256: 72e958870f49174ebc0ddcd4129e9a9f48de815f20aa3b553f136b514f29bb3a + md5: 8c54672728e8ec6aa6db90cf2806d220 + sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1 optional: false category: main source: null - build: h2797004_0 -- name: libxcb - version: '1.15' + build: h58526e2_1001 +- name: libvorbis + version: 1.3.7 manager: conda platform: linux-64 dependencies: - xorg-libxdmcp: '*' - pthread-stubs: '*' - libgcc-ng: '>=12' - xorg-libxau: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.15-h0b41bf4_0.conda + libstdcxx-ng: '>=9.3.0' + libgcc-ng: '>=9.3.0' + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2 hash: - md5: 33277193f5b92bad9fdd230eb700929c - sha256: a670902f0a3173a466c058d2ac22ca1dd0df0453d3a80e0212815c20a16b0485 + md5: 309dec04b70a3cc0f1e84a4013683bc0 + sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 optional: false category: main source: null - build: h0b41bf4_0 -- name: nspr - version: '4.35' + build: h9c3ff4c_0 +- name: libedit + version: 3.1.20191231 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/nspr-4.35-h27087fc_0.conda + ncurses: '>=6.2,<7.0.0a0' + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 hash: - md5: da0ec11a6454ae19bff5b02ed881a2b1 - sha256: 8fadeebb2b7369a4f3b2c039a980d419f65c7b18267ba0c62588f9f894396d0c + md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 + sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf optional: false category: main source: null - build: h27087fc_0 -- name: nss - version: '3.89' + build: he28a2e2_2 +- name: libunistring + version: 0.9.10 manager: conda platform: linux-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - __glibc: '>=2.17,<3.0.a0' - libstdcxx-ng: '>=12' - libsqlite: '>=3.40.0,<4.0a0' - nspr: '>=4.35,<5.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/nss-3.89-he45b914_0.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2 hash: - md5: 2745719a58eeaab6657256a3f142f099 - sha256: 6d512e4a7ffae4fed9feac2cb2037398c78ade47e5358fc79ac3e58494de0cad + md5: 7245a044b4a1980ed83196176b78b73a + sha256: e88c45505921db29c08df3439ddb7f771bbff35f95e7d3103bf365d5d6ce2a6d optional: false category: main source: null - build: he45b914_0 -- name: alsa-lib - version: 1.2.8 + build: h7f98852_0 +- name: xorg-inputproto + version: 2.3.2 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.8-h166bdaf_0.tar.bz2 + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-h7f98852_1002.tar.bz2 hash: - md5: be733e69048951df1e4b4b7bb8c7666f - sha256: 2c0a618d0fa695e4e01a30e7ff31094be540c52e9085cbd724edb132c65cf9cd + md5: bcd1b3396ec6960cbc1d2855a9e60b2b + sha256: 6c8c2803de0f643f8bad16ece3f9a7259e4a49247543239c182d66d5e3a129a7 optional: false category: main source: null - build: h166bdaf_0 -- name: xcb-util-renderutil - version: 0.3.9 + build: h7f98852_1002 +- name: xorg-fixesproto + version: '5.0' manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-renderutil-0.3.9-hd590300_1.conda + xorg-xextproto: '*' + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2 hash: - md5: e995b155d938b6779da6ace6c6b13816 - sha256: 6987588e6fff5892056021c2ea52f7a0deefb2c7348e70d24750e2d60dabf009 + md5: 65ad6e1eb4aed2b0611855aff05e04f6 + sha256: 5d2af1b40f82128221bace9466565eca87c97726bb80bbfcd03871813f3e1876 optional: false category: main source: null - build: hd590300_1 -- name: xcb-util-image - version: 0.4.0 + build: h7f98852_1002 +- name: xorg-xf86vidmodeproto + version: 2.3.1 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - xcb-util: '>=0.4.0,<0.5.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-image-0.4.0-h8ee46fc_1.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xf86vidmodeproto-2.3.1-h7f98852_1002.tar.bz2 hash: - md5: 9d7bcddf49cbf727730af10e71022c73 - sha256: 92ffd68d2801dbc27afe223e04ae7e78ef605fc8575f107113c93c7bafbd15b0 + md5: 3ceea9668625c18f19530de98b15d5b0 + sha256: 43398aeacad5b8753b7a1c12cb6bca36124e0c842330372635879c350c430791 optional: false category: main source: null - build: h8ee46fc_1 -- name: cairo - version: 1.16.0 + build: h7f98852_1002 +- name: xorg-libxdmcp + version: 1.1.3 manager: conda platform: linux-64 dependencies: - xorg-libsm: '*' - fontconfig: '>=2.14.2,<3.0a0' - libpng: '>=1.6.39,<1.7.0a0' - xorg-libice: '*' - libxcb: '>=1.15,<1.16.0a0' - xorg-libxext: '>=1.3.4,<2.0a0' - icu: '>=72.1,<73.0a0' - zlib: '*' - freetype: '>=2.12.1,<3.0a0' - libgcc-ng: '>=12' - libglib: '>=2.76.2,<3.0a0' - xorg-libx11: '>=1.8.4,<2.0a0' - fonts-conda-ecosystem: '*' - pixman: '>=0.40.0,<1.0a0' - xorg-libxrender: '*' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.16.0-hbbf8b49_1016.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2 hash: - md5: c1dd96500b9b1a75e9e511931f415cbc - sha256: 1fffecc684c26e0f1aed6d9857ad0f2abfe3a849977f718ad82366c68c7a9a36 + md5: be93aabceefa2fac576e971aef407908 + sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 optional: false category: main source: null - build: hbbf8b49_1016 -- name: freeglut - version: 3.2.2 + build: h7f98852_0 +- name: pthread-stubs + version: '0.4' manager: conda platform: linux-64 dependencies: - xorg-libxau: '>=1.0.11,<2.0a0' - xorg-libxi: '*' - libxcb: '>=1.15,<1.16.0a0' - xorg-libx11: '>=1.8.4,<2.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - xorg-libxext: '>=1.3.4,<2.0a0' - xorg-libxfixes: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/freeglut-3.2.2-hac7e632_2.conda + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2 hash: - md5: 6e553df297f6e64668efb54302e0f139 - sha256: 6dc7be5d0853ea5bcbb2b1921baf7d069605594c207e8ce36a662f447cd81a3f + md5: 22dad4df6e8630e8dff2428f6f6a7036 + sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff optional: false category: main source: null - build: hac7e632_2 -- name: zlib - version: 1.2.13 + build: h36c2ea0_1001 +- name: xorg-renderproto + version: 0.11.1 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - libzlib: ==1.2.13 h166bdaf_4 - url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.13-h166bdaf_4.tar.bz2 + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2 hash: - md5: 4b11e365c0275b808be78b30f904e295 - sha256: 282ce274ebe6da1fbd52efbb61bd5a93dec0365b14d64566e6819d1691b75300 + md5: 06feff3d2634e3097ce2fe681474b534 + sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 optional: false category: main source: null - build: h166bdaf_4 -- name: pixman - version: 0.40.0 + build: h7f98852_1002 +- name: xorg-kbproto + version: 1.0.7 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.40.0-h36c2ea0_0.tar.bz2 + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2 hash: - md5: 660e72c82f2e75a6b3fe6a6e75c79f19 - sha256: 6a0630fff84b5a683af6185a6c67adc8bdfa2043047fcb251add0d352ef60e79 + md5: 4b230e8381279d76131116660f5a241a + sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 optional: false category: main source: null - build: h36c2ea0_0 -- name: xorg-libxau - version: 1.0.11 + build: h7f98852_1002 +- name: xorg-xproto + version: 7.0.31 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hd590300_0.conda + libgcc-ng: '>=9.3.0' + url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2 hash: - md5: 2c80dc38fface310c9bd81b17037fee5 - sha256: 309751371d525ce50af7c87811b435c176915239fc9e132b99a25d5e1703f2d4 + md5: b4a4381d54784606820704f7b5f05a15 + sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d optional: false category: main source: null - build: hd590300_0 -- name: bzip2 - version: 1.0.8 + build: h7f98852_1007 +- name: fribidi + version: 1.0.10 manager: conda platform: linux-64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2 + libgcc-ng: '>=7.5.0' + url: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 hash: - md5: a1fd65c7ccbf10880423d82bca54eb54 - sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa + md5: ac7bc6a654f8f41b352b38f4051135f8 + sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627 optional: false category: main source: null - build: h7f98852_4 -- name: x264 - version: 1!164.3095 + build: h36c2ea0_0 +- name: python + version: 3.10.11 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/x264-1!164.3095-h166bdaf_2.tar.bz2 + tzdata: '*' + openssl: '>=3.1.0,<4.0a0' + readline: '>=8.2,<9.0a0' + libffi: '>=3.4,<4.0a0' + libsqlite: '>=3.41.2,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + xz: '>=5.2.6,<6.0a0' + tk: '>=8.6.12,<8.7.0a0' + bzip2: '>=1.0.8,<2.0a0' + ncurses: '>=6.3,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.11-h3ba56d0_0_cpython.conda hash: - md5: 6c99772d483f566d59e25037fea2c4b1 - sha256: 175315eb3d6ea1f64a6ce470be00fa2ee59980108f246d3072ab8b977cb048a5 + md5: 96c4e977d33ac768ca95ed9bc1166862 + sha256: 2bfbb1c08001de4f7b144cc132ab238cc83b836006edd6f48fb4c72957795f2f + optional: false + category: main + source: null + build: h3ba56d0_0_cpython +- name: readline + version: '8.2' + manager: conda + platform: osx-arm64 + dependencies: + ncurses: '>=6.3,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda + hash: + md5: 8cbb776a2f641b943d413b3e19df71f4 + sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 optional: false category: main source: null - build: h166bdaf_2 -- name: openh264 - version: 2.3.1 + build: h92ec313_1 +- name: tk + version: 8.6.12 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libstdcxx-ng: '>=12' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/openh264-2.3.1-hcb278e6_2.conda + libzlib: '>=1.2.11,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2 hash: - md5: 37d01894f256b2a6921c5a218f42f8a2 - sha256: 3be6de15d40f02c9bb34d5095c65b6b3f07e04fc21a0fb63d1885f1a31de5ae2 + md5: 2cb3d18eac154109107f093860bd545f + sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4 optional: false category: main source: null - build: hcb278e6_2 -- name: lame - version: '3.100' + build: he1e0b03_0 +- name: xz + version: 5.2.6 manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lame-3.100-h166bdaf_1003.tar.bz2 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 hash: - md5: a8832b479f93521a9e7b5b743803be51 - sha256: aad2a703b9d7b038c0f745b853c6bb5f122988fe1a7a096e0e606d9cbec4eaab + md5: 39c6b54e94014701dd157f4f576ed211 + sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec optional: false category: main source: null - build: h166bdaf_1003 -- name: x265 - version: '3.5' + build: h57fd34a_0 +- name: opencv + version: 4.7.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libstdcxx-ng: '>=10.3.0' - libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/x265-3.5-h924138e_3.tar.bz2 + py-opencv: ==4.7.0 py310h69fb684_4 + python_abi: 3.10.* *_cp310 + libopencv: ==4.7.0 py310h7a1b33c_4 + url: https://conda.anaconda.org/conda-forge/osx-arm64/opencv-4.7.0-py310hb6292c7_4.conda hash: - md5: e7f6ed84d4623d52ee581325c1587a6b - sha256: 76c7405bcf2af639971150f342550484efac18219c0203c5ee2e38b8956fe2a0 + md5: ecb764ec6bb90a0cf808f80c38ca56eb + sha256: 54e0774bf4437d1887f648e0705cca475cd9480ce365b3831b489c6c5df6ecdb optional: false category: main source: null - build: h924138e_3 -- name: libopus - version: 1.3.1 + build: py310hb6292c7_4 +- name: libopencv + version: 4.7.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2 + python: '>=3.10,<3.11.0a0 *_cpython' + libpng: '>=1.6.39,<1.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libprotobuf: '>=3.21.12,<3.22.0a0' + libcblas: '>=3.9.0,<4.0a0' + jasper: '>=4.0.0,<5.0a0' + harfbuzz: '>=7.3.0,<8.0a0' + liblapacke: '>=3.9.0,<4.0a0' + libglib: '>=2.76.2,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + hdf5: '>=1.14.0,<1.14.1.0a0' + libwebp-base: '>=1.3.0,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + liblapack: '>=3.9.0,<4.0a0' + libcxx: '>=15.0.7' + ffmpeg: '>=5.1.2,<6.0a0' + libtiff: '>=4.5.0,<4.6.0a0' + numpy: '>=1.21.6,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopencv-4.7.0-py310h7a1b33c_4.conda hash: - md5: 15345e56d527b330e1cacbdf58676e8f - sha256: 0e1c2740ebd1c93226dc5387461bbcf8142c518f2092f3ea7551f77755decc8f + md5: 0b577b07c4190191aadde49ec88e149f + sha256: 70ebe2d15df76a254550e953a297b6dd6117f5bf119fa70fe2e5323c25ca6d97 optional: false category: main source: null - build: h7f98852_1 -- name: zstd - version: 1.5.2 + build: py310h7a1b33c_4 +- name: py-opencv + version: 4.7.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libstdcxx-ng: '>=12' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.2-h3eb15da_6.conda + numpy: '>=1.21.6,<2.0a0' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libopencv: ==4.7.0 py310h7a1b33c_4 + url: https://conda.anaconda.org/conda-forge/osx-arm64/py-opencv-4.7.0-py310h69fb684_4.conda hash: - md5: 6b63daed8feeca47be78f323e793d555 - sha256: fbe49a8c8df83c2eccb37c5863ad98baeb29796ec96f2c503783d7b89bf80c98 + md5: 962ccc73d26bc008a9d7a2497769364c + sha256: ead9165b921b08359b8cc4b76c5b20fbe2f39664e27e822c8502807781bb3878 optional: false category: main source: null - build: h3eb15da_6 -- name: libglu - version: 9.0.0 + build: py310h69fb684_4 +- name: harfbuzz + version: 7.3.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libxcb: '>=1.15,<1.16.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - xorg-xextproto: '>=7.3.0,<8.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libglu-9.0.0-hac7e632_1002.conda + icu: '>=72.1,<73.0a0' + libcxx: '>=15.0.7' + graphite2: '*' + cairo: '>=1.16.0,<2.0a0' + freetype: '>=2.12.1,<3.0a0' + libglib: '>=2.76.2,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-7.3.0-h46e5fef_0.conda hash: - md5: 4c4dce87e96b321308f81ba2c10d2897 - sha256: 71bfd2955cf5fe8a4876d31fffe7da0c9504727582900ce96cefc8f77598c908 + md5: 5247712cd97eeda510d1436560b13833 + sha256: 29a2eb09dce14b93687660cf0efcdd2fb879a3786bce17ab73e56fbb05b3d26a optional: false category: main source: null - build: hac7e632_1002 -- name: ncurses - version: '6.4' + build: h46e5fef_0 +- name: libpng + version: 1.6.39 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.39-h76d750c_0.conda hash: - md5: 681105bccc2a3f7f1a837d47d39c9179 - sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a + md5: 0078e6327c13cfdeae6ff7601e360383 + sha256: 21ab8409a8e66f9408b96428c0a36a9768faee9fe623c56614576f9e12962981 optional: false category: main source: null - build: hcb278e6_0 -- name: tzdata - version: 2023c + build: h76d750c_0 +- name: libwebp-base + version: 1.3.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.3.0-h1a8c8d9_0.conda hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: c316f1e4a833d49672f1df3bc015a115 + sha256: f863700d96c722414d2406cfa6108f6d363068112b88d6b0a4b92e5724439070 optional: false category: main source: null - build: h71feb2d_0 -- name: openssl - version: 3.1.1 + build: h1a8c8d9_0 +- name: libprotobuf + version: 3.21.12 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - ca-certificates: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.1-hd590300_1.conda + libzlib: '>=1.2.13,<1.3.0a0' + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-3.21.12-hb5ab8b9_0.conda hash: - md5: 2e1d7b458ac8f1e3ca4e18b77add6277 - sha256: 407d655643389bdb49266842a816815c981ae98f3513a6a2059b908b3abb380a + md5: 7adb342474af442e3842c422f07fbf68 + sha256: 1ba3f141e7554b0d0998808b2ba270760e3d4b882839bb24a566ce046d58bbc8 optional: false category: main source: null - build: hd590300_1 -- name: krb5 - version: 1.20.1 + build: hb5ab8b9_0 +- name: libjpeg-turbo + version: 2.1.5.1 manager: conda - platform: linux-64 - dependencies: - libedit: '>=3.1.20191231,<4.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - openssl: '>=3.0.7,<4.0a0' - keyutils: '>=1.6.1,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.20.1-h81ceb04_0.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-2.1.5.1-h1a8c8d9_0.conda hash: - md5: 89a41adce7106749573d883b2f657d78 - sha256: 51a346807ce981e1450eb04c3566415b05eed705bc9e6c98c198ec62367b7c62 + md5: cd9d6c05ca2e993429a90496ab7e1b99 + sha256: bda32077e0024630b2348dc1eabc21246b999ece3789e45e6f778c378ec77f08 optional: false category: main source: null - build: h81ceb04_0 -- name: keyutils - version: 1.6.1 + build: h1a8c8d9_0 +- name: graphite2 + version: 1.3.13 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 + libcxx: '>=11.0.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-h9f76cd9_1001.tar.bz2 hash: - md5: 30186d27e2c9fa62b45fb1476b7200e3 - sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb + md5: 288b591645cb9cb9c0af7309ac1114f5 + sha256: 57db1e563cdfe469cd453a2988039118e96ce4b77c9219e2f1022be0e1c2b03f optional: false category: main source: null - build: h166bdaf_0 -- name: libcups - version: 2.3.3 + build: h9f76cd9_1001 +- name: icu + version: '72.1' manager: conda - platform: linux-64 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-72.1-he12128b_0.conda + hash: + md5: d1a11dfc54168a07856dbf87f393ca82 + sha256: 997835c56e899f4717b6707ab0734c27e7cdd8c735c952334314a7c9d59808e1 + optional: false + category: main + source: null + build: he12128b_0 +- name: jasper + version: 4.0.0 + manager: conda + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - krb5: '>=1.20.1,<1.21.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcups-2.3.3-h36d4200_3.conda + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/jasper-4.0.0-hff9eb24_1.conda hash: - md5: c9f4416a34bc91e0eb029f912c68f81f - sha256: 0ccd610207807f53328f137b2adc99c413f8e1dcd1302f0325412796a94eaaf7 + md5: 9d1caf2aeb5999a065be26807fd71c03 + sha256: f2c4e2719c247379e3010256a2af6ec54da9b2166b59695c3867900670c97b70 optional: false category: main source: null - build: h36d4200_3 -- name: libffi - version: 3.4.2 + build: hff9eb24_1 +- name: requests + version: 2.31.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2 + certifi: '>=2017.4.17' + python: '>=3.7' + charset-normalizer: '>=2,<4' + urllib3: '>=1.21.1,<3' + idna: '>=2.5,<4' + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda hash: - md5: d645c6d2ac96843a2bfaccd2d62b3ac3 - sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e + md5: a30144e4156cdbb236f99ebb49828f8b + sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad optional: false category: main source: null - build: h7f98852_5 -- name: ld_impl_linux-64 - version: '2.40' + build: pyhd8ed1ab_0 +- name: libcxx + version: 16.0.6 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.6-h4653b0c_0.conda hash: - md5: 7aca3059a1729aa76c597603f10b0dd3 - sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd + md5: 9d7d724faf0413bf1dbc5a85935700c8 + sha256: 11d3fb51c14832d9e4f6d84080a375dec21ea8a3a381a1910e67ff9cedc20355 optional: false category: main source: null - build: h41732ed_0 -- name: font-ttf-inconsolata - version: '3.000' + build: h4653b0c_0 +- name: libzlib + version: 1.2.13 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda hash: - md5: 34893075a5c9e55cdafac56607368fc6 - sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c + md5: 1a47f5236db2e06a320ffa0392f81bd8 + sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a optional: false category: main source: null - build: h77eed37_0 -- name: font-ttf-source-code-pro - version: '2.038' + build: h53f4e23_5 +- name: freetype + version: 2.12.1 manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda hash: - md5: 4d59c254e01d9cde7957100457e2d5fb - sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 + md5: 33ea6326e26d1da25eb8dfa768195b82 + sha256: 9f20ac782386cca6295cf02a07bbc6aedc4739330dc9caba242630602a9ab7f4 optional: false category: main source: null - build: h77eed37_0 -- name: certifi - version: 2023.5.7 + build: hd633e50_1 +- name: libglib + version: 2.76.3 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda + gettext: '>=0.21.1,<1.0a0' + libcxx: '>=15.0.7' + pcre2: '>=10.40,<10.41.0a0' + libffi: '>=3.4,<4.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.76.3-h24e9cb9_0.conda hash: - md5: 5d1b71c942b8421285934dad1d891ebc - sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 + md5: 30b160e9e8ca46b28491ca85eab61dce + sha256: 5b31f80d89224fbfbd0c46b313f6a8d3c43f20f2ae57613cd25d46524a3ca23d optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: idna - version: '3.4' + build: h24e9cb9_0 +- name: libiconv + version: '1.17' manager: conda - platform: linux-64 - dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2 hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + md5: 686f9c755574aa221f29fbcf36a67265 + sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: urllib3 - version: 2.0.3 + build: he4db4b2_0 +- name: gettext + version: 0.21.1 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - python: '>=3.7' - brotli: '>=1.0.9' - pysocks: '>=1.5.6,<2.0,!=1.5.7' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_0.conda + libiconv: '>=1.17,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2 hash: - md5: ae465d0fbf9f1979cb2d8d4043d885e2 - sha256: 91d999539132f4b04091642df62b51c63c8a1fd61ecdff1ed704fc11405f9a34 + md5: 63d2ff6fddfa74e5458488fd311bf635 + sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: charset-normalizer - version: 3.1.0 + build: h0186832_0 +- name: pcre2 + version: '10.40' manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda + libzlib: '>=1.2.12,<1.3.0a0' + bzip2: '>=1.0.8,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2 hash: - md5: 7fcff9f6f123696e940bda77bd4d6551 - sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 + md5: 721b7288270bafc83586b0f01c2a67f2 + sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: xcb-util - version: 0.4.0 + build: hb34f9b4_0 +- name: cairo + version: 1.16.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - libxcb: '>=1.15,<1.16.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-0.4.0-hd590300_1.conda + icu: '>=72.1,<73.0a0' + libpng: '>=1.6.39,<1.7.0a0' + libglib: '>=2.76.2,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + zlib: '*' + fontconfig: '>=2.14.2,<3.0a0' + fonts-conda-ecosystem: '*' + pixman: '>=0.40.0,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.16.0-h1e71087_1016.conda hash: - md5: 9bfac7ccd94d54fd21a0501296d60424 - sha256: 0c91d87f0efdaadd4e56a5f024f8aab20ec30f90aa2ce9e4ebea05fbc20f71ad + md5: be77f5630cabe6a116a033f6fd241aa2 + sha256: 318cad8770aa5aa14a5808e1d6b39458e11d2c2411254e795269986467f864ea optional: false category: main source: null - build: hd590300_1 -- name: xorg-libx11 - version: 1.8.5 + build: h1e71087_1016 +- name: fonts-conda-ecosystem + version: '1' manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - xorg-xextproto: '>=7.3.0,<8.0a0' - xorg-kbproto: '*' - xorg-xproto: '*' - libxcb: '>=1.15,<1.16.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libx11-1.8.5-h8ee46fc_0.conda + fonts-conda-forge: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 hash: - md5: 742d9cd4a7da3ac6345f986e5da3b18d - sha256: e154c384ec43a4b456f27a27e3a5657103c44b16f19c07239e0accd07600c500 + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 optional: false category: main source: null - build: h8ee46fc_0 -- name: xorg-libxi - version: 1.7.10 + build: '0' +- name: zlib + version: 1.2.13 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - xorg-libx11: '>=1.7.0,<2.0a0' - libgcc-ng: '>=9.3.0' - xorg-libxfixes: 5.0.* - xorg-libxext: 1.3.* - xorg-inputproto: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxi-1.7.10-h7f98852_0.tar.bz2 + libzlib: ==1.2.13 h53f4e23_5 + url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda hash: - md5: e77615e5141cad5a2acaa043d1cf0ca5 - sha256: 745c1284a96b4282fe6fe122b2643e1e8c26a7ff40b733a8f4b61357238c4e68 + md5: a08383f223b10b71492d27566fafbf6c + sha256: de0ee1e24aa6867058d3b852a15c8d7f49f262f5828772700c647186d4a96bbe optional: false category: main source: null - build: h7f98852_0 -- name: xorg-libxfixes - version: 5.0.3 + build: h53f4e23_5 +- name: fontconfig + version: 2.14.2 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - xorg-fixesproto: '*' - libgcc-ng: '>=9.3.0' - xorg-libx11: '>=1.7.0,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxfixes-5.0.3-h7f98852_1004.tar.bz2 + freetype: '>=2.12.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + expat: '>=2.5.0,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda hash: - md5: e9a21aa4d5e3e5f1aed71e8cefd46b6a - sha256: 1e426a1abb774ef1dcf741945ed5c42ad12ea2dc7aeed7682d293879c3e1e4c3 + md5: f77d47ddb6d3cc5b39b9bdf65635afbb + sha256: 7094917fc6758186e17c61d8ee8fd2bbbe9f303b4addac61d918fa415c497e2b optional: false category: main source: null - build: h7f98852_1004 -- name: xorg-libxrender - version: 0.9.10 + build: h82840c6_0 +- name: pixman + version: 0.40.0 manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.3.0' - xorg-libx11: '>=1.7.0,<2.0a0' - xorg-renderproto: '*' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxrender-0.9.10-h7f98852_1003.tar.bz2 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.40.0-h27ca646_0.tar.bz2 hash: - md5: f59c1242cc1dd93e72c2ee2b360979eb - sha256: 7d907ed9e2ec5af5d7498fb3ab744accc298914ae31497ab6dcc6ef8bd134d00 + md5: 0cedfe37c9aee28f5e926a870965466a + sha256: a3bde72b3f9344ede1a189612d997f775b503a8eec61fb9720d18551f3c71080 optional: false category: main source: null - build: h7f98852_1003 -- name: xorg-libice - version: 1.1.1 + build: h27ca646_0 +- name: fonts-conda-forge + version: '1' manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hd590300_0.conda + font-ttf-ubuntu: '*' + font-ttf-inconsolata: '*' + font-ttf-dejavu-sans-mono: '*' + font-ttf-source-code-pro: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 hash: - md5: b462a33c0be1421532f28bfe8f4a7514 - sha256: 5aa9b3682285bb2bf1a8adc064cb63aff76ef9178769740d855abb42b0d24236 + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 optional: false category: main source: null - build: hd590300_0 -- name: xorg-libsm - version: 1.2.4 + build: '0' +- name: font-ttf-dejavu-sans-mono + version: '2.37' manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - xorg-libice: '>=1.1.1,<2.0a0' - libuuid: '>=2.38.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libsm-1.2.4-h7391055_0.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 hash: - md5: 93ee23f12bc2e684548181256edd2cf6 - sha256: 089ad5f0453c604e18985480218a84b27009e9e6de9a0fa5f4a20b8778ede1f1 + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b optional: false category: main source: null - build: h7391055_0 -- name: xorg-libxext - version: 1.3.4 + build: hab24e00_0 +- name: font-ttf-ubuntu + version: '0.83' manager: conda - platform: linux-64 - dependencies: - xorg-xextproto: '*' - libgcc-ng: '>=12' - xorg-libx11: '>=1.7.2,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxext-1.3.4-h0b41bf4_2.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 hash: - md5: 82b6df12252e6f32402b96dacc656fec - sha256: 73e5cfbdff41ef8a844441f884412aa5a585a0f0632ec901da035a03e1fe1249 + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e optional: false category: main source: null - build: h0b41bf4_2 -- name: dbus - version: 1.13.6 + build: hab24e00_0 +- name: ncurses + version: '6.4' manager: conda - platform: linux-64 - dependencies: - libglib: '>=2.70.2,<3.0a0' - expat: '>=2.4.2,<3.0a0' - libgcc-ng: '>=9.4.0' - url: https://conda.anaconda.org/conda-forge/linux-64/dbus-1.13.6-h5008d03_3.tar.bz2 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda hash: - md5: ecfff944ba3960ecb334b9a2663d708d - sha256: 8f5f995699a2d9dbdd62c61385bfeeb57c82a681a7c8c5313c395aa0ccab68a5 + md5: 318337fb9d0c53ba635efb7888242373 + sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780 optional: false category: main source: null - build: h5008d03_3 -- name: gst-plugins-base - version: 1.22.3 + build: h7ea286d_0 +- name: python_abi + version: '3.10' manager: conda - platform: linux-64 - dependencies: - libglib: '>=2.76.2,<3.0a0' - __glibc: '>=2.17,<3.0.a0' - alsa-lib: '>=1.2.8,<1.2.9.0a0' - libopus: '>=1.3.1,<2.0a0' - libpng: '>=1.6.39,<1.7.0a0' - libstdcxx-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - gettext: '>=0.21.1,<1.0a0' - libxcb: '>=1.15,<1.16.0a0' - gstreamer: ==1.22.3 h977cf35_1 - libgcc-ng: '>=12' - libvorbis: '>=1.3.7,<1.4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/gst-plugins-base-1.22.3-h938bd60_1.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-3_cp310.conda hash: - md5: 1f317eb7f00db75f4112a07476345376 - sha256: 1abfeadd880adbbebe37c097a13914f7ad383d19ff0249c35e06ddbba268ac5d + md5: 3f2b2974db21a33a2f45b0c9abbb7516 + sha256: 3f23b0e1656682b0ad1ded4810ba269b610299091c36cf5d516e2dc1162695de optional: false category: main source: null - build: h938bd60_1 -- name: gstreamer - version: 1.22.3 + build: 3_cp310 +- name: numpy + version: 1.25.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - gettext: '>=0.21.1,<1.0a0' - libgcc-ng: '>=12' - glib: '>=2.76.2,<3.0a0' - __glibc: '>=2.17,<3.0.a0' - libglib: '>=2.76.2,<3.0a0' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/gstreamer-1.22.3-h977cf35_1.conda + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=15.0.7' + liblapack: '>=3.9.0,<4.0a0' + python: '>=3.10,<3.11.0a0 *_cpython' + python_abi: 3.10.* *_cp310 + libblas: '>=3.9.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.25.0-py310haa1e00c_0.conda hash: - md5: 410ed3b168e5a139d12ebaf4143072cd - sha256: c04dcf43d09a2d0b879ad21515309fb89a496e12f7efceb8aa0c93c2c8746378 + md5: a0335061ed42c8906b86c3a308ac2e3e + sha256: c4a61497f741ddcbdab8781c24995445c355792c63f18b19b6d2f24c5c7ea649 optional: false category: main source: null - build: h977cf35_1 -- name: glib - version: 2.76.3 + build: py310haa1e00c_0 +- name: ffmpeg + version: 5.1.2 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - gettext: '>=0.21.1,<1.0a0' + libxml2: '>=2.11.4,<2.12.0a0' + openh264: '>=2.3.1,<2.3.2.0a0' + dav1d: '>=1.2.1,<1.2.2.0a0' + svt-av1: '>=1.4.1,<1.4.2.0a0' + x265: '>=3.5,<3.6.0a0' libzlib: '>=1.2.13,<1.3.0a0' - python: '*' - libglib: ==2.76.3 hebfc3b9_0 - libstdcxx-ng: '>=12' - glib-tools: ==2.76.3 hfc55251_0 - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/glib-2.76.3-hfc55251_0.conda + x264: '>=1!164.3095,<1!165' + aom: '>=3.5.0,<3.6.0a0' + gnutls: '>=3.7.8,<3.8.0a0' + libopus: '>=1.3.1,<2.0a0' + lame: '>=3.100,<3.101.0a0' + gmp: '>=6.2.1,<7.0a0' + libvpx: '>=1.13.0,<1.14.0a0' + freetype: '>=2.12.1,<3.0a0' + libass: '>=0.17.1,<0.17.2.0a0' + libiconv: '>=1.17,<2.0a0' + fontconfig: '>=2.14.2,<3.0a0' + bzip2: '>=1.0.8,<2.0a0' + libcxx: '>=15.0.7' + fonts-conda-ecosystem: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/ffmpeg-5.1.2-gpl_he347a24_111.conda hash: - md5: 950e02f5665f5f4ff0437a6acba58798 - sha256: c783d185d4f1296b9e9810f400b208d5e3a073198d753b3203ae83521941325d + md5: 5e0adc0b2361129eb0ccf94c9370a10e + sha256: 238063d6455b5109394712da6f195a0c08ec1e8d14cf2ac6fd9f1193e5be2af7 optional: false category: main source: null - build: hfc55251_0 -- name: glib-tools - version: 2.76.3 + build: gpl_he347a24_111 +- name: gmp + version: 6.2.1 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - libglib: ==2.76.3 hebfc3b9_0 - url: https://conda.anaconda.org/conda-forge/linux-64/glib-tools-2.76.3-hfc55251_0.conda + libcxx: '>=11.0.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2 hash: - md5: 8951eedf3cdf94dd733c1b5eee1f4880 - sha256: 22882b3516eee26fc0482ad85b0c697ab8be4f345e238b60891866758392ebb6 + md5: f8140773b6ca51bf32feec9b4290a8c5 + sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591 optional: false category: main source: null - build: hfc55251_0 -- name: libclang - version: 15.0.7 + build: h9f76cd9_0 +- name: gnutls + version: 3.7.8 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - libclang13: ==15.0.7 default_h9986a30_2 - libllvm15: '>=15.0.7,<15.1.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libclang-15.0.7-default_h7634d5b_2.conda + p11-kit: '>=0.24.1,<0.25.0a0' + gettext: '>=0.19.8.1,<1.0a0' + libidn2: '>=2,<3.0a0' + libcxx: '>=14.0.4' + nettle: '>=3.8.1,<3.9.0a0' + libtasn1: '>=4.19.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/gnutls-3.7.8-h9f1a10d_0.tar.bz2 hash: - md5: 1a4fe5162abe4a19b5a9dedf158a0ff9 - sha256: 9fd064ed59a07ed096fe3c641752be5279f6696bc8b25da0ca4e41fb92758a5b + md5: 2367cca5a0451a70d01cff2dd2ce7d3e + sha256: 7b9b69cb2b3134e064b37948a4cd54dee2184a851c0cda5fe52efcfd90ae032d optional: false category: main source: null - build: default_h7634d5b_2 -- name: libclang13 - version: 15.0.7 + build: h9f1a10d_0 +- name: aom + version: 3.5.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libllvm15: '>=15.0.7,<15.1.0a0' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libclang13-15.0.7-default_h9986a30_2.conda + libcxx: '>=14.0.4' + url: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.5.0-h7ea286d_0.tar.bz2 hash: - md5: 907344cee64101d44d806bbe0fccb01d - sha256: d9f9fb5622489d7e5c3237a4a6a46db20ead3c6bafb7277de1a25278db59b863 + md5: afb32d2a714ef2c3268508fdc85fc7c4 + sha256: 3a238c39da0bb29da396ae9f88655a1a6b05926055539ecc29cef9533671d71c optional: false category: main source: null - build: default_h9986a30_2 -- name: libllvm15 - version: 15.0.7 + build: h7ea286d_0 +- name: libvpx + version: 1.13.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libstdcxx-ng: '>=12' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - zstd: '>=1.5.2,<1.6.0a0' - libxml2: '>=2.11.3,<2.12.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libllvm15-15.0.7-h5cf9203_2.conda + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libvpx-1.13.0-h7ea286d_0.conda hash: - md5: 5c0a511fa7d223d8661fefcf77b2a877 - sha256: c9438d40c00a70a1bd959cd133ffb2416e0528edfaefd8a25a73024da9aba5c1 + md5: 8030618261e9c2b8670066ecb9701113 + sha256: 371a109830e0140e0f346ff540b12c8ecef7cc9a19767adc648b1eba3c4bd7e5 optional: false category: main source: null - build: h5cf9203_2 -- name: libxkbcommon - version: 1.5.0 + build: h7ea286d_0 +- name: libxml2 + version: 2.11.4 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libxml2: '>=2.11.4,<2.12.0a0' - libstdcxx-ng: '>=12' - xkeyboard-config: '*' - libxcb: '>=1.15,<1.16.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libxkbcommon-1.5.0-h5d7e998_3.conda + xz: '>=5.2.6,<6.0a0' + icu: '>=72.1,<73.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.11.4-he3bdae6_0.conda hash: - md5: c91ea308d7bf70b62ddda568478aa03b - sha256: 28d7971db21e4cb3a52a550950ae91ff38896ba05938b1e3492b666988e87bd3 + md5: 3741cfda603726c135ffe37bb83e1ca0 + sha256: 8f833df2746b013af73c41621c4b4bf4492de6f4c38352a9b6df21aa0db56ed6 optional: false category: main source: null - build: h5d7e998_3 -- name: libevent - version: 2.1.12 + build: he3bdae6_0 +- name: svt-av1 + version: 1.4.1 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - openssl: '>=3.1.1,<4.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-1.4.1-h7ea286d_0.conda hash: - md5: a1cfcc585f0c42bf8d5546bb1dfb668d - sha256: 2e14399d81fb348e9d231a82ca4d816bf855206923759b69ad006ba482764131 + md5: c249fb2d81c39843166f20b6a69a99c3 + sha256: b868a00e01cf9a5f5f411fc3e82500a22a910e3c916d06d9c443b2cc96aa93c4 optional: false category: main source: null - build: hf998b51_1 -- name: libpq - version: '15.3' + build: h7ea286d_0 +- name: dav1d + version: 1.2.1 manager: conda - platform: linux-64 - dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - openssl: '>=3.1.0,<4.0a0' - krb5: '>=1.20.1,<1.21.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libpq-15.3-hbcd7760_1.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda hash: - md5: 8afb2a97d256ffde95b91a6283bc598c - sha256: 96031c853d1a8b32c50c04b791aa199508ab1f0fa879ab7fcce175ee24620f78 + md5: 5a74cdee497e6b65173e10d94582fae6 + sha256: 93e077b880a85baec8227e8c72199220c7f87849ad32d02c14fb3807368260b8 optional: false category: main source: null - build: hbcd7760_1 -- name: mysql-libs - version: 8.0.32 + build: hb547adb_0 +- name: libass + version: 0.17.1 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - mysql-common: ==8.0.32 hf1915f5_2 - libstdcxx-ng: '>=12' + libexpat: '>=2.5.0,<3.0a0' + fontconfig: '>=2.14.2,<3.0a0' libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.0,<4.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/mysql-libs-8.0.32-hca2cd23_2.conda + fonts-conda-ecosystem: '*' + freetype: '>=2.12.1,<3.0a0' + fribidi: '>=1.0.10,<2.0a0' + harfbuzz: '>=7.2.0,<8.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libass-0.17.1-h4da34ad_0.conda hash: - md5: 20b4708cd04bdc8138d03314ddd97885 - sha256: 4b1178a7b21b634d417684a3dc96816ae5fe277ade5008c1c634a41d0dd614f6 + md5: 02b4eb2856769fbde130e14d569b18b0 + sha256: b163e49c115ee3ec76083bfbde7162a0e0531fbb64b321d559b4d29d19338c75 optional: false category: main source: null - build: hca2cd23_2 -- name: mysql-common - version: 8.0.32 + build: h4da34ad_0 +- name: nettle + version: 3.8.1 manager: conda - platform: linux-64 - dependencies: - libstdcxx-ng: '>=12' - openssl: '>=3.1.0,<4.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/mysql-common-8.0.32-hf1915f5_2.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/nettle-3.8.1-h63371fa_1.tar.bz2 hash: - md5: cf4a8f520fdad3a63bb2bce74576cd2d - sha256: a7cae69838df2f7b2f094cfa8e21f73102cbcedd17e08d07197af5529c11ab02 + md5: 0da3266889a3febbb9840a7a89d29da9 + sha256: 712b4e836060ab26772c343a05d243e7486bb44a39bb5b35f3371e72d7b38a24 optional: false category: main source: null - build: hf1915f5_2 -- name: xcb-util-keysyms - version: 0.4.0 + build: h63371fa_1 +- name: libtasn1 + version: 4.19.0 manager: conda - platform: linux-64 - dependencies: - libxcb: '>=1.15,<1.16.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-keysyms-0.4.0-h8ee46fc_1.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libtasn1-4.19.0-h1a8c8d9_0.tar.bz2 hash: - md5: 632413adcd8bc16b515cab87a2932913 - sha256: 8451d92f25d6054a941b962179180728c48c62aab5bf20ac10fef713d5da6a9a + md5: c35bc17c31579789c76739486fc6d27a + sha256: 912e96644ea22b49921c71c9c94bcdd2b6463e9313da895c2fcee298a8c0e44c optional: false category: main source: null - build: h8ee46fc_1 -- name: xcb-util-wm - version: 0.4.1 + build: h1a8c8d9_0 +- name: p11-kit + version: 0.24.1 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libxcb: '>=1.15,<1.16.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xcb-util-wm-0.4.1-h8ee46fc_1.conda + libffi: '>=3.4.2,<3.5.0a0' + libtasn1: '>=4.18.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/p11-kit-0.24.1-h29577a5_0.tar.bz2 hash: - md5: 90108a432fb5c6150ccfee3f03388656 - sha256: 08ba7147c7579249b6efd33397dc1a8c2404278053165aaecd39280fee705724 + md5: 8f111d56c8c7c1895bde91a942c43d93 + sha256: 3e124859307956f9f390f39c74b9700be4843eaaf56891c4b09da75b1bd5b57f optional: false category: main source: null - build: h8ee46fc_1 -- name: pulseaudio-client - version: '16.1' + build: h29577a5_0 +- name: libexpat + version: 2.5.0 manager: conda - platform: linux-64 - dependencies: - dbus: '>=1.13.6,<2.0a0' - libsystemd0: '>=253' - libsndfile: '>=1.2.0,<1.3.0a0' - libgcc-ng: '>=12' - libglib: '>=2.76.3,<3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-16.1-hb77b528_4.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda hash: - md5: 8f349ca16d30950aa00870484d9d30c4 - sha256: efd5ca5d5b0e55d25b8b2085449618f9777a07a89958c1d557d44f53eff061fe + md5: 5a097ad3d17e42c148c9566280481317 + sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 optional: false category: main source: null - build: hb77b528_4 -- name: libsndfile - version: 1.2.0 + build: hb7217d7_1 +- name: fribidi + version: 1.0.10 manager: conda - platform: linux-64 - dependencies: - libstdcxx-ng: '>=12' - libogg: '>=1.3.4,<1.4.0a0' - mpg123: '>=1.31.1,<1.32.0a0' - libflac: '>=1.4.2,<1.5.0a0' - libopus: '>=1.3.1,<2.0a0' - libgcc-ng: '>=12' - libvorbis: '>=1.3.7,<1.4.0a0' - lame: '>=3.100,<3.101.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.0-hb75c966_0.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2 hash: - md5: c648d19cd9c8625898d5d370414de7c7 - sha256: 52ab2460d626d1cc95092daa4f7191f84d4950aeb9925484135f96af6b6391d8 + md5: c64443234ff91d70cb9c7dc926c58834 + sha256: 4b37ea851a2cf85edf0a63d2a63266847ec3dcbba4a31156d430cdd6aa811303 optional: false category: main source: null - build: hb75c966_0 -- name: libflac - version: 1.4.2 + build: h27ca646_0 +- name: libcblas + version: 3.9.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libogg: '>=1.3.4,<1.4.0a0' - libstdcxx-ng: '>=12' - gettext: '>=0.21.1,<1.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libflac-1.4.2-h27087fc_0.tar.bz2 + libblas: ==3.9.0 17_osxarm64_openblas + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-17_osxarm64_openblas.conda hash: - md5: 7daf72d8e2a8e848e11d63ed6d1026e0 - sha256: 095cfa4e2df8622b8f9eebec3c60710ea0f4732c64cd24769ccf9ed63fd45545 + md5: cf6f9ca46e3db6b2437024df14046b48 + sha256: d5828db3a507790582815aaf44d54ed6bb07dfce4fd25f92e34b2eb31378a372 optional: false category: main source: null - build: h27087fc_0 -- name: xkeyboard-config - version: '2.38' + build: 17_osxarm64_openblas +- name: libblas + version: 3.9.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xkeyboard-config-2.38-h0b41bf4_0.conda + libopenblas: '>=0.3.23,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-17_osxarm64_openblas.conda hash: - md5: 9ac34337e5101a87e5d91da05d84aa48 - sha256: 0518e65929deded6afc5f91f31febb15e8c93f7ee599a18b787f9fab3f79cfd6 + md5: 2597bd39632ec57ef3f5ac14865dca09 + sha256: 76c68d59491b449b7608fb5e4a86f3c292c01cf487ce47288a22fc7001a6b150 optional: false category: main source: null - build: h0b41bf4_0 -- name: expat - version: 2.5.0 + build: 17_osxarm64_openblas +- name: liblapacke + version: 3.9.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libexpat: ==2.5.0 hcb278e6_1 - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/expat-2.5.0-hcb278e6_1.conda + libcblas: ==3.9.0 17_osxarm64_openblas + libblas: ==3.9.0 17_osxarm64_openblas + liblapack: ==3.9.0 17_osxarm64_openblas + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapacke-3.9.0-17_osxarm64_openblas.conda hash: - md5: 8b9b5aca60558d02ddaa09d599e55920 - sha256: 36dfeb4375059b3bba75ce9b38c29c69fd257342a79e6cf20e9f25c1523f785f + md5: c134445c3c15c057b58dc74cd295f156 + sha256: 3a0283b21be08080632f097b9f9d6faea2bc097d5ce2ce19dd5769b194076f81 optional: false category: main source: null - build: hcb278e6_1 -- name: xorg-xextproto - version: 7.3.0 + build: 17_osxarm64_openblas +- name: liblapack + version: 3.9.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xextproto-7.3.0-h0b41bf4_1003.conda + libblas: ==3.9.0 17_osxarm64_openblas + url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-17_osxarm64_openblas.conda hash: - md5: bce9f945da8ad2ae9b1d7165a64d0f87 - sha256: b8dda3b560e8a7830fe23be1c58cc41f407b2e20ae2f3b6901eb5842ba62b743 + md5: d93cc56c1467a5bcf6a4c9c0be469114 + sha256: 7e32d178639c5bcaac4b654438aa364eec8a42f108bc592dda8e52a432b0cdb4 optional: false category: main source: null - build: h0b41bf4_1003 -- name: libgfortran-ng - version: 13.1.0 + build: 17_osxarm64_openblas +- name: libopenblas + version: 0.3.23 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgfortran5: ==13.1.0 h15d22d2_0 - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-13.1.0-h69a702a_0.conda + libgfortran: 5.* + libgfortran5: '>=11.3.0' + llvm-openmp: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.23-openmp_hc731615_0.conda hash: - md5: 506dc07710dd5b0ba63cbf134897fc10 - sha256: 429e1d8a3e70b632df5b876e3fc322a56f769756693daa07114c46fa5098684e + md5: a40b73e171a91527c79fb1c8b10e3312 + sha256: 7f88475228d306962493a3f1c52637187695f7c9716a68a75e24a8aa910be69a optional: false category: main source: null - build: h69a702a_0 -- name: libgfortran5 - version: 13.1.0 + build: openmp_hc731615_0 +- name: libtiff + version: 4.5.1 manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.1.0-h15d22d2_0.conda + platform: osx-arm64 + dependencies: + libdeflate: '>=1.18,<1.19.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.3.0,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + xz: '>=5.2.6,<6.0a0' + libcxx: '>=15.0.7' + lerc: '>=4.0.0,<5.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.5.1-h23a1a89_0.conda hash: - md5: afb656a334c409dd9805508af1c89c7a - sha256: a06235f4c4b85b463d9b8a73c9e10c1b5b4105f8a0ea8ac1f2f5f64edac3dfe7 + md5: 3bea2e090bd67b6eb1f34d645c2028a1 + sha256: ebb67ac0970b249786cb37a94be41744032fbb68b5536f661a70581a649d381e optional: false category: main source: null - build: h15d22d2_0 -- name: libidn2 - version: 2.3.4 + build: h23a1a89_0 +- name: lerc + version: 4.0.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libunistring: '>=0,<1.0a0' - gettext: '>=0.21.1,<1.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libidn2-2.3.4-h166bdaf_0.tar.bz2 + libcxx: '>=13.0.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 hash: - md5: 7440fbafd870b8bab68f83a064875d34 - sha256: 888848ae85be9df86f56407639c63bdce8e7651f0b2517be9bc0ac6e38b2d21d + md5: de462d5aacda3b30721b512c5da4e742 + sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 optional: false category: main source: null - build: h166bdaf_0 -- name: hdf5 - version: 1.14.0 + build: h9a09cb3_0 +- name: libdeflate + version: '1.18' manager: conda - platform: linux-64 - dependencies: - openssl: '>=3.0.8,<4.0a0' - libgfortran-ng: '*' - libaec: '>=1.0.6,<2.0a0' - libcurl: '>=7.88.1,<9.0a0' - libstdcxx-ng: '>=12' - libgfortran5: '>=11.3.0' - libzlib: '>=1.2.13,<1.3.0a0' - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/hdf5-1.14.0-nompi_hb72d44e_103.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.18-h1a8c8d9_0.conda hash: - md5: 975973a4350ab45ff1981fe535a12af5 - sha256: 989019cdf2a1319afb299f47dde9a52dedc16906ec53e2d32e0627caf557d034 + md5: 73ebca3d8666fcfcf28abd74b39b99eb + sha256: a7ef4fd6ca62619397af4f434e69b96dfbc2c4e13080475719a8371bfd73834a optional: false category: main source: null - build: nompi_hb72d44e_103 -- name: libcurl - version: 8.1.2 + build: h1a8c8d9_0 +- name: tzdata + version: 2023c manager: conda - platform: linux-64 - dependencies: - krb5: '>=1.20.1,<1.21.0a0' - libssh2: '>=1.10.0,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.0,<4.0a0' - zstd: '>=1.5.2,<1.6.0a0' - libgcc-ng: '>=12' - libnghttp2: '>=1.52.0,<2.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.1.2-h409715c_0.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: - md5: 50c873c9660ed116707ae15b663928d8 - sha256: d572c31ff48d2db6ca5bab476bf325811cfc82577480b3791487c3fe7bff2ffa + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 optional: false category: main source: null - build: h409715c_0 -- name: libnghttp2 - version: 1.52.0 + build: h71feb2d_0 +- name: libffi + version: 3.4.2 manager: conda - platform: linux-64 - dependencies: - openssl: '>=3.0.8,<4.0a0' - libstdcxx-ng: '>=12' - libgcc-ng: '>=12' - c-ares: '>=1.18.1,<2.0a0' - libev: '>=4.33,<4.34.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 hash: - md5: 613955a50485812985c059e7b269f42e - sha256: ecd6b08c2b5abe7d1586428c4dd257dcfa00ee53700d79cdc8bca098fdfbd79a + md5: 086914b672be056eb70fd4285b6783b6 + sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca optional: false category: main source: null - build: h61bc06f_0 -- name: libaec - version: 1.0.6 + build: h3422bc3_5 +- name: openssl + version: 3.1.1 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libaec-1.0.6-hcb278e6_1.conda + ca-certificates: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.1-h53f4e23_1.conda hash: - md5: 0f683578378cddb223e7fd24f785ab2a - sha256: 4df6a29b71264fb25462065e8cddcf5bca60776b1801974af8cbd26b7425fcda + md5: 7451b96ed28b5fd02f0df32689327755 + sha256: 898aac8f8753385e9cd378d539364647d1deb9396032b7c1fd8f0f08107e020b optional: false category: main source: null - build: hcb278e6_1 -- name: ca-certificates - version: 2023.5.7 + build: h53f4e23_1 +- name: libsqlite + version: 3.42.0 manager: conda - platform: linux-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.5.7-hbcca054_0.conda + platform: osx-arm64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.42.0-hb31c410_0.conda hash: - md5: f5c65075fc34438d5b456c7f3f5ab695 - sha256: 0cf1bb3d0bfc5519b60af2c360fa4888fb838e1476b1e0f65b9dbc48b45c7345 + md5: 6ae1bbf3ae393a45a75685072fffbe8d + sha256: 120913cf0fb694546fbaf95dff211ac5c1e3e91bc69c73350891a05dc106355f optional: false category: main source: null - build: hbcca054_0 -- name: pysocks - version: 1.7.1 + build: hb31c410_0 +- name: font-ttf-inconsolata + version: '3.000' manager: conda - platform: linux-64 - dependencies: - __unix: '*' - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 hash: - md5: 2a7de29fb590ca14b5243c4c812c8025 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + md5: 34893075a5c9e55cdafac56607368fc6 + sha256: c52a29fdac682c20d252facc50f01e7c2e7ceac52aa9817aaf0bb83f7559ec5c optional: false category: main source: null - build: pyha2e5f31_6 -- name: brotli - version: 1.0.9 + build: h77eed37_0 +- name: font-ttf-source-code-pro + version: '2.038' manager: conda - platform: linux-64 - dependencies: - brotli-bin: ==1.0.9 h166bdaf_8 - libbrotlidec: ==1.0.9 h166bdaf_8 - libbrotlienc: ==1.0.9 h166bdaf_8 - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-1.0.9-h166bdaf_8.tar.bz2 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 hash: - md5: 2ff08978892a3e8b954397c461f18418 - sha256: 74c0fa22ea7c62d2c8f7a7aea03a3bd4919f7f3940ef5b027ce0dfb5feb38c06 + md5: 4d59c254e01d9cde7957100457e2d5fb + sha256: 00925c8c055a2275614b4d983e1df637245e19058d79fc7dd1a93b8d9fb4b139 optional: false category: main source: null - build: h166bdaf_8 -- name: brotli-bin - version: 1.0.9 + build: h77eed37_0 +- name: certifi + version: 2023.5.7 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libbrotlidec: ==1.0.9 h166bdaf_8 - libgcc-ng: '>=12' - libbrotlienc: ==1.0.9 h166bdaf_8 - url: https://conda.anaconda.org/conda-forge/linux-64/brotli-bin-1.0.9-h166bdaf_8.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda hash: - md5: e5613f2bc717e9945840ff474419b8e4 - sha256: ab1994e03bdd88e4b27f9f802ac18e45ed29b92cce25e1fd86da43b89734950f + md5: 5d1b71c942b8421285934dad1d891ebc + sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 optional: false category: main source: null - build: h166bdaf_8 -- name: libbrotlidec - version: 1.0.9 + build: pyhd8ed1ab_0 +- name: idna + version: '3.4' manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libbrotlicommon: ==1.0.9 h166bdaf_8 - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.0.9-h166bdaf_8.tar.bz2 + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 hash: - md5: 4ae4d7795d33e02bd20f6b23d91caf82 - sha256: d88ba07c3be27c89cb4975cc7edf63ee7b1c62d01f70d5c3f7efeb987c82b052 + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 optional: false category: main source: null - build: h166bdaf_8 -- name: libbrotlienc - version: 1.0.9 + build: pyhd8ed1ab_0 +- name: urllib3 + version: 2.0.3 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libbrotlicommon: ==1.0.9 h166bdaf_8 - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.0.9-h166bdaf_8.tar.bz2 + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: '>=3.7' + brotli: '>=1.0.9' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_0.conda hash: - md5: 04bac51ba35ea023dc48af73c1c88c25 - sha256: a0468858b2f647f51509a32040e93512818a8f9980f20b3554cccac747bcc4be + md5: ae465d0fbf9f1979cb2d8d4043d885e2 + sha256: 91d999539132f4b04091642df62b51c63c8a1fd61ecdff1ed704fc11405f9a34 optional: false category: main source: null - build: h166bdaf_8 -- name: libbrotlicommon - version: 1.0.9 + build: pyhd8ed1ab_0 +- name: charset-normalizer + version: 3.1.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.0.9-h166bdaf_8.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda hash: - md5: 9194c9bf9428035a05352d031462eae4 - sha256: ddc961a36d498aaafd5b71078836ad5dd247cc6ba7924157f3801a2f09b77b14 + md5: 7fcff9f6f123696e940bda77bd4d6551 + sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 optional: false category: main source: null - build: h166bdaf_8 -- name: libogg - version: 1.3.4 + build: pyhd8ed1ab_0 +- name: libgfortran5 + version: 12.2.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.4-h7f98852_1.tar.bz2 + llvm-openmp: '>=8.0.0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-12.2.0-h0eea778_31.conda hash: - md5: 6e8cc2173440d77708196c5b93771680 - sha256: b88afeb30620b11bed54dac4295aa57252321446ba4e6babd7dce4b9ffde9b25 + md5: 244a7665228221cc951d5126b8bc1465 + sha256: 375b6ebafffcc1b0e377559b5ba7cb723634a88b77513ad158982d98ff98c32b optional: false category: main source: null - build: h7f98852_1 -- name: mpg123 - version: 1.31.3 + build: h0eea778_31 +- name: llvm-openmp + version: 16.0.6 manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.31.3-hcb278e6_0.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.6-h1c12783_0.conda hash: - md5: 141a126675b6d1a4eabb111a4a353898 - sha256: 7e4a64329595c0cbfc770585827b72a63d224606324dff5b399467486dc68344 + md5: 52e5730888439f7f55fd4f83905581b4 + sha256: f5cbb852853a7a931716d55e39515876f61fefd0cb4e055f286adc2dc3bc9d2a optional: false category: main source: null - build: hcb278e6_0 -- name: libsystemd0 - version: '253' + build: h1c12783_0 +- name: expat + version: 2.5.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - xz: '>=5.2.6,<6.0a0' - libcap: '>=2.67,<2.68.0a0' - libgcc-ng: '>=12' - lz4-c: '>=1.9.3,<1.10.0a0' - __glibc: '>=2.17,<3.0.a0' - libgcrypt: '>=1.10.1,<2.0a0' - zstd: '>=1.5.2,<1.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-253-h8c4010b_1.conda - hash: - md5: 9176b1e2cb8beca37a7510b0e801e38f - sha256: 13f5db46b7ded028f5b53fd5373e27a47789b9a655b52a92c4b324099602f29a + libexpat: ==2.5.0 hb7217d7_1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_1.conda + hash: + md5: 624fa0dd6fdeaa650b71a62296fdfedf + sha256: 9f06afbe4604decf6a2e8e7e87f5ca218a3e9049d57d5b3fcd538ca6240d21a0 optional: false category: main source: null - build: h8c4010b_1 -- name: libcap - version: '2.67' + build: hb7217d7_1 +- name: libidn2 + version: 2.3.4 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - attr: '>=2.5.1,<2.6.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.67-he9d0100_0.conda + gettext: '>=0.21.1,<1.0a0' + libunistring: '>=0,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libidn2-2.3.4-h1a8c8d9_0.tar.bz2 hash: - md5: d05556c80caffff164d17bdea0105a1a - sha256: 4dcf2290b9b90ad2654fbfff52e9c1d49885ce71f0bb853520e2b9d54809605b + md5: 7fdc11b6fd3ea4ce92886df855fc7085 + sha256: 3f2990c33c57559fbf03c5e5b3f3c8e95886548ab4c7fc10314e4514d6632703 optional: false category: main source: null - build: he9d0100_0 -- name: libgcrypt - version: 1.10.1 + build: h1a8c8d9_0 +- name: libunistring + version: 0.9.10 manager: conda - platform: linux-64 - dependencies: - libgpg-error: '>=1.44,<2.0a0' - libgcc-ng: '>=10.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libgcrypt-1.10.1-h166bdaf_0.tar.bz2 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libunistring-0.9.10-h3422bc3_0.tar.bz2 hash: - md5: f967fc95089cd247ceed56eda31de3a9 - sha256: 8fd7e6db1021cd9298d9896233454de204116840eb66a06fcb712e1015ff132a + md5: d88e77a4861e20bd96bde6628ee7a5ae + sha256: a1afe12ab199f82f339eae83405d293d197f2485d45346a709703bc7e8299949 optional: false category: main source: null - build: h166bdaf_0 -- name: c-ares - version: 1.19.1 + build: h3422bc3_0 +- name: zstd + version: 1.5.2 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.19.1-hd590300_0.conda + libzlib: '>=1.2.13,<1.3.0a0' + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-hf913c23_6.conda hash: - md5: e8c18d865be43e2fb3f7a145b6adf1f5 - sha256: c4276b1a0e8f18ab08018b1881666656742b325e0fcf2354f714e924d28683b6 + md5: 8f346953ef63bf5fb482488a659adcf3 + sha256: 018989ba028e76abc332c246002e8f5975ff123c68f6116a30da8009b14ea88d optional: false category: main source: null - build: hd590300_0 -- name: libev - version: '4.33' + build: hf913c23_6 +- name: lame + version: '3.100' manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 hash: - md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3 - sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9 + md5: bff0e851d66725f78dc2fd8b032ddb7e + sha256: f40ce7324b2cf5338b766d4cdb8e0453e4156a4f83c2f31bbfff750785de304c optional: false category: main source: null - build: h516909a_1 -- name: libssh2 - version: 1.11.0 + build: h1a8c8d9_1003 +- name: openh264 + version: 2.3.1 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - openssl: '>=3.1.1,<4.0a0' - libgcc-ng: '>=12' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/openh264-2.3.1-hb7217d7_2.conda hash: - md5: 1f5a58e686b13bcfde88b93f547d23fe - sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d + md5: 6ce0517e73640933cf5916deb21d4f23 + sha256: 36c6dc71bb10245ed93f3cb13280948cc8c6ca525f1639aac9d541726e4c80af optional: false category: main source: null - build: h0841786_0 -- name: libgpg-error - version: '1.46' + build: hb7217d7_2 +- name: x264 + version: 1!164.3095 manager: conda - platform: linux-64 - dependencies: - gettext: '>=0.21.1,<1.0a0' - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.46-h620e276_0.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2 hash: - md5: 27e745f6f2e4b757e95dd7225fbe6bdb - sha256: a2e3df80a5713b4143f7d276a9354d78f2b2927b22831dc24c3246a82674aaba + md5: b1f6dccde5d3a1f911960b6e567113ff + sha256: debdf60bbcfa6a60201b12a1d53f36736821db281a28223a09e0685edcce105a optional: false category: main source: null - build: h620e276_0 -- name: lz4-c - version: 1.9.4 + build: h57fd34a_2 +- name: x265 + version: '3.5' manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=12' - libstdcxx-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda + libcxx: '>=12.0.1' + url: https://conda.anaconda.org/conda-forge/osx-arm64/x265-3.5-hbc6ce65_3.tar.bz2 hash: - md5: 318b08df404f9c9be5712aaa5a6f0bb0 - sha256: 1b4c105a887f9b2041219d57036f72c4739ab9e9fe5a1486f094e58c76b31f5f + md5: b1f7f2780feffe310b068c021e8ff9b2 + sha256: 2fed6987dba7dee07bd9adc1a6f8e6c699efb851431bcb6ebad7de196e87841d optional: false category: main source: null - build: hcb278e6_0 -- name: attr - version: 2.5.1 + build: hbc6ce65_3 +- name: libopus + version: 1.3.1 manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=12' - url: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2 hash: - md5: d9c69a24ad678ffce24c6543a0176b00 - sha256: 82c13b1772c21fc4a17441734de471d3aabf82b61db9b11f4a1bd04a9c4ac324 + md5: 3d0dbee0ccd2f6d6781d270313627b62 + sha256: e9912101a58cbc609a1917c5289f3bd1f600c82ed3a1c90a6dd4ca02df77958a optional: false category: main source: null - build: h166bdaf_1 -- name: graphite2 - version: 1.3.13 + build: h27ca646_1 +- name: ca-certificates + version: 2023.5.7 manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=7.5.0' - libstdcxx-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/graphite2-1.3.13-h58526e2_1001.tar.bz2 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.5.7-hf0a4a13_0.conda hash: - md5: 8c54672728e8ec6aa6db90cf2806d220 - sha256: 65da967f3101b737b08222de6a6a14e20e480e7d523a5d1e19ace7b960b5d6b1 + md5: a8387be82224743cf849fb907790b91a + sha256: 27214b54d1cb9a92455689e20d0007a0ff9ace99b853867d53a05a04c24bdae5 optional: false category: main source: null - build: h58526e2_1001 -- name: libvorbis - version: 1.3.7 + build: hf0a4a13_0 +- name: hdf5 + version: 1.14.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libogg: '>=1.3.4,<1.4.0a0' - libstdcxx-ng: '>=9.3.0' - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2 + libgfortran: 5.* + libcxx: '>=14.0.6' + libaec: '>=1.0.6,<2.0a0' + libcurl: '>=7.88.1,<9.0a0' + libgfortran5: '>=12.2.0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.8,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.0-nompi_h6b85c65_103.conda hash: - md5: 309dec04b70a3cc0f1e84a4013683bc0 - sha256: 53080d72388a57b3c31ad5805c93a7328e46ff22fab7c44ad2a86d712740af33 + md5: faf772fbfc8c89d2874e32cbee498aa5 + sha256: 9e6721e487b2b5d700312897adaf19caa6a87da15f221bf06d8cfa05d29718f9 optional: false category: main source: null - build: h9c3ff4c_0 -- name: libunistring - version: 0.9.10 + build: nompi_h6b85c65_103 +- name: pysocks + version: 1.7.1 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libunistring-0.9.10-h7f98852_0.tar.bz2 + __unix: '*' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 hash: - md5: 7245a044b4a1980ed83196176b78b73a - sha256: e88c45505921db29c08df3439ddb7f771bbff35f95e7d3103bf365d5d6ce2a6d + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b optional: false category: main source: null - build: h7f98852_0 -- name: xorg-inputproto - version: 2.3.2 + build: pyha2e5f31_6 +- name: brotli + version: 1.0.9 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-inputproto-2.3.2-h7f98852_1002.tar.bz2 + libbrotlienc: ==1.0.9 h1a8c8d9_8 + brotli-bin: ==1.0.9 h1a8c8d9_8 + libbrotlidec: ==1.0.9 h1a8c8d9_8 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_8.tar.bz2 hash: - md5: bcd1b3396ec6960cbc1d2855a9e60b2b - sha256: 6c8c2803de0f643f8bad16ece3f9a7259e4a49247543239c182d66d5e3a129a7 + md5: e2a5e381ddd6529eb62e7710270b2ec5 + sha256: f97debd05c2caeeefba22e0b71173f1fff99c1e5e66e6e9caa91c1c66eb59741 optional: false category: main source: null - build: h7f98852_1002 -- name: xorg-fixesproto - version: '5.0' + build: h1a8c8d9_8 +- name: brotli-bin + version: 1.0.9 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - xorg-xextproto: '*' - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-fixesproto-5.0-h7f98852_1002.tar.bz2 + libbrotlienc: ==1.0.9 h1a8c8d9_8 + libbrotlidec: ==1.0.9 h1a8c8d9_8 + url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_8.tar.bz2 hash: - md5: 65ad6e1eb4aed2b0611855aff05e04f6 - sha256: 5d2af1b40f82128221bace9466565eca87c97726bb80bbfcd03871813f3e1876 + md5: f212620a4f3606ff8f800b8b1077415a + sha256: d171637710bffc322b35198c03bcfd3d04f454433e845138e5120729f8941996 optional: false category: main source: null - build: h7f98852_1002 -- name: libedit - version: 3.1.20191231 + build: h1a8c8d9_8 +- name: libbrotlidec + version: 1.0.9 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - ncurses: '>=6.2,<7.0.0a0' - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 + libbrotlicommon: ==1.0.9 h1a8c8d9_8 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_8.tar.bz2 hash: - md5: 4d331e44109e3f0e19b4cb8f9b82f3e1 - sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf + md5: 640ea7b788cdd0420409bd8479f023f9 + sha256: a0a52941eb59369a8b33b01b41bcf56efd313850c583f4814e2db59448439880 optional: false - category: main - source: null - build: he28a2e2_2 -- name: xorg-xf86vidmodeproto - version: 2.3.1 + category: main + source: null + build: h1a8c8d9_8 +- name: libbrotlienc + version: 1.0.9 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xf86vidmodeproto-2.3.1-h7f98852_1002.tar.bz2 + libbrotlicommon: ==1.0.9 h1a8c8d9_8 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_8.tar.bz2 hash: - md5: 3ceea9668625c18f19530de98b15d5b0 - sha256: 43398aeacad5b8753b7a1c12cb6bca36124e0c842330372635879c350c430791 + md5: 572907b78be867937c258421bc0807a8 + sha256: c5f65062cd41d5f5fd93eadd276885efbe7ce7c9346155852d4f5b619f8a166f optional: false category: main source: null - build: h7f98852_1002 -- name: xorg-libxdmcp - version: 1.1.3 + build: h1a8c8d9_8 +- name: libbrotlicommon + version: 1.0.9 manager: conda - platform: linux-64 - dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxdmcp-1.1.3-h7f98852_0.tar.bz2 + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_8.tar.bz2 hash: - md5: be93aabceefa2fac576e971aef407908 - sha256: 4df7c5ee11b8686d3453e7f3f4aa20ceef441262b49860733066c52cfd0e4a77 + md5: 84eb0c3c995a865079080d092e4a3c06 + sha256: 1bd70570aee08fe0274dd46879d0b4c36c662c18d3afc03c41c375c84658af88 optional: false category: main source: null - build: h7f98852_0 -- name: pthread-stubs - version: '0.4' + build: h1a8c8d9_8 +- name: libcurl + version: 8.1.2 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-h36c2ea0_1001.tar.bz2 + libssh2: '>=1.10.0,<2.0a0' + libnghttp2: '>=1.52.0,<2.0a0' + openssl: '>=3.1.0,<4.0a0' + krb5: '>=1.20.1,<1.21.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.1.2-h912dcd9_0.conda hash: - md5: 22dad4df6e8630e8dff2428f6f6a7036 - sha256: 67c84822f87b641d89df09758da498b2d4558d47b920fd1d3fe6d3a871e000ff + md5: af01aa21cd4bb0cf519cda6bcec83fc5 + sha256: 5d5bbc7a6eb363b2df85c5df32d34295346fc8b4d9e3754bbaf2af3e80422fab optional: false category: main source: null - build: h36c2ea0_1001 -- name: xorg-renderproto - version: 0.11.1 + build: h912dcd9_0 +- name: krb5 + version: 1.20.1 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-renderproto-0.11.1-h7f98852_1002.tar.bz2 + libedit: '>=3.1.20191231,<4.0a0' + libcxx: '>=14.0.6' + openssl: '>=3.0.7,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda hash: - md5: 06feff3d2634e3097ce2fe681474b534 - sha256: 38942930f233d1898594dd9edf4b0c0786f3dbc12065a0c308634c37fd936034 + md5: a85db53e45b1173f270fc998dd40ec03 + sha256: 80094682db47468befef8e14a8a2ccc82cf71d6cf23bfa5d25c4de1df56e3067 optional: false category: main source: null - build: h7f98852_1002 -- name: fribidi - version: 1.0.10 + build: h69eda48_0 +- name: libnghttp2 + version: 1.52.0 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=7.5.0' - url: https://conda.anaconda.org/conda-forge/linux-64/fribidi-1.0.10-h36c2ea0_0.tar.bz2 + libcxx: '>=14.0.6' + c-ares: '>=1.18.1,<2.0a0' + libev: '>=4.33,<4.34.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.8,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda hash: - md5: ac7bc6a654f8f41b352b38f4051135f8 - sha256: 5d7b6c0ee7743ba41399e9e05a58ccc1cfc903942e49ff6f677f6e423ea7a627 + md5: 1d319e95a0216f801293626a00337712 + sha256: 1a3944d6295dcbecdf6489ce8a05fe416ad401727c901ec390e9200a351bdb10 optional: false category: main source: null - build: h36c2ea0_0 -- name: xorg-kbproto - version: 1.0.7 + build: hae82a92_0 +- name: libedit + version: 3.1.20191231 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-kbproto-1.0.7-h7f98852_1002.tar.bz2 + ncurses: '>=6.2,<7.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 hash: - md5: 4b230e8381279d76131116660f5a241a - sha256: e90b0a6a5d41776f11add74aa030f789faf4efd3875c31964d6f9cfa63a10dd1 + md5: 30e4362988a2623e9eb34337b83e01f9 + sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca optional: false category: main source: null - build: h7f98852_1002 -- name: xorg-xproto - version: 7.0.31 + build: hc8eb9b7_2 +- name: libaec + version: 1.0.6 manager: conda - platform: linux-64 + platform: osx-arm64 dependencies: - libgcc-ng: '>=9.3.0' - url: https://conda.anaconda.org/conda-forge/linux-64/xorg-xproto-7.0.31-h7f98852_1007.tar.bz2 + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda hash: - md5: b4a4381d54784606820704f7b5f05a15 - sha256: f197bb742a17c78234c24605ad1fe2d88b1d25f332b75d73e5ba8cf8fbc2a10d + md5: 4f04770bf6f12d22fb6c1d91a04e0c8c + sha256: 9a2209a30923728fd9c430695a2fea9274ac6d357e6bdfa4c7b5aa52122d9e2c optional: false category: main source: null - build: h7f98852_1007 -- name: opencv - version: 4.7.0 + build: hb7217d7_1 +- name: c-ares + version: 1.19.1 manager: conda - platform: osx-64 - dependencies: - libopencv: ==4.7.0 py310h41d2c2e_4 - py-opencv: ==4.7.0 py310ha188af9_4 - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-64/opencv-4.7.0-py310h2ec42d9_4.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda hash: - md5: 42a21413857500f77d8594a241eda29b - sha256: 7775a260ed830c3d5c8989de5fbd09155dcffd34532699451948d8e3cda6e47c + md5: e7fc7430440d255e3a9c7e5a52f7b294 + sha256: fc9d0fcfb30c20c0032b294120b6ba9c01078ddb372c34dd491214c598aecc06 optional: false category: main source: null - build: py310h2ec42d9_4 -- name: libopencv - version: 4.7.0 + build: hb547adb_0 +- name: libev + version: '4.33' manager: conda - platform: osx-64 - dependencies: - libprotobuf: '>=3.21.12,<3.22.0a0' - jasper: '>=4.0.0,<5.0a0' - libcblas: '>=3.9.0,<4.0a0' - liblapack: '>=3.9.0,<4.0a0' - libtiff: '>=4.5.0,<4.6.0a0' - libglib: '>=2.76.2,<3.0a0' - harfbuzz: '>=7.3.0,<8.0a0' - libpng: '>=1.6.39,<1.7.0a0' - ffmpeg: '>=6.0.0,<7.0a0' - libcxx: '>=15.0.7' - libzlib: '>=1.2.13,<1.3.0a0' - numpy: '>=1.21.6,<2.0a0' - freetype: '>=2.12.1,<3.0a0' - hdf5: '>=1.14.0,<1.14.1.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - liblapacke: '>=3.9.0,<4.0a0' - libwebp-base: '>=1.3.0,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libopencv-4.7.0-py310h41d2c2e_4.conda + platform: osx-arm64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 hash: - md5: 13501a4aa7542f0d3e0eedeb84890daf - sha256: 0610823c65d78e5d23ed311bdbb6be8af6c530657fdbef161b9b8691b2335cd3 + md5: 566dbf70fe79eacdb3c3d3d195a27f55 + sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c optional: false category: main source: null - build: py310h41d2c2e_4 -- name: py-opencv - version: 4.7.0 + build: h642e427_1 +- name: libssh2 + version: 1.11.0 manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: - numpy: '>=1.21.6,<2.0a0' - libopencv: ==4.7.0 py310h41d2c2e_4 - python: '>=3.10,<3.11.0a0' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-64/py-opencv-4.7.0-py310ha188af9_4.conda + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda hash: - md5: aaafe0f0d7b638c160118fe8d3b4e883 - sha256: 4d8c14e85e5a1079a96817aba9545bd14c4d771eea6b92330ae88478c749befc + md5: 029f7dc931a3b626b94823bc77830b01 + sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 optional: false category: main source: null - build: py310ha188af9_4 -- name: libzlib - version: 1.2.13 + build: h7a5bd25_0 +- name: bzip2 + version: 1.0.8 manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-hfd90126_4.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 hash: - md5: 35eb3fce8d51ed3c1fd4122bad48250b - sha256: 0d954350222cc12666a1f4852dbc9bcf4904d8e467d29505f2b04ded6518f890 + md5: fc76ace7b94fb1f694988ab1b14dd248 + sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 optional: false category: main source: null - build: hfd90126_4 -- name: libpng - version: 1.6.39 + build: h3422bc3_4 +- name: libgfortran + version: 5.0.0 manager: conda - platform: osx-64 + platform: osx-arm64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda + libgfortran5: '*' + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-12_2_0_hd922786_31.conda hash: - md5: 35e4928794c5391aec14ffdf1deaaee5 - sha256: 5ad9f5e96e6770bfc8b0a826f48835e7f337c2d2e9512d76027a62f9c120b2a3 + md5: dfc3dff1ce831c8e821f19d5d218825a + sha256: 1abde945c2c7377aec9f2f648d9cc1fcb5f818a1e0caf53f8188b1182cbc1332 optional: false category: main source: null - build: ha978bb4_0 -- name: harfbuzz - version: 7.3.0 + build: 12_2_0_hd922786_31 +- name: python + version: 3.10.11 manager: conda - platform: osx-64 + platform: win-64 dependencies: - cairo: '>=1.16.0,<2.0a0' - libcxx: '>=15.0.7' - freetype: '>=2.12.1,<3.0a0' - graphite2: '*' - icu: '>=72.1,<73.0a0' - libglib: '>=2.76.2,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-7.3.0-h413ba03_0.conda + tzdata: '*' + openssl: '>=3.1.0,<4.0a0' + libffi: '>=3.4,<4.0a0' + libsqlite: '>=3.41.2,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.1,<15' + tk: '>=8.6.12,<8.7.0a0' + bzip2: '>=1.0.8,<2.0a0' + vc14_runtime: '>=14.16.27033' + xz: '>=5.2.6,<6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/python-3.10.11-h4de0772_0_cpython.conda hash: - md5: 52a090078d890befdd4865270d1164ec - sha256: 694dacf9977452654a920014406db5f4212191abce52191caa3c7cfcd376a5ce + md5: db564a923e0197854756c727ad3e4b8f + sha256: 1a437ff15647fe8566e6ae2118945080b8cbaebe95bc50d3fb65c1cbefffc22f optional: false category: main source: null - build: h413ba03_0 -- name: libjpeg-turbo - version: 2.1.5.1 + build: h4de0772_0_cpython +- name: tk + version: 8.6.12 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-2.1.5.1-hb7f2c08_0.conda + platform: win-64 + dependencies: + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2 hash: - md5: d7309a152b9b79799063b8bb47e34a3a - sha256: 38288e83201639983d3e158a1e8f638334298a0ca3a59dbb188651c874fd6077 + md5: c69a5047cc9291ae40afd4a1ad6f0c0f + sha256: 087795090a99a1d397ef1ed80b4a01fabfb0122efb141562c168e3c0a76edba6 optional: false category: main source: null - build: hb7f2c08_0 -- name: libwebp-base - version: 1.3.0 + build: h8ffe710_0 +- name: xz + version: 5.2.6 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.0-hb7f2c08_0.conda + platform: win-64 + dependencies: + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2 hash: - md5: 18981e4c840126d6118d8952485fea51 - sha256: 5ed0b7f127f578ddd28e3af86af278df8d5341416935a09ae772a57579cbb11b + md5: 515d77642eaa3639413c6b1bc3f94219 + sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0 optional: false category: main source: null - build: hb7f2c08_0 -- name: libprotobuf - version: 3.21.12 + build: h8d14728_0 +- name: opencv + version: 4.7.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcxx: '>=14.0.6' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-3.21.12-hbc0c0cd_0.conda + py-opencv: ==4.7.0 py310hbbfc1a7_4 + python_abi: 3.10.* *_cp310 + libopencv: ==4.7.0 py310h74ad70b_4 + url: https://conda.anaconda.org/conda-forge/win-64/opencv-4.7.0-py310h5588dad_4.conda hash: - md5: 7a9b17cfb3e57143e4e9118b5244b691 - sha256: d3fbdc0808c4f433903704f943e4b13c079909f994fa157ec75615658d3bab17 + md5: cc83e2be1f9ae7bad1fa52f7cafaca28 + sha256: 936b87de53ece135c8e2beb3e538bb5072fe60c9fdb238f2b0b86cfbe16dbc4e optional: false category: main source: null - build: hbc0c0cd_0 -- name: icu - version: '72.1' + build: py310h5588dad_4 +- name: libopencv + version: 4.7.0 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/icu-72.1-h7336db1_0.conda + platform: win-64 + dependencies: + libpng: '>=1.6.39,<1.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libprotobuf: '>=3.21.12,<3.22.0a0' + qt-main: '>=5.15.8,<5.16.0a0' + ucrt: '>=10.0.20348.0' + libcblas: '>=3.9.0,<4.0a0' + vc14_runtime: '>=14.29.30139' + jasper: '>=4.0.0,<5.0a0' + harfbuzz: '>=7.3.0,<8.0a0' + liblapacke: '>=3.9.0,<4.0a0' + freetype: '>=2.12.1,<3.0a0' + hdf5: '>=1.14.0,<1.14.1.0a0' + libwebp-base: '>=1.3.0,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + liblapack: '>=3.9.0,<4.0a0' + libtiff: '>=4.5.0,<4.6.0a0' + ffmpeg: '>=5.1.2,<6.0a0' + numpy: '>=1.21.6,<2.0a0' + vc: '>=14.2,<15' + url: https://conda.anaconda.org/conda-forge/win-64/libopencv-4.7.0-py310h74ad70b_4.conda hash: - md5: c9689510a50a4bb2ae978421671a125e - sha256: 3813b724fa741c63bf15698a716a9b9f4243a469cb658cdd47a1a9a602aa579e + md5: 18536aa1f447a3a2b0b47d4ca4678168 + sha256: 73a9e6f45d57c00b62937c9cd99cc30bc97d5f17090d15a7bf759a4ffaa63a62 optional: false category: main source: null - build: h7336db1_0 -- name: jasper - version: 4.0.0 + build: py310h74ad70b_4 +- name: py-opencv + version: 4.7.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.0.0-h794afb9_1.conda + numpy: '>=1.21.6,<2.0a0' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libopencv: ==4.7.0 py310h74ad70b_4 + url: https://conda.anaconda.org/conda-forge/win-64/py-opencv-4.7.0-py310hbbfc1a7_4.conda hash: - md5: 8bc3ad165a3b99166b995d5a1529b1e5 - sha256: 1725f9a02ec13010b5cf9e708f9d8b6d1b31b235c80a3130436e807e99da13b4 + md5: 35cdfcece2dbf052d54db64a3cd6a607 + sha256: d9a85d1da41861119080b61db8ea74e330e575f88ff0e4125eda6b033f04bd8c optional: false category: main source: null - build: h794afb9_1 -- name: python - version: 3.10.11 + build: py310hbbfc1a7_4 +- name: libpng + version: 1.6.39 manager: conda - platform: osx-64 + platform: win-64 dependencies: - tk: '>=8.6.12,<8.7.0a0' - openssl: '>=3.1.0,<4.0a0' - libffi: '>=3.4,<4.0a0' - xz: '>=5.2.6,<6.0a0' - readline: '>=8.2,<9.0a0' + ucrt: '>=10.0.20348.0' libzlib: '>=1.2.13,<1.3.0a0' - bzip2: '>=1.0.8,<2.0a0' - tzdata: '*' - libsqlite: '>=3.41.2,<4.0a0' - ncurses: '>=6.3,<7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.11-he7542f4_0_cpython.conda + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libpng-1.6.39-h19919ed_0.conda hash: - md5: ec1a9528837c5fcd34f387e317b30f1e - sha256: 6e5ed21b0d491e791cbdf0f1361d306173dcd0f25b65b5d2881d12a500d2e128 + md5: ab6febdb2dbd9c00803609079db4de71 + sha256: 1f139a72109366ba1da69f5bdc569b0e6783f887615807c02d7bfcc2c7575067 optional: false category: main source: null - build: he7542f4_0_cpython -- name: readline - version: '8.2' + build: h19919ed_0 +- name: libjpeg-turbo + version: 2.1.5.1 manager: conda - platform: osx-64 + platform: win-64 dependencies: - ncurses: '>=6.3,<7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libjpeg-turbo-2.1.5.1-hcfcfb64_0.conda hash: - md5: f17f77f2acf4d344734bda76829ce14e - sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 + md5: f2fad2ae9f1365e343e4329fdb1e9d63 + sha256: 42a874448d060b59f9b5c900b260c992df9543da55c2ac9537b442450d6e6497 optional: false category: main source: null - build: h9e318b2_1 -- name: tk - version: 8.6.12 + build: hcfcfb64_0 +- name: libwebp-base + version: 1.3.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libzlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libwebp-base-1.3.0-hcfcfb64_0.conda hash: - md5: 8e9480d9c47061db2ed1b4ecce519a7f - sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 + md5: 381a3645c51cbf478872899b16490318 + sha256: 9355940270db76592a1cdbcb840740afb5f6b81d167ac4f2cb0fbb2c37397566 optional: false category: main source: null - build: h5dbffcc_0 -- name: xz - version: 5.2.6 + build: hcfcfb64_0 +- name: libprotobuf + version: 3.21.12 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libprotobuf-3.21.12-h12be248_0.conda hash: - md5: a72f9d4ea13d55d745ff1ed594747f10 - sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 + md5: 065644957b64030c520c732a0b7eb43d + sha256: 78340c88bcf39d0968a47509e8d15b30805dd8e3dda77eb67b30c10d3a552a32 optional: false category: main source: null - build: h775f41a_0 -- name: requests - version: 2.31.0 + build: h12be248_0 +- name: harfbuzz + version: 7.3.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - python: '>=3.7' - certifi: '>=2017.4.17' - idna: '>=2.5,<4' - charset-normalizer: '>=2,<4' - urllib3: '>=1.21.1,<3' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + icu: '>=72.1,<73.0a0' + graphite2: '*' + cairo: '>=1.16.0,<2.0a0' + vc: '>=14.2,<15' + freetype: '>=2.12.1,<3.0a0' + ucrt: '>=10.0.20348.0' + libglib: '>=2.76.2,<3.0a0' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/harfbuzz-7.3.0-h196d34a_0.conda hash: - md5: a30144e4156cdbb236f99ebb49828f8b - sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad + md5: 40c65245e53d8eaa9bb9cb5f24f5f6ef + sha256: b9ffdff0a9fc6f0dfab67eba16df6021c0ca43da834151901926acbf6d89fcb1 optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: libcxx - version: 16.0.5 + build: h196d34a_0 +- name: icu + version: '72.1' manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.5-hd57cbcb_0.conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/icu-72.1-h63175ca_0.conda hash: - md5: d34eed0a4fb993f0d934db6394ba23ef - sha256: 1661ffd4e62593aed05da9ee1f7b1905711d8374a25b187e61cb7e55823440df + md5: a108731562663d787066bd17c9595114 + sha256: 06ceff1f021f4a540a6b5c8a037b79b3d98757b1f9659a4b08ad352912b8ef2e optional: false category: main source: null - build: hd57cbcb_0 -- name: python_abi - version: '3.10' + build: h63175ca_0 +- name: jasper + version: 4.0.0 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.10-3_cp310.conda + platform: win-64 + dependencies: + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + ucrt: '>=10.0.20348.0' + freeglut: '>=3.2.2,<4.0a0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/jasper-4.0.0-h00710e9_1.conda hash: - md5: 42da9b0138e911cd5b2f75b0278e26dc - sha256: 0a66852c47be6b28b70bde29891a71d047730c723355d44b0da48db79fb99eb1 + md5: 2eea2d8fc4f3d9ba44bb192661cd96a0 + sha256: 00862dead62e48c09d8c45276b56da690266bbe358a0b75f8770524497729acf optional: false category: main source: null - build: 3_cp310 -- name: numpy - version: 1.24.3 + build: h00710e9_1 +- name: requests + version: 2.31.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcblas: '>=3.9.0,<4.0a0' - liblapack: '>=3.9.0,<4.0a0' - python: '>=3.10,<3.11.0a0' - libblas: '>=3.9.0,<4.0a0' - libcxx: '>=15.0.7' - python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.24.3-py310h7451ae0_0.conda + certifi: '>=2017.4.17' + python: '>=3.7' + charset-normalizer: '>=2,<4' + urllib3: '>=1.21.1,<3' + idna: '>=2.5,<4' + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda hash: - md5: 46d29c52ccd130acec70143b6eac8c63 - sha256: 1540a8cb0575172936b71336d2a7ebe75a936536401ede781fc96a6abad72867 + md5: a30144e4156cdbb236f99ebb49828f8b + sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad optional: false category: main source: null - build: py310h7451ae0_0 -- name: libtiff - version: 4.5.0 + build: pyhd8ed1ab_0 +- name: vc14_runtime + version: 14.34.31931 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - lerc: '>=4.0.0,<5.0a0' - zstd: '>=1.5.2,<1.6.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - libdeflate: '>=1.18,<1.19.0a0' - libcxx: '>=14.0.6' - libwebp-base: '>=1.3.0,<2.0a0' - xz: '>=5.2.6,<6.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.5.0-hedf67fa_6.conda + ucrt: '>=10.0.20348.0' + url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.34.31931-h5081d32_16.conda hash: - md5: 800b810c1aa3eb4a08106698441871bb - sha256: ef38081f3523bb5c1c0bd1aaceb3137f2201ae9400cd888575f798adf03e46d6 + md5: 22125178654c6a8a393f9743d585704b + sha256: 1161f4848e1c0663897a6324fbc4ff13dafd11650b42c9864428da73593dda95 optional: false category: main source: null - build: hedf67fa_6 -- name: lerc - version: 4.0.0 + build: h5081d32_16 +- name: vs2015_runtime + version: 14.34.31931 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcxx: '>=13.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 + vc14_runtime: '>=14.34.31931' + url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.34.31931-hed1258a_16.conda hash: - md5: f9d6a4c82889d5ecedec1d90eb673c55 - sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 + md5: 0374eae69b6dbfb27c3dc27167109eb4 + sha256: 25d852887a501ca8cb6753a4f3dae1549fa49592d51aec1a230b1f0c85fe4297 optional: false category: main source: null - build: hb486fe8_0 -- name: libdeflate - version: '1.18' + build: hed1258a_16 +- name: ucrt + version: 10.0.22621.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.18-hac1461d_0.conda + url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2 hash: - md5: 3d131584456b277ce0871e6481fde49b - sha256: b985178bc45f83259c99026d988448277e17171801945769396e2577ce59778c + md5: 72608f6cd3e5898229c3ea16deb1ac43 + sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6 optional: false category: main source: null - build: hac1461d_0 -- name: ffmpeg - version: 6.0.0 + build: h57928b3_0 +- name: freetype + version: 2.12.1 manager: conda - platform: osx-64 + platform: win-64 dependencies: - fontconfig: '>=2.14.2,<3.0a0' - svt-av1: '>=1.5.0,<1.5.1.0a0' - fonts-conda-ecosystem: '*' - gnutls: '>=3.7.8,<3.8.0a0' - dav1d: '>=1.2.1,<1.2.2.0a0' - libiconv: '>=1.17,<2.0a0' - x265: '>=3.5,<3.6.0a0' + libpng: '>=1.6.39,<1.7.0a0' libzlib: '>=1.2.13,<1.3.0a0' - libxml2: '>=2.11.4,<2.12.0a0' - bzip2: '>=1.0.8,<2.0a0' - libopus: '>=1.3.1,<2.0a0' - libass: '>=0.17.1,<0.17.2.0a0' - gmp: '>=6.2.1,<7.0a0' - lame: '>=3.100,<3.101.0a0' - freetype: '>=2.12.1,<3.0a0' - aom: '>=3.5.0,<3.6.0a0' - libvpx: '>=1.13.0,<1.14.0a0' - openh264: '>=2.3.1,<2.3.2.0a0' - x264: '>=1 !164.3095,<1!165' - libcxx: '>=15.0.7' - url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-6.0.0-gpl_hbba2f9c_102.conda + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/freetype-2.12.1-h546665d_1.conda hash: - md5: ec18021af113ffa6f667b65bf172c3e7 - sha256: bf13d158e8067f0293ac7907ac986d11cffc342f5e97de7a019c214fec30e5dd + md5: 1b513009cd012591f3fdc9e03a74ec0a + sha256: fe027235660d9dfe7889c350a51e96bc0134c3f408827a4c58c4b0557409984c optional: false category: main source: null - build: gpl_hbba2f9c_102 -- name: fonts-conda-ecosystem - version: '1' + build: h546665d_1 +- name: libglib + version: 2.76.3 manager: conda - platform: osx-64 + platform: win-64 dependencies: - fonts-conda-forge: '*' - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + pcre2: '>=10.40,<10.41.0a0' + libffi: '>=3.4,<4.0a0' + vc: '>=14.2,<15' + libiconv: '>=1.17,<2.0a0' + ucrt: '>=10.0.20348.0' + libzlib: '>=1.2.13,<1.3.0a0' + gettext: '>=0.21.1,<1.0a0' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.76.3-he8f3873_0.conda hash: - md5: fee5683a3f04bd15cbd8318b096a27ab - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + md5: 4695e6acaf4790170161048d56cb51fc + sha256: 170d42dcf0c73f5846dfb0c4a241c065cd9830c644d98042f076f25c309e7571 optional: false category: main source: null - build: '0' + build: he8f3873_0 - name: libiconv version: '1.17' manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2 - hash: - md5: 691d103d11180486154af49c037b7ed9 - sha256: 4a3294037d595754f7da7c11a41f3922f995aaa333f3cb66f02d8afa032a7bc2 - optional: false - category: main - source: null - build: hac89ed1_0 -- name: gnutls - version: 3.7.8 - manager: conda - platform: osx-64 + platform: win-64 dependencies: - libtasn1: '>=4.19.0,<5.0a0' - libcxx: '>=14.0.4' - gettext: '>=0.19.8.1,<1.0a0' - p11-kit: '>=0.24.1,<0.25.0a0' - libidn2: '>=2,<3.0a0' - nettle: '>=3.8.1,<3.9.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/gnutls-3.7.8-h207c4f0_0.tar.bz2 + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2 hash: - md5: 3886476538060824c0258316fd5bb828 - sha256: dc309e4c24689deb19596a745e0a31519adcf65c16bc349e23c140ee6ffb8f94 + md5: 050119977a86e4856f0416e2edcf81bb + sha256: 657c2a992c896475021a25faebd9ccfaa149c5d70c7dc824d4069784b686cea1 optional: false category: main source: null - build: h207c4f0_0 -- name: gmp - version: 6.2.1 + build: h8ffe710_0 +- name: gettext + version: 0.21.1 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcxx: '>=10.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2 + libiconv: '>=1.17,<2.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2 hash: - md5: dedc96914428dae572a39e69ee2a392f - sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00 + md5: 299d4fd6798a45337042ff5a48219e5f + sha256: 71c75b0a4dc2cf95d2860ea0076edf9f5558baeb4dacaeecb32643b199074616 optional: false category: main source: null - build: h2e338ed_0 -- name: aom - version: 3.5.0 + build: h5728263_0 +- name: pcre2 + version: '10.40' manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcxx: '>=14.0.4' - url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.5.0-hf0c8a7f_0.tar.bz2 + ucrt: '>=10.0.20348.0' + bzip2: '>=1.0.8,<2.0a0' + libzlib: '>=1.2.12,<1.3.0a0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2 hash: - md5: 9110390ac33346f643e26051a92de5ce - sha256: 16ccdf58e3b8b3f446d53780964730e51c57ef11f87b64a4535d9f5a8904f39c + md5: 2519de0d9620dc2bc7e19caf6867136d + sha256: 5833c63548e4fae91da6d77739eab7dc9bf6542e43f105826b23c01bfdd9cb57 optional: false category: main source: null - build: hf0c8a7f_0 -- name: libvpx - version: 1.13.0 + build: h17e33f8_0 +- name: graphite2 + version: 1.3.13 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.13.0-hf0c8a7f_0.conda + vc: 14.* + url: https://conda.anaconda.org/conda-forge/win-64/graphite2-1.3.13-1000.tar.bz2 hash: - md5: 6653556a8cf960fcf5a325b784bb746b - sha256: 2b44fa140498b43b9dea56318bff46ad14b91b32598406daefed58d485464dbc + md5: 8fc0e04e5c852cadf2cad68b86a906ab + sha256: ed47008df8e57a83f45112985b76ac4339177486bd4d1d1b305d685a832532aa optional: false category: main source: null - build: hf0c8a7f_0 -- name: libxml2 - version: 2.11.4 + build: '1000' +- name: cairo + version: 1.16.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: icu: '>=72.1,<73.0a0' - libiconv: '>=1.17,<2.0a0' - xz: '>=5.2.6,<6.0a0' + libpng: '>=1.6.39,<1.7.0a0' + libglib: '>=2.76.2,<3.0a0' + freetype: '>=2.12.1,<3.0a0' libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.11.4-hd95e348_0.conda + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + fontconfig: '>=2.14.2,<3.0a0' + vc14_runtime: '>=14.29.30139' + zlib: '*' + fonts-conda-ecosystem: '*' + pixman: '>=0.40.0,<1.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/cairo-1.16.0-hdecc03f_1016.conda hash: - md5: 681f8dda25e73a830d774a37b9839c85 - sha256: d113eeafcbbb4ee5086b31b45adac5818394dc9759e3e1d9fb95114a852ef535 + md5: d5a082e08ff9a0206ad03ebb0fafdf8d + sha256: a0e37d9fdd4069141889ab78154ed0dcee5417fe8fcd3585a744993660a7adc0 optional: false category: main source: null - build: hd95e348_0 -- name: svt-av1 - version: 1.5.0 + build: hdecc03f_1016 +- name: fonts-conda-ecosystem + version: '1' manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcxx: '>=15.0.7' - url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-1.5.0-he965462_0.conda + fonts-conda-forge: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 hash: - md5: ef1e0dee4acc8619bd3c5e17c4ad8f7f - sha256: 19c2a9702ec213045477e6718fcad45444119edc7f3bde51f907e38859da3038 + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 optional: false category: main source: null - build: he965462_0 + build: '0' - name: fontconfig - version: 2.14.2 - manager: conda - platform: osx-64 - dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - freetype: '>=2.12.1,<3.0a0' - expat: '>=2.5.0,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda - hash: - md5: 86cc5867dfbee4178118392bae4a3c89 - sha256: f63e6d1d6aef8ba6de4fc54d3d7898a153479888d40ffdf2e4cfad6f92679d34 - optional: false - category: main - source: null - build: h5bb23bf_0 -- name: dav1d - version: 1.2.1 + version: 2.14.2 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda + platform: win-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + freetype: '>=2.12.1,<3.0a0' + libiconv: '>=1.17,<2.0a0' + expat: '>=2.5.0,<3.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/fontconfig-2.14.2-hbde0cde_0.conda hash: - md5: 9d88733c715300a39f8ca2e936b7808d - sha256: ec71a835866b42e946cd2039a5f7a6458851a21890d315476f5e66790ac11c96 + md5: 08767992f1a4f1336a257af1241034bd + sha256: 643f2b95be68abeb130c53d543dcd0c1244bebabd58c774a21b31e4b51ac3c96 optional: false category: main source: null - build: h0dc2134_0 -- name: libass - version: 0.17.1 + build: hbde0cde_0 +- name: pixman + version: 0.40.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - fontconfig: '>=2.14.2,<3.0a0' - harfbuzz: '>=7.2.0,<8.0a0' - fonts-conda-ecosystem: '*' - freetype: '>=2.12.1,<3.0a0' - fribidi: '>=1.0.10,<2.0a0' - libexpat: '>=2.5.0,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h66d2fa1_0.conda + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/pixman-0.40.0-h8ffe710_0.tar.bz2 hash: - md5: 750ab3799a34f450ae49b9cc1e5b975b - sha256: 1052006a363a06e74f1633f5e1c54964120049383e6bdf384a8ebb30fa4ca12d + md5: 32b45d3fcffddc84cc1a014a0b5f0d58 + sha256: 7f0ceed590a717ddc7612f67657119df1e6df0d031a822b570d741a89a3ba784 optional: false category: main source: null - build: h66d2fa1_0 + build: h8ffe710_0 - name: fonts-conda-forge version: '1' manager: conda - platform: osx-64 + platform: win-64 dependencies: + font-ttf-ubuntu: '*' + font-ttf-inconsolata: '*' font-ttf-dejavu-sans-mono: '*' font-ttf-source-code-pro: '*' - font-ttf-inconsolata: '*' - font-ttf-ubuntu: '*' url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 hash: md5: f766549260d6815b0c52253f1fb1bb29 @@ -4756,425 +4557,493 @@ package: category: main source: null build: '0' -- name: nettle - version: 3.8.1 +- name: font-ttf-dejavu-sans-mono + version: '2.37' manager: conda - platform: osx-64 + platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/nettle-3.8.1-h96f3785_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 hash: - md5: 99558b9df4c337a0bf82bc8e0090533a - sha256: d8b3ffa9595e04a28c7cecb482548c868ec1d5d1937a40ac508ff97d0343d3dc + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b optional: false category: main source: null - build: h96f3785_1 -- name: libtasn1 - version: 4.19.0 + build: hab24e00_0 +- name: font-ttf-ubuntu + version: '0.83' manager: conda - platform: osx-64 + platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libtasn1-4.19.0-hb7f2c08_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 hash: - md5: 73f67fb011b4477b101a95a082c74f0a - sha256: 4197c155fb460fae65288c6c098c39f22495a53838356d29b79b31b8e33486dc + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e optional: false category: main source: null - build: hb7f2c08_0 -- name: p11-kit - version: 0.24.1 + build: hab24e00_0 +- name: libzlib + version: 1.2.13 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libffi: '>=3.4.2,<3.5.0a0' - libtasn1: '>=4.18.0,<5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/p11-kit-0.24.1-h65f8906_0.tar.bz2 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda hash: - md5: e936a0ee28be948846108582f00e2d61 - sha256: e16fbaadb2714c0965cb76de32fe7d13a21874cec02c97efef8ac51f4fda86fc + md5: 5fdb9c6a113b6b6cb5e517fd972d5f41 + sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26 optional: false category: main source: null - build: h65f8906_0 -- name: libexpat - version: 2.5.0 + build: hcfcfb64_5 +- name: zlib + version: 1.2.13 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + libzlib: ==1.2.13 hcfcfb64_5 + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.13-hcfcfb64_5.conda hash: - md5: 6c81cb022780ee33435cca0127dd43c9 - sha256: 80024bd9f44d096c4cc07fb2bac76b5f1f7553390112dab3ad6acb16a05f0b96 + md5: a318e8622e11663f645cc7fa3260f462 + sha256: 0f91b719c7558046bcd37fdc7ae4b9eb2b7a8e335beb8b59ae7ccb285a46aa46 optional: false category: main source: null - build: hf0c8a7f_1 -- name: font-ttf-dejavu-sans-mono - version: '2.37' + build: hcfcfb64_5 +- name: freeglut + version: 3.2.2 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/freeglut-3.2.2-h63175ca_2.conda hash: - md5: 0c96522c6bdaed4b1566d11387caaf45 - sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b + md5: e2d290a0159d485932abed83878e6952 + sha256: 42fd40d97dab1adb63ff0bb001e4ed9b3eef377a2de5e572bf989c6db79262c8 optional: false category: main source: null - build: hab24e00_0 -- name: font-ttf-ubuntu - version: '0.83' + build: h63175ca_2 +- name: python_abi + version: '3.10' manager: conda - platform: osx-64 + platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.10-3_cp310.conda hash: - md5: 19410c3df09dfb12d1206132a1d357c5 - sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + md5: f4cfd883c0d91bb17164d8e34f4900d5 + sha256: 8212c6f1a68d5a494bcde5cd64196626024059dcbe8995469c8a5ed32694efa0 optional: false category: main source: null - build: hab24e00_0 -- name: freetype - version: 2.12.1 + build: 3_cp310 +- name: numpy + version: 1.25.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libpng: '>=1.6.39,<1.7.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h3f81eb7_1.conda + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libblas: '>=3.9.0,<4.0a0' + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + libcblas: '>=3.9.0,<4.0a0' + liblapack: '>=3.9.0,<4.0a0' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/numpy-1.25.0-py310hd02465a_0.conda hash: - md5: 852224ea3e8991a8342228eab274840e - sha256: 0aea2b93d0da8bf022501857de93f2fc0e362fabcd83c4579be8d8f5bc3e17cb + md5: 63be5dd380067c6db32243e6ca56e8e8 + sha256: 2acd83d05b9095927dd7b147ac14140f13a97b45bdac1762d97f2009b2dfda77 optional: false category: main source: null - build: h3f81eb7_1 -- name: liblapacke - version: 3.9.0 + build: py310hd02465a_0 +- name: libtiff + version: 4.5.1 manager: conda - platform: osx-64 + platform: win-64 dependencies: - liblapack: ==3.9.0 17_osx64_openblas - libblas: ==3.9.0 17_osx64_openblas - libcblas: ==3.9.0 17_osx64_openblas - url: https://conda.anaconda.org/conda-forge/osx-64/liblapacke-3.9.0-17_osx64_openblas.conda + libdeflate: '>=1.18,<1.19.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc14_runtime: '>=14.29.30139' + vc: '>=14.2,<15' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + ucrt: '>=10.0.20348.0' + xz: '>=5.2.6,<6.0a0' + lerc: '>=4.0.0,<5.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/libtiff-4.5.1-h6c8260b_0.conda hash: - md5: 5f3d6e4e634e7f1747bdd3fc35f230e5 - sha256: f05576f58d8923c704967641a67e4079085c4b00e2f9eaec31a282df13a97182 + md5: cc46fe88f82f9c98bd6858b3f6efb4e0 + sha256: 688e813d61e0d5dff284ef95c53b5c0acf950bbc1df97def4a4a33bbf1bb2fab optional: false category: main source: null - build: 17_osx64_openblas -- name: libblas - version: 3.9.0 + build: h6c8260b_0 +- name: lerc + version: 4.0.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libopenblas: '>=0.3.23,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-17_osx64_openblas.conda + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30037' + url: https://conda.anaconda.org/conda-forge/win-64/lerc-4.0.0-h63175ca_0.tar.bz2 hash: - md5: 65299527582e2449b05d27fcf8352125 - sha256: d2439e4f7bbe0814128d080a01f8435875cc423543184ca0096087308631d73e + md5: 1900cb3cab5055833cfddb0ba233b074 + sha256: f4f39d7f6a2f9b407f8fb567a6c25755270421731d70f0ff331f5de4fa367488 optional: false category: main source: null - build: 17_osx64_openblas -- name: libcblas - version: 3.9.0 + build: h63175ca_0 +- name: libdeflate + version: '1.18' manager: conda - platform: osx-64 + platform: win-64 dependencies: - libblas: ==3.9.0 17_osx64_openblas - url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-17_osx64_openblas.conda + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libdeflate-1.18-hcfcfb64_0.conda hash: - md5: 380151ca00704172b242a63701b7bf8a - sha256: 5c85941b55a8e897e11188ab66900eb3d83c87f6bdd0b88856733f8510fa4c91 + md5: 493acc14c556ef6f1d13ba00b099c679 + sha256: 9a9a1a6e47777c9bf6086d88f6567ed3fc32d4f849b3d42b51bbf0b9fa4727f7 optional: false category: main source: null - build: 17_osx64_openblas -- name: liblapack + build: hcfcfb64_0 +- name: liblapacke version: 3.9.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libblas: ==3.9.0 17_osx64_openblas - url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-17_osx64_openblas.conda + libcblas: ==3.9.0 17_win64_mkl + libblas: ==3.9.0 17_win64_mkl + liblapack: ==3.9.0 17_win64_mkl + url: https://conda.anaconda.org/conda-forge/win-64/liblapacke-3.9.0-17_win64_mkl.conda hash: - md5: 6ab83532872bf3659613638589dd10af - sha256: 7ce76f3e9578b62fbd88c094f343c1b09ec3466afccfc08347d31742e6831e97 + md5: 6c98bb1c41479063f089459dcdedcecb + sha256: 41edcf08345477f661675bf2595ae4c523b88bb712ded4d5a9bc40b0fdd1f10a optional: false category: main source: null - build: 17_osx64_openblas -- name: libopenblas - version: 0.3.23 + build: 17_win64_mkl +- name: libblas + version: 3.9.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libgfortran5: '>=11.3.0' - libgfortran: 5.* - llvm-openmp: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.23-openmp_h429af6e_0.conda + mkl: ==2022.1.0 h6a75c08_874 + url: https://conda.anaconda.org/conda-forge/win-64/libblas-3.9.0-17_win64_mkl.conda hash: - md5: 7000a828e29608e4f57e662b5502d2c9 - sha256: fb1ba347e07145807fb1688c78b115d5eb2f4775d9eb6d991d49cb88eef174b7 + md5: 9e42ac6b256b96bfaa19f829c25940e8 + sha256: 56c5394e80c429acfee53a075e3d1b6ccd8c294510084cd6a2a4b7d8cc80abfb optional: false category: main source: null - build: openmp_h429af6e_0 -- name: libglib - version: 2.76.3 + build: 17_win64_mkl +- name: libcblas + version: 3.9.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=15.0.7' - pcre2: '>=10.40,<10.41.0a0' - libffi: '>=3.4,<4.0a0' - gettext: '>=0.21.1,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.76.3-hc62aa5d_0.conda + libblas: ==3.9.0 17_win64_mkl + url: https://conda.anaconda.org/conda-forge/win-64/libcblas-3.9.0-17_win64_mkl.conda hash: - md5: 3687b3c1d257dec787418281cfc58358 - sha256: b9396d779ed9c12e4777500497f87414629e943f2f433d059f3378f8d5d4f57e + md5: 768b2c3be666ecf9e62f939ea919f819 + sha256: 5b9914c3b95d947a613a9b6d3c1c1515257a61e7838a1f2484927f0c9fe23063 optional: false category: main source: null - build: hc62aa5d_0 -- name: gettext - version: 0.21.1 + build: 17_win64_mkl +- name: liblapack + version: 3.9.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.21.1-h8a4c099_0.tar.bz2 + libblas: ==3.9.0 17_win64_mkl + url: https://conda.anaconda.org/conda-forge/win-64/liblapack-3.9.0-17_win64_mkl.conda hash: - md5: 1e3aff29ce703d421c43f371ad676cc5 - sha256: 915d3cd2d777b9b3fc2e87a25901b8e4a6aa1b2b33cf2ba54e9e9ed4f6b67d94 + md5: 278121fe8f0d65d496998aa290f36322 + sha256: 68922a63d92a414af06b208136c9304be179c6fc911e8636430b0e15c0a9aa3b optional: false category: main source: null - build: h8a4c099_0 -- name: pcre2 - version: '10.40' + build: 17_win64_mkl +- name: mkl + version: 2022.1.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.40-h1c4e4bc_0.tar.bz2 + intel-openmp: '*' + tbb: 2021.* + url: https://conda.anaconda.org/conda-forge/win-64/mkl-2022.1.0-h6a75c08_874.tar.bz2 hash: - md5: e0f80c8f3a0352a54eddfe59cd2b25b1 - sha256: 60265b48c96decbea89a19a7bc34be88d9b95d4725fd4dbdae158529c601875a + md5: 2ff89a7337a9636029b4db9466e9f8e3 + sha256: b130d13dba6a798cbcce8f19c52e9765b75b8668d2f8f95ba8210c63b6fa84eb optional: false category: main source: null - build: h1c4e4bc_0 -- name: cairo - version: 1.16.0 + build: h6a75c08_874 +- name: qt-main + version: 5.15.8 manager: conda - platform: osx-64 + platform: win-64 dependencies: - pixman: '>=0.40.0,<1.0a0' - fonts-conda-ecosystem: '*' - freetype: '>=2.12.1,<3.0a0' - zlib: '*' + openssl: '>=3.1.0,<4.0a0' + libpng: '>=1.6.39,<1.7.0a0' libzlib: '>=1.2.13,<1.3.0a0' + libsqlite: '>=3.42.0,<4.0a0' + vc14_runtime: '>=14.29.30139' + ucrt: '>=10.0.20348.0' + gstreamer: '>=1.22.3,<1.23.0a0' + zstd: '>=1.5.2,<1.6.0a0' icu: '>=72.1,<73.0a0' - libpng: '>=1.6.39,<1.7.0a0' - libglib: '>=2.76.2,<3.0a0' - fontconfig: '>=2.14.2,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.16.0-h09dd18c_1016.conda + libglib: '>=2.76.3,<3.0a0' + vc: '>=14.2,<15' + gst-plugins-base: '>=1.22.3,<1.23.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + libclang: '>=15.0.7,<16.0a0' + krb5: '>=1.20.1,<1.21.0a0' + libclang13: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/win-64/qt-main-5.15.8-h2c8576c_13.conda hash: - md5: 8f188a1368e0d5bcb017493ee83ffaf0 - sha256: d5dec1060a78deb70ddfd89c23ee683699f743fe68f78379dc4834e2553edb37 + md5: b00e4814feb5fa92b864ef031130c2cf + sha256: 9f638055e92c8faf4d52511a14f01accc801b293e70565d284f2522d94ec71b0 optional: false category: main source: null - build: h09dd18c_1016 -- name: zlib - version: 1.2.13 + build: h2c8576c_13 +- name: libsqlite + version: 3.42.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libzlib: ==1.2.13 hfd90126_4 - url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-hfd90126_4.tar.bz2 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.42.0-hcfcfb64_0.conda hash: - md5: be90e6223c74ea253080abae19b3bdb1 - sha256: 9db69bb5fc3e19093b550e25d1158cdf82f4f8eddc1f80f8d7d9de33eb8535a4 + md5: 9a71d93deb99cc09d8939d5235b5909a + sha256: 70bc1fdb72de847807355c13144666d4f151894f9b141ee559f5d243bdf577e2 optional: false category: main source: null - build: hfd90126_4 -- name: pixman - version: 0.40.0 + build: hcfcfb64_0 +- name: ffmpeg + version: 5.1.2 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.40.0-hbcb3906_0.tar.bz2 + platform: win-64 + dependencies: + libxml2: '>=2.11.4,<2.12.0a0' + openh264: '>=2.3.1,<2.3.2.0a0' + dav1d: '>=1.2.1,<1.2.2.0a0' + svt-av1: '>=1.4.1,<1.4.2.0a0' + x265: '>=3.5,<3.6.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc14_runtime: '>=14.29.30139' + x264: '>=1!164.3095,<1!165' + aom: '>=3.5.0,<3.6.0a0' + ucrt: '>=10.0.20348.0' + libopus: '>=1.3.1,<2.0a0' + freetype: '>=2.12.1,<3.0a0' + vc: '>=14.2,<15' + fontconfig: '>=2.14.2,<3.0a0' + bzip2: '>=1.0.8,<2.0a0' + fonts-conda-ecosystem: '*' + url: https://conda.anaconda.org/conda-forge/win-64/ffmpeg-5.1.2-gpl_he426399_111.conda hash: - md5: 09a583a6f172715be21d93aaa1b42d71 - sha256: 50646988679b823958bd99983a9e66fce58a7368fa2bab5712efb5c7ce6199af + md5: 4988eb01855af480a61aa1e959d2c06d + sha256: 2dc846aaff335bc4c9a81f6aa71d3aaf1143e629f79395aae7a6ab100796e739 optional: false category: main source: null - build: hbcb3906_0 -- name: x264 - version: 1!164.3095 + build: gpl_he426399_111 +- name: libxml2 + version: 2.11.4 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/x264-1!164.3095-h775f41a_2.tar.bz2 + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc14_runtime: '>=14.29.30139' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + url: https://conda.anaconda.org/conda-forge/win-64/libxml2-2.11.4-hc3477c8_0.conda hash: - md5: 23e9c3180e2c0f9449bb042914ec2200 - sha256: de611da29f4ed0733a330402e163f9260218e6ba6eae593a5f945827d0ee1069 + md5: 586627982a63815637f871a6360fe3f9 + sha256: d9d2210436ac28d1a15de08468202a944135d17da3b37fd82c0e90a36ce8ef72 optional: false category: main source: null - build: h775f41a_2 -- name: openh264 - version: 2.3.1 + build: hc3477c8_0 +- name: aom + version: 3.5.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/openh264-2.3.1-hf0c8a7f_2.conda + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/aom-3.5.0-h63175ca_0.tar.bz2 hash: - md5: 989ba22b08353c5ca0e6fba80bcd4321 - sha256: 5f39b97f048d72b149627993072e15d37428338a9fe83600db5d09ae7ca9f7b4 + md5: 455524d2bf9625a42a1848c0d08ac063 + sha256: 76a2fc753c372facbb83bc9fc063cbc9c439ec0922d5c776a4d280fc42ff885c optional: false category: main source: null - build: hf0c8a7f_2 -- name: lame - version: '3.100' + build: h63175ca_0 +- name: svt-av1 + version: 1.4.1 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2 + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/svt-av1-1.4.1-h63175ca_0.conda hash: - md5: 3342b33c9a0921b22b767ed68ee25861 - sha256: 0f943b08abb4c748d73207594321b53bad47eea3e7d06b6078e0f6c59ce6771e + md5: 4e0b494c944e58a4de7aed21bb80645c + sha256: ca68968390a6811de0568241e254b5b29e86c96221d1760228efa584ce4c4f65 optional: false category: main source: null - build: hb7f2c08_1003 + build: h63175ca_0 - name: x265 version: '3.5' manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcxx: '>=12.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/x265-3.5-hbb4e6a2_3.tar.bz2 + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/x265-3.5-h2d74725_3.tar.bz2 hash: - md5: a3bf3e95b7795871a6734a784400fcea - sha256: 6b6a57710192764d0538f72ea1ccecf2c6174a092e0bc76d790f8ca36bbe90e4 + md5: ca7129a334198f08347fb19ac98a2de9 + sha256: 02b9874049112f2b7335c9a3e880ac05d99a08d9a98160c5a98898b2b3ac42b2 optional: false category: main source: null - build: hbb4e6a2_3 -- name: libopus - version: 1.3.1 + build: h2d74725_3 +- name: dav1d + version: 1.2.1 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/dav1d-1.2.1-hcfcfb64_0.conda hash: - md5: 380b9ea5f6a7a277e6c1ac27d034369b - sha256: c126fc225bece591a8f010e95ca7d010ea2d02df9251830bec24a19bf823fc31 + md5: ed2c27bda330e3f0ab41577cf8b9b585 + sha256: 2aa2083c9c186da7d6f975ccfbef654ed54fff27f4bc321dbcd12cee932ec2c4 optional: false category: main source: null - build: hc929b4f_1 + build: hcfcfb64_0 - name: zstd version: 1.5.2 manager: conda - platform: osx-64 + platform: win-64 dependencies: + ucrt: '>=10.0.20348.0' libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hbc0c0cd_6.conda + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/zstd-1.5.2-h12be248_6.conda hash: - md5: 40a188783d3c425bdccc9ae9104acbb8 - sha256: f845dafb0b488703ce81e25b6f27ed909ee9061b730c172e6b084fcf7156231f + md5: 62826565682d013b3e2346aaf7bded0e + sha256: ef23b2eb748b0b2139755e5a20d49a642340af1313017918dc91b4a4ce8f3bd9 optional: false category: main source: null - build: hbc0c0cd_6 -- name: ncurses - version: '6.4' + build: h12be248_6 +- name: tzdata + version: 2023c manager: conda - platform: osx-64 + platform: win-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: - md5: c3dbae2411164d9b02c69090a9a91857 - sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 optional: false category: main source: null - build: hf0c8a7f_0 -- name: tzdata - version: 2023c + build: h71feb2d_0 +- name: bzip2 + version: 1.0.8 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2 hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: 7c03c66026944073040cb19a4f3ec3c9 + sha256: 5389dad4e73e4865bb485f460fc60b120bae74404003d457ecb1a62eb7abf0c1 optional: false category: main source: null - build: h71feb2d_0 -- name: openssl - version: 3.1.1 + build: h8ffe710_4 +- name: libffi + version: 3.4.2 manager: conda - platform: osx-64 + platform: win-64 dependencies: - ca-certificates: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.1-h8a1eda9_1.conda + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2 hash: - md5: c7822d6ee74e34af1fd74365cfd18983 - sha256: 67855f92bf50f24cbbc44879864d7a040b1f351e95b599cfcf4cc49b2cc3fd08 + md5: 2c96d1b6915b408893f9472569dee135 + sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5 optional: false category: main source: null - build: h8a1eda9_1 -- name: libffi - version: 3.4.2 + build: h8ffe710_5 +- name: openssl + version: 3.1.1 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + ca-certificates: '*' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.1-hcfcfb64_1.conda hash: - md5: ccb34fb14960ad8b125962d3d79b31a9 - sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f + md5: 1d913a5de46c6b2f7e4cfbd26b106b8b + sha256: 4424486fb9a2aeaba912a8dd8a5b5cdb6fcd65d7708fd854e3ea27449bb352a3 optional: false category: main source: null - build: h0d85af4_5 -- name: libsqlite - version: 3.42.0 + build: hcfcfb64_1 +- name: krb5 + version: 1.20.1 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.42.0-h58db7d2_0.conda + ucrt: '>=10.0.20348.0' + openssl: '>=3.0.7,<4.0a0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/krb5-1.20.1-heb0366b_0.conda hash: - md5: a7d3b44b7b0c9901ac7813b7a0462893 - sha256: 182689f4b1a5ed638cd615c7774e1a9974842bc127c59173f1d25e31a8795eef + md5: a07b05ee8f451ab15698397185efe989 + sha256: 429edc4fa9e2420c55cdbd9febb154d2358bf662735efda4372f62142ff310cd optional: false category: main source: null - build: h58db7d2_0 + build: heb0366b_0 - name: font-ttf-inconsolata version: '3.000' manager: conda - platform: osx-64 + platform: win-64 dependencies: {} url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 hash: @@ -5187,7 +5056,7 @@ package: - name: font-ttf-source-code-pro version: '2.038' manager: conda - platform: osx-64 + platform: win-64 dependencies: {} url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 hash: @@ -5200,7 +5069,7 @@ package: - name: certifi version: 2023.5.7 manager: conda - platform: osx-64 + platform: win-64 dependencies: python: '>=3.7' url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda @@ -5214,7 +5083,7 @@ package: - name: idna version: '3.4' manager: conda - platform: osx-64 + platform: win-64 dependencies: python: '>=3.6' url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 @@ -5228,11 +5097,11 @@ package: - name: urllib3 version: 2.0.3 manager: conda - platform: osx-64 + platform: win-64 dependencies: - brotli: '>=1.0.9' pysocks: '>=1.5.6,<2.0,!=1.5.7' python: '>=3.7' + brotli: '>=1.0.9' url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_0.conda hash: md5: ae465d0fbf9f1979cb2d8d4043d885e2 @@ -5244,7 +5113,7 @@ package: - name: charset-normalizer version: 3.1.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: python: '>=3.7' url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda @@ -5255,1364 +5124,1493 @@ package: category: main source: null build: pyhd8ed1ab_0 -- name: libgfortran5 - version: 12.2.0 +- name: expat + version: 2.5.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - llvm-openmp: '>=8.0.0' - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-12.2.0-he409387_31.conda + libexpat: ==2.5.0 h63175ca_1 + url: https://conda.anaconda.org/conda-forge/win-64/expat-2.5.0-h63175ca_1.conda hash: - md5: 5a544130e584b1f204ac896ff071d5b3 - sha256: 42ae06bbb3cf7f7c3194482894f4287fad7bc39214d1a0dbf0c43f8efb8d3c1a + md5: 87c77fe1b445aedb5c6d207dd236fa3e + sha256: 3bcd88290cd462d5573c2923c796599d0dece2ff9d9c9d6c914d31e9c5881aaf optional: false category: main source: null - build: he409387_31 -- name: llvm-openmp - version: 16.0.5 + build: h63175ca_1 +- name: libexpat + version: 2.5.0 + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda + hash: + md5: 636cc3cbbd2e28bcfd2f73b2044aac2c + sha256: 794b2a9be72f176a2767c299574d330ffb76b2ed75d7fd20bee3bbadce5886cf + optional: false + category: main + source: null + build: h63175ca_1 +- name: intel-openmp + version: 2023.1.0 + manager: conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/intel-openmp-2023.1.0-h57928b3_46319.conda + hash: + md5: dbc4636f419722fbf3ab6501377228ba + sha256: b3006690844eedbb51030e71778767acc9967f4148b6f335ba3fddf8aa42aa5b + optional: false + category: main + source: null + build: h57928b3_46319 +- name: tbb + version: 2021.9.0 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + libhwloc: '>=2.9.1,<2.9.2.0a0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/tbb-2021.9.0-h91493d7_0.conda + hash: + md5: 6aa3f1becefeaa00a4d2a79b2a478aee + sha256: bf9a0f71aa9234776fc5d940464f47b760e5b4907c6c4f7eb0273221fe1b834c + optional: false + category: main + source: null + build: h91493d7_0 +- name: libhwloc + version: 2.9.1 + manager: conda + platform: win-64 + dependencies: + libxml2: '>=2.11.4,<2.12.0a0' + ucrt: '>=10.0.20348.0' + pthreads-win32: '*' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libhwloc-2.9.1-nocuda_h15da153_6.conda + hash: + md5: 95b1bd8df3033d08ae5125ed69d71194 + sha256: dbb221db2ca66075fc12976c55db511dd88433c4db91ed20da59ffada2f6e6bb + optional: false + category: main + source: null + build: nocuda_h15da153_6 +- name: openh264 + version: 2.3.1 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/openh264-2.3.1-h63175ca_2.conda + hash: + md5: 76e822d93cdc32b00b61810d3fa030e0 + sha256: 251566b5326a292215a3db5a184c255a092242a371431b617c7baf300fa9d170 + optional: false + category: main + source: null + build: h63175ca_2 +- name: x264 + version: 1!164.3095 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15' + vs2015_runtime: '>=14.16.27033' + url: https://conda.anaconda.org/conda-forge/win-64/x264-1!164.3095-h8ffe710_2.tar.bz2 + hash: + md5: 19e39905184459760ccb8cf5c75f148b + sha256: 97166b318f8c68ffe4d50b2f4bd36e415219eeaef233e7d41c54244dc6108249 + optional: false + category: main + source: null + build: h8ffe710_2 +- name: libopus + version: 1.3.1 + manager: conda + platform: win-64 + dependencies: + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libopus-1.3.1-h8ffe710_1.tar.bz2 + hash: + md5: e35a6bcfeb20ea83aab21dfc50ae62a4 + sha256: b2e5ec193762a5b4f905f8100437370e164df3db0ea5c18b4ce09390f5d3d525 + optional: false + category: main + source: null + build: h8ffe710_1 +- name: libclang + version: 15.0.7 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + vc14_runtime: '>=14.29.30139' + libclang13: ==15.0.7 default_h77d9078_2 + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + url: https://conda.anaconda.org/conda-forge/win-64/libclang-15.0.7-default_h77d9078_2.conda + hash: + md5: 70188b1b3e0b1716405adab9050894d1 + sha256: af265f9358565c650ec3f09557d47c6ced441164d10cd500b74651513f61be46 + optional: false + category: main + source: null + build: default_h77d9078_2 +- name: libclang13 + version: 15.0.7 + manager: conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libclang13-15.0.7-default_h77d9078_2.conda + hash: + md5: c2e1def32a19610ac26db453501760b6 + sha256: 0be9e57f50f33c813df6e1ad65b8bf8ccf1c23f734785236146b56b9078e7c7b + optional: false + category: main + source: null + build: default_h77d9078_2 +- name: gst-plugins-base + version: 1.22.3 + manager: conda + platform: win-64 + dependencies: + libglib: '>=2.76.2,<3.0a0' + libvorbis: '>=1.3.7,<1.4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + ucrt: '>=10.0.20348.0' + gstreamer: ==1.22.3 h6b5321d_1 + gettext: '>=0.21.1,<1.0a0' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/gst-plugins-base-1.22.3-h001b923_1.conda + hash: + md5: bd6347f397891bf4eb264c652221507c + sha256: 5a9c3032a033d1cacf313527e1f492e17492d121c07c3f8213ffede1fef60d09 + optional: false + category: main + source: null + build: h001b923_1 +- name: gstreamer + version: 1.22.3 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-16.0.5-hff08bdf_0.conda + platform: win-64 + dependencies: + glib: '>=2.76.2,<3.0a0' + ucrt: '>=10.0.20348.0' + gettext: '>=0.21.1,<1.0a0' + libglib: '>=2.76.2,<3.0a0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/gstreamer-1.22.3-h6b5321d_1.conda hash: - md5: af8df1a61e8137e3479b0f71d5bd0a49 - sha256: 8615505724d8e4e86fc036de3aad73382bf33028f305c279cee28f10c8448291 + md5: 00afb31665a8028ca2ff9af61fea64e1 + sha256: 328c1ddd1328d7419d827cf18e05522011337739302f332847f2d9d731f68d14 optional: false category: main source: null - build: hff08bdf_0 -- name: expat - version: 2.5.0 + build: h6b5321d_1 +- name: glib + version: 2.76.3 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libexpat: ==2.5.0 hf0c8a7f_1 - url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_1.conda + glib-tools: ==2.76.3 h12be248_0 + python: '*' + libglib: ==2.76.3 he8f3873_0 + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + ucrt: '>=10.0.20348.0' + gettext: '>=0.21.1,<1.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/glib-2.76.3-h12be248_0.conda hash: - md5: e12630038077877cbb6c7851e139c17c - sha256: 15c04a5a690b337b50fb7550cce057d843cf94dd0109d576ec9bc3448a8571d0 + md5: fa3f1af2dc70e0d00a755667a741fad3 + sha256: 6c6f526cc153feeee786daf16f2790a8ff4478fde752b2d0d3619c884f00b898 optional: false category: main source: null - build: hf0c8a7f_1 -- name: libidn2 - version: 2.3.4 + build: h12be248_0 +- name: glib-tools + version: 2.76.3 manager: conda - platform: osx-64 + platform: win-64 dependencies: - gettext: '>=0.21.1,<1.0a0' - libunistring: '>=0,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libidn2-2.3.4-hb7f2c08_0.tar.bz2 + ucrt: '>=10.0.20348.0' + libglib: ==2.76.3 he8f3873_0 + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/glib-tools-2.76.3-h12be248_0.conda hash: - md5: bd109fd705b4ce40a62759129bc4ef5a - sha256: a85127270c37fe2046372d706c44b7c707605dc1f8b97f80e8a1e1978bd3f8f5 + md5: 3015483cb3ffa200d51aac3c691fcda0 + sha256: 10cc47bc9194e42ea984e437e3d99c794d5d6e7c5ac2994716054fcbcf65d33a optional: false category: main source: null - build: hb7f2c08_0 + build: h12be248_0 - name: hdf5 version: 1.14.0 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - libgfortran: 5.* - libgfortran5: '>=12.2.0' - openssl: '>=3.0.8,<4.0a0' + ucrt: '>=10.0.20348.0' libaec: '>=1.0.6,<2.0a0' - libcxx: '>=14.0.6' libcurl: '>=7.88.1,<9.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.0-nompi_hbf0aa07_103.conda + openssl: '>=3.0.8,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/hdf5-1.14.0-nompi_h918d9b7_103.conda hash: - md5: 90f50d124606a4e62628823b614a2f4c - sha256: 1c57bea7086af82b57d912d806516e432a179c4a46271c1e65bbe39466722e3d + md5: cdd3ab75e65f0aad08ff7e25a4dc825d + sha256: 56d4543daffd3028481e85a583ed28a74b064faf151fa4b4c0890e6a1df11312 optional: false category: main source: null - build: nompi_hbf0aa07_103 -- name: libcurl - version: 8.1.2 + build: nompi_h918d9b7_103 +- name: ca-certificates + version: 2023.5.7 manager: conda - platform: osx-64 - dependencies: - krb5: '>=1.20.1,<1.21.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - openssl: '>=3.1.0,<4.0a0' - libssh2: '>=1.10.0,<2.0a0' - zstd: '>=1.5.2,<1.6.0a0' - libnghttp2: '>=1.52.0,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.1.2-hbee3ae8_0.conda + platform: win-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.5.7-h56e8100_0.conda hash: - md5: d51e337da844262f9033c9a26452520f - sha256: 2f81bb06377779ea1abe373a2a89289fb440751ad6f68f947ec0f3b1e4399968 + md5: 604212634bd8c4d6f20d44b946e8eedb + sha256: d0488a3e7a86cc11f8c847a7c12a5f1fb8567f05646faae78944807862f9d167 optional: false category: main source: null - build: hbee3ae8_0 -- name: krb5 - version: 1.20.1 + build: h56e8100_0 +- name: pysocks + version: 1.7.1 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcxx: '>=14.0.6' - openssl: '>=3.0.7,<4.0a0' - libedit: '>=3.1.20191231,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.20.1-h049b76e_0.conda + win_inet_pton: '*' + __win: '*' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2 hash: - md5: db11fa2968ef0837288fe2d7f5b77a50 - sha256: 41cfbf4c5cdb4a32eb5319943113d7ef1edb894ea0a5464233e510b59450c824 + md5: 56cd9fe388baac0e90c7149cfac95b60 + sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7 optional: false category: main source: null - build: h049b76e_0 -- name: libnghttp2 - version: 1.52.0 + build: pyh0701188_6 +- name: brotli + version: 1.0.9 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - c-ares: '>=1.18.1,<2.0a0' - libcxx: '>=14.0.6' - libev: '>=4.33,<4.34.0a0' - openssl: '>=3.0.8,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.52.0-he2ab024_0.conda + ucrt: '>=10.0.20348.0' + vs2015_runtime: '>=14.29.30139' + libbrotlienc: ==1.0.9 hcfcfb64_8 + brotli-bin: ==1.0.9 hcfcfb64_8 + vc: '>=14.2,<15' + libbrotlidec: ==1.0.9 hcfcfb64_8 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-1.0.9-hcfcfb64_8.tar.bz2 hash: - md5: 12ac7d100bf260263e30a019517f42a2 - sha256: 093e4f3f62b3b07befa403e84a1f550cffe3b3961e435d42a75284f44be5f68a + md5: 2e661f21e1741c11506bdc7226e6b0bc + sha256: 6d2fc2f147c9fc6685124d984089683988729463193578ba1d62f80263bce3c5 optional: false category: main source: null - build: he2ab024_0 -- name: libaec - version: 1.0.6 + build: hcfcfb64_8 +- name: brotli-bin + version: 1.0.9 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.0.6-hf0c8a7f_1.conda + ucrt: '>=10.0.20348.0' + vs2015_runtime: '>=14.29.30139' + libbrotlienc: ==1.0.9 hcfcfb64_8 + vc: '>=14.2,<15' + libbrotlidec: ==1.0.9 hcfcfb64_8 + url: https://conda.anaconda.org/conda-forge/win-64/brotli-bin-1.0.9-hcfcfb64_8.tar.bz2 hash: - md5: 7c0f82f435ab4c48d65dc9b28db2ad9e - sha256: 38d32f4c7efddc204e53f43cd910122d3e6a997de1a3cd15f263217b225a9cdf + md5: e18b70ed349d96086fd60a9c642b1b58 + sha256: e8b55a51cb907f336c6f308d5d052483b0cad6a8b09040b811a7f12f4f199d67 optional: false category: main source: null - build: hf0c8a7f_1 -- name: ca-certificates - version: 2023.5.7 + build: hcfcfb64_8 +- name: libbrotlidec + version: 1.0.9 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.5.7-h8857fd0_0.conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + libbrotlicommon: ==1.0.9 hcfcfb64_8 + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlidec-1.0.9-hcfcfb64_8.tar.bz2 hash: - md5: b704e4b79ba0d887c4870b7b09d6a4df - sha256: a06c9c788de81da3a3868ac56781680cc1fc50a0b5a545d4453818975c141b2c + md5: 99839d9d81f33afa173c0fa82a702038 + sha256: 66814b8c0235bcc9124d32cb4b99845bcb2af0eba1d2ba609a501a6d8194e9a0 optional: false category: main source: null - build: h8857fd0_0 -- name: pysocks - version: 1.7.1 + build: hcfcfb64_8 +- name: libbrotlienc + version: 1.0.9 manager: conda - platform: osx-64 + platform: win-64 dependencies: - __unix: '*' - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 + ucrt: '>=10.0.20348.0' + libbrotlicommon: ==1.0.9 hcfcfb64_8 + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlienc-1.0.9-hcfcfb64_8.tar.bz2 hash: - md5: 2a7de29fb590ca14b5243c4c812c8025 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b + md5: 88e62627120c20289bf8982b15e0a6a1 + sha256: 3abf0f0b124d54ad892bd74fe77089a712d6dad81a04583331a58728c58a69e0 optional: false category: main source: null - build: pyha2e5f31_6 -- name: brotli + build: hcfcfb64_8 +- name: libbrotlicommon version: 1.0.9 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libbrotlidec: ==1.0.9 hb7f2c08_8 - brotli-bin: ==1.0.9 hb7f2c08_8 - libbrotlienc: ==1.0.9 hb7f2c08_8 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.0.9-hb7f2c08_8.tar.bz2 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libbrotlicommon-1.0.9-hcfcfb64_8.tar.bz2 hash: - md5: 55f612fe4a9b5f6ac76348b6de94aaeb - sha256: 1272426370f1e8db1a8b245a7b522afe27413b09eab169990512a7676b802e3b + md5: e8078e37208cd7d3e1eb5053f370ded8 + sha256: 0e771d447108219f43de770f7ca9428b2e3b5a4fd08475a27ac442ad310cb684 optional: false category: main source: null - build: hb7f2c08_8 -- name: brotli-bin - version: 1.0.9 + build: hcfcfb64_8 +- name: pthreads-win32 + version: 2.9.1 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libbrotlienc: ==1.0.9 hb7f2c08_8 - libbrotlidec: ==1.0.9 hb7f2c08_8 - url: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.0.9-hb7f2c08_8.tar.bz2 + vc: 14.* + url: https://conda.anaconda.org/conda-forge/win-64/pthreads-win32-2.9.1-hfa6e2cd_3.tar.bz2 hash: - md5: aac5ad0d8f747ef7f871508146df75d9 - sha256: 36f79eb26da032c5d1ddc11e0bcac5526f249bf60d332e4743c8d48bb7334db0 + md5: e2da8758d7d51ff6aa78a14dfb9dbed4 + sha256: 576a228630a72f25d255a5e345e5f10878e153221a96560f2498040cd6f54005 optional: false category: main source: null - build: hb7f2c08_8 -- name: libbrotlidec - version: 1.0.9 + build: hfa6e2cd_3 +- name: libcurl + version: 8.1.2 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libbrotlicommon: ==1.0.9 hb7f2c08_8 - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.0.9-hb7f2c08_8.tar.bz2 + libssh2: '>=1.10.0,<2.0a0' + ucrt: '>=10.0.20348.0' + vc14_runtime: '>=14.29.30139' + krb5: '>=1.20.1,<1.21.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + url: https://conda.anaconda.org/conda-forge/win-64/libcurl-8.1.2-h68f0423_0.conda hash: - md5: 7f952a036d9014b4dab96c6ea0f8c2a7 - sha256: 52d8e8929b2476cf13fd397d88cefd911f805de00e77090fdc50b8fb11c372ca + md5: 94b9b7d0e882461fdb72d8d4e7441746 + sha256: a9d21b363c6d3c81ec85903f86989157e7d93d8f247e023ff3b3f69789115a72 optional: false category: main source: null - build: hb7f2c08_8 -- name: libbrotlienc - version: 1.0.9 + build: h68f0423_0 +- name: libaec + version: 1.0.6 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libbrotlicommon: ==1.0.9 hb7f2c08_8 - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.0.9-hb7f2c08_8.tar.bz2 + ucrt: '>=10.0.20348.0' + vc: '>=14.2,<15' + vs2015_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libaec-1.0.6-h63175ca_1.conda hash: - md5: b36a3bfe866d9127f25f286506982166 - sha256: be7e794c6208e7e12982872922df13fbf020ab594d516b7bc306a384ac7d3ac6 + md5: f98474a8245f55f4a273889dbe7bf193 + sha256: 441f580f90279bd62bd27fb82d0bbbb2c2d9f850fcc4c8781f199c5287cd1499 optional: false category: main source: null - build: hb7f2c08_8 -- name: libbrotlicommon - version: 1.0.9 + build: h63175ca_1 +- name: win_inet_pton + version: 1.1.0 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.0.9-hb7f2c08_8.tar.bz2 + platform: win-64 + dependencies: + __win: '*' + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2 hash: - md5: 37157d273eaf3bc7d6862104161d9ec9 - sha256: c983101653f5bffea605c4423d84fd5ca28ee36b290cdb6207ec246e293f7d94 + md5: 30878ecc4bd36e8deeea1e3c151b2e0b + sha256: a11ae693a0645bf6c7b8a47bac030be9c0967d0b1924537b9ff7458e832c0511 optional: false category: main source: null - build: hb7f2c08_8 -- name: c-ares - version: 1.19.1 + build: pyhd8ed1ab_6 +- name: libssh2 + version: 1.11.0 manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.19.1-h0dc2134_0.conda + platform: win-64 + dependencies: + ucrt: '>=10.0.20348.0' + openssl: '>=3.1.1,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + vc: '>=14.2,<15' + vc14_runtime: '>=14.29.30139' + url: https://conda.anaconda.org/conda-forge/win-64/libssh2-1.11.0-h7dfc565_0.conda hash: - md5: b3e62631b4e1b9801477523ce1d6f355 - sha256: 1de09d540facc3833e3f0a280ae987859f310f535726eff66d6f4a66045bd32c + md5: dc262d03aae04fe26825062879141a41 + sha256: 813fd04eed2a2d5d9c36e53c554f9c1f08e9324e2922bd60c9c52dbbed2dbcec optional: false category: main source: null - build: h0dc2134_0 -- name: libev - version: '4.33' + build: h7dfc565_0 +- name: vc + version: '14.3' manager: conda - platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2 + platform: win-64 + dependencies: + vc14_runtime: '>=14.32.31332' + url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hb25d44b_16.conda hash: - md5: 79dc2be110b2a3d1e97ec21f691c50ad - sha256: c4154d424431898d84d6afb8b32e3ba749fe5d270d322bb0af74571a3cb09c6b + md5: ea326b37e3bd6d2616988e09f3a9396c + sha256: 29bc108d66150ca75cab937f844f4ac4a836beb6ea3ee167d03c611444bb2a82 optional: false category: main source: null - build: haf1e3a3_1 -- name: libssh2 - version: 1.11.0 + build: hb25d44b_16 +- name: libvorbis + version: 1.3.7 manager: conda - platform: osx-64 + platform: win-64 dependencies: - openssl: '>=3.1.1,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda + vs2015_runtime: '>=14.16.27012' + vc: '>=14.1,<15.0a0' + libogg: '>=1.3.4,<1.4.0a0' + url: https://conda.anaconda.org/conda-forge/win-64/libvorbis-1.3.7-h0e60522_0.tar.bz2 hash: - md5: ca3a72efba692c59a90d4b9fc0dfe774 - sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 + md5: e1a22282de0169c93e4ffe6ce6acc212 + sha256: 6cdc018a024908270205d8512d92f92cf0adaaa5401c2b403757189b138bf56a optional: false category: main source: null - build: hd019ec5_0 -- name: graphite2 - version: 1.3.13 + build: h0e60522_0 +- name: libogg + version: 1.3.4 manager: conda - platform: osx-64 + platform: win-64 dependencies: - libcxx: '>=10.0.1' - url: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h2e338ed_1001.tar.bz2 + vc: '>=14.1,<15.0a0' + vs2015_runtime: '>=14.16.27012' + url: https://conda.anaconda.org/conda-forge/win-64/libogg-1.3.4-h8ffe710_1.tar.bz2 hash: - md5: 5f6e7f98caddd0fc2d345b207531814c - sha256: 1dba68533e6888c5e2a7e37119a77d6f388fb82721c530ba3bd28d541828e59b + md5: 04286d905a0dcb7f7d4a12bdfe02516d + sha256: ef20f04ad2121a07e074b34bfc211587df18180e680963f5c02c54d1951b9ee6 optional: false category: main source: null - build: h2e338ed_1001 -- name: libgfortran - version: 5.0.0 + build: h8ffe710_1 +- name: python + version: 3.10.11 manager: conda platform: osx-64 dependencies: - libgfortran5: '*' - url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-11_3_0_h97931a8_31.conda + tzdata: '*' + openssl: '>=3.1.0,<4.0a0' + readline: '>=8.2,<9.0a0' + libffi: '>=3.4,<4.0a0' + libsqlite: '>=3.41.2,<4.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + xz: '>=5.2.6,<6.0a0' + tk: '>=8.6.12,<8.7.0a0' + bzip2: '>=1.0.8,<2.0a0' + ncurses: '>=6.3,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/python-3.10.11-he7542f4_0_cpython.conda hash: - md5: 97451338600bd9c5b535eb224ef6c471 - sha256: 55d3c81ce8cd931260c3cb8c85868e36223d2bd0d5e2f35a79503810ee172769 + md5: ec1a9528837c5fcd34f387e317b30f1e + sha256: 6e5ed21b0d491e791cbdf0f1361d306173dcd0f25b65b5d2881d12a500d2e128 optional: false category: main source: null - build: 11_3_0_h97931a8_31 -- name: bzip2 - version: 1.0.8 + build: he7542f4_0_cpython +- name: readline + version: '8.2' manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 + dependencies: + ncurses: '>=6.3,<7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda hash: - md5: 37edc4e6304ca87316e160f5ca0bd1b5 - sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 + md5: f17f77f2acf4d344734bda76829ce14e + sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568 optional: false category: main source: null - build: h0d85af4_4 -- name: libedit - version: 3.1.20191231 + build: h9e318b2_1 +- name: tk + version: 8.6.12 manager: conda platform: osx-64 dependencies: - ncurses: '>=6.2,<7.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + libzlib: '>=1.2.11,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2 hash: - md5: 6016a8a1d0e63cac3de2c352cd40208b - sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 + md5: 8e9480d9c47061db2ed1b4ecce519a7f + sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6 optional: false category: main source: null - build: h0678c8f_2 -- name: libunistring - version: 0.9.10 + build: h5dbffcc_0 +- name: xz + version: 5.2.6 manager: conda platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/libunistring-0.9.10-h0d85af4_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2 hash: - md5: 40f27dc16f73256d7b93e53c4f03d92f - sha256: c5805a58cd2b211bffdc8b7cdeba9af3cee456196ab52ab9a30e0353bc95beb7 + md5: a72f9d4ea13d55d745ff1ed594747f10 + sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8 optional: false category: main source: null - build: h0d85af4_0 -- name: fribidi - version: 1.0.10 + build: h775f41a_0 +- name: requests + version: 2.31.0 manager: conda platform: osx-64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2 + dependencies: + certifi: '>=2017.4.17' + python: '>=3.7' + charset-normalizer: '>=2,<4' + urllib3: '>=1.21.1,<3' + idna: '>=2.5,<4' + url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda hash: - md5: f1c6b41e0f56998ecd9a3e210faa1dc0 - sha256: 4f6db86ecc4984cd4ac88ca52030726c3cfd11a64dfb15c8602025ee3001a2b5 + md5: a30144e4156cdbb236f99ebb49828f8b + sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad optional: false category: main source: null - build: hbcb3906_0 + build: pyhd8ed1ab_0 - name: opencv version: 4.7.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libopencv: ==4.7.0 py310h7a1b33c_4 - py-opencv: ==4.7.0 py310h69fb684_4 + py-opencv: ==4.7.0 py310ha188af9_4 python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-arm64/opencv-4.7.0-py310hb6292c7_4.conda + libopencv: ==4.7.0 py310h41d2c2e_4 + url: https://conda.anaconda.org/conda-forge/osx-64/opencv-4.7.0-py310h2ec42d9_4.conda hash: - md5: ecb764ec6bb90a0cf808f80c38ca56eb - sha256: 54e0774bf4437d1887f648e0705cca475cd9480ce365b3831b489c6c5df6ecdb + md5: 42a21413857500f77d8594a241eda29b + sha256: 7775a260ed830c3d5c8989de5fbd09155dcffd34532699451948d8e3cda6e47c optional: false category: main source: null - build: py310hb6292c7_4 + build: py310h2ec42d9_4 - name: libopencv version: 4.7.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - harfbuzz: '>=7.3.0,<8.0a0' - libglib: '>=2.76.2,<3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + libzlib: '>=1.2.13,<1.3.0a0' libprotobuf: '>=3.21.12,<3.22.0a0' - hdf5: '>=1.14.0,<1.14.1.0a0' - libwebp-base: '>=1.3.0,<2.0a0' - python: '>=3.10,<3.11.0a0 *_cpython' - libtiff: '>=4.5.0,<4.6.0a0' libcblas: '>=3.9.0,<4.0a0' - libpng: '>=1.6.39,<1.7.0a0' jasper: '>=4.0.0,<5.0a0' - liblapack: '>=3.9.0,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' + harfbuzz: '>=7.3.0,<8.0a0' liblapacke: '>=3.9.0,<4.0a0' + libglib: '>=2.76.2,<3.0a0' freetype: '>=2.12.1,<3.0a0' - libcxx: '>=15.0.7' + hdf5: '>=1.14.0,<1.14.1.0a0' + libwebp-base: '>=1.3.0,<2.0a0' libjpeg-turbo: '>=2.1.5.1,<3.0a0' - ffmpeg: '>=5.1.2,<6.0a0' + liblapack: '>=3.9.0,<4.0a0' + libcxx: '>=15.0.7' + ffmpeg: '>=6.0.0,<7.0a0' + libtiff: '>=4.5.0,<4.6.0a0' numpy: '>=1.21.6,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libopencv-4.7.0-py310h7a1b33c_4.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libopencv-4.7.0-py310h41d2c2e_4.conda hash: - md5: 0b577b07c4190191aadde49ec88e149f - sha256: 70ebe2d15df76a254550e953a297b6dd6117f5bf119fa70fe2e5323c25ca6d97 + md5: 13501a4aa7542f0d3e0eedeb84890daf + sha256: 0610823c65d78e5d23ed311bdbb6be8af6c530657fdbef161b9b8691b2335cd3 optional: false category: main source: null - build: py310h7a1b33c_4 + build: py310h41d2c2e_4 - name: py-opencv version: 4.7.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: numpy: '>=1.21.6,<2.0a0' - libopencv: ==4.7.0 py310h7a1b33c_4 python: '>=3.10,<3.11.0a0' python_abi: 3.10.* *_cp310 - url: https://conda.anaconda.org/conda-forge/osx-arm64/py-opencv-4.7.0-py310h69fb684_4.conda - hash: - md5: 962ccc73d26bc008a9d7a2497769364c - sha256: ead9165b921b08359b8cc4b76c5b20fbe2f39664e27e822c8502807781bb3878 + libopencv: ==4.7.0 py310h41d2c2e_4 + url: https://conda.anaconda.org/conda-forge/osx-64/py-opencv-4.7.0-py310ha188af9_4.conda + hash: + md5: aaafe0f0d7b638c160118fe8d3b4e883 + sha256: 4d8c14e85e5a1079a96817aba9545bd14c4d771eea6b92330ae88478c749befc optional: false category: main source: null - build: py310h69fb684_4 -- name: libzlib - version: 1.2.13 + build: py310ha188af9_4 +- name: libpng + version: 1.6.39 manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h03a7124_4.tar.bz2 + platform: osx-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libpng-1.6.39-ha978bb4_0.conda hash: - md5: 780852dc54c4c07e64b276a97f89c162 - sha256: a1bf4a1c107838fea4570a7f1750306d65d84fcf2913d4e0d30b4db785e8f223 + md5: 35e4928794c5391aec14ffdf1deaaee5 + sha256: 5ad9f5e96e6770bfc8b0a826f48835e7f337c2d2e9512d76027a62f9c120b2a3 optional: false category: main source: null - build: h03a7124_4 + build: ha978bb4_0 - name: harfbuzz version: 7.3.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: + icu: '>=72.1,<73.0a0' libcxx: '>=15.0.7' + graphite2: '*' cairo: '>=1.16.0,<2.0a0' freetype: '>=2.12.1,<3.0a0' - icu: '>=72.1,<73.0a0' libglib: '>=2.76.2,<3.0a0' - graphite2: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/harfbuzz-7.3.0-h46e5fef_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/harfbuzz-7.3.0-h413ba03_0.conda hash: - md5: 5247712cd97eeda510d1436560b13833 - sha256: 29a2eb09dce14b93687660cf0efcdd2fb879a3786bce17ab73e56fbb05b3d26a + md5: 52a090078d890befdd4865270d1164ec + sha256: 694dacf9977452654a920014406db5f4212191abce52191caa3c7cfcd376a5ce optional: false category: main source: null - build: h46e5fef_0 -- name: libpng - version: 1.6.39 + build: h413ba03_0 +- name: libjpeg-turbo + version: 2.1.5.1 manager: conda - platform: osx-arm64 - dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.39-h76d750c_0.conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libjpeg-turbo-2.1.5.1-hb7f2c08_0.conda hash: - md5: 0078e6327c13cfdeae6ff7601e360383 - sha256: 21ab8409a8e66f9408b96428c0a36a9768faee9fe623c56614576f9e12962981 + md5: d7309a152b9b79799063b8bb47e34a3a + sha256: 38288e83201639983d3e158a1e8f638334298a0ca3a59dbb188651c874fd6077 optional: false category: main source: null - build: h76d750c_0 + build: hb7f2c08_0 - name: libwebp-base version: 1.3.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.3.0-h1a8c8d9_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libwebp-base-1.3.0-hb7f2c08_0.conda hash: - md5: c316f1e4a833d49672f1df3bc015a115 - sha256: f863700d96c722414d2406cfa6108f6d363068112b88d6b0a4b92e5724439070 + md5: 18981e4c840126d6118d8952485fea51 + sha256: 5ed0b7f127f578ddd28e3af86af278df8d5341416935a09ae772a57579cbb11b optional: false category: main source: null - build: h1a8c8d9_0 + build: hb7f2c08_0 - name: libprotobuf version: 3.21.12 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: libzlib: '>=1.2.13,<1.3.0a0' libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-3.21.12-hb5ab8b9_0.conda - hash: - md5: 7adb342474af442e3842c422f07fbf68 - sha256: 1ba3f141e7554b0d0998808b2ba270760e3d4b882839bb24a566ce046d58bbc8 - optional: false - category: main - source: null - build: hb5ab8b9_0 -- name: libjpeg-turbo - version: 2.1.5.1 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-2.1.5.1-h1a8c8d9_0.conda - hash: - md5: cd9d6c05ca2e993429a90496ab7e1b99 - sha256: bda32077e0024630b2348dc1eabc21246b999ece3789e45e6f778c378ec77f08 - optional: false - category: main - source: null - build: h1a8c8d9_0 -- name: graphite2 - version: 1.3.13 - manager: conda - platform: osx-arm64 - dependencies: - libcxx: '>=11.0.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/graphite2-1.3.13-h9f76cd9_1001.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/libprotobuf-3.21.12-hbc0c0cd_0.conda hash: - md5: 288b591645cb9cb9c0af7309ac1114f5 - sha256: 57db1e563cdfe469cd453a2988039118e96ce4b77c9219e2f1022be0e1c2b03f + md5: 7a9b17cfb3e57143e4e9118b5244b691 + sha256: d3fbdc0808c4f433903704f943e4b13c079909f994fa157ec75615658d3bab17 optional: false category: main source: null - build: h9f76cd9_1001 + build: hbc0c0cd_0 - name: icu version: '72.1' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-72.1-he12128b_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/icu-72.1-h7336db1_0.conda hash: - md5: d1a11dfc54168a07856dbf87f393ca82 - sha256: 997835c56e899f4717b6707ab0734c27e7cdd8c735c952334314a7c9d59808e1 + md5: c9689510a50a4bb2ae978421671a125e + sha256: 3813b724fa741c63bf15698a716a9b9f4243a469cb658cdd47a1a9a602aa579e optional: false category: main source: null - build: he12128b_0 + build: h7336db1_0 - name: jasper version: 4.0.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: libjpeg-turbo: '>=2.1.5.1,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/jasper-4.0.0-hff9eb24_1.conda - hash: - md5: 9d1caf2aeb5999a065be26807fd71c03 - sha256: f2c4e2719c247379e3010256a2af6ec54da9b2166b59695c3867900670c97b70 - optional: false - category: main - source: null - build: hff9eb24_1 -- name: python - version: 3.10.11 - manager: conda - platform: osx-arm64 - dependencies: - openssl: '>=3.1.0,<4.0a0' - ncurses: '>=6.3,<7.0a0' - tzdata: '*' - tk: '>=8.6.12,<8.7.0a0' - libffi: '>=3.4,<4.0a0' - xz: '>=5.2.6,<6.0a0' - libsqlite: '>=3.41.2,<4.0a0' - readline: '>=8.2,<9.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - bzip2: '>=1.0.8,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.10.11-h3ba56d0_0_cpython.conda - hash: - md5: 96c4e977d33ac768ca95ed9bc1166862 - sha256: 2bfbb1c08001de4f7b144cc132ab238cc83b836006edd6f48fb4c72957795f2f - optional: false - category: main - source: null - build: h3ba56d0_0_cpython -- name: readline - version: '8.2' - manager: conda - platform: osx-arm64 - dependencies: - ncurses: '>=6.3,<7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - hash: - md5: 8cbb776a2f641b943d413b3e19df71f4 - sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884 - optional: false - category: main - source: null - build: h92ec313_1 -- name: tk - version: 8.6.12 - manager: conda - platform: osx-arm64 - dependencies: - libzlib: '>=1.2.11,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/jasper-4.0.0-h794afb9_1.conda hash: - md5: 2cb3d18eac154109107f093860bd545f - sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4 + md5: 8bc3ad165a3b99166b995d5a1529b1e5 + sha256: 1725f9a02ec13010b5cf9e708f9d8b6d1b31b235c80a3130436e807e99da13b4 optional: false category: main source: null - build: he1e0b03_0 -- name: xz - version: 5.2.6 + build: h794afb9_1 +- name: libcxx + version: 16.0.6 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda hash: - md5: 39c6b54e94014701dd157f4f576ed211 - sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec + md5: 7d6972792161077908b62971802f289a + sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549 optional: false category: main source: null - build: h57fd34a_0 -- name: requests - version: 2.31.0 + build: hd57cbcb_0 +- name: libzlib + version: 1.2.13 manager: conda - platform: osx-arm64 - dependencies: - idna: '>=2.5,<4' - charset-normalizer: '>=2,<4' - certifi: '>=2017.4.17' - urllib3: '>=1.21.1,<3' - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda hash: - md5: a30144e4156cdbb236f99ebb49828f8b - sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad + md5: 4a3ad23f6e16f99c04e166767193d700 + sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867 optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: certifi - version: 2023.5.7 + build: h8a1eda9_5 +- name: python_abi + version: '3.10' manager: conda - platform: osx-arm64 - dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.10-3_cp310.conda hash: - md5: 5d1b71c942b8421285934dad1d891ebc - sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 + md5: 42da9b0138e911cd5b2f75b0278e26dc + sha256: 0a66852c47be6b28b70bde29891a71d047730c723355d44b0da48db79fb99eb1 optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: idna - version: '3.4' + build: 3_cp310 +- name: numpy + version: 1.25.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - python: '>=3.6' - url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 + libcblas: '>=3.9.0,<4.0a0' + libcxx: '>=15.0.7' + liblapack: '>=3.9.0,<4.0a0' + python: '>=3.10,<3.11.0a0' + python_abi: 3.10.* *_cp310 + libblas: '>=3.9.0,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/numpy-1.25.0-py310h7451ae0_0.conda hash: - md5: 34272b248891bddccc64479f9a7fffed - sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 + md5: 9accbca17b11eed20ee32b57189e9e66 + sha256: b897d4d4ab581a22faba563c38981114bf16eb0eecc906b20421c96299def30f optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: urllib3 - version: 2.0.3 + build: py310h7451ae0_0 +- name: libtiff + version: 4.5.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - brotli: '>=1.0.9' - pysocks: '>=1.5.6,<2.0,!=1.5.7' - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_0.conda + libdeflate: '>=1.18,<1.19.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + libwebp-base: '>=1.3.0,<2.0a0' + libjpeg-turbo: '>=2.1.5.1,<3.0a0' + xz: '>=5.2.6,<6.0a0' + libcxx: '>=15.0.7' + lerc: '>=4.0.0,<5.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libtiff-4.5.1-hf955e92_0.conda hash: - md5: ae465d0fbf9f1979cb2d8d4043d885e2 - sha256: 91d999539132f4b04091642df62b51c63c8a1fd61ecdff1ed704fc11405f9a34 + md5: 56523ed556e3a44c0fd55bcf17045892 + sha256: 0526690c890b53419e6bbbe17dfc456789897ce9d7d79db3c4ea6568848bf6d0 optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: charset-normalizer - version: 3.1.0 + build: hf955e92_0 +- name: lerc + version: 4.0.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - python: '>=3.7' - url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda + libcxx: '>=13.0.1' + url: https://conda.anaconda.org/conda-forge/osx-64/lerc-4.0.0-hb486fe8_0.tar.bz2 hash: - md5: 7fcff9f6f123696e940bda77bd4d6551 - sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 + md5: f9d6a4c82889d5ecedec1d90eb673c55 + sha256: e41790fc0f4089726369b3c7f813117bbc14b533e0ed8b94cf75aba252e82497 optional: false category: main source: null - build: pyhd8ed1ab_0 -- name: libcxx - version: 16.0.5 + build: hb486fe8_0 +- name: libdeflate + version: '1.18' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.5-h4653b0c_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libdeflate-1.18-hac1461d_0.conda hash: - md5: d36fb4372ff02b2d1596366ee1d984bc - sha256: 14452e6dab03eb5260101cca926b4b96764f28726e5965067d0ba0101949e9e4 + md5: 3d131584456b277ce0871e6481fde49b + sha256: b985178bc45f83259c99026d988448277e17171801945769396e2577ce59778c optional: false category: main source: null - build: h4653b0c_0 -- name: freetype - version: 2.12.1 + build: hac1461d_0 +- name: ffmpeg + version: 6.0.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: + libxml2: '>=2.11.4,<2.12.0a0' + openh264: '>=2.3.1,<2.3.2.0a0' + dav1d: '>=1.2.1,<1.2.2.0a0' + svt-av1: '>=1.6.0,<1.6.1.0a0' + x265: '>=3.5,<3.6.0a0' libzlib: '>=1.2.13,<1.3.0a0' - libpng: '>=1.6.39,<1.7.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hd633e50_1.conda + x264: '>=1!164.3095,<1!165' + aom: '>=3.5.0,<3.6.0a0' + gnutls: '>=3.7.8,<3.8.0a0' + libopus: '>=1.3.1,<2.0a0' + lame: '>=3.100,<3.101.0a0' + gmp: '>=6.2.1,<7.0a0' + libvpx: '>=1.13.0,<1.14.0a0' + freetype: '>=2.12.1,<3.0a0' + libass: '>=0.17.1,<0.17.2.0a0' + libiconv: '>=1.17,<2.0a0' + fontconfig: '>=2.14.2,<3.0a0' + bzip2: '>=1.0.8,<2.0a0' + libcxx: '>=15.0.7' + fonts-conda-ecosystem: '*' + url: https://conda.anaconda.org/conda-forge/osx-64/ffmpeg-6.0.0-gpl_h74aebd8_103.conda hash: - md5: 33ea6326e26d1da25eb8dfa768195b82 - sha256: 9f20ac782386cca6295cf02a07bbc6aedc4739330dc9caba242630602a9ab7f4 + md5: baf9e63c7fe2153fcf1852344edd4049 + sha256: 3497c83f03a2f1971ba8da622073d8df8e993bc3dc59d575732fefc46bd1b908 optional: false category: main source: null - build: hd633e50_1 -- name: libglib - version: 2.76.3 + build: gpl_h74aebd8_103 +- name: fonts-conda-ecosystem + version: '1' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - gettext: '>=0.21.1,<1.0a0' - libffi: '>=3.4,<4.0a0' - libcxx: '>=15.0.7' - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - pcre2: '>=10.40,<10.41.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.76.3-h24e9cb9_0.conda + fonts-conda-forge: '*' + url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 hash: - md5: 30b160e9e8ca46b28491ca85eab61dce - sha256: 5b31f80d89224fbfbd0c46b313f6a8d3c43f20f2ae57613cd25d46524a3ca23d + md5: fee5683a3f04bd15cbd8318b096a27ab + sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 optional: false category: main source: null - build: h24e9cb9_0 + build: '0' - name: libiconv version: '1.17' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2 hash: - md5: 686f9c755574aa221f29fbcf36a67265 - sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec + md5: 691d103d11180486154af49c037b7ed9 + sha256: 4a3294037d595754f7da7c11a41f3922f995aaa333f3cb66f02d8afa032a7bc2 optional: false category: main source: null - build: he4db4b2_0 -- name: gettext - version: 0.21.1 + build: hac89ed1_0 +- name: gnutls + version: 3.7.8 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libiconv: '>=1.17,<2.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2 + p11-kit: '>=0.24.1,<0.25.0a0' + gettext: '>=0.19.8.1,<1.0a0' + libidn2: '>=2,<3.0a0' + libcxx: '>=14.0.4' + nettle: '>=3.8.1,<3.9.0a0' + libtasn1: '>=4.19.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/gnutls-3.7.8-h207c4f0_0.tar.bz2 hash: - md5: 63d2ff6fddfa74e5458488fd311bf635 - sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e + md5: 3886476538060824c0258316fd5bb828 + sha256: dc309e4c24689deb19596a745e0a31519adcf65c16bc349e23c140ee6ffb8f94 optional: false category: main source: null - build: h0186832_0 -- name: pcre2 - version: '10.40' + build: h207c4f0_0 +- name: gmp + version: 6.2.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - bzip2: '>=1.0.8,<2.0a0' - libzlib: '>=1.2.12,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2 + libcxx: '>=10.0.1' + url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2 hash: - md5: 721b7288270bafc83586b0f01c2a67f2 - sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe + md5: dedc96914428dae572a39e69ee2a392f + sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00 optional: false category: main source: null - build: hb34f9b4_0 -- name: cairo - version: 1.16.0 + build: h2e338ed_0 +- name: aom + version: 3.5.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - fonts-conda-ecosystem: '*' + libcxx: '>=14.0.4' + url: https://conda.anaconda.org/conda-forge/osx-64/aom-3.5.0-hf0c8a7f_0.tar.bz2 + hash: + md5: 9110390ac33346f643e26051a92de5ce + sha256: 16ccdf58e3b8b3f446d53780964730e51c57ef11f87b64a4535d9f5a8904f39c + optional: false + category: main + source: null + build: hf0c8a7f_0 +- name: libvpx + version: 1.13.0 + manager: conda + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/libvpx-1.13.0-hf0c8a7f_0.conda + hash: + md5: 6653556a8cf960fcf5a325b784bb746b + sha256: 2b44fa140498b43b9dea56318bff46ad14b91b32598406daefed58d485464dbc + optional: false + category: main + source: null + build: hf0c8a7f_0 +- name: libxml2 + version: 2.11.4 + manager: conda + platform: osx-64 + dependencies: + xz: '>=5.2.6,<6.0a0' icu: '>=72.1,<73.0a0' + libiconv: '>=1.17,<2.0a0' libzlib: '>=1.2.13,<1.3.0a0' - zlib: '*' - pixman: '>=0.40.0,<1.0a0' - libpng: '>=1.6.39,<1.7.0a0' - libglib: '>=2.76.2,<3.0a0' - freetype: '>=2.12.1,<3.0a0' - fontconfig: '>=2.14.2,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.16.0-h1e71087_1016.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.11.4-hd95e348_0.conda hash: - md5: be77f5630cabe6a116a033f6fd241aa2 - sha256: 318cad8770aa5aa14a5808e1d6b39458e11d2c2411254e795269986467f864ea + md5: 681f8dda25e73a830d774a37b9839c85 + sha256: d113eeafcbbb4ee5086b31b45adac5818394dc9759e3e1d9fb95114a852ef535 optional: false category: main source: null - build: h1e71087_1016 -- name: zlib - version: 1.2.13 + build: hd95e348_0 +- name: svt-av1 + version: 1.6.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libzlib: ==1.2.13 h03a7124_4 - url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h03a7124_4.tar.bz2 + libcxx: '>=15.0.7' + url: https://conda.anaconda.org/conda-forge/osx-64/svt-av1-1.6.0-he965462_0.conda hash: - md5: 34161cff4e29cc45e536abf2f13fd6b4 - sha256: 48844c5c911e2ef69571d6ef7181dcfae68df296c546662cb54057baed008949 + md5: 2e23427eeac191baf4fec0f4be59e672 + sha256: af586b431be5391c0923857fbf656ea5cbdd9a6a4909b6cdf41e3a8a384f067c optional: false category: main source: null - build: h03a7124_4 + build: he965462_0 - name: fontconfig version: 2.14.2 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: freetype: '>=2.12.1,<3.0a0' - expat: '>=2.5.0,<3.0a0' libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/fontconfig-2.14.2-h82840c6_0.conda + expat: '>=2.5.0,<3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/fontconfig-2.14.2-h5bb23bf_0.conda hash: - md5: f77d47ddb6d3cc5b39b9bdf65635afbb - sha256: 7094917fc6758186e17c61d8ee8fd2bbbe9f303b4addac61d918fa415c497e2b + md5: 86cc5867dfbee4178118392bae4a3c89 + sha256: f63e6d1d6aef8ba6de4fc54d3d7898a153479888d40ffdf2e4cfad6f92679d34 optional: false category: main source: null - build: h82840c6_0 -- name: pixman - version: 0.40.0 + build: h5bb23bf_0 +- name: dav1d + version: 1.2.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.40.0-h27ca646_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/dav1d-1.2.1-h0dc2134_0.conda hash: - md5: 0cedfe37c9aee28f5e926a870965466a - sha256: a3bde72b3f9344ede1a189612d997f775b503a8eec61fb9720d18551f3c71080 + md5: 9d88733c715300a39f8ca2e936b7808d + sha256: ec71a835866b42e946cd2039a5f7a6458851a21890d315476f5e66790ac11c96 optional: false category: main source: null - build: h27ca646_0 -- name: fonts-conda-ecosystem - version: '1' + build: h0dc2134_0 +- name: libass + version: 0.17.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - fonts-conda-forge: '*' - url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-ecosystem-1-0.tar.bz2 + libexpat: '>=2.5.0,<3.0a0' + fontconfig: '>=2.14.2,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + fonts-conda-ecosystem: '*' + freetype: '>=2.12.1,<3.0a0' + fribidi: '>=1.0.10,<2.0a0' + harfbuzz: '>=7.2.0,<8.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libass-0.17.1-h66d2fa1_0.conda hash: - md5: fee5683a3f04bd15cbd8318b096a27ab - sha256: a997f2f1921bb9c9d76e6fa2f6b408b7fa549edd349a77639c9fe7a23ea93e61 + md5: 750ab3799a34f450ae49b9cc1e5b975b + sha256: 1052006a363a06e74f1633f5e1c54964120049383e6bdf384a8ebb30fa4ca12d optional: false category: main source: null - build: '0' + build: h66d2fa1_0 - name: fonts-conda-forge version: '1' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: + font-ttf-ubuntu: '*' font-ttf-inconsolata: '*' - font-ttf-source-code-pro: '*' font-ttf-dejavu-sans-mono: '*' - font-ttf-ubuntu: '*' + font-ttf-source-code-pro: '*' url: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2 - hash: - md5: f766549260d6815b0c52253f1fb1bb29 - sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 - optional: false - category: main - source: null - build: '0' -- name: font-ttf-dejavu-sans-mono - version: '2.37' - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 - hash: - md5: 0c96522c6bdaed4b1566d11387caaf45 - sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b - optional: false - category: main - source: null - build: hab24e00_0 -- name: font-ttf-ubuntu - version: '0.83' - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 - hash: - md5: 19410c3df09dfb12d1206132a1d357c5 - sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e + hash: + md5: f766549260d6815b0c52253f1fb1bb29 + sha256: 53f23a3319466053818540bcdf2091f253cbdbab1e0e9ae7b9e509dcaa2a5e38 optional: false category: main source: null - build: hab24e00_0 -- name: ncurses - version: '6.4' + build: '0' +- name: nettle + version: 3.8.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/nettle-3.8.1-h96f3785_1.tar.bz2 hash: - md5: 318337fb9d0c53ba635efb7888242373 - sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780 + md5: 99558b9df4c337a0bf82bc8e0090533a + sha256: d8b3ffa9595e04a28c7cecb482548c868ec1d5d1937a40ac508ff97d0343d3dc optional: false category: main source: null - build: h7ea286d_0 -- name: python_abi - version: '3.10' + build: h96f3785_1 +- name: libtasn1 + version: 4.19.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.10-3_cp310.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libtasn1-4.19.0-hb7f2c08_0.tar.bz2 hash: - md5: 3f2b2974db21a33a2f45b0c9abbb7516 - sha256: 3f23b0e1656682b0ad1ded4810ba269b610299091c36cf5d516e2dc1162695de + md5: 73f67fb011b4477b101a95a082c74f0a + sha256: 4197c155fb460fae65288c6c098c39f22495a53838356d29b79b31b8e33486dc optional: false category: main source: null - build: 3_cp310 -- name: numpy - version: 1.24.3 + build: hb7f2c08_0 +- name: p11-kit + version: 0.24.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libcblas: '>=3.9.0,<4.0a0' - python_abi: 3.10.* *_cp310 - libblas: '>=3.9.0,<4.0a0' - liblapack: '>=3.9.0,<4.0a0' - libcxx: '>=15.0.7' - python: '>=3.10,<3.11.0a0 *_cpython' - url: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.24.3-py310haa1e00c_0.conda + libffi: '>=3.4.2,<3.5.0a0' + libtasn1: '>=4.18.0,<5.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/p11-kit-0.24.1-h65f8906_0.tar.bz2 hash: - md5: a39e1c3385721ded7f1c227b9da17a4a - sha256: b50c81d41d62c57828b91d55d89d46d30a3713c0ecee95dc8f2bfe893965b60a + md5: e936a0ee28be948846108582f00e2d61 + sha256: e16fbaadb2714c0965cb76de32fe7d13a21874cec02c97efef8ac51f4fda86fc optional: false category: main source: null - build: py310haa1e00c_0 -- name: ffmpeg - version: 5.1.2 + build: h65f8906_0 +- name: libexpat + version: 2.5.0 manager: conda - platform: osx-arm64 - dependencies: - libass: '>=0.17.1,<0.17.2.0a0' - fontconfig: '>=2.14.2,<3.0a0' - gmp: '>=6.2.1,<7.0a0' - freetype: '>=2.12.1,<3.0a0' - svt-av1: '>=1.4.1,<1.4.2.0a0' - lame: '>=3.100,<3.101.0a0' - aom: '>=3.5.0,<3.6.0a0' - dav1d: '>=1.2.1,<1.2.2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libiconv: '>=1.17,<2.0a0' - bzip2: '>=1.0.8,<2.0a0' - libxml2: '>=2.11.4,<2.12.0a0' - openh264: '>=2.3.1,<2.3.2.0a0' - x265: '>=3.5,<3.6.0a0' - x264: '>=1 !164.3095,<1!165' - libvpx: '>=1.13.0,<1.14.0a0' - gnutls: '>=3.7.8,<3.8.0a0' - fonts-conda-ecosystem: '*' - libopus: '>=1.3.1,<2.0a0' - libcxx: '>=15.0.7' - url: https://conda.anaconda.org/conda-forge/osx-arm64/ffmpeg-5.1.2-gpl_he347a24_111.conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda hash: - md5: 5e0adc0b2361129eb0ccf94c9370a10e - sha256: 238063d6455b5109394712da6f195a0c08ec1e8d14cf2ac6fd9f1193e5be2af7 + md5: 6c81cb022780ee33435cca0127dd43c9 + sha256: 80024bd9f44d096c4cc07fb2bac76b5f1f7553390112dab3ad6acb16a05f0b96 optional: false category: main source: null - build: gpl_he347a24_111 -- name: gmp - version: 6.2.1 + build: hf0c8a7f_1 +- name: font-ttf-dejavu-sans-mono + version: '2.37' manager: conda - platform: osx-arm64 - dependencies: - libcxx: '>=11.0.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2 + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-dejavu-sans-mono-2.37-hab24e00_0.tar.bz2 hash: - md5: f8140773b6ca51bf32feec9b4290a8c5 - sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591 + md5: 0c96522c6bdaed4b1566d11387caaf45 + sha256: 58d7f40d2940dd0a8aa28651239adbf5613254df0f75789919c4e6762054403b optional: false category: main source: null - build: h9f76cd9_0 -- name: gnutls - version: 3.7.8 + build: hab24e00_0 +- name: font-ttf-ubuntu + version: '0.83' manager: conda - platform: osx-arm64 - dependencies: - p11-kit: '>=0.24.1,<0.25.0a0' - libtasn1: '>=4.19.0,<5.0a0' - libcxx: '>=14.0.4' - gettext: '>=0.19.8.1,<1.0a0' - nettle: '>=3.8.1,<3.9.0a0' - libidn2: '>=2,<3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/gnutls-3.7.8-h9f1a10d_0.tar.bz2 + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-ubuntu-0.83-hab24e00_0.tar.bz2 hash: - md5: 2367cca5a0451a70d01cff2dd2ce7d3e - sha256: 7b9b69cb2b3134e064b37948a4cd54dee2184a851c0cda5fe52efcfd90ae032d + md5: 19410c3df09dfb12d1206132a1d357c5 + sha256: 470d5db54102bd51dbb0c5990324a2f4a0bc976faa493b22193338adb9882e2e optional: false category: main source: null - build: h9f1a10d_0 -- name: aom - version: 3.5.0 + build: hab24e00_0 +- name: freetype + version: 2.12.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libcxx: '>=14.0.4' - url: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.5.0-h7ea286d_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + libpng: '>=1.6.39,<1.7.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/freetype-2.12.1-h3f81eb7_1.conda hash: - md5: afb32d2a714ef2c3268508fdc85fc7c4 - sha256: 3a238c39da0bb29da396ae9f88655a1a6b05926055539ecc29cef9533671d71c + md5: 852224ea3e8991a8342228eab274840e + sha256: 0aea2b93d0da8bf022501857de93f2fc0e362fabcd83c4579be8d8f5bc3e17cb optional: false category: main source: null - build: h7ea286d_0 -- name: libvpx - version: 1.13.0 + build: h3f81eb7_1 +- name: liblapacke + version: 3.9.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libvpx-1.13.0-h7ea286d_0.conda + libcblas: ==3.9.0 17_osx64_openblas + libblas: ==3.9.0 17_osx64_openblas + liblapack: ==3.9.0 17_osx64_openblas + url: https://conda.anaconda.org/conda-forge/osx-64/liblapacke-3.9.0-17_osx64_openblas.conda hash: - md5: 8030618261e9c2b8670066ecb9701113 - sha256: 371a109830e0140e0f346ff540b12c8ecef7cc9a19767adc648b1eba3c4bd7e5 + md5: 5f3d6e4e634e7f1747bdd3fc35f230e5 + sha256: f05576f58d8923c704967641a67e4079085c4b00e2f9eaec31a282df13a97182 optional: false category: main source: null - build: h7ea286d_0 -- name: libxml2 - version: 2.11.4 + build: 17_osx64_openblas +- name: libblas + version: 3.9.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libiconv: '>=1.17,<2.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - xz: '>=5.2.6,<6.0a0' - icu: '>=72.1,<73.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.11.4-he3bdae6_0.conda + libopenblas: '>=0.3.23,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libblas-3.9.0-17_osx64_openblas.conda hash: - md5: 3741cfda603726c135ffe37bb83e1ca0 - sha256: 8f833df2746b013af73c41621c4b4bf4492de6f4c38352a9b6df21aa0db56ed6 + md5: 65299527582e2449b05d27fcf8352125 + sha256: d2439e4f7bbe0814128d080a01f8435875cc423543184ca0096087308631d73e optional: false category: main source: null - build: he3bdae6_0 -- name: svt-av1 - version: 1.4.1 + build: 17_osx64_openblas +- name: libcblas + version: 3.9.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-1.4.1-h7ea286d_0.conda + libblas: ==3.9.0 17_osx64_openblas + url: https://conda.anaconda.org/conda-forge/osx-64/libcblas-3.9.0-17_osx64_openblas.conda hash: - md5: c249fb2d81c39843166f20b6a69a99c3 - sha256: b868a00e01cf9a5f5f411fc3e82500a22a910e3c916d06d9c443b2cc96aa93c4 + md5: 380151ca00704172b242a63701b7bf8a + sha256: 5c85941b55a8e897e11188ab66900eb3d83c87f6bdd0b88856733f8510fa4c91 optional: false category: main source: null - build: h7ea286d_0 -- name: dav1d - version: 1.2.1 + build: 17_osx64_openblas +- name: liblapack + version: 3.9.0 manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/dav1d-1.2.1-hb547adb_0.conda + platform: osx-64 + dependencies: + libblas: ==3.9.0 17_osx64_openblas + url: https://conda.anaconda.org/conda-forge/osx-64/liblapack-3.9.0-17_osx64_openblas.conda hash: - md5: 5a74cdee497e6b65173e10d94582fae6 - sha256: 93e077b880a85baec8227e8c72199220c7f87849ad32d02c14fb3807368260b8 + md5: 6ab83532872bf3659613638589dd10af + sha256: 7ce76f3e9578b62fbd88c094f343c1b09ec3466afccfc08347d31742e6831e97 optional: false category: main source: null - build: hb547adb_0 -- name: libass - version: 0.17.1 + build: 17_osx64_openblas +- name: libopenblas + version: 0.3.23 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - fribidi: '>=1.0.10,<2.0a0' - harfbuzz: '>=7.2.0,<8.0a0' - libexpat: '>=2.5.0,<3.0a0' - fonts-conda-ecosystem: '*' - fontconfig: '>=2.14.2,<3.0a0' - freetype: '>=2.12.1,<3.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libass-0.17.1-h4da34ad_0.conda + libgfortran: 5.* + libgfortran5: '>=11.3.0' + llvm-openmp: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/libopenblas-0.3.23-openmp_h429af6e_0.conda hash: - md5: 02b4eb2856769fbde130e14d569b18b0 - sha256: b163e49c115ee3ec76083bfbde7162a0e0531fbb64b321d559b4d29d19338c75 + md5: 7000a828e29608e4f57e662b5502d2c9 + sha256: fb1ba347e07145807fb1688c78b115d5eb2f4775d9eb6d991d49cb88eef174b7 optional: false category: main source: null - build: h4da34ad_0 -- name: nettle - version: 3.8.1 + build: openmp_h429af6e_0 +- name: libglib + version: 2.76.3 manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/nettle-3.8.1-h63371fa_1.tar.bz2 + platform: osx-64 + dependencies: + gettext: '>=0.21.1,<1.0a0' + libcxx: '>=15.0.7' + pcre2: '>=10.40,<10.41.0a0' + libffi: '>=3.4,<4.0a0' + libiconv: '>=1.17,<2.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libglib-2.76.3-hc62aa5d_0.conda hash: - md5: 0da3266889a3febbb9840a7a89d29da9 - sha256: 712b4e836060ab26772c343a05d243e7486bb44a39bb5b35f3371e72d7b38a24 + md5: 3687b3c1d257dec787418281cfc58358 + sha256: b9396d779ed9c12e4777500497f87414629e943f2f433d059f3378f8d5d4f57e optional: false category: main source: null - build: h63371fa_1 -- name: libtasn1 - version: 4.19.0 + build: hc62aa5d_0 +- name: gettext + version: 0.21.1 manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libtasn1-4.19.0-h1a8c8d9_0.tar.bz2 + platform: osx-64 + dependencies: + libiconv: '>=1.17,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.21.1-h8a4c099_0.tar.bz2 hash: - md5: c35bc17c31579789c76739486fc6d27a - sha256: 912e96644ea22b49921c71c9c94bcdd2b6463e9313da895c2fcee298a8c0e44c + md5: 1e3aff29ce703d421c43f371ad676cc5 + sha256: 915d3cd2d777b9b3fc2e87a25901b8e4a6aa1b2b33cf2ba54e9e9ed4f6b67d94 optional: false category: main source: null - build: h1a8c8d9_0 -- name: p11-kit - version: 0.24.1 + build: h8a4c099_0 +- name: pcre2 + version: '10.40' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libtasn1: '>=4.18.0,<5.0a0' - libffi: '>=3.4.2,<3.5.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/p11-kit-0.24.1-h29577a5_0.tar.bz2 + libzlib: '>=1.2.12,<1.3.0a0' + bzip2: '>=1.0.8,<2.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.40-h1c4e4bc_0.tar.bz2 hash: - md5: 8f111d56c8c7c1895bde91a942c43d93 - sha256: 3e124859307956f9f390f39c74b9700be4843eaaf56891c4b09da75b1bd5b57f + md5: e0f80c8f3a0352a54eddfe59cd2b25b1 + sha256: 60265b48c96decbea89a19a7bc34be88d9b95d4725fd4dbdae158529c601875a optional: false category: main source: null - build: h29577a5_0 -- name: libexpat - version: 2.5.0 + build: h1c4e4bc_0 +- name: cairo + version: 1.16.0 manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda + platform: osx-64 + dependencies: + icu: '>=72.1,<73.0a0' + libpng: '>=1.6.39,<1.7.0a0' + libglib: '>=2.76.2,<3.0a0' + freetype: '>=2.12.1,<3.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + zlib: '*' + fontconfig: '>=2.14.2,<3.0a0' + fonts-conda-ecosystem: '*' + pixman: '>=0.40.0,<1.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/cairo-1.16.0-h09dd18c_1016.conda hash: - md5: 5a097ad3d17e42c148c9566280481317 - sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381 + md5: 8f188a1368e0d5bcb017493ee83ffaf0 + sha256: d5dec1060a78deb70ddfd89c23ee683699f743fe68f78379dc4834e2553edb37 optional: false category: main source: null - build: hb7217d7_1 -- name: fribidi - version: 1.0.10 + build: h09dd18c_1016 +- name: zlib + version: 1.2.13 manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/fribidi-1.0.10-h27ca646_0.tar.bz2 + platform: osx-64 + dependencies: + libzlib: ==1.2.13 h8a1eda9_5 + url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda hash: - md5: c64443234ff91d70cb9c7dc926c58834 - sha256: 4b37ea851a2cf85edf0a63d2a63266847ec3dcbba4a31156d430cdd6aa811303 + md5: 75a8a98b1c4671c5d2897975731da42d + sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35 optional: false category: main source: null - build: h27ca646_0 -- name: libcblas - version: 3.9.0 + build: h8a1eda9_5 +- name: pixman + version: 0.40.0 manager: conda - platform: osx-arm64 - dependencies: - libblas: ==3.9.0 17_osxarm64_openblas - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-17_osxarm64_openblas.conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/pixman-0.40.0-hbcb3906_0.tar.bz2 hash: - md5: cf6f9ca46e3db6b2437024df14046b48 - sha256: d5828db3a507790582815aaf44d54ed6bb07dfce4fd25f92e34b2eb31378a372 + md5: 09a583a6f172715be21d93aaa1b42d71 + sha256: 50646988679b823958bd99983a9e66fce58a7368fa2bab5712efb5c7ce6199af optional: false category: main source: null - build: 17_osxarm64_openblas -- name: libblas - version: 3.9.0 + build: hbcb3906_0 +- name: x264 + version: 1!164.3095 manager: conda - platform: osx-arm64 - dependencies: - libopenblas: '>=0.3.23,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-17_osxarm64_openblas.conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/x264-1!164.3095-h775f41a_2.tar.bz2 hash: - md5: 2597bd39632ec57ef3f5ac14865dca09 - sha256: 76c68d59491b449b7608fb5e4a86f3c292c01cf487ce47288a22fc7001a6b150 + md5: 23e9c3180e2c0f9449bb042914ec2200 + sha256: de611da29f4ed0733a330402e163f9260218e6ba6eae593a5f945827d0ee1069 optional: false category: main source: null - build: 17_osxarm64_openblas -- name: liblapacke - version: 3.9.0 + build: h775f41a_2 +- name: openh264 + version: 2.3.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - liblapack: ==3.9.0 17_osxarm64_openblas - libcblas: ==3.9.0 17_osxarm64_openblas - libblas: ==3.9.0 17_osxarm64_openblas - url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapacke-3.9.0-17_osxarm64_openblas.conda + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/openh264-2.3.1-hf0c8a7f_2.conda hash: - md5: c134445c3c15c057b58dc74cd295f156 - sha256: 3a0283b21be08080632f097b9f9d6faea2bc097d5ce2ce19dd5769b194076f81 + md5: 989ba22b08353c5ca0e6fba80bcd4321 + sha256: 5f39b97f048d72b149627993072e15d37428338a9fe83600db5d09ae7ca9f7b4 optional: false category: main source: null - build: 17_osxarm64_openblas -- name: liblapack - version: 3.9.0 + build: hf0c8a7f_2 +- name: lame + version: '3.100' manager: conda - platform: osx-arm64 - dependencies: - libblas: ==3.9.0 17_osxarm64_openblas - url: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-17_osxarm64_openblas.conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/lame-3.100-hb7f2c08_1003.tar.bz2 hash: - md5: d93cc56c1467a5bcf6a4c9c0be469114 - sha256: 7e32d178639c5bcaac4b654438aa364eec8a42f108bc592dda8e52a432b0cdb4 + md5: 3342b33c9a0921b22b767ed68ee25861 + sha256: 0f943b08abb4c748d73207594321b53bad47eea3e7d06b6078e0f6c59ce6771e optional: false category: main source: null - build: 17_osxarm64_openblas -- name: libopenblas - version: 0.3.23 + build: hb7f2c08_1003 +- name: x265 + version: '3.5' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - llvm-openmp: '>=14.0.6' - libgfortran: 5.* - libgfortran5: '>=11.3.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.23-openmp_hc731615_0.conda + libcxx: '>=12.0.1' + url: https://conda.anaconda.org/conda-forge/osx-64/x265-3.5-hbb4e6a2_3.tar.bz2 hash: - md5: a40b73e171a91527c79fb1c8b10e3312 - sha256: 7f88475228d306962493a3f1c52637187695f7c9716a68a75e24a8aa910be69a + md5: a3bf3e95b7795871a6734a784400fcea + sha256: 6b6a57710192764d0538f72ea1ccecf2c6174a092e0bc76d790f8ca36bbe90e4 optional: false category: main source: null - build: openmp_hc731615_0 -- name: libtiff - version: 4.5.0 + build: hbb4e6a2_3 +- name: libopus + version: 1.3.1 manager: conda - platform: osx-arm64 - dependencies: - lerc: '>=4.0.0,<5.0a0' - libjpeg-turbo: '>=2.1.5.1,<3.0a0' - zstd: '>=1.5.2,<1.6.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - xz: '>=5.2.6,<6.0a0' - libcxx: '>=14.0.6' - libwebp-base: '>=1.3.0,<2.0a0' - libdeflate: '>=1.18,<1.19.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.5.0-h4f7d55c_6.conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libopus-1.3.1-hc929b4f_1.tar.bz2 hash: - md5: 40c2f9692a179c17488a99e135cd17fa - sha256: c26d28379e585dcdcc6888841135cbe007f1500e270cda9a8c6a4158004f7e1b + md5: 380b9ea5f6a7a277e6c1ac27d034369b + sha256: c126fc225bece591a8f010e95ca7d010ea2d02df9251830bec24a19bf823fc31 optional: false category: main source: null - build: h4f7d55c_6 -- name: lerc - version: 4.0.0 + build: hc929b4f_1 +- name: zstd + version: 1.5.2 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libcxx: '>=13.0.1' - url: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2 + libzlib: '>=1.2.13,<1.3.0a0' + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.2-hbc0c0cd_6.conda hash: - md5: de462d5aacda3b30721b512c5da4e742 - sha256: 6f068bb53dfb6147d3147d981bb851bb5477e769407ad4e6a68edf482fdcb958 + md5: 40a188783d3c425bdccc9ae9104acbb8 + sha256: f845dafb0b488703ce81e25b6f27ed909ee9061b730c172e6b084fcf7156231f optional: false category: main source: null - build: h9a09cb3_0 -- name: libdeflate - version: '1.18' + build: hbc0c0cd_6 +- name: ncurses + version: '6.4' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.18-h1a8c8d9_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda hash: - md5: 73ebca3d8666fcfcf28abd74b39b99eb - sha256: a7ef4fd6ca62619397af4f434e69b96dfbc2c4e13080475719a8371bfd73834a + md5: c3dbae2411164d9b02c69090a9a91857 + sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd optional: false category: main source: null - build: h1a8c8d9_0 -- name: libffi - version: 3.4.2 + build: hf0c8a7f_0 +- name: tzdata + version: 2023c manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 + url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda hash: - md5: 086914b672be056eb70fd4285b6783b6 - sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca + md5: 939e3e74d8be4dac89ce83b20de2492a + sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 optional: false category: main source: null - build: h3422bc3_5 + build: h71feb2d_0 - name: openssl version: 3.1.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: ca-certificates: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.1-h53f4e23_1.conda + url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.1-h8a1eda9_1.conda hash: - md5: 7451b96ed28b5fd02f0df32689327755 - sha256: 898aac8f8753385e9cd378d539364647d1deb9396032b7c1fd8f0f08107e020b + md5: c7822d6ee74e34af1fd74365cfd18983 + sha256: 67855f92bf50f24cbbc44879864d7a040b1f351e95b599cfcf4cc49b2cc3fd08 optional: false category: main source: null - build: h53f4e23_1 -- name: libsqlite - version: 3.42.0 + build: h8a1eda9_1 +- name: libffi + version: 3.4.2 manager: conda - platform: osx-arm64 - dependencies: - libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.42.0-hb31c410_0.conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2 hash: - md5: 6ae1bbf3ae393a45a75685072fffbe8d - sha256: 120913cf0fb694546fbaf95dff211ac5c1e3e91bc69c73350891a05dc106355f + md5: ccb34fb14960ad8b125962d3d79b31a9 + sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f optional: false category: main source: null - build: hb31c410_0 -- name: tzdata - version: 2023c + build: h0d85af4_5 +- name: libsqlite + version: 3.42.0 manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda + platform: osx-64 + dependencies: + libzlib: '>=1.2.13,<1.3.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.42.0-h58db7d2_0.conda hash: - md5: 939e3e74d8be4dac89ce83b20de2492a - sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55 + md5: a7d3b44b7b0c9901ac7813b7a0462893 + sha256: 182689f4b1a5ed638cd615c7774e1a9974842bc127c59173f1d25e31a8795eef optional: false category: main source: null - build: h71feb2d_0 + build: h58db7d2_0 - name: font-ttf-inconsolata version: '3.000' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-inconsolata-3.000-h77eed37_0.tar.bz2 hash: @@ -6625,7 +6623,7 @@ package: - name: font-ttf-source-code-pro version: '2.038' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} url: https://conda.anaconda.org/conda-forge/noarch/font-ttf-source-code-pro-2.038-h77eed37_0.tar.bz2 hash: @@ -6635,424 +6633,427 @@ package: category: main source: null build: h77eed37_0 -- name: pysocks - version: 1.7.1 - manager: conda - platform: osx-arm64 - dependencies: - __unix: '*' - python: '>=3.8' - url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - hash: - md5: 2a7de29fb590ca14b5243c4c812c8025 - sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b - optional: false - category: main - source: null - build: pyha2e5f31_6 -- name: brotli - version: 1.0.9 +- name: certifi + version: 2023.5.7 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libbrotlienc: ==1.0.9 h1a8c8d9_8 - libbrotlidec: ==1.0.9 h1a8c8d9_8 - brotli-bin: ==1.0.9 h1a8c8d9_8 - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-1.0.9-h1a8c8d9_8.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.5.7-pyhd8ed1ab_0.conda hash: - md5: e2a5e381ddd6529eb62e7710270b2ec5 - sha256: f97debd05c2caeeefba22e0b71173f1fff99c1e5e66e6e9caa91c1c66eb59741 + md5: 5d1b71c942b8421285934dad1d891ebc + sha256: f839a6e04d94069f90dd85337ea9108f058dc76771bb469a413f32bb1ba0b256 optional: false category: main source: null - build: h1a8c8d9_8 -- name: brotli-bin - version: 1.0.9 + build: pyhd8ed1ab_0 +- name: idna + version: '3.4' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libbrotlidec: ==1.0.9 h1a8c8d9_8 - libbrotlienc: ==1.0.9 h1a8c8d9_8 - url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-bin-1.0.9-h1a8c8d9_8.tar.bz2 + python: '>=3.6' + url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2 hash: - md5: f212620a4f3606ff8f800b8b1077415a - sha256: d171637710bffc322b35198c03bcfd3d04f454433e845138e5120729f8941996 + md5: 34272b248891bddccc64479f9a7fffed + sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09 optional: false category: main source: null - build: h1a8c8d9_8 -- name: libbrotlidec - version: 1.0.9 + build: pyhd8ed1ab_0 +- name: urllib3 + version: 2.0.3 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libbrotlicommon: ==1.0.9 h1a8c8d9_8 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.0.9-h1a8c8d9_8.tar.bz2 + pysocks: '>=1.5.6,<2.0,!=1.5.7' + python: '>=3.7' + brotli: '>=1.0.9' + url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.3-pyhd8ed1ab_0.conda hash: - md5: 640ea7b788cdd0420409bd8479f023f9 - sha256: a0a52941eb59369a8b33b01b41bcf56efd313850c583f4814e2db59448439880 + md5: ae465d0fbf9f1979cb2d8d4043d885e2 + sha256: 91d999539132f4b04091642df62b51c63c8a1fd61ecdff1ed704fc11405f9a34 optional: false category: main source: null - build: h1a8c8d9_8 -- name: libbrotlienc - version: 1.0.9 + build: pyhd8ed1ab_0 +- name: charset-normalizer + version: 3.1.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libbrotlicommon: ==1.0.9 h1a8c8d9_8 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.0.9-h1a8c8d9_8.tar.bz2 - hash: - md5: 572907b78be867937c258421bc0807a8 - sha256: c5f65062cd41d5f5fd93eadd276885efbe7ce7c9346155852d4f5b619f8a166f - optional: false - category: main - source: null - build: h1a8c8d9_8 -- name: libbrotlicommon - version: 1.0.9 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.0.9-h1a8c8d9_8.tar.bz2 + python: '>=3.7' + url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.1.0-pyhd8ed1ab_0.conda hash: - md5: 84eb0c3c995a865079080d092e4a3c06 - sha256: 1bd70570aee08fe0274dd46879d0b4c36c662c18d3afc03c41c375c84658af88 + md5: 7fcff9f6f123696e940bda77bd4d6551 + sha256: 06cd371fc98f076797d6450f6f337cb679b1060c99680fb7e044591493333194 optional: false category: main source: null - build: h1a8c8d9_8 + build: pyhd8ed1ab_0 - name: libgfortran5 version: 12.2.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: llvm-openmp: '>=8.0.0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-12.2.0-h0eea778_31.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-12.2.0-he409387_31.conda hash: - md5: 244a7665228221cc951d5126b8bc1465 - sha256: 375b6ebafffcc1b0e377559b5ba7cb723634a88b77513ad158982d98ff98c32b + md5: 5a544130e584b1f204ac896ff071d5b3 + sha256: 42ae06bbb3cf7f7c3194482894f4287fad7bc39214d1a0dbf0c43f8efb8d3c1a optional: false category: main source: null - build: h0eea778_31 + build: he409387_31 - name: llvm-openmp - version: 16.0.5 + version: 16.0.6 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.5-h1c12783_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-16.0.6-hff08bdf_0.conda hash: - md5: ca737da88c0732ccce43b67611516c80 - sha256: 8fa97c774bd670d5322b5e891d14f1fbe65704c6b2ca6964302e753b81b4d383 + md5: 39a5227d906f75102bf8586741690128 + sha256: 0fbcf1c9e15dbb22d337063550ebcadbeb96b2a012e633f80255c8c720e4f832 optional: false category: main source: null - build: h1c12783_0 + build: hff08bdf_0 - name: expat version: 2.5.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libexpat: ==2.5.0 hb7217d7_1 - url: https://conda.anaconda.org/conda-forge/osx-arm64/expat-2.5.0-hb7217d7_1.conda + libexpat: ==2.5.0 hf0c8a7f_1 + url: https://conda.anaconda.org/conda-forge/osx-64/expat-2.5.0-hf0c8a7f_1.conda hash: - md5: 624fa0dd6fdeaa650b71a62296fdfedf - sha256: 9f06afbe4604decf6a2e8e7e87f5ca218a3e9049d57d5b3fcd538ca6240d21a0 + md5: e12630038077877cbb6c7851e139c17c + sha256: 15c04a5a690b337b50fb7550cce057d843cf94dd0109d576ec9bc3448a8571d0 optional: false category: main source: null - build: hb7217d7_1 + build: hf0c8a7f_1 - name: libidn2 version: 2.3.4 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: gettext: '>=0.21.1,<1.0a0' libunistring: '>=0,<1.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libidn2-2.3.4-h1a8c8d9_0.tar.bz2 - hash: - md5: 7fdc11b6fd3ea4ce92886df855fc7085 - sha256: 3f2990c33c57559fbf03c5e5b3f3c8e95886548ab4c7fc10314e4514d6632703 - optional: false - category: main - source: null - build: h1a8c8d9_0 -- name: libunistring - version: 0.9.10 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libunistring-0.9.10-h3422bc3_0.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/libidn2-2.3.4-hb7f2c08_0.tar.bz2 hash: - md5: d88e77a4861e20bd96bde6628ee7a5ae - sha256: a1afe12ab199f82f339eae83405d293d197f2485d45346a709703bc7e8299949 + md5: bd109fd705b4ce40a62759129bc4ef5a + sha256: a85127270c37fe2046372d706c44b7c707605dc1f8b97f80e8a1e1978bd3f8f5 optional: false category: main source: null - build: h3422bc3_0 -- name: zstd - version: 1.5.2 + build: hb7f2c08_0 +- name: hdf5 + version: 1.14.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libzlib: '>=1.2.13,<1.3.0a0' + libgfortran: 5.* libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.2-hf913c23_6.conda + libaec: '>=1.0.6,<2.0a0' + libcurl: '>=7.88.1,<9.0a0' + libgfortran5: '>=12.2.0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.8,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/hdf5-1.14.0-nompi_hbf0aa07_103.conda hash: - md5: 8f346953ef63bf5fb482488a659adcf3 - sha256: 018989ba028e76abc332c246002e8f5975ff123c68f6116a30da8009b14ea88d + md5: 90f50d124606a4e62628823b614a2f4c + sha256: 1c57bea7086af82b57d912d806516e432a179c4a46271c1e65bbe39466722e3d optional: false category: main source: null - build: hf913c23_6 -- name: lame - version: '3.100' + build: nompi_hbf0aa07_103 +- name: libcurl + version: 8.1.2 manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2 + platform: osx-64 + dependencies: + libssh2: '>=1.10.0,<2.0a0' + libnghttp2: '>=1.52.0,<2.0a0' + openssl: '>=3.1.0,<4.0a0' + krb5: '>=1.20.1,<1.21.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + zstd: '>=1.5.2,<1.6.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.1.2-hbee3ae8_0.conda hash: - md5: bff0e851d66725f78dc2fd8b032ddb7e - sha256: f40ce7324b2cf5338b766d4cdb8e0453e4156a4f83c2f31bbfff750785de304c + md5: d51e337da844262f9033c9a26452520f + sha256: 2f81bb06377779ea1abe373a2a89289fb440751ad6f68f947ec0f3b1e4399968 optional: false category: main source: null - build: h1a8c8d9_1003 -- name: openh264 - version: 2.3.1 + build: hbee3ae8_0 +- name: krb5 + version: 1.20.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: + libedit: '>=3.1.20191231,<4.0a0' libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/openh264-2.3.1-hb7217d7_2.conda - hash: - md5: 6ce0517e73640933cf5916deb21d4f23 - sha256: 36c6dc71bb10245ed93f3cb13280948cc8c6ca525f1639aac9d541726e4c80af - optional: false - category: main - source: null - build: hb7217d7_2 -- name: x264 - version: 1!164.3095 - manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/x264-1!164.3095-h57fd34a_2.tar.bz2 + openssl: '>=3.0.7,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.20.1-h049b76e_0.conda hash: - md5: b1f6dccde5d3a1f911960b6e567113ff - sha256: debdf60bbcfa6a60201b12a1d53f36736821db281a28223a09e0685edcce105a + md5: db11fa2968ef0837288fe2d7f5b77a50 + sha256: 41cfbf4c5cdb4a32eb5319943113d7ef1edb894ea0a5464233e510b59450c824 optional: false category: main source: null - build: h57fd34a_2 -- name: x265 - version: '3.5' + build: h049b76e_0 +- name: libnghttp2 + version: 1.52.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libcxx: '>=12.0.1' - url: https://conda.anaconda.org/conda-forge/osx-arm64/x265-3.5-hbc6ce65_3.tar.bz2 + libcxx: '>=14.0.6' + c-ares: '>=1.18.1,<2.0a0' + libev: '>=4.33,<4.34.0a0' + libzlib: '>=1.2.13,<1.3.0a0' + openssl: '>=3.0.8,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.52.0-he2ab024_0.conda hash: - md5: b1f7f2780feffe310b068c021e8ff9b2 - sha256: 2fed6987dba7dee07bd9adc1a6f8e6c699efb851431bcb6ebad7de196e87841d + md5: 12ac7d100bf260263e30a019517f42a2 + sha256: 093e4f3f62b3b07befa403e84a1f550cffe3b3961e435d42a75284f44be5f68a optional: false category: main source: null - build: hbc6ce65_3 -- name: libopus - version: 1.3.1 + build: he2ab024_0 +- name: libaec + version: 1.0.6 manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2 + platform: osx-64 + dependencies: + libcxx: '>=14.0.6' + url: https://conda.anaconda.org/conda-forge/osx-64/libaec-1.0.6-hf0c8a7f_1.conda hash: - md5: 3d0dbee0ccd2f6d6781d270313627b62 - sha256: e9912101a58cbc609a1917c5289f3bd1f600c82ed3a1c90a6dd4ca02df77958a + md5: 7c0f82f435ab4c48d65dc9b28db2ad9e + sha256: 38d32f4c7efddc204e53f43cd910122d3e6a997de1a3cd15f263217b225a9cdf optional: false category: main source: null - build: h27ca646_1 + build: hf0c8a7f_1 - name: ca-certificates version: 2023.5.7 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.5.7-hf0a4a13_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.5.7-h8857fd0_0.conda hash: - md5: a8387be82224743cf849fb907790b91a - sha256: 27214b54d1cb9a92455689e20d0007a0ff9ace99b853867d53a05a04c24bdae5 + md5: b704e4b79ba0d887c4870b7b09d6a4df + sha256: a06c9c788de81da3a3868ac56781680cc1fc50a0b5a545d4453818975c141b2c optional: false category: main source: null - build: hf0a4a13_0 -- name: hdf5 - version: 1.14.0 + build: h8857fd0_0 +- name: pysocks + version: 1.7.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - libgfortran: 5.* - openssl: '>=3.0.8,<4.0a0' - libcurl: '>=7.88.1,<9.0a0' - libaec: '>=1.0.6,<2.0a0' - libgfortran5: '>=12.2.0' - libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/hdf5-1.14.0-nompi_h6b85c65_103.conda + __unix: '*' + python: '>=3.8' + url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 hash: - md5: faf772fbfc8c89d2874e32cbee498aa5 - sha256: 9e6721e487b2b5d700312897adaf19caa6a87da15f221bf06d8cfa05d29718f9 + md5: 2a7de29fb590ca14b5243c4c812c8025 + sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b optional: false category: main source: null - build: nompi_h6b85c65_103 -- name: libcurl - version: 8.1.2 + build: pyha2e5f31_6 +- name: brotli + version: 1.0.9 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - zstd: '>=1.5.2,<1.6.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libnghttp2: '>=1.52.0,<2.0a0' - openssl: '>=3.1.0,<4.0a0' - libssh2: '>=1.10.0,<2.0a0' - krb5: '>=1.20.1,<1.21.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.1.2-h912dcd9_0.conda + libbrotlienc: ==1.0.9 hb7f2c08_8 + brotli-bin: ==1.0.9 hb7f2c08_8 + libbrotlidec: ==1.0.9 hb7f2c08_8 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-1.0.9-hb7f2c08_8.tar.bz2 hash: - md5: af01aa21cd4bb0cf519cda6bcec83fc5 - sha256: 5d5bbc7a6eb363b2df85c5df32d34295346fc8b4d9e3754bbaf2af3e80422fab + md5: 55f612fe4a9b5f6ac76348b6de94aaeb + sha256: 1272426370f1e8db1a8b245a7b522afe27413b09eab169990512a7676b802e3b optional: false category: main source: null - build: h912dcd9_0 -- name: krb5 - version: 1.20.1 + build: hb7f2c08_8 +- name: brotli-bin + version: 1.0.9 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - openssl: '>=3.0.7,<4.0a0' - libcxx: '>=14.0.6' - libedit: '>=3.1.20191231,<4.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.20.1-h69eda48_0.conda + libbrotlienc: ==1.0.9 hb7f2c08_8 + libbrotlidec: ==1.0.9 hb7f2c08_8 + url: https://conda.anaconda.org/conda-forge/osx-64/brotli-bin-1.0.9-hb7f2c08_8.tar.bz2 hash: - md5: a85db53e45b1173f270fc998dd40ec03 - sha256: 80094682db47468befef8e14a8a2ccc82cf71d6cf23bfa5d25c4de1df56e3067 + md5: aac5ad0d8f747ef7f871508146df75d9 + sha256: 36f79eb26da032c5d1ddc11e0bcac5526f249bf60d332e4743c8d48bb7334db0 optional: false category: main source: null - build: h69eda48_0 -- name: libnghttp2 - version: 1.52.0 + build: hb7f2c08_8 +- name: libbrotlidec + version: 1.0.9 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - c-ares: '>=1.18.1,<2.0a0' - libev: '>=4.33,<4.34.0a0' - openssl: '>=3.0.8,<4.0a0' - libzlib: '>=1.2.13,<1.3.0a0' - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda + libbrotlicommon: ==1.0.9 hb7f2c08_8 + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlidec-1.0.9-hb7f2c08_8.tar.bz2 hash: - md5: 1d319e95a0216f801293626a00337712 - sha256: 1a3944d6295dcbecdf6489ce8a05fe416ad401727c901ec390e9200a351bdb10 + md5: 7f952a036d9014b4dab96c6ea0f8c2a7 + sha256: 52d8e8929b2476cf13fd397d88cefd911f805de00e77090fdc50b8fb11c372ca optional: false category: main source: null - build: hae82a92_0 -- name: libedit - version: 3.1.20191231 + build: hb7f2c08_8 +- name: libbrotlienc + version: 1.0.9 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - ncurses: '>=6.2,<7.0.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 + libbrotlicommon: ==1.0.9 hb7f2c08_8 + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlienc-1.0.9-hb7f2c08_8.tar.bz2 hash: - md5: 30e4362988a2623e9eb34337b83e01f9 - sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca + md5: b36a3bfe866d9127f25f286506982166 + sha256: be7e794c6208e7e12982872922df13fbf020ab594d516b7bc306a384ac7d3ac6 optional: false category: main source: null - build: hc8eb9b7_2 -- name: libaec - version: 1.0.6 + build: hb7f2c08_8 +- name: libbrotlicommon + version: 1.0.9 manager: conda - platform: osx-arm64 - dependencies: - libcxx: '>=14.0.6' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libaec-1.0.6-hb7217d7_1.conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libbrotlicommon-1.0.9-hb7f2c08_8.tar.bz2 hash: - md5: 4f04770bf6f12d22fb6c1d91a04e0c8c - sha256: 9a2209a30923728fd9c430695a2fea9274ac6d357e6bdfa4c7b5aa52122d9e2c + md5: 37157d273eaf3bc7d6862104161d9ec9 + sha256: c983101653f5bffea605c4423d84fd5ca28ee36b290cdb6207ec246e293f7d94 optional: false category: main source: null - build: hb7217d7_1 + build: hb7f2c08_8 - name: c-ares version: 1.19.1 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda + url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.19.1-h0dc2134_0.conda hash: - md5: e7fc7430440d255e3a9c7e5a52f7b294 - sha256: fc9d0fcfb30c20c0032b294120b6ba9c01078ddb372c34dd491214c598aecc06 + md5: b3e62631b4e1b9801477523ce1d6f355 + sha256: 1de09d540facc3833e3f0a280ae987859f310f535726eff66d6f4a66045bd32c optional: false category: main source: null - build: hb547adb_0 + build: h0dc2134_0 - name: libev version: '4.33' manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2 + url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2 hash: - md5: 566dbf70fe79eacdb3c3d3d195a27f55 - sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c + md5: 79dc2be110b2a3d1e97ec21f691c50ad + sha256: c4154d424431898d84d6afb8b32e3ba749fe5d270d322bb0af74571a3cb09c6b optional: false category: main source: null - build: h642e427_1 + build: haf1e3a3_1 - name: libssh2 version: 1.11.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: - openssl: '>=3.1.1,<4.0a0' libzlib: '>=1.2.13,<1.3.0a0' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda + openssl: '>=3.1.1,<4.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda hash: - md5: 029f7dc931a3b626b94823bc77830b01 - sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015 + md5: ca3a72efba692c59a90d4b9fc0dfe774 + sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515 optional: false category: main source: null - build: h7a5bd25_0 -- name: bzip2 - version: 1.0.8 + build: hd019ec5_0 +- name: graphite2 + version: 1.3.13 manager: conda - platform: osx-arm64 - dependencies: {} - url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2 + platform: osx-64 + dependencies: + libcxx: '>=10.0.1' + url: https://conda.anaconda.org/conda-forge/osx-64/graphite2-1.3.13-h2e338ed_1001.tar.bz2 hash: - md5: fc76ace7b94fb1f694988ab1b14dd248 - sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549 + md5: 5f6e7f98caddd0fc2d345b207531814c + sha256: 1dba68533e6888c5e2a7e37119a77d6f388fb82721c530ba3bd28d541828e59b optional: false category: main source: null - build: h3422bc3_4 + build: h2e338ed_1001 - name: libgfortran version: 5.0.0 manager: conda - platform: osx-arm64 + platform: osx-64 dependencies: libgfortran5: '*' - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-12_2_0_hd922786_31.conda + url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-11_3_0_h97931a8_31.conda hash: - md5: dfc3dff1ce831c8e821f19d5d218825a - sha256: 1abde945c2c7377aec9f2f648d9cc1fcb5f818a1e0caf53f8188b1182cbc1332 + md5: 97451338600bd9c5b535eb224ef6c471 + sha256: 55d3c81ce8cd931260c3cb8c85868e36223d2bd0d5e2f35a79503810ee172769 optional: false category: main source: null - build: 12_2_0_hd922786_31 + build: 11_3_0_h97931a8_31 +- name: bzip2 + version: 1.0.8 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2 + hash: + md5: 37edc4e6304ca87316e160f5ca0bd1b5 + sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2 + optional: false + category: main + source: null + build: h0d85af4_4 +- name: libedit + version: 3.1.20191231 + manager: conda + platform: osx-64 + dependencies: + ncurses: '>=6.2,<7.0.0a0' + url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2 + hash: + md5: 6016a8a1d0e63cac3de2c352cd40208b + sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095 + optional: false + category: main + source: null + build: h0678c8f_2 +- name: libunistring + version: 0.9.10 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/libunistring-0.9.10-h0d85af4_0.tar.bz2 + hash: + md5: 40f27dc16f73256d7b93e53c4f03d92f + sha256: c5805a58cd2b211bffdc8b7cdeba9af3cee456196ab52ab9a30e0353bc95beb7 + optional: false + category: main + source: null + build: h0d85af4_0 +- name: fribidi + version: 1.0.10 + manager: conda + platform: osx-64 + dependencies: {} + url: https://conda.anaconda.org/conda-forge/osx-64/fribidi-1.0.10-hbcb3906_0.tar.bz2 + hash: + md5: f1c6b41e0f56998ecd9a3e210faa1dc0 + sha256: 4f6db86ecc4984cd4ac88ca52030726c3cfd11a64dfb15c8602025ee3001a2b5 + optional: false + category: main + source: null + build: hbcb3906_0 version: 1 diff --git a/examples/opencv/pixi.toml b/examples/opencv/pixi.toml index e048aa71c..bead7f6b8 100644 --- a/examples/opencv/pixi.toml +++ b/examples/opencv/pixi.toml @@ -8,6 +8,7 @@ platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"] [commands] start = "python webcam_capture.py" +calibrate = "python calibrate.py" [dependencies] opencv = "*"