From b7fe4c7b49180fd9a6e6a24fe101566f18b66c0b Mon Sep 17 00:00:00 2001 From: Connor Gray Date: Fri, 15 Nov 2024 13:08:24 -0600 Subject: [PATCH 01/28] [stdlib] feat: Add `_Global` interface for easier to use global variables * Also removed various unused imports of related types. The Mojo standard library currently contains a pseudo-global-variables mechanism based on a global hashmap. This allows one to use functionality that behaves like global variables, despite the fact that Mojo does not currently have complete language-level support for global variables (i.e. `var` statements at the top level scope). The current interface in the standard library is very low-level, error prone, and requires juggling `OpaquePointer` values. With this new interface, declaring a global variable containing e.g. a String looks like: ```mojo alias MY_GLOBAL = _Global["MY_GLOBAL", String, _init_my_global] fn _init_my_global() -> String: return "default value" ``` This new interface adds the following constraints that make it easier to reason about and use: * The data type stored by the global variable must be declared. * The initializer function cannot take any arguments (no "payload" data) * The global variable is de-initialized by calling the data type's `__del__()` method (not an arbitrary function). MODULAR_ORIG_COMMIT_REV_ID: 40575002cd16e7ecb931a0143102f3956dfb8ef7 --- stdlib/src/builtin/_pybind.mojo | 1 - stdlib/src/builtin/file_descriptor.mojo | 2 +- stdlib/src/builtin/int.mojo | 1 - stdlib/src/collections/string.mojo | 2 +- stdlib/src/hashlib/hash.mojo | 22 ++---- stdlib/src/python/_bindings.mojo | 2 +- stdlib/src/python/python.mojo | 27 +++++--- stdlib/src/sys/ffi.mojo | 90 ++++++++++++++++++------- stdlib/src/utils/inline_string.mojo | 1 - stdlib/test/utils/test_variant.mojo | 26 +++---- 10 files changed, 104 insertions(+), 70 deletions(-) diff --git a/stdlib/src/builtin/_pybind.mojo b/stdlib/src/builtin/_pybind.mojo index 61ca83d8c2..2644bceba2 100644 --- a/stdlib/src/builtin/_pybind.mojo +++ b/stdlib/src/builtin/_pybind.mojo @@ -14,7 +14,6 @@ from memory import UnsafePointer, stack_allocation from sys import sizeof, alignof -from sys.ffi import OpaquePointer import python._cpython as cp from python import TypedPythonObject, Python, PythonObject diff --git a/stdlib/src/builtin/file_descriptor.mojo b/stdlib/src/builtin/file_descriptor.mojo index 6974b8d116..9edbc8c58c 100644 --- a/stdlib/src/builtin/file_descriptor.mojo +++ b/stdlib/src/builtin/file_descriptor.mojo @@ -25,7 +25,7 @@ f.close() """ from utils import Span from builtin.io import _printf -from sys.ffi import external_call, OpaquePointer +from sys.ffi import external_call from sys.info import is_nvidia_gpu from memory import UnsafePointer diff --git a/stdlib/src/builtin/int.mojo b/stdlib/src/builtin/int.mojo index 6883fbcd17..0cc7a6e1b3 100644 --- a/stdlib/src/builtin/int.mojo +++ b/stdlib/src/builtin/int.mojo @@ -33,7 +33,6 @@ from utils import Writable, Writer from utils._visualizers import lldb_formatter_wrapping_type from utils._select import _select_register_value as select from sys import is_nvidia_gpu, bitwidthof -from sys.ffi import OpaquePointer # ===----------------------------------------------------------------------=== # # Indexer diff --git a/stdlib/src/collections/string.mojo b/stdlib/src/collections/string.mojo index 917b56e99b..b76e93e94c 100644 --- a/stdlib/src/collections/string.mojo +++ b/stdlib/src/collections/string.mojo @@ -18,7 +18,7 @@ These are Mojo built-ins, so you don't need to import them. from collections import KeyElement, List, Optional from collections._index_normalization import normalize_index from sys import bitwidthof, llvm_intrinsic -from sys.ffi import c_char, OpaquePointer +from sys.ffi import c_char from utils import StaticString, write_args from bit import count_leading_zeros diff --git a/stdlib/src/hashlib/hash.mojo b/stdlib/src/hashlib/hash.mojo index 528cf2bd3e..84f3a82a58 100644 --- a/stdlib/src/hashlib/hash.mojo +++ b/stdlib/src/hashlib/hash.mojo @@ -26,7 +26,8 @@ There are a few main tools in this module: """ import random -from sys.ffi import _get_global, OpaquePointer + +from sys.ffi import _Global from sys import simdwidthof, bitwidthof from collections import InlineArray @@ -44,24 +45,15 @@ from memory import memcpy, memset_zero, stack_allocation, bitcast, UnsafePointer # var HASH_SECRET = int(random.random_ui64(0, UInt64.MAX) -fn _HASH_SECRET() -> UInt: - var ptr = _get_global[ - "HASH_SECRET", _initialize_hash_secret, _destroy_hash_secret - ]() - return ptr.bitcast[UInt]()[0] +fn _init_hash_secret() -> Int: + return int(random.random_ui64(0, UInt64.MAX)) -fn _initialize_hash_secret( - payload: OpaquePointer, -) -> OpaquePointer: - var secret = random.random_ui64(0, UInt64.MAX) - var data = UnsafePointer[Int].alloc(1) - data[] = int(secret) - return data.bitcast[NoneType]() +alias _HASH_SECRET_VALUE = _Global["HASH_SECRET", Int, _init_hash_secret] -fn _destroy_hash_secret(p: OpaquePointer): - p.free() +fn _HASH_SECRET() -> UInt: + return UInt(_HASH_SECRET_VALUE.get_or_create_ptr()[]) trait Hashable: diff --git a/stdlib/src/python/_bindings.mojo b/stdlib/src/python/_bindings.mojo index f83ff6d3a3..4046ca5f50 100644 --- a/stdlib/src/python/_bindings.mojo +++ b/stdlib/src/python/_bindings.mojo @@ -13,7 +13,7 @@ from memory import UnsafePointer -from sys.ffi import c_int, OpaquePointer +from sys.ffi import c_int from sys.info import sizeof from os import abort diff --git a/stdlib/src/python/python.mojo b/stdlib/src/python/python.mojo index f2fb0237b9..937f727915 100644 --- a/stdlib/src/python/python.mojo +++ b/stdlib/src/python/python.mojo @@ -22,7 +22,7 @@ from python import Python from collections import Dict from os import abort, getenv from sys import external_call, sizeof -from sys.ffi import _get_global, OpaquePointer +from sys.ffi import _Global from memory import UnsafePointer @@ -37,22 +37,29 @@ from ._cpython import ( Py_ssize_t, ) +alias _PYTHON_GLOBAL = _Global["Python", _PythonGlobal, _init_python_global] -fn _init_global(ignored: OpaquePointer) -> OpaquePointer: - var ptr = UnsafePointer[CPython].alloc(1) - ptr[] = CPython() - return ptr.bitcast[NoneType]() +fn _init_python_global() -> _PythonGlobal: + return _PythonGlobal() -fn _destroy_global(python: OpaquePointer): - var p = python.bitcast[CPython]() - CPython.destroy(p[]) - python.free() + +struct _PythonGlobal: + var cpython: CPython + + fn __moveinit__(inout self, owned other: Self): + self.cpython = other.cpython^ + + fn __init__(inout self): + self.cpython = CPython() + + fn __del__(owned self): + CPython.destroy(self.cpython) @always_inline fn _get_global_python_itf() -> _PythonInterfaceImpl: - var ptr = _get_global["Python", _init_global, _destroy_global]() + var ptr = _PYTHON_GLOBAL.get_or_create_ptr() return ptr.bitcast[CPython]() diff --git a/stdlib/src/sys/ffi.mojo b/stdlib/src/sys/ffi.mojo index b3c86e6373..cdfbcfb18f 100644 --- a/stdlib/src/sys/ffi.mojo +++ b/stdlib/src/sys/ffi.mojo @@ -22,6 +22,10 @@ from .intrinsics import _mlirtype_is_eq from sys._libc import dlerror, dlopen, dlclose, dlsym +# ===-----------------------------------------------------------------------===# +# Primitive C type aliases +# ===-----------------------------------------------------------------------===# + alias c_char = Int8 """C `char` type.""" @@ -85,6 +89,11 @@ fn _c_long_long_dtype() -> DType: return abort[DType]() +# ===-----------------------------------------------------------------------===# +# Dynamic Library Loading +# ===-----------------------------------------------------------------------===# + + struct RTLD: """Enumeration of the RTLD flags used during dynamic library loading.""" @@ -358,29 +367,6 @@ struct DLHandle(CollectionElement, CollectionElementNew, Boolable): return self.get_function[fn (__type_of(v)) -> return_type](name)(v) -# ===----------------------------------------------------------------------===# -# Library Load -# ===----------------------------------------------------------------------===# - - -@always_inline -fn _get_global[ - name: StringLiteral, - init_fn: fn (OpaquePointer) -> OpaquePointer, - destroy_fn: fn (OpaquePointer) -> None, -](payload: OpaquePointer = OpaquePointer()) -> OpaquePointer: - return external_call["KGEN_CompilerRT_GetGlobalOrCreate", OpaquePointer]( - StringRef(name), payload, init_fn, destroy_fn - ) - - -@always_inline -fn _get_global_or_null[name: StringLiteral]() -> OpaquePointer: - return external_call["KGEN_CompilerRT_GetGlobalOrNull", OpaquePointer]( - name.unsafe_ptr(), name.byte_length() - ) - - @always_inline fn _get_dylib[ name: StringLiteral, @@ -418,6 +404,64 @@ fn _get_dylib_function[ return new_func +# ===----------------------------------------------------------------------===# +# Globals +# ===----------------------------------------------------------------------===# + + +struct _Global[ + name: StringLiteral, + storage_type: Movable, + init_fn: fn () -> storage_type, +]: + @staticmethod + fn _init_wrapper(payload: OpaquePointer) -> OpaquePointer: + # Struct-based globals don't get to take arguments to their initializer. + debug_assert(not payload) + + # Heap allocate space to store this "global" + var ptr = UnsafePointer[storage_type].alloc(1) + + # TODO: + # Any way to avoid the move, e.g. by calling this function + # with the ABI destination result pointer already set to `ptr`? + ptr.init_pointee_move(init_fn()) + + return ptr.bitcast[NoneType]() + + @staticmethod + fn _deinit_wrapper(self_: OpaquePointer): + var ptr: UnsafePointer[storage_type] = self_.bitcast[storage_type]() + + # Deinitialize and deallocate the global + ptr.destroy_pointee() + ptr.free() + + @staticmethod + fn get_or_create_ptr() -> UnsafePointer[storage_type]: + return _get_global[ + name, Self._init_wrapper, Self._deinit_wrapper + ]().bitcast[storage_type]() + + +@always_inline +fn _get_global[ + name: StringLiteral, + init_fn: fn (OpaquePointer) -> OpaquePointer, + destroy_fn: fn (OpaquePointer) -> None, +](payload: OpaquePointer = OpaquePointer()) -> OpaquePointer: + return external_call["KGEN_CompilerRT_GetGlobalOrCreate", OpaquePointer]( + StringRef(name), payload, init_fn, destroy_fn + ) + + +@always_inline +fn _get_global_or_null[name: StringLiteral]() -> OpaquePointer: + return external_call["KGEN_CompilerRT_GetGlobalOrNull", OpaquePointer]( + name.unsafe_ptr(), name.byte_length() + ) + + # ===----------------------------------------------------------------------===# # external_call # ===----------------------------------------------------------------------===# diff --git a/stdlib/src/utils/inline_string.mojo b/stdlib/src/utils/inline_string.mojo index e163727f51..18ee49465f 100644 --- a/stdlib/src/utils/inline_string.mojo +++ b/stdlib/src/utils/inline_string.mojo @@ -19,7 +19,6 @@ from collections import InlineArray from os import abort from collections import Optional from sys import sizeof -from sys.ffi import OpaquePointer from memory import UnsafePointer, memcpy diff --git a/stdlib/test/utils/test_variant.mojo b/stdlib/test/utils/test_variant.mojo index bafac3221f..2428ac18a7 100644 --- a/stdlib/test/utils/test_variant.mojo +++ b/stdlib/test/utils/test_variant.mojo @@ -12,7 +12,7 @@ # ===----------------------------------------------------------------------=== # # RUN: %mojo %s -from sys.ffi import _get_global, OpaquePointer +from sys.ffi import _Global from memory import UnsafePointer from testing import assert_equal, assert_false, assert_true @@ -41,27 +41,21 @@ struct TestCounter(CollectionElement): self.moved = other.moved + 1 -fn _poison_ptr() -> UnsafePointer[Bool]: - var ptr = _get_global[ - "TEST_VARIANT_POISON", _initialize_poison, _destroy_poison - ]() - return ptr.bitcast[Bool]() +alias TEST_VARIANT_POISON = _Global[ + "TEST_VARIANT_POISON", Bool, _initialize_poison +] -fn assert_no_poison() raises: - assert_false(_poison_ptr().take_pointee()) +fn _initialize_poison() -> Bool: + return False -fn _initialize_poison( - payload: OpaquePointer, -) -> OpaquePointer: - var poison = UnsafePointer[Bool].alloc(1) - poison.init_pointee_move(False) - return poison.bitcast[NoneType]() +fn _poison_ptr() -> UnsafePointer[Bool]: + return TEST_VARIANT_POISON.get_or_create_ptr() -fn _destroy_poison(p: OpaquePointer): - p.free() +fn assert_no_poison() raises: + assert_false(_poison_ptr().take_pointee()) struct Poison(CollectionElement): From f87a1086bb8529c6dcd7e919cbc1824c7906230b Mon Sep 17 00:00:00 2001 From: modularbot <116839051+modularbot@users.noreply.github.com> Date: Fri, 15 Nov 2024 14:02:51 -0600 Subject: [PATCH 02/28] [External] [stdlib] [NFC] Add docstring comment for `Span` slicing's allocation (#50938) [External] [stdlib] [NFC] Add docstring comment for `Span` slicing's allocation Add docstring comment for `Span` slicing's allocation regarding PR https://github.com/modularml/mojo/pull/3650 ORIGINAL_AUTHOR=martinvuyk <110240700+martinvuyk@users.noreply.github.com> PUBLIC_PR_LINK=modularml/mojo#3774 Co-authored-by: martinvuyk <110240700+martinvuyk@users.noreply.github.com> Closes modularml/mojo#3774 MODULAR_ORIG_COMMIT_REV_ID: bc4bd40542e608c6f8b542af0f2f8258735d9600 --- stdlib/src/utils/span.mojo | 4 ++++ stdlib/test/utils/test_span.mojo | 3 +++ 2 files changed, 7 insertions(+) diff --git a/stdlib/src/utils/span.mojo b/stdlib/src/utils/span.mojo index c2a5fee6c0..97dc5b6aae 100644 --- a/stdlib/src/utils/span.mojo +++ b/stdlib/src/utils/span.mojo @@ -193,6 +193,10 @@ struct Span[ Returns: A new span that points to the same data as the current span. + + Allocation: + This function allocates when the step is negative, to avoid a memory + leak, take ownership of the value. """ var start: Int var end: Int diff --git a/stdlib/test/utils/test_span.mojo b/stdlib/test/utils/test_span.mojo index b963ad048f..79cd780401 100644 --- a/stdlib/test/utils/test_span.mojo +++ b/stdlib/test/utils/test_span.mojo @@ -141,12 +141,15 @@ def test_span_slice(): res = s[1::-1] assert_equal(res[0], 2) assert_equal(res[1], 1) + res.unsafe_ptr().free() res = s[2:1:-1] assert_equal(res[0], 3) assert_equal(len(res), 1) + res.unsafe_ptr().free() res = s[5:1:-2] assert_equal(res[0], 5) assert_equal(res[1], 3) + res.unsafe_ptr().free() def test_copy_from(): From 927bf9e961718f651bc1198e41b6f5b67b2cff3e Mon Sep 17 00:00:00 2001 From: abdul dakkak Date: Fri, 15 Nov 2024 12:12:59 -0800 Subject: [PATCH 03/28] [******][GPU][AMD] Make WARP_SIZE accelerator agnostic MODULAR_ORIG_COMMIT_REV_ID: 3c06a462bf9b844bd8b598052689acf8bfc00b03 --- stdlib/src/sys/__init__.mojo | 1 - stdlib/src/sys/info.mojo | 22 ++-------------------- 2 files changed, 2 insertions(+), 21 deletions(-) diff --git a/stdlib/src/sys/__init__.mojo b/stdlib/src/sys/__init__.mojo index 1a36b9f69d..099f406f06 100644 --- a/stdlib/src/sys/__init__.mojo +++ b/stdlib/src/sys/__init__.mojo @@ -46,7 +46,6 @@ from .info import ( simdbitwidth, simdbytewidth, simdwidthof, - warpsize, sizeof, is_nvidia_gpu, is_gpu, diff --git a/stdlib/src/sys/info.mojo b/stdlib/src/sys/info.mojo index 26a480ce17..682f4f2d78 100644 --- a/stdlib/src/sys/info.mojo +++ b/stdlib/src/sys/info.mojo @@ -29,11 +29,8 @@ fn _current_target() -> __mlir_type.`!kgen.target`: @always_inline("nodebug") -fn _accelerator_arch() -> String: - alias arch = String( - __mlir_attr.`#kgen.param.expr : !kgen.string` - ) - return arch +fn _accelerator_arch() -> StringLiteral: + return __mlir_attr.`#kgen.param.expr : !kgen.string` fn _get_arch[target: __mlir_type.`!kgen.target`]() -> String: @@ -591,21 +588,6 @@ fn simdbytewidth[ return simdbitwidth[target]() // CHAR_BIT -@always_inline("nodebug") -fn warpsize[ - target: __mlir_type.`!kgen.target` = _current_target() -]() -> IntLiteral: - """Returns the warp size of the specified target. - - Parameters: - target: The target architecture. - - Returns: - The warp size of the specified target. - """ - return 32 - - @always_inline("nodebug") fn sizeof[ type: AnyType, target: __mlir_type.`!kgen.target` = _current_target() From 7424425c8eac4ee4df34bec5382b90b3674f88f2 Mon Sep 17 00:00:00 2001 From: Joe Loser Date: Fri, 15 Nov 2024 14:06:47 -0700 Subject: [PATCH 04/28] [stdlib] Remove `UnsafePointer.bitcast` overload for `DType` Instead of special-casing `DType` in the `UnsafePointer.bitcast` function, remove the `bitcast` overload for `DType`. Instead, just adjust the callers to specify `Scalar[T]` when using `T` is a `DType`. MODULAR_ORIG_COMMIT_REV_ID: d8efa320831598a6af622e69280a6b65317cfe1d --- docs/changelog.md | 3 +++ stdlib/src/hashlib/_ahash.mojo | 20 +++++++++++++------- stdlib/src/memory/unsafe_pointer.mojo | 24 ------------------------ stdlib/src/os/atomic.mojo | 10 ++++++---- 4 files changed, 22 insertions(+), 35 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index c232260e01..2d168dbe6a 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -451,6 +451,9 @@ what we publish. ### ❌ Removed +- The `UnsafePointer.bitcast` overload for `DType` has been removed. Wrap your + `DType` in a `Scalar[my_dtype]` to call the only overload of `bitcast` now. + ### 🛠️ Fixed - Lifetime tracking is now fully field sensitive, which makes the uninitialized diff --git a/stdlib/src/hashlib/_ahash.mojo b/stdlib/src/hashlib/_ahash.mojo index 7dccb4dd9d..0845dc8d58 100644 --- a/stdlib/src/hashlib/_ahash.mojo +++ b/stdlib/src/hashlib/_ahash.mojo @@ -61,14 +61,18 @@ fn _read_small(data: UnsafePointer[UInt8], length: Int) -> U128: if length >= 2: if length >= 4: # len 4-8 - var a = data.bitcast[DType.uint32]().load().cast[DType.uint64]() - var b = data.offset(length - 4).bitcast[DType.uint32]().load().cast[ + var a = data.bitcast[Scalar[DType.uint32]]().load().cast[ DType.uint64 ]() + var b = data.offset(length - 4).bitcast[ + Scalar[DType.uint32] + ]().load().cast[DType.uint64]() return U128(a, b) else: # len 2-3 - var a = data.bitcast[DType.uint16]().load().cast[DType.uint64]() + var a = data.bitcast[Scalar[DType.uint16]]().load().cast[ + DType.uint64 + ]() var b = data.offset(length - 1).load().cast[DType.uint64]() return U128(a, b) else: @@ -136,19 +140,21 @@ struct AHasher[key: U256](_Hasher): if length > 8: if length > 16: var tail = data.offset(length - 16).bitcast[ - DType.uint64 + Scalar[DType.uint64] ]().load[width=2]() self._large_update(tail) var offset = 0 while length - offset > 16: var block = data.offset(offset).bitcast[ - DType.uint64 + Scalar[DType.uint64] ]().load[width=2]() self._large_update(block) offset += 16 else: - var a = data.bitcast[DType.uint64]().load() - var b = data.offset(length - 8).bitcast[DType.uint64]().load() + var a = data.bitcast[Scalar[DType.uint64]]().load() + var b = data.offset(length - 8).bitcast[ + Scalar[DType.uint64] + ]().load() self._large_update(U128(a, b)) else: var value = _read_small(data, length) diff --git a/stdlib/src/memory/unsafe_pointer.mojo b/stdlib/src/memory/unsafe_pointer.mojo index 4d46ff1f68..cd4066c8cb 100644 --- a/stdlib/src/memory/unsafe_pointer.mojo +++ b/stdlib/src/memory/unsafe_pointer.mojo @@ -977,30 +977,6 @@ struct UnsafePointer[ ]._mlir_type, ](self.address) - @always_inline("nodebug") - fn bitcast[ - T: DType, - /, - address_space: AddressSpace = Self.address_space, - alignment: Int = Self.alignment, - origin: Origin[True].type = Self.origin, - ](self) -> UnsafePointer[Scalar[T], address_space, alignment, origin]: - """Bitcasts a UnsafePointer to a different type. - - Parameters: - T: The target type. - address_space: The address space of the result. - alignment: Alignment of the destination pointer. - origin: Origin of the destination pointer. - - Returns: - A new UnsafePointer object with the specified type and the same address, - as the original UnsafePointer. - """ - return self.bitcast[ - Scalar[T], address_space=address_space, alignment=alignment - ]() - @always_inline fn destroy_pointee( self: UnsafePointer[type, AddressSpace.GENERIC, *_, **_] diff --git a/stdlib/src/os/atomic.mojo b/stdlib/src/os/atomic.mojo index 2932659f93..94c7047187 100644 --- a/stdlib/src/os/atomic.mojo +++ b/stdlib/src/os/atomic.mojo @@ -348,11 +348,12 @@ fn _max_impl[ alias unsigned_integral_type = _unsigned_integral_type_of[type]() if rhs >= 0: _max_impl_base( - ptr.bitcast[integral_type](), bitcast[integral_type](rhs) + ptr.bitcast[Scalar[integral_type]](), + bitcast[integral_type](rhs), ) return _min_impl_base( - ptr.bitcast[unsigned_integral_type](), + ptr.bitcast[Scalar[unsigned_integral_type]](), bitcast[unsigned_integral_type](rhs), ) return @@ -370,11 +371,12 @@ fn _min_impl[ alias unsigned_integral_type = _unsigned_integral_type_of[type]() if rhs >= 0: _min_impl_base( - ptr.bitcast[integral_type](), bitcast[integral_type](rhs) + ptr.bitcast[Scalar[integral_type]](), + bitcast[integral_type](rhs), ) return _max_impl_base( - ptr.bitcast[unsigned_integral_type](), + ptr.bitcast[Scalar[unsigned_integral_type]](), bitcast[unsigned_integral_type](rhs), ) return From d6d96a81cc3942f9dbb5bb87b910a35b9ae96085 Mon Sep 17 00:00:00 2001 From: modularbot Date: Sat, 16 Nov 2024 08:17:50 +0000 Subject: [PATCH 05/28] Update lockfiles to point to latest nightly version: 24.6.0.dev2024111606 --- examples/magic.lock | 489 +++++++++++++++++----------------- examples/notebooks/magic.lock | 475 +++++++++++++++++---------------- examples/operators/magic.lock | 477 +++++++++++++++++---------------- magic.lock | 477 +++++++++++++++++---------------- 4 files changed, 981 insertions(+), 937 deletions(-) diff --git a/examples/magic.lock b/examples/magic.lock index b716d9037b..e211f02a82 100644 --- a/examples/magic.lock +++ b/examples/magic.lock @@ -9,7 +9,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.10.10-py311h2dc5d0c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py311h2dc5d0c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -43,9 +43,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -54,14 +54,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py311h9ecbd09_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/httptools-0.6.1-py311h9ecbd09_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -122,14 +122,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111505-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py311h2dc5d0c_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py311h459d7ec_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py311h9ecbd09_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda @@ -180,7 +180,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py311h9e33e62_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda @@ -209,7 +209,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/xxhash-0.8.2-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.16.0-py311h9ecbd09_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py311h9ecbd09_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py311hbc35293_1.conda @@ -217,7 +217,7 @@ environments: linux-aarch64: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.10.10-py311h58d527c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py311h58d527c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -251,9 +251,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -262,14 +262,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.5.0-py311ha879c10_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/httptools-0.6.1-py311ha879c10_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -331,14 +331,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py311ha09ea12_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111505-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py311h58d527c_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py311hcd402e7_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py311ha879c10_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py311h69ead2a_0.conda @@ -389,7 +389,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py311h0ca61a2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-h1088aeb_0.conda @@ -418,14 +418,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xxhash-0.8.2-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.16.0-py311ha879c10_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py311ha879c10_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-h5efb499_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.23.0-py311hd5293d8_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda osx-arm64: - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.10.10-py311h0ecf0c1_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py311h4921393_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -459,9 +459,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -470,14 +470,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py311hae2e1ce_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/httptools-0.6.1-py311h460d6c5_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -530,14 +530,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py311h56c23cb_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111505-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py311h30e7462_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.15-py311heffc1b2_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py311h460d6c5_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py311h7125741_0.conda @@ -587,7 +587,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py311h481aa64_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-hd02b534_0.conda @@ -616,7 +616,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xxhash-0.8.2-hb547adb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.16.0-py311hae2e1ce_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py311h917b07b_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-hc1bb282_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py311ha60cc69_1.conda @@ -685,58 +685,60 @@ packages: timestamp: 1727779893392 - kind: conda name: aiohttp - version: 3.10.10 - build: py311h0ecf0c1_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.10.10-py311h0ecf0c1_0.conda - sha256: e46f6321ee323c45c7ffc85388b54670f85fe3ce5f51c365702d4251beba2635 - md5: c0a9c1e0fdae8eabae8bc31aca207315 + version: 3.11.2 + build: py311h2dc5d0c_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py311h2dc5d0c_0.conda + sha256: f5c9f060394a8af6b3d46754d056cf72df7968e296a71138b69a64367688880d + md5: 3911c41f7d01402fd1b54c2a32d9cd1c depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - aiohappyeyeballs >=2.3.0 - aiosignal >=1.1.2 - attrs >=17.3.0 - frozenlist >=1.1.1 + - libgcc >=13 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 812361 - timestamp: 1728629264152 + size: 910812 + timestamp: 1731703417329 - kind: conda name: aiohttp - version: 3.10.10 - build: py311h2dc5d0c_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.10.10-py311h2dc5d0c_0.conda - sha256: 2cb730af6dc5f2137e28f2b5008cfd16869ac1b69d37be10fac1f238a8f8620f - md5: 4f0fa0019a6e7be77db3609a707a4581 + version: 3.11.2 + build: py311h4921393_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py311h4921393_0.conda + sha256: 1a2f4de6149ecd1eafdb168c368202ccb3225c2b422f21ce49afbd6fb96908e2 + md5: d911e422e883f61315e9ed08b7506cbe depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - aiohappyeyeballs >=2.3.0 - aiosignal >=1.1.2 - attrs >=17.3.0 - frozenlist >=1.1.1 - - libgcc >=13 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 842364 - timestamp: 1728629173688 + size: 870301 + timestamp: 1731703770556 - kind: conda name: aiohttp - version: 3.10.10 + version: 3.11.2 build: py311h58d527c_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.10.10-py311h58d527c_0.conda - sha256: 9cd437ea5068d0a75c24d1795fd4ec3d3fc4ffe5ffa1e0ebdf8d1642157119e2 - md5: 97cbdf919238d9998f8a23e792886db3 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py311h58d527c_0.conda + sha256: 04fd04852300366eee992945cc70bc7ac8c3f62c1c9dd81583ca28c39963e1af + md5: 02c939cac7961d315442bac92774f1de depends: - aiohappyeyeballs >=2.3.0 - aiosignal >=1.1.2 @@ -744,14 +746,15 @@ packages: - frozenlist >=1.1.1 - libgcc >=13 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.11,<3.12.0a0 - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 837849 - timestamp: 1728629265570 + size: 902485 + timestamp: 1731703556701 - kind: conda name: aiosignal version: 1.3.1 @@ -2168,33 +2171,33 @@ packages: timestamp: 1666700778190 - kind: conda name: datasets - version: 2.14.4 - build: pyhd8ed1ab_0 + version: 3.1.0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda - sha256: 7e09bd083a609138b780fcc4535924cb96814d2c908a36d4c64a2ba9ee3efe7f - md5: 3e087f072ce03c43a9b60522f5d0ca2f + url: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda + sha256: c3329f96a797fcec28a0bc42372bb253ce6434cbd6d9b5dc8e8417a247c43027 + md5: cd6278d231cd340f2f0c600037df5a98 depends: - aiohttp - - dill >=0.3.0,<0.3.8 - - fsspec >=2021.11.1 - - huggingface_hub >=0.14.0,<1.0.0 - - importlib-metadata - - multiprocess + - dill >=0.3.0,<0.3.9 + - filelock + - fsspec >=2023.1.0,<=2024.9.0 + - huggingface_hub >=0.23.0 + - multiprocess <0.70.17 - numpy >=1.17 - packaging - pandas - - pyarrow >=8.0.0 - - python >=3.8.0 + - pyarrow >=15.0.0 + - python >=3.9 - python-xxhash - pyyaml >=5.1 - - requests >=2.19.0 - - tqdm >=4.62.1 + - requests >=2.32.2 + - tqdm >=4.66.3 license: Apache-2.0 license_family: Apache - size: 347303 - timestamp: 1691593908658 + size: 332680 + timestamp: 1731706749584 - kind: conda name: deprecated version: 1.2.14 @@ -2213,19 +2216,19 @@ packages: timestamp: 1685233463632 - kind: conda name: dill - version: 0.3.7 + version: 0.3.8 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda - sha256: 4ff20c6be028be2825235631c45d9e4a75bca1de65f8840c02dfb28ea0137c45 - md5: 5e4f3466526c52bc9af2d2353a1460bd + url: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda + sha256: 482b5b566ca559119b504c53df12b08f3962a5ef8e48061d62fd58a47f8f2ec4 + md5: 78745f157d56877a2c6e7b386f66f3e2 depends: - python >=3.7 license: BSD-3-Clause license_family: BSD - size: 87553 - timestamp: 1690101185422 + size: 88169 + timestamp: 1706434833883 - kind: conda name: dnspython version: 2.7.0 @@ -2404,19 +2407,19 @@ packages: timestamp: 1729699703032 - kind: conda name: fsspec - version: 2024.10.0 + version: 2024.9.0 build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda - sha256: 40bb76981dd49d5869b48925a8975bb7bbe4e33e1e40af4ec06f6bf4a62effd7 - md5: 816dbc4679a64e4417cd1385d661bb31 + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda + sha256: 8f4e9805b4ec223dea0d99f9e7e57c391d9026455eb9f0d6e0784c5d1a1200dc + md5: ace4329fbff4c69ab0309db6da182987 depends: - python >=3.8 license: BSD-3-Clause license_family: BSD - size: 134745 - timestamp: 1729608972363 + size: 134378 + timestamp: 1725543368393 - kind: conda name: gflags version: 2.2.2 @@ -2580,24 +2583,24 @@ packages: timestamp: 1598856368685 - kind: conda name: httpcore - version: 1.0.6 - build: pyhd8ed1ab_0 + version: 1.0.7 + build: pyh29332c3_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda - sha256: 8952c3f1eb18bf4d7e813176c3b23e0af4e863e8b05087e73f74f371d73077ca - md5: b8e1901ef9a215fc41ecfb6bef7e0943 + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df + md5: 2ca8e6dbc86525c8b95e3c0ffa26442e depends: - - anyio >=3.0,<5.0 - - certifi + - python >=3.8 - h11 >=0.13,<0.15 - h2 >=3,<5 - - python >=3.8 - sniffio 1.* + - anyio >=3.0,<5.0 + - certifi license: BSD-3-Clause - license_family: BSD - size: 45711 - timestamp: 1727821031365 + size: 48959 + timestamp: 1731707562362 - kind: conda name: httptools version: 0.6.1 @@ -5357,76 +5360,76 @@ packages: timestamp: 1729352296161 - kind: conda name: max - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - sha256: 303dcbfeac536b7dd78e67cd6e46ad4bae25d2153b2105d4bb2b1fc385930679 - md5: feca80930af2b490b6615750c3c33cba - depends: - - max-core ==24.6.0.dev2024111505 release - - max-python >=24.6.0.dev2024111505,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111505 release - - mblack ==24.6.0.dev2024111505 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + sha256: f5cbd2a19475c03e9fab1bd8a3cd253acfa699acf54f030feff225cbb14e3771 + md5: 6ba4b2a713bc0cd09981be4d713485f7 + depends: + - max-core ==24.6.0.dev2024111606 release + - max-python >=24.6.0.dev2024111606,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111606 release license: LicenseRef-Modular-Proprietary - size: 9922 - timestamp: 1731647972718 + size: 9927 + timestamp: 1731740801388 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111505-release.conda - sha256: d2d24bf7fe9c02e7d4226ce6871483372dd45ec421fca5371b5801d5ee0ca96a - md5: c8472a2336cb1f98f0e1a1c83986897d + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda + sha256: a0944b5a2cb9d130302944f3fddf29aa759d3136a093a9646d64d91819ee9033 + md5: aa46e9d790453675d997454f773f8472 depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 270921242 - timestamp: 1731647913212 + size: 269747282 + timestamp: 1731740891642 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111505-release.conda - sha256: d68b854c77625f82c38f073cfe37f784caad5031e9aef16055ac3beba04dfe4e - md5: 3505892d21633040f38dcf24ddb64ace + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda + sha256: ed37b180c1e9f6611347a276f19d32929605e5d1380f710096881c88cfb5e285 + md5: d718fedde6faf82712b42b17cba0e11c depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 274505699 - timestamp: 1731647972716 + size: 273517196 + timestamp: 1731740801386 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111505-release.conda - sha256: 40f3347d3769d65e3a1f4fd03b0e2df0a3943f768ac0892b59fab22252fbec55 - md5: 8683e2cdc979dc81a84542dc8abfc17d + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda + sha256: 75f8fb2fe371d5719f7005b854eedf1dae434bb26adf98b67128e11b8887343a + md5: 590ab20ef796cac866e442cad04258b9 depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 232905476 - timestamp: 1731648085636 + size: 231626699 + timestamp: 1731740929323 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.11release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111505-3.11release.conda - sha256: 9dc80577997d3634060efe0f6318d697b1f7033a1e51d24d868015089d516699 - md5: cc7168cdbed8f767a6177e57700f2068 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.11release.conda + sha256: 925abea767254ff08ec7dfc63b7d8ae86b5146f5e4139493d383267a5312ddb6 + md5: 726ae2c28b166e410f4683669f6d7d75 depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5446,18 +5449,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 135877805 - timestamp: 1731647913221 + size: 135379290 + timestamp: 1731740891652 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.11release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111505-3.11release.conda - sha256: c18dbf790f6e677c2c29721642a6662371bc2ba1867377e5530e245255fe125c - md5: 8db22da2d9058ec1e1524ef17294fa0d + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.11release.conda + sha256: 8f756be002f7c096a1b8dc266eaed9b0cacaf6d0d87c798d68218356522e90ac + md5: 2c157ad8a00de70c0360f4f5376ee7ba depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5477,18 +5480,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 139557160 - timestamp: 1731647972726 + size: 138850406 + timestamp: 1731740801396 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.11release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111505-3.11release.conda - sha256: abddfd73df4bb368c925ec505a6cd69ed75c93c5daf508281642565704264b73 - md5: 6c0681850d1f052ca93b9418eb0ed41d + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.11release.conda + sha256: c1cf37fa6ee4bda68639aae04ee8849f2f9537c2b5e8a8cb32da93034383005c + md5: 2f61245368fc60c46eec330047989d5c depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5508,17 +5511,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 124629174 - timestamp: 1731648085639 + size: 123904511 + timestamp: 1731740929326 - kind: conda name: mblack - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda - sha256: c96baed9c9ccf1f700a7f4e75939fb3895b3d7b525a2c394b70a9ab73b76bb2b - md5: a50bb5bd2b3ba0812fd947960f54f17b + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + sha256: 150afdfddbae9021bd38ca58c53c8502a35cc7c7307bafcc12e9b80e77fb9539 + md5: 0cdeaa3f81adf4667bc94167949ac63c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5528,8 +5531,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130602 - timestamp: 1731647972724 + size: 130619 + timestamp: 1731740801394 - kind: conda name: mdurl version: 0.1.2 @@ -5547,21 +5550,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda - sha256: 54ceb59acc35e95010c5fc666374895d0194081e808c8cad336064e86341a72f - md5: c6b1481fef48b13cfd416f0426ee2406 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + sha256: 2acd22f59870d4df76115913950891b12b03ac2f47c0688ba55425c6af5bcc51 + md5: 255895b0865394838eb19b7a0d10cbaa depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22946 - timestamp: 1731647972727 + size: 22954 + timestamp: 1731740801397 - kind: conda name: multidict version: 6.1.0 @@ -5618,59 +5621,61 @@ packages: timestamp: 1729065776220 - kind: conda name: multiprocess - version: 0.70.15 - build: py311h459d7ec_1 + version: 0.70.16 + build: py311h460d6c5_1 build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py311h459d7ec_1.conda - sha256: eca27e6fb5fb4ee73f04ae030bce29f5daa46fea3d6abdabb91740646f0d188e - md5: cebd02a02b199549a57e0d70aed7e2dc + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py311h460d6c5_1.conda + sha256: 8cf03e51901ed44f143f1ad380968a547651790e2dbb678a90bc2f49fd5cd405 + md5: 7851a81d1c0c85a4336fcdb886ed0651 depends: - - dill >=0.3.6 - - libgcc-ng >=12 + - __osx >=11.0 + - dill >=0.3.8 - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 license: BSD-3-Clause license_family: BSD - size: 339543 - timestamp: 1695459055911 + size: 347445 + timestamp: 1724954943593 - kind: conda name: multiprocess - version: 0.70.15 - build: py311hcd402e7_1 + version: 0.70.16 + build: py311h9ecbd09_1 build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py311hcd402e7_1.conda - sha256: 126190f2f981ea84cbf891a2ff6ff52e1bdd681c48392db40b79da0e9e786af8 - md5: bd07035dd460220466bcab62cefced4d + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py311h9ecbd09_1.conda + sha256: 54120261b227080f1eee580e7e48aba2951769f8a1735592df9e427cd5c99df0 + md5: 335ef38862ce33e7cd4547c8d698c7ae depends: - - dill >=0.3.6 - - libgcc-ng >=12 + - __glibc >=2.17,<3.0.a0 + - dill >=0.3.8 + - libgcc >=13 - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 license: BSD-3-Clause license_family: BSD - size: 339518 - timestamp: 1695459050286 + size: 348294 + timestamp: 1724954751583 - kind: conda name: multiprocess - version: 0.70.15 - build: py311heffc1b2_1 + version: 0.70.16 + build: py311ha879c10_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.15-py311heffc1b2_1.conda - sha256: 1bf6f7bd6b3515f26fbd977ad26bfb7012516fb3854fe9f2d715a6fbbf28a5de - md5: 68b2ed99d42d6eea3cecd25b6a151cc9 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py311ha879c10_1.conda + sha256: 5ae2f030001fc628a80f8fa0d3229e98e771074d57035307735ae2228f22f8bc + md5: 660b134f348dcc4cc18268b26751a65a depends: - - dill >=0.3.6 + - dill >=0.3.8 + - libgcc >=13 - python >=3.11,<3.12.0a0 - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 license: BSD-3-Clause license_family: BSD - size: 339630 - timestamp: 1695459263809 + size: 349109 + timestamp: 1724954811644 - kind: conda name: mypy_extensions version: 1.0.0 @@ -7363,19 +7368,19 @@ packages: timestamp: 1725632204888 - kind: conda name: setuptools - version: 75.3.0 - build: pyhd8ed1ab_0 + version: 75.5.0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda - sha256: a36d020b9f32fc3f1a6488a1c4a9c13988c6468faf6895bf30ca69521a61230e - md5: 2ce9825396daf72baabaade36cee16da + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda + sha256: 54dcf5f09f74f69641e0063bc695b38340d0349fa8371b1f2ed0c45c5b2fd224 + md5: ade63405adb52eeff89d506cd55908c0 depends: - - python >=3.8 + - python >=3.9 license: MIT license_family: MIT - size: 779561 - timestamp: 1730382173961 + size: 772480 + timestamp: 1731707561164 - kind: conda name: shellingham version: 1.5.4 @@ -8223,55 +8228,58 @@ packages: timestamp: 1641347626613 - kind: conda name: yarl - version: 1.16.0 - build: py311h9ecbd09_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.16.0-py311h9ecbd09_0.conda - sha256: 949fee5b985113293c10a925ff9290deb5552d185f99bb17f9b0da51c9941f77 - md5: d9c23163e7ac5f8926372c7d792a996f + version: 1.17.1 + build: py311h917b07b_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py311h917b07b_1.conda + sha256: b230535f4cdecda50cbbebc7f35c61850e8ce4b794e044501b92e906bff2c627 + md5: 88c8fd257a784e6a85c35635a45d3380 depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - idna >=2.0 - - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 150436 - timestamp: 1729798497731 + size: 141151 + timestamp: 1731680688005 - kind: conda name: yarl - version: 1.16.0 - build: py311ha879c10_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.16.0-py311ha879c10_0.conda - sha256: eb9bb9ddb14798a3769e9934e540d7fb8c0d61c3980478dc2249b447d5b3c565 - md5: bcac90c8c6cfd60a8fcc8bce889988c8 + version: 1.17.1 + build: py311h9ecbd09_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py311h9ecbd09_1.conda + sha256: 95e219cbadd2ab4310f47cbf822055de182d5e65901650e1d49c578a2ee77b10 + md5: 67f1b2dcdd3ea20b49da43a06a680ea0 depends: + - __glibc >=2.17,<3.0.a0 - idna >=2.0 - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 148892 - timestamp: 1729798635841 + size: 152353 + timestamp: 1731680504530 - kind: conda name: yarl - version: 1.16.0 - build: py311hae2e1ce_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.16.0-py311hae2e1ce_0.conda - sha256: de25041378a43fb0f178b3faf2cb5059c5dae8fddce0aa44777bb92d6618f044 - md5: 7857fc6365ac18c8d1f15a0dc24f598c + version: 1.17.1 + build: py311ha879c10_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py311ha879c10_1.conda + sha256: 7c0c20bb75541a4368ed46aaa5a4c4ec2abdfa9c50e767c1e602773d3211e708 + md5: a678598f195728ca4828e81196a8ed7f depends: - - __osx >=11.0 - idna >=2.0 + - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.11,<3.12.0a0 @@ -8279,8 +8287,8 @@ packages: - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 139424 - timestamp: 1729798679046 + size: 149987 + timestamp: 1731680531675 - kind: conda name: zeromq version: 4.3.5 @@ -8297,6 +8305,7 @@ packages: - libsodium >=1.0.20,<1.0.21.0a0 - libstdcxx >=13 license: MPL-2.0 + license_family: MOZILLA size: 335400 timestamp: 1731585026517 - kind: conda @@ -8314,6 +8323,7 @@ packages: - libsodium >=1.0.20,<1.0.21.0a0 - libstdcxx >=13 license: MPL-2.0 + license_family: MOZILLA size: 371419 timestamp: 1731589490850 - kind: conda @@ -8331,6 +8341,7 @@ packages: - libcxx >=18 - libsodium >=1.0.20,<1.0.21.0a0 license: MPL-2.0 + license_family: MOZILLA size: 281565 timestamp: 1731585108039 - kind: conda diff --git a/examples/notebooks/magic.lock b/examples/notebooks/magic.lock index 32295f9626..02b61356a1 100644 --- a/examples/notebooks/magic.lock +++ b/examples/notebooks/magic.lock @@ -9,7 +9,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.10.10-py312h178313f_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -54,12 +54,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.8-py312h2ec8cdc_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -71,14 +71,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py312h66e93f0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/httptools-0.6.1-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -157,15 +157,15 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111505-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py312h98912ed_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_1.conda @@ -238,7 +238,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda @@ -280,7 +280,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/xxhash-0.8.2-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.16.0-py312h66e93f0_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312hef9b889_1.conda @@ -288,7 +288,7 @@ environments: linux-aarch64: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.10.10-py312hcc812fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -333,12 +333,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.8-py312h6f74592_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -350,14 +350,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.5.0-py312hb2c0f52_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/httptools-0.6.1-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -437,15 +437,15 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111505-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py312hdd3e373_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_1.conda @@ -518,7 +518,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-h1088aeb_0.conda @@ -560,14 +560,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xxhash-0.8.2-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.16.0-py312hb2c0f52_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-h5efb499_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.23.0-py312hb698573_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda osx-arm64: - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.10.10-py312h906988d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -613,12 +613,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.8-py312hd8f9ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -630,14 +630,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py312h0bf5046_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/httptools-0.6.1-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -708,15 +708,15 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111505-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.15-py312h02f2b3b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhd8ed1ab_1.conda @@ -790,7 +790,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.21.0-py312hcd83bfe_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py312he431725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh31c8845_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-hd02b534_0.conda @@ -832,7 +832,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xxhash-0.8.2-hb547adb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.16.0-py312h0bf5046_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-hc1bb282_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py312h15fbf35_1.conda @@ -901,12 +901,12 @@ packages: timestamp: 1727779893392 - kind: conda name: aiohttp - version: 3.10.10 + version: 3.11.2 build: py312h178313f_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.10.10-py312h178313f_0.conda - sha256: d941b4e4ea00bf8f777321d2dea9c05e71767e4a38f4934b2c8d7a8408b2c813 - md5: d2f9e490ab2eae3e661b281346618a82 + url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda + sha256: 020315ba01fcd1b53fcb81280a00b8de7051ecf5c4503fc3b3281df0cbca05ed + md5: e2f92c2c85d3a0d376947847942ed36c depends: - __glibc >=2.17,<3.0.a0 - aiohappyeyeballs >=2.3.0 @@ -915,21 +915,22 @@ packages: - frozenlist >=1.1.1 - libgcc >=13 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 834195 - timestamp: 1728629186912 + size: 903248 + timestamp: 1731703484704 - kind: conda name: aiohttp - version: 3.10.10 - build: py312h906988d_0 + version: 3.11.2 + build: py312h998013c_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.10.10-py312h906988d_0.conda - sha256: f81b3f6e46ae5622b66191fdd3ff40d193b8cdd92242ba11bfa89159747406f9 - md5: f932c1be57fcd5a289e501f39735a7c2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda + sha256: 5e619945d37829cde16c5add63abb042ba953f0dc92b94abb990000a6ba3e191 + md5: 1c0150beac996afe9d8ee8297d324352 depends: - __osx >=11.0 - aiohappyeyeballs >=2.3.0 @@ -937,22 +938,23 @@ packages: - attrs >=17.3.0 - frozenlist >=1.1.1 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 807784 - timestamp: 1728629249798 + size: 865633 + timestamp: 1731703688760 - kind: conda name: aiohttp - version: 3.10.10 + version: 3.11.2 build: py312hcc812fe_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.10.10-py312hcc812fe_0.conda - sha256: 65161bdf0a80c0b13cf04470cc6ce4b4b9d765e9ee623445f6b441f7c37f0824 - md5: 61444df6e29f794f28decd1c40955f4d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda + sha256: 92385f1c7e1bac9e502a7943f4b8a3e58b62fa8ae1c232519116091ac0fdecfd + md5: bcbd2dff2e7d88f7d5b0dab015caa1c0 depends: - aiohappyeyeballs >=2.3.0 - aiosignal >=1.1.2 @@ -960,14 +962,15 @@ packages: - frozenlist >=1.1.1 - libgcc >=13 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 828236 - timestamp: 1728629275604 + size: 893381 + timestamp: 1731703604408 - kind: conda name: aiosignal version: 1.3.1 @@ -2620,33 +2623,33 @@ packages: timestamp: 1710320435158 - kind: conda name: datasets - version: 2.14.4 - build: pyhd8ed1ab_0 + version: 3.1.0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda - sha256: 7e09bd083a609138b780fcc4535924cb96814d2c908a36d4c64a2ba9ee3efe7f - md5: 3e087f072ce03c43a9b60522f5d0ca2f + url: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda + sha256: c3329f96a797fcec28a0bc42372bb253ce6434cbd6d9b5dc8e8417a247c43027 + md5: cd6278d231cd340f2f0c600037df5a98 depends: - aiohttp - - dill >=0.3.0,<0.3.8 - - fsspec >=2021.11.1 - - huggingface_hub >=0.14.0,<1.0.0 - - importlib-metadata - - multiprocess + - dill >=0.3.0,<0.3.9 + - filelock + - fsspec >=2023.1.0,<=2024.9.0 + - huggingface_hub >=0.23.0 + - multiprocess <0.70.17 - numpy >=1.17 - packaging - pandas - - pyarrow >=8.0.0 - - python >=3.8.0 + - pyarrow >=15.0.0 + - python >=3.9 - python-xxhash - pyyaml >=5.1 - - requests >=2.19.0 - - tqdm >=4.62.1 + - requests >=2.32.2 + - tqdm >=4.66.3 license: Apache-2.0 license_family: Apache - size: 347303 - timestamp: 1691593908658 + size: 332680 + timestamp: 1731706749584 - kind: conda name: debugpy version: 1.8.8 @@ -2749,19 +2752,19 @@ packages: timestamp: 1685233463632 - kind: conda name: dill - version: 0.3.7 + version: 0.3.8 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda - sha256: 4ff20c6be028be2825235631c45d9e4a75bca1de65f8840c02dfb28ea0137c45 - md5: 5e4f3466526c52bc9af2d2353a1460bd + url: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda + sha256: 482b5b566ca559119b504c53df12b08f3962a5ef8e48061d62fd58a47f8f2ec4 + md5: 78745f157d56877a2c6e7b386f66f3e2 depends: - python >=3.7 license: BSD-3-Clause license_family: BSD - size: 87553 - timestamp: 1690101185422 + size: 88169 + timestamp: 1706434833883 - kind: conda name: dnspython version: 2.7.0 @@ -2986,19 +2989,19 @@ packages: timestamp: 1729699642726 - kind: conda name: fsspec - version: 2024.10.0 + version: 2024.9.0 build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda - sha256: 40bb76981dd49d5869b48925a8975bb7bbe4e33e1e40af4ec06f6bf4a62effd7 - md5: 816dbc4679a64e4417cd1385d661bb31 + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda + sha256: 8f4e9805b4ec223dea0d99f9e7e57c391d9026455eb9f0d6e0784c5d1a1200dc + md5: ace4329fbff4c69ab0309db6da182987 depends: - python >=3.8 license: BSD-3-Clause license_family: BSD - size: 134745 - timestamp: 1729608972363 + size: 134378 + timestamp: 1725543368393 - kind: conda name: gflags version: 2.2.2 @@ -3162,24 +3165,24 @@ packages: timestamp: 1598856368685 - kind: conda name: httpcore - version: 1.0.6 - build: pyhd8ed1ab_0 + version: 1.0.7 + build: pyh29332c3_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda - sha256: 8952c3f1eb18bf4d7e813176c3b23e0af4e863e8b05087e73f74f371d73077ca - md5: b8e1901ef9a215fc41ecfb6bef7e0943 + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df + md5: 2ca8e6dbc86525c8b95e3c0ffa26442e depends: - - anyio >=3.0,<5.0 - - certifi + - python >=3.8 - h11 >=0.13,<0.15 - h2 >=3,<5 - - python >=3.8 - sniffio 1.* + - anyio >=3.0,<5.0 + - certifi license: BSD-3-Clause - license_family: BSD - size: 45711 - timestamp: 1727821031365 + size: 48959 + timestamp: 1731707562362 - kind: conda name: httptools version: 0.6.1 @@ -6376,76 +6379,76 @@ packages: timestamp: 1713250613726 - kind: conda name: max - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - sha256: 303dcbfeac536b7dd78e67cd6e46ad4bae25d2153b2105d4bb2b1fc385930679 - md5: feca80930af2b490b6615750c3c33cba + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + sha256: f5cbd2a19475c03e9fab1bd8a3cd253acfa699acf54f030feff225cbb14e3771 + md5: 6ba4b2a713bc0cd09981be4d713485f7 depends: - - max-core ==24.6.0.dev2024111505 release - - max-python >=24.6.0.dev2024111505,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111505 release - - mblack ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release + - max-python >=24.6.0.dev2024111606,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111606 release license: LicenseRef-Modular-Proprietary - size: 9922 - timestamp: 1731647972718 + size: 9927 + timestamp: 1731740801388 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111505-release.conda - sha256: d2d24bf7fe9c02e7d4226ce6871483372dd45ec421fca5371b5801d5ee0ca96a - md5: c8472a2336cb1f98f0e1a1c83986897d + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda + sha256: a0944b5a2cb9d130302944f3fddf29aa759d3136a093a9646d64d91819ee9033 + md5: aa46e9d790453675d997454f773f8472 depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 270921242 - timestamp: 1731647913212 + size: 269747282 + timestamp: 1731740891642 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111505-release.conda - sha256: d68b854c77625f82c38f073cfe37f784caad5031e9aef16055ac3beba04dfe4e - md5: 3505892d21633040f38dcf24ddb64ace + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda + sha256: ed37b180c1e9f6611347a276f19d32929605e5d1380f710096881c88cfb5e285 + md5: d718fedde6faf82712b42b17cba0e11c depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 274505699 - timestamp: 1731647972716 + size: 273517196 + timestamp: 1731740801386 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111505-release.conda - sha256: 40f3347d3769d65e3a1f4fd03b0e2df0a3943f768ac0892b59fab22252fbec55 - md5: 8683e2cdc979dc81a84542dc8abfc17d + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda + sha256: 75f8fb2fe371d5719f7005b854eedf1dae434bb26adf98b67128e11b8887343a + md5: 590ab20ef796cac866e442cad04258b9 depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 232905476 - timestamp: 1731648085636 + size: 231626699 + timestamp: 1731740929323 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111505-3.12release.conda - sha256: 7e7fd828e82859173019f8fca1a2b6c0a5374f647d525a71533196b69085abe6 - md5: bfd3e3e4efbcc74c410766eb6bb9eb62 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda + sha256: 00b0f79e81674ec427159d886a9fb398882f717379f21963b2c3119ac25daacc + md5: e9690926adf4b4d2f0e2f559820a725c depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6465,18 +6468,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 135895960 - timestamp: 1731647913225 + size: 135350303 + timestamp: 1731740891655 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111505-3.12release.conda - sha256: 4c9544d4b93e07db657070702b0eef24a45012bf7a9748f8a629de32154b217f - md5: 02cf1d0314b7f88343e51828d67c45ec + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda + sha256: c038462aa29afd7df015b62aa2bb282d1a330b987c189c9fd77a84deeac60137 + md5: fe0821156eb04863961b86fb8444f32e depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6496,18 +6499,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 139505829 - timestamp: 1731647972730 + size: 138816226 + timestamp: 1731740801400 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111505-3.12release.conda - sha256: f2ac5c1ca7163e14369aff737e9fc6021349f94abf7f5591981530b4a5923f8e - md5: 8f3660b27c3c3767f4104f1ddb0a6920 + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda + sha256: 12d8043348c838dc38b9b65a77b12a127ab966b2f76943c98d7e462e87265a65 + md5: e96cf862942301e107466d19dc659eeb depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6527,17 +6530,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 124621502 - timestamp: 1731648085640 + size: 123924607 + timestamp: 1731740929327 - kind: conda name: mblack - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda - sha256: c96baed9c9ccf1f700a7f4e75939fb3895b3d7b525a2c394b70a9ab73b76bb2b - md5: a50bb5bd2b3ba0812fd947960f54f17b + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + sha256: 150afdfddbae9021bd38ca58c53c8502a35cc7c7307bafcc12e9b80e77fb9539 + md5: 0cdeaa3f81adf4667bc94167949ac63c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -6547,8 +6550,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130602 - timestamp: 1731647972724 + size: 130619 + timestamp: 1731740801394 - kind: conda name: mdurl version: 0.1.2 @@ -6581,21 +6584,21 @@ packages: timestamp: 1698947249750 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda - sha256: 54ceb59acc35e95010c5fc666374895d0194081e808c8cad336064e86341a72f - md5: c6b1481fef48b13cfd416f0426ee2406 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + sha256: 2acd22f59870d4df76115913950891b12b03ac2f47c0688ba55425c6af5bcc51 + md5: 255895b0865394838eb19b7a0d10cbaa depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22946 - timestamp: 1731647972727 + size: 22954 + timestamp: 1731740801397 - kind: conda name: multidict version: 6.1.0 @@ -6652,59 +6655,61 @@ packages: timestamp: 1729065664275 - kind: conda name: multiprocess - version: 0.70.15 - build: py312h02f2b3b_1 + version: 0.70.16 + build: py312h024a12e_1 build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.15-py312h02f2b3b_1.conda - sha256: 8041371e3ec3fbc2ca13c71b0180672896e6382e62892d9f6b11a4c5dd675951 - md5: 910ef2223c71902175418d9163152788 + url: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda + sha256: d19a1c8b3fd44414657066becba960143e7115a385fb71b941f7e9c74f066a32 + md5: fd83a478d686df79aa394b9db1ad20b5 depends: - - dill >=0.3.6 - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython + - __osx >=11.0 + - dill >=0.3.8 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - size: 335147 - timestamp: 1695459275360 + size: 342831 + timestamp: 1724954807776 - kind: conda name: multiprocess - version: 0.70.15 - build: py312h98912ed_1 + version: 0.70.16 + build: py312h66e93f0_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py312h98912ed_1.conda - sha256: bb612a921fafda6375a2204ffebd8811db8dd3b8f25ac9886cc9bcbff7e3664e - md5: 5a64b9f44790d9a187a85366dd0ffa8d + url: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda + sha256: 459092c4e9305e00a0207b764a266c9caa14d82196322b2a74c96028c563a809 + md5: efe4a3f62320156f68579362314009f3 depends: - - dill >=0.3.6 - - libgcc-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 + - __glibc >=2.17,<3.0.a0 + - dill >=0.3.8 + - libgcc >=13 + - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - size: 335666 - timestamp: 1695459025249 + size: 340540 + timestamp: 1724954755987 - kind: conda name: multiprocess - version: 0.70.15 - build: py312hdd3e373_1 + version: 0.70.16 + build: py312hb2c0f52_1 build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py312hdd3e373_1.conda - sha256: c53362cdf346f314e111faddc53061e3fd2ece0ba68ca303f5dd109976df158f - md5: 173a1692d2b3ddc265dc6afd21a869b3 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda + sha256: f93627c78d1f86f593350196699b462c334542477aa55fe0212edf45392c9ab4 + md5: 642c63b684ce5614f157572b04816983 depends: - - dill >=0.3.6 - - libgcc-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython + - dill >=0.3.8 + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - size: 336110 - timestamp: 1695459137796 + size: 341428 + timestamp: 1724954862644 - kind: conda name: mypy_extensions version: 1.0.0 @@ -8893,19 +8898,19 @@ packages: timestamp: 1712585504123 - kind: conda name: setuptools - version: 75.3.0 - build: pyhd8ed1ab_0 + version: 75.5.0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda - sha256: a36d020b9f32fc3f1a6488a1c4a9c13988c6468faf6895bf30ca69521a61230e - md5: 2ce9825396daf72baabaade36cee16da + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda + sha256: 54dcf5f09f74f69641e0063bc695b38340d0349fa8371b1f2ed0c45c5b2fd224 + md5: ade63405adb52eeff89d506cd55908c0 depends: - - python >=3.8 + - python >=3.9 license: MIT license_family: MIT - size: 779561 - timestamp: 1730382173961 + size: 772480 + timestamp: 1731707561164 - kind: conda name: shellingham version: 1.5.4 @@ -9974,55 +9979,58 @@ packages: timestamp: 1641347626613 - kind: conda name: yarl - version: 1.16.0 - build: py312h0bf5046_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.16.0-py312h0bf5046_0.conda - sha256: 2485912fa1c1acf51501519cd4d0253234f7e5b243093985b26ce167fdd67407 - md5: 81e954d5e6d3465d00f040b8ac1a8f67 + version: 1.17.1 + build: py312h66e93f0_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda + sha256: b0addeacbe45e5ed148ec3b61cab0298dab1a6a244daf7bbb6c1fac052f955b2 + md5: ec87a401644dafa3887b268e100cd8b0 depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - idna >=2.0 + - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 138281 - timestamp: 1729798786022 + size: 149825 + timestamp: 1731680478105 - kind: conda name: yarl - version: 1.16.0 - build: py312h66e93f0_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.16.0-py312h66e93f0_0.conda - sha256: e9718b1f67f7359dee66995164ff734890066ad2eecb483b08f3f35b3f813c2d - md5: c3f4a6b56026c22319bf31514662b283 + version: 1.17.1 + build: py312hb2c0f52_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda + sha256: ab4464d73389d0dc1ac695cfc2e001a6944a374466f7d6cd40639376531bcbd7 + md5: 6138128f52ac49744f113666648920fa depends: - - __glibc >=2.17,<3.0.a0 - idna >=2.0 - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 147820 - timestamp: 1729798523861 + size: 147879 + timestamp: 1731680579252 - kind: conda name: yarl - version: 1.16.0 - build: py312hb2c0f52_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.16.0-py312hb2c0f52_0.conda - sha256: ee59521491ba9658a45a6c469cf1046c135c90f03f725caba76057a4d346c3a4 - md5: 0cf6a3caac35f0c668b4eaffd18d74c9 + version: 1.17.1 + build: py312hea69d52_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda + sha256: 3530756352b69d5fb689080b5902420e6336c42b7df2f56635520d09a8bc6f51 + md5: 64b70173136092b3b6b07c8d27e3f8fb depends: + - __osx >=11.0 - idna >=2.0 - - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.12,<3.13.0a0 @@ -10030,8 +10038,8 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 145651 - timestamp: 1729798643724 + size: 140472 + timestamp: 1731680626629 - kind: conda name: zeromq version: 4.3.5 @@ -10048,6 +10056,7 @@ packages: - libsodium >=1.0.20,<1.0.21.0a0 - libstdcxx >=13 license: MPL-2.0 + license_family: MOZILLA size: 335400 timestamp: 1731585026517 - kind: conda @@ -10065,6 +10074,7 @@ packages: - libsodium >=1.0.20,<1.0.21.0a0 - libstdcxx >=13 license: MPL-2.0 + license_family: MOZILLA size: 371419 timestamp: 1731589490850 - kind: conda @@ -10082,6 +10092,7 @@ packages: - libcxx >=18 - libsodium >=1.0.20,<1.0.21.0a0 license: MPL-2.0 + license_family: MOZILLA size: 281565 timestamp: 1731585108039 - kind: conda diff --git a/examples/operators/magic.lock b/examples/operators/magic.lock index 0f75b81ccf..48c9e54334 100644 --- a/examples/operators/magic.lock +++ b/examples/operators/magic.lock @@ -9,7 +9,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.10.10-py312h178313f_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -43,9 +43,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -54,14 +54,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py312h66e93f0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/httptools-0.6.1-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -122,14 +122,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111505-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py312h98912ed_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda @@ -180,7 +180,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda @@ -209,7 +209,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/xxhash-0.8.2-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.16.0-py312h66e93f0_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312hef9b889_1.conda @@ -217,7 +217,7 @@ environments: linux-aarch64: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.10.10-py312hcc812fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -251,9 +251,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -262,14 +262,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.5.0-py312hb2c0f52_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/httptools-0.6.1-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -331,14 +331,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111505-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py312hdd3e373_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py312h470d778_0.conda @@ -389,7 +389,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-h1088aeb_0.conda @@ -418,14 +418,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xxhash-0.8.2-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.16.0-py312hb2c0f52_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-h5efb499_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.23.0-py312hb698573_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda osx-arm64: - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.10.10-py312h906988d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -459,9 +459,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -470,14 +470,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py312h0bf5046_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/httptools-0.6.1-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -530,14 +530,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111505-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.15-py312h02f2b3b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py312h8442bc7_0.conda @@ -587,7 +587,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py312he431725_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-hd02b534_0.conda @@ -616,7 +616,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xxhash-0.8.2-hb547adb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.16.0-py312h0bf5046_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-hc1bb282_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py312h15fbf35_1.conda @@ -685,12 +685,12 @@ packages: timestamp: 1727779893392 - kind: conda name: aiohttp - version: 3.10.10 + version: 3.11.2 build: py312h178313f_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.10.10-py312h178313f_0.conda - sha256: d941b4e4ea00bf8f777321d2dea9c05e71767e4a38f4934b2c8d7a8408b2c813 - md5: d2f9e490ab2eae3e661b281346618a82 + url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda + sha256: 020315ba01fcd1b53fcb81280a00b8de7051ecf5c4503fc3b3281df0cbca05ed + md5: e2f92c2c85d3a0d376947847942ed36c depends: - __glibc >=2.17,<3.0.a0 - aiohappyeyeballs >=2.3.0 @@ -699,21 +699,22 @@ packages: - frozenlist >=1.1.1 - libgcc >=13 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 834195 - timestamp: 1728629186912 + size: 903248 + timestamp: 1731703484704 - kind: conda name: aiohttp - version: 3.10.10 - build: py312h906988d_0 + version: 3.11.2 + build: py312h998013c_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.10.10-py312h906988d_0.conda - sha256: f81b3f6e46ae5622b66191fdd3ff40d193b8cdd92242ba11bfa89159747406f9 - md5: f932c1be57fcd5a289e501f39735a7c2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda + sha256: 5e619945d37829cde16c5add63abb042ba953f0dc92b94abb990000a6ba3e191 + md5: 1c0150beac996afe9d8ee8297d324352 depends: - __osx >=11.0 - aiohappyeyeballs >=2.3.0 @@ -721,22 +722,23 @@ packages: - attrs >=17.3.0 - frozenlist >=1.1.1 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 807784 - timestamp: 1728629249798 + size: 865633 + timestamp: 1731703688760 - kind: conda name: aiohttp - version: 3.10.10 + version: 3.11.2 build: py312hcc812fe_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.10.10-py312hcc812fe_0.conda - sha256: 65161bdf0a80c0b13cf04470cc6ce4b4b9d765e9ee623445f6b441f7c37f0824 - md5: 61444df6e29f794f28decd1c40955f4d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda + sha256: 92385f1c7e1bac9e502a7943f4b8a3e58b62fa8ae1c232519116091ac0fdecfd + md5: bcbd2dff2e7d88f7d5b0dab015caa1c0 depends: - aiohappyeyeballs >=2.3.0 - aiosignal >=1.1.2 @@ -744,14 +746,15 @@ packages: - frozenlist >=1.1.1 - libgcc >=13 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 828236 - timestamp: 1728629275604 + size: 893381 + timestamp: 1731703604408 - kind: conda name: aiosignal version: 1.3.1 @@ -2168,33 +2171,33 @@ packages: timestamp: 1666700778190 - kind: conda name: datasets - version: 2.14.4 - build: pyhd8ed1ab_0 + version: 3.1.0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda - sha256: 7e09bd083a609138b780fcc4535924cb96814d2c908a36d4c64a2ba9ee3efe7f - md5: 3e087f072ce03c43a9b60522f5d0ca2f + url: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda + sha256: c3329f96a797fcec28a0bc42372bb253ce6434cbd6d9b5dc8e8417a247c43027 + md5: cd6278d231cd340f2f0c600037df5a98 depends: - aiohttp - - dill >=0.3.0,<0.3.8 - - fsspec >=2021.11.1 - - huggingface_hub >=0.14.0,<1.0.0 - - importlib-metadata - - multiprocess + - dill >=0.3.0,<0.3.9 + - filelock + - fsspec >=2023.1.0,<=2024.9.0 + - huggingface_hub >=0.23.0 + - multiprocess <0.70.17 - numpy >=1.17 - packaging - pandas - - pyarrow >=8.0.0 - - python >=3.8.0 + - pyarrow >=15.0.0 + - python >=3.9 - python-xxhash - pyyaml >=5.1 - - requests >=2.19.0 - - tqdm >=4.62.1 + - requests >=2.32.2 + - tqdm >=4.66.3 license: Apache-2.0 license_family: Apache - size: 347303 - timestamp: 1691593908658 + size: 332680 + timestamp: 1731706749584 - kind: conda name: deprecated version: 1.2.14 @@ -2213,19 +2216,19 @@ packages: timestamp: 1685233463632 - kind: conda name: dill - version: 0.3.7 + version: 0.3.8 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda - sha256: 4ff20c6be028be2825235631c45d9e4a75bca1de65f8840c02dfb28ea0137c45 - md5: 5e4f3466526c52bc9af2d2353a1460bd + url: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda + sha256: 482b5b566ca559119b504c53df12b08f3962a5ef8e48061d62fd58a47f8f2ec4 + md5: 78745f157d56877a2c6e7b386f66f3e2 depends: - python >=3.7 license: BSD-3-Clause license_family: BSD - size: 87553 - timestamp: 1690101185422 + size: 88169 + timestamp: 1706434833883 - kind: conda name: dnspython version: 2.7.0 @@ -2404,19 +2407,19 @@ packages: timestamp: 1729699642726 - kind: conda name: fsspec - version: 2024.10.0 + version: 2024.9.0 build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda - sha256: 40bb76981dd49d5869b48925a8975bb7bbe4e33e1e40af4ec06f6bf4a62effd7 - md5: 816dbc4679a64e4417cd1385d661bb31 + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda + sha256: 8f4e9805b4ec223dea0d99f9e7e57c391d9026455eb9f0d6e0784c5d1a1200dc + md5: ace4329fbff4c69ab0309db6da182987 depends: - python >=3.8 license: BSD-3-Clause license_family: BSD - size: 134745 - timestamp: 1729608972363 + size: 134378 + timestamp: 1725543368393 - kind: conda name: gflags version: 2.2.2 @@ -2580,24 +2583,24 @@ packages: timestamp: 1598856368685 - kind: conda name: httpcore - version: 1.0.6 - build: pyhd8ed1ab_0 + version: 1.0.7 + build: pyh29332c3_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda - sha256: 8952c3f1eb18bf4d7e813176c3b23e0af4e863e8b05087e73f74f371d73077ca - md5: b8e1901ef9a215fc41ecfb6bef7e0943 + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df + md5: 2ca8e6dbc86525c8b95e3c0ffa26442e depends: - - anyio >=3.0,<5.0 - - certifi + - python >=3.8 - h11 >=0.13,<0.15 - h2 >=3,<5 - - python >=3.8 - sniffio 1.* + - anyio >=3.0,<5.0 + - certifi license: BSD-3-Clause - license_family: BSD - size: 45711 - timestamp: 1727821031365 + size: 48959 + timestamp: 1731707562362 - kind: conda name: httptools version: 0.6.1 @@ -5357,76 +5360,76 @@ packages: timestamp: 1729351534830 - kind: conda name: max - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - sha256: 303dcbfeac536b7dd78e67cd6e46ad4bae25d2153b2105d4bb2b1fc385930679 - md5: feca80930af2b490b6615750c3c33cba - depends: - - max-core ==24.6.0.dev2024111505 release - - max-python >=24.6.0.dev2024111505,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111505 release - - mblack ==24.6.0.dev2024111505 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + sha256: f5cbd2a19475c03e9fab1bd8a3cd253acfa699acf54f030feff225cbb14e3771 + md5: 6ba4b2a713bc0cd09981be4d713485f7 + depends: + - max-core ==24.6.0.dev2024111606 release + - max-python >=24.6.0.dev2024111606,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111606 release license: LicenseRef-Modular-Proprietary - size: 9922 - timestamp: 1731647972718 + size: 9927 + timestamp: 1731740801388 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111505-release.conda - sha256: d2d24bf7fe9c02e7d4226ce6871483372dd45ec421fca5371b5801d5ee0ca96a - md5: c8472a2336cb1f98f0e1a1c83986897d + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda + sha256: a0944b5a2cb9d130302944f3fddf29aa759d3136a093a9646d64d91819ee9033 + md5: aa46e9d790453675d997454f773f8472 depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 270921242 - timestamp: 1731647913212 + size: 269747282 + timestamp: 1731740891642 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111505-release.conda - sha256: d68b854c77625f82c38f073cfe37f784caad5031e9aef16055ac3beba04dfe4e - md5: 3505892d21633040f38dcf24ddb64ace + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda + sha256: ed37b180c1e9f6611347a276f19d32929605e5d1380f710096881c88cfb5e285 + md5: d718fedde6faf82712b42b17cba0e11c depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 274505699 - timestamp: 1731647972716 + size: 273517196 + timestamp: 1731740801386 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111505-release.conda - sha256: 40f3347d3769d65e3a1f4fd03b0e2df0a3943f768ac0892b59fab22252fbec55 - md5: 8683e2cdc979dc81a84542dc8abfc17d + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda + sha256: 75f8fb2fe371d5719f7005b854eedf1dae434bb26adf98b67128e11b8887343a + md5: 590ab20ef796cac866e442cad04258b9 depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 232905476 - timestamp: 1731648085636 + size: 231626699 + timestamp: 1731740929323 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111505-3.12release.conda - sha256: 7e7fd828e82859173019f8fca1a2b6c0a5374f647d525a71533196b69085abe6 - md5: bfd3e3e4efbcc74c410766eb6bb9eb62 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda + sha256: 00b0f79e81674ec427159d886a9fb398882f717379f21963b2c3119ac25daacc + md5: e9690926adf4b4d2f0e2f559820a725c depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5446,18 +5449,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 135895960 - timestamp: 1731647913225 + size: 135350303 + timestamp: 1731740891655 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111505-3.12release.conda - sha256: 4c9544d4b93e07db657070702b0eef24a45012bf7a9748f8a629de32154b217f - md5: 02cf1d0314b7f88343e51828d67c45ec + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda + sha256: c038462aa29afd7df015b62aa2bb282d1a330b987c189c9fd77a84deeac60137 + md5: fe0821156eb04863961b86fb8444f32e depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5477,18 +5480,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 139505829 - timestamp: 1731647972730 + size: 138816226 + timestamp: 1731740801400 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111505-3.12release.conda - sha256: f2ac5c1ca7163e14369aff737e9fc6021349f94abf7f5591981530b4a5923f8e - md5: 8f3660b27c3c3767f4104f1ddb0a6920 + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda + sha256: 12d8043348c838dc38b9b65a77b12a127ab966b2f76943c98d7e462e87265a65 + md5: e96cf862942301e107466d19dc659eeb depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5508,17 +5511,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 124621502 - timestamp: 1731648085640 + size: 123924607 + timestamp: 1731740929327 - kind: conda name: mblack - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda - sha256: c96baed9c9ccf1f700a7f4e75939fb3895b3d7b525a2c394b70a9ab73b76bb2b - md5: a50bb5bd2b3ba0812fd947960f54f17b + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + sha256: 150afdfddbae9021bd38ca58c53c8502a35cc7c7307bafcc12e9b80e77fb9539 + md5: 0cdeaa3f81adf4667bc94167949ac63c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5528,8 +5531,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130602 - timestamp: 1731647972724 + size: 130619 + timestamp: 1731740801394 - kind: conda name: mdurl version: 0.1.2 @@ -5547,21 +5550,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda - sha256: 54ceb59acc35e95010c5fc666374895d0194081e808c8cad336064e86341a72f - md5: c6b1481fef48b13cfd416f0426ee2406 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + sha256: 2acd22f59870d4df76115913950891b12b03ac2f47c0688ba55425c6af5bcc51 + md5: 255895b0865394838eb19b7a0d10cbaa depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22946 - timestamp: 1731647972727 + size: 22954 + timestamp: 1731740801397 - kind: conda name: multidict version: 6.1.0 @@ -5618,59 +5621,61 @@ packages: timestamp: 1729065664275 - kind: conda name: multiprocess - version: 0.70.15 - build: py312h02f2b3b_1 + version: 0.70.16 + build: py312h024a12e_1 build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.15-py312h02f2b3b_1.conda - sha256: 8041371e3ec3fbc2ca13c71b0180672896e6382e62892d9f6b11a4c5dd675951 - md5: 910ef2223c71902175418d9163152788 + url: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda + sha256: d19a1c8b3fd44414657066becba960143e7115a385fb71b941f7e9c74f066a32 + md5: fd83a478d686df79aa394b9db1ad20b5 depends: - - dill >=0.3.6 - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython + - __osx >=11.0 + - dill >=0.3.8 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - size: 335147 - timestamp: 1695459275360 + size: 342831 + timestamp: 1724954807776 - kind: conda name: multiprocess - version: 0.70.15 - build: py312h98912ed_1 + version: 0.70.16 + build: py312h66e93f0_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py312h98912ed_1.conda - sha256: bb612a921fafda6375a2204ffebd8811db8dd3b8f25ac9886cc9bcbff7e3664e - md5: 5a64b9f44790d9a187a85366dd0ffa8d + url: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda + sha256: 459092c4e9305e00a0207b764a266c9caa14d82196322b2a74c96028c563a809 + md5: efe4a3f62320156f68579362314009f3 depends: - - dill >=0.3.6 - - libgcc-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 + - __glibc >=2.17,<3.0.a0 + - dill >=0.3.8 + - libgcc >=13 + - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - size: 335666 - timestamp: 1695459025249 + size: 340540 + timestamp: 1724954755987 - kind: conda name: multiprocess - version: 0.70.15 - build: py312hdd3e373_1 + version: 0.70.16 + build: py312hb2c0f52_1 build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py312hdd3e373_1.conda - sha256: c53362cdf346f314e111faddc53061e3fd2ece0ba68ca303f5dd109976df158f - md5: 173a1692d2b3ddc265dc6afd21a869b3 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda + sha256: f93627c78d1f86f593350196699b462c334542477aa55fe0212edf45392c9ab4 + md5: 642c63b684ce5614f157572b04816983 depends: - - dill >=0.3.6 - - libgcc-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython + - dill >=0.3.8 + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - size: 336110 - timestamp: 1695459137796 + size: 341428 + timestamp: 1724954862644 - kind: conda name: mypy_extensions version: 1.0.0 @@ -7360,19 +7365,19 @@ packages: timestamp: 1725632294079 - kind: conda name: setuptools - version: 75.3.0 - build: pyhd8ed1ab_0 + version: 75.5.0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda - sha256: a36d020b9f32fc3f1a6488a1c4a9c13988c6468faf6895bf30ca69521a61230e - md5: 2ce9825396daf72baabaade36cee16da + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda + sha256: 54dcf5f09f74f69641e0063bc695b38340d0349fa8371b1f2ed0c45c5b2fd224 + md5: ade63405adb52eeff89d506cd55908c0 depends: - - python >=3.8 + - python >=3.9 license: MIT license_family: MIT - size: 779561 - timestamp: 1730382173961 + size: 772480 + timestamp: 1731707561164 - kind: conda name: shellingham version: 1.5.4 @@ -8220,55 +8225,58 @@ packages: timestamp: 1641347626613 - kind: conda name: yarl - version: 1.16.0 - build: py312h0bf5046_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.16.0-py312h0bf5046_0.conda - sha256: 2485912fa1c1acf51501519cd4d0253234f7e5b243093985b26ce167fdd67407 - md5: 81e954d5e6d3465d00f040b8ac1a8f67 + version: 1.17.1 + build: py312h66e93f0_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda + sha256: b0addeacbe45e5ed148ec3b61cab0298dab1a6a244daf7bbb6c1fac052f955b2 + md5: ec87a401644dafa3887b268e100cd8b0 depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - idna >=2.0 + - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 138281 - timestamp: 1729798786022 + size: 149825 + timestamp: 1731680478105 - kind: conda name: yarl - version: 1.16.0 - build: py312h66e93f0_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.16.0-py312h66e93f0_0.conda - sha256: e9718b1f67f7359dee66995164ff734890066ad2eecb483b08f3f35b3f813c2d - md5: c3f4a6b56026c22319bf31514662b283 + version: 1.17.1 + build: py312hb2c0f52_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda + sha256: ab4464d73389d0dc1ac695cfc2e001a6944a374466f7d6cd40639376531bcbd7 + md5: 6138128f52ac49744f113666648920fa depends: - - __glibc >=2.17,<3.0.a0 - idna >=2.0 - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 147820 - timestamp: 1729798523861 + size: 147879 + timestamp: 1731680579252 - kind: conda name: yarl - version: 1.16.0 - build: py312hb2c0f52_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.16.0-py312hb2c0f52_0.conda - sha256: ee59521491ba9658a45a6c469cf1046c135c90f03f725caba76057a4d346c3a4 - md5: 0cf6a3caac35f0c668b4eaffd18d74c9 + version: 1.17.1 + build: py312hea69d52_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda + sha256: 3530756352b69d5fb689080b5902420e6336c42b7df2f56635520d09a8bc6f51 + md5: 64b70173136092b3b6b07c8d27e3f8fb depends: + - __osx >=11.0 - idna >=2.0 - - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.12,<3.13.0a0 @@ -8276,8 +8284,8 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 145651 - timestamp: 1729798643724 + size: 140472 + timestamp: 1731680626629 - kind: conda name: zeromq version: 4.3.5 @@ -8294,6 +8302,7 @@ packages: - libsodium >=1.0.20,<1.0.21.0a0 - libstdcxx >=13 license: MPL-2.0 + license_family: MOZILLA size: 335400 timestamp: 1731585026517 - kind: conda @@ -8311,6 +8320,7 @@ packages: - libsodium >=1.0.20,<1.0.21.0a0 - libstdcxx >=13 license: MPL-2.0 + license_family: MOZILLA size: 371419 timestamp: 1731589490850 - kind: conda @@ -8328,6 +8338,7 @@ packages: - libcxx >=18 - libsodium >=1.0.20,<1.0.21.0a0 license: MPL-2.0 + license_family: MOZILLA size: 281565 timestamp: 1731585108039 - kind: conda diff --git a/magic.lock b/magic.lock index 63e9f9abcf..81f4cba2f0 100644 --- a/magic.lock +++ b/magic.lock @@ -9,7 +9,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.10.10-py312h178313f_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -43,9 +43,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -54,14 +54,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py312h66e93f0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/httptools-0.6.1-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -123,14 +123,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111505-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py312h98912ed_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda @@ -181,7 +181,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda @@ -210,7 +210,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/xxhash-0.8.2-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.16.0-py312h66e93f0_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312hef9b889_1.conda @@ -218,7 +218,7 @@ environments: linux-aarch64: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.10.10-py312hcc812fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -252,9 +252,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -263,14 +263,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.5.0-py312hb2c0f52_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/httptools-0.6.1-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -333,14 +333,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111505-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py312hdd3e373_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py312h470d778_0.conda @@ -391,7 +391,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-h1088aeb_0.conda @@ -420,14 +420,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xxhash-0.8.2-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.16.0-py312hb2c0f52_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-h5efb499_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.23.0-py312hb698573_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda osx-arm64: - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.10.10-py312h906988d_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -461,9 +461,9 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email_validator-2.2.0-hd8ed1ab_0.conda @@ -472,14 +472,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/fastapi-cli-0.0.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py312h0bf5046_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/h11-0.14.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/h2-4.1.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/hpack-4.0.0-pyh9f0ad1d_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/httptools-0.6.1-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.27.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.2-pyh0610db2_0.conda @@ -533,14 +533,14 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111505-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111505-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.15-py312h02f2b3b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py312h8442bc7_0.conda @@ -590,7 +590,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py312he431725_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-hd02b534_0.conda @@ -619,7 +619,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xxhash-0.8.2-hb547adb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.16.0-py312h0bf5046_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-hc1bb282_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py312h15fbf35_1.conda @@ -688,12 +688,12 @@ packages: timestamp: 1727779893392 - kind: conda name: aiohttp - version: 3.10.10 + version: 3.11.2 build: py312h178313f_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.10.10-py312h178313f_0.conda - sha256: d941b4e4ea00bf8f777321d2dea9c05e71767e4a38f4934b2c8d7a8408b2c813 - md5: d2f9e490ab2eae3e661b281346618a82 + url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda + sha256: 020315ba01fcd1b53fcb81280a00b8de7051ecf5c4503fc3b3281df0cbca05ed + md5: e2f92c2c85d3a0d376947847942ed36c depends: - __glibc >=2.17,<3.0.a0 - aiohappyeyeballs >=2.3.0 @@ -702,21 +702,22 @@ packages: - frozenlist >=1.1.1 - libgcc >=13 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 834195 - timestamp: 1728629186912 + size: 903248 + timestamp: 1731703484704 - kind: conda name: aiohttp - version: 3.10.10 - build: py312h906988d_0 + version: 3.11.2 + build: py312h998013c_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.10.10-py312h906988d_0.conda - sha256: f81b3f6e46ae5622b66191fdd3ff40d193b8cdd92242ba11bfa89159747406f9 - md5: f932c1be57fcd5a289e501f39735a7c2 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda + sha256: 5e619945d37829cde16c5add63abb042ba953f0dc92b94abb990000a6ba3e191 + md5: 1c0150beac996afe9d8ee8297d324352 depends: - __osx >=11.0 - aiohappyeyeballs >=2.3.0 @@ -724,22 +725,23 @@ packages: - attrs >=17.3.0 - frozenlist >=1.1.1 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 807784 - timestamp: 1728629249798 + size: 865633 + timestamp: 1731703688760 - kind: conda name: aiohttp - version: 3.10.10 + version: 3.11.2 build: py312hcc812fe_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.10.10-py312hcc812fe_0.conda - sha256: 65161bdf0a80c0b13cf04470cc6ce4b4b9d765e9ee623445f6b441f7c37f0824 - md5: 61444df6e29f794f28decd1c40955f4d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda + sha256: 92385f1c7e1bac9e502a7943f4b8a3e58b62fa8ae1c232519116091ac0fdecfd + md5: bcbd2dff2e7d88f7d5b0dab015caa1c0 depends: - aiohappyeyeballs >=2.3.0 - aiosignal >=1.1.2 @@ -747,14 +749,15 @@ packages: - frozenlist >=1.1.1 - libgcc >=13 - multidict >=4.5,<7.0 + - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - yarl >=1.12.0,<2.0 + - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 828236 - timestamp: 1728629275604 + size: 893381 + timestamp: 1731703604408 - kind: conda name: aiosignal version: 1.3.1 @@ -2171,33 +2174,33 @@ packages: timestamp: 1666700778190 - kind: conda name: datasets - version: 2.14.4 - build: pyhd8ed1ab_0 + version: 3.1.0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda - sha256: 7e09bd083a609138b780fcc4535924cb96814d2c908a36d4c64a2ba9ee3efe7f - md5: 3e087f072ce03c43a9b60522f5d0ca2f + url: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda + sha256: c3329f96a797fcec28a0bc42372bb253ce6434cbd6d9b5dc8e8417a247c43027 + md5: cd6278d231cd340f2f0c600037df5a98 depends: - aiohttp - - dill >=0.3.0,<0.3.8 - - fsspec >=2021.11.1 - - huggingface_hub >=0.14.0,<1.0.0 - - importlib-metadata - - multiprocess + - dill >=0.3.0,<0.3.9 + - filelock + - fsspec >=2023.1.0,<=2024.9.0 + - huggingface_hub >=0.23.0 + - multiprocess <0.70.17 - numpy >=1.17 - packaging - pandas - - pyarrow >=8.0.0 - - python >=3.8.0 + - pyarrow >=15.0.0 + - python >=3.9 - python-xxhash - pyyaml >=5.1 - - requests >=2.19.0 - - tqdm >=4.62.1 + - requests >=2.32.2 + - tqdm >=4.66.3 license: Apache-2.0 license_family: Apache - size: 347303 - timestamp: 1691593908658 + size: 332680 + timestamp: 1731706749584 - kind: conda name: deprecated version: 1.2.14 @@ -2216,19 +2219,19 @@ packages: timestamp: 1685233463632 - kind: conda name: dill - version: 0.3.7 + version: 0.3.8 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.7-pyhd8ed1ab_0.conda - sha256: 4ff20c6be028be2825235631c45d9e4a75bca1de65f8840c02dfb28ea0137c45 - md5: 5e4f3466526c52bc9af2d2353a1460bd + url: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda + sha256: 482b5b566ca559119b504c53df12b08f3962a5ef8e48061d62fd58a47f8f2ec4 + md5: 78745f157d56877a2c6e7b386f66f3e2 depends: - python >=3.7 license: BSD-3-Clause license_family: BSD - size: 87553 - timestamp: 1690101185422 + size: 88169 + timestamp: 1706434833883 - kind: conda name: dnspython version: 2.7.0 @@ -2407,19 +2410,19 @@ packages: timestamp: 1729699642726 - kind: conda name: fsspec - version: 2024.10.0 + version: 2024.9.0 build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhff2d567_0.conda - sha256: 40bb76981dd49d5869b48925a8975bb7bbe4e33e1e40af4ec06f6bf4a62effd7 - md5: 816dbc4679a64e4417cd1385d661bb31 + url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.9.0-pyhff2d567_0.conda + sha256: 8f4e9805b4ec223dea0d99f9e7e57c391d9026455eb9f0d6e0784c5d1a1200dc + md5: ace4329fbff4c69ab0309db6da182987 depends: - python >=3.8 license: BSD-3-Clause license_family: BSD - size: 134745 - timestamp: 1729608972363 + size: 134378 + timestamp: 1725543368393 - kind: conda name: gflags version: 2.2.2 @@ -2583,24 +2586,24 @@ packages: timestamp: 1598856368685 - kind: conda name: httpcore - version: 1.0.6 - build: pyhd8ed1ab_0 + version: 1.0.7 + build: pyh29332c3_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.6-pyhd8ed1ab_0.conda - sha256: 8952c3f1eb18bf4d7e813176c3b23e0af4e863e8b05087e73f74f371d73077ca - md5: b8e1901ef9a215fc41ecfb6bef7e0943 + url: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda + sha256: c84d012a245171f3ed666a8bf9319580c269b7843ffa79f26468842da3abd5df + md5: 2ca8e6dbc86525c8b95e3c0ffa26442e depends: - - anyio >=3.0,<5.0 - - certifi + - python >=3.8 - h11 >=0.13,<0.15 - h2 >=3,<5 - - python >=3.8 - sniffio 1.* + - anyio >=3.0,<5.0 + - certifi license: BSD-3-Clause - license_family: BSD - size: 45711 - timestamp: 1727821031365 + size: 48959 + timestamp: 1731707562362 - kind: conda name: httptools version: 0.6.1 @@ -5375,76 +5378,76 @@ packages: timestamp: 1729351534830 - kind: conda name: max - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111505-release.conda - sha256: 303dcbfeac536b7dd78e67cd6e46ad4bae25d2153b2105d4bb2b1fc385930679 - md5: feca80930af2b490b6615750c3c33cba - depends: - - max-core ==24.6.0.dev2024111505 release - - max-python >=24.6.0.dev2024111505,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111505 release - - mblack ==24.6.0.dev2024111505 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda + sha256: f5cbd2a19475c03e9fab1bd8a3cd253acfa699acf54f030feff225cbb14e3771 + md5: 6ba4b2a713bc0cd09981be4d713485f7 + depends: + - max-core ==24.6.0.dev2024111606 release + - max-python >=24.6.0.dev2024111606,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111606 release license: LicenseRef-Modular-Proprietary - size: 9922 - timestamp: 1731647972718 + size: 9927 + timestamp: 1731740801388 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111505-release.conda - sha256: d2d24bf7fe9c02e7d4226ce6871483372dd45ec421fca5371b5801d5ee0ca96a - md5: c8472a2336cb1f98f0e1a1c83986897d + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda + sha256: a0944b5a2cb9d130302944f3fddf29aa759d3136a093a9646d64d91819ee9033 + md5: aa46e9d790453675d997454f773f8472 depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 270921242 - timestamp: 1731647913212 + size: 269747282 + timestamp: 1731740891642 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111505-release.conda - sha256: d68b854c77625f82c38f073cfe37f784caad5031e9aef16055ac3beba04dfe4e - md5: 3505892d21633040f38dcf24ddb64ace + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda + sha256: ed37b180c1e9f6611347a276f19d32929605e5d1380f710096881c88cfb5e285 + md5: d718fedde6faf82712b42b17cba0e11c depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 274505699 - timestamp: 1731647972716 + size: 273517196 + timestamp: 1731740801386 - kind: conda name: max-core - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111505-release.conda - sha256: 40f3347d3769d65e3a1f4fd03b0e2df0a3943f768ac0892b59fab22252fbec55 - md5: 8683e2cdc979dc81a84542dc8abfc17d + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda + sha256: 75f8fb2fe371d5719f7005b854eedf1dae434bb26adf98b67128e11b8887343a + md5: 590ab20ef796cac866e442cad04258b9 depends: - - mblack ==24.6.0.dev2024111505 release + - mblack ==24.6.0.dev2024111606 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 232905476 - timestamp: 1731648085636 + size: 231626699 + timestamp: 1731740929323 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111505-3.12release.conda - sha256: 7e7fd828e82859173019f8fca1a2b6c0a5374f647d525a71533196b69085abe6 - md5: bfd3e3e4efbcc74c410766eb6bb9eb62 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda + sha256: 00b0f79e81674ec427159d886a9fb398882f717379f21963b2c3119ac25daacc + md5: e9690926adf4b4d2f0e2f559820a725c depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5464,18 +5467,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 135895960 - timestamp: 1731647913225 + size: 135350303 + timestamp: 1731740891655 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111505-3.12release.conda - sha256: 4c9544d4b93e07db657070702b0eef24a45012bf7a9748f8a629de32154b217f - md5: 02cf1d0314b7f88343e51828d67c45ec + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda + sha256: c038462aa29afd7df015b62aa2bb282d1a330b987c189c9fd77a84deeac60137 + md5: fe0821156eb04863961b86fb8444f32e depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5495,18 +5498,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 139505829 - timestamp: 1731647972730 + size: 138816226 + timestamp: 1731740801400 - kind: conda name: max-python - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111505-3.12release.conda - sha256: f2ac5c1ca7163e14369aff737e9fc6021349f94abf7f5591981530b4a5923f8e - md5: 8f3660b27c3c3767f4104f1ddb0a6920 + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda + sha256: 12d8043348c838dc38b9b65a77b12a127ab966b2f76943c98d7e462e87265a65 + md5: e96cf862942301e107466d19dc659eeb depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5526,17 +5529,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 124621502 - timestamp: 1731648085640 + size: 123924607 + timestamp: 1731740929327 - kind: conda name: mblack - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111505-release.conda - sha256: c96baed9c9ccf1f700a7f4e75939fb3895b3d7b525a2c394b70a9ab73b76bb2b - md5: a50bb5bd2b3ba0812fd947960f54f17b + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + sha256: 150afdfddbae9021bd38ca58c53c8502a35cc7c7307bafcc12e9b80e77fb9539 + md5: 0cdeaa3f81adf4667bc94167949ac63c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5546,8 +5549,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130602 - timestamp: 1731647972724 + size: 130619 + timestamp: 1731740801394 - kind: conda name: mdurl version: 0.1.2 @@ -5565,21 +5568,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111505 + version: 24.6.0.dev2024111606 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111505-release.conda - sha256: 54ceb59acc35e95010c5fc666374895d0194081e808c8cad336064e86341a72f - md5: c6b1481fef48b13cfd416f0426ee2406 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + sha256: 2acd22f59870d4df76115913950891b12b03ac2f47c0688ba55425c6af5bcc51 + md5: 255895b0865394838eb19b7a0d10cbaa depends: - - max-core ==24.6.0.dev2024111505 release + - max-core ==24.6.0.dev2024111606 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22946 - timestamp: 1731647972727 + size: 22954 + timestamp: 1731740801397 - kind: conda name: multidict version: 6.1.0 @@ -5636,59 +5639,61 @@ packages: timestamp: 1729065664275 - kind: conda name: multiprocess - version: 0.70.15 - build: py312h02f2b3b_1 + version: 0.70.16 + build: py312h024a12e_1 build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.15-py312h02f2b3b_1.conda - sha256: 8041371e3ec3fbc2ca13c71b0180672896e6382e62892d9f6b11a4c5dd675951 - md5: 910ef2223c71902175418d9163152788 + url: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda + sha256: d19a1c8b3fd44414657066becba960143e7115a385fb71b941f7e9c74f066a32 + md5: fd83a478d686df79aa394b9db1ad20b5 depends: - - dill >=0.3.6 - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython + - __osx >=11.0 + - dill >=0.3.8 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - size: 335147 - timestamp: 1695459275360 + size: 342831 + timestamp: 1724954807776 - kind: conda name: multiprocess - version: 0.70.15 - build: py312h98912ed_1 + version: 0.70.16 + build: py312h66e93f0_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py312h98912ed_1.conda - sha256: bb612a921fafda6375a2204ffebd8811db8dd3b8f25ac9886cc9bcbff7e3664e - md5: 5a64b9f44790d9a187a85366dd0ffa8d + url: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda + sha256: 459092c4e9305e00a0207b764a266c9caa14d82196322b2a74c96028c563a809 + md5: efe4a3f62320156f68579362314009f3 depends: - - dill >=0.3.6 - - libgcc-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 + - __glibc >=2.17,<3.0.a0 + - dill >=0.3.8 + - libgcc >=13 + - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - size: 335666 - timestamp: 1695459025249 + size: 340540 + timestamp: 1724954755987 - kind: conda name: multiprocess - version: 0.70.15 - build: py312hdd3e373_1 + version: 0.70.16 + build: py312hb2c0f52_1 build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py312hdd3e373_1.conda - sha256: c53362cdf346f314e111faddc53061e3fd2ece0ba68ca303f5dd109976df158f - md5: 173a1692d2b3ddc265dc6afd21a869b3 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda + sha256: f93627c78d1f86f593350196699b462c334542477aa55fe0212edf45392c9ab4 + md5: 642c63b684ce5614f157572b04816983 depends: - - dill >=0.3.6 - - libgcc-ng >=12 - - python >=3.12.0rc3,<3.13.0a0 - - python >=3.12.0rc3,<3.13.0a0 *_cpython + - dill >=0.3.8 + - libgcc >=13 + - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: BSD-3-Clause license_family: BSD - size: 336110 - timestamp: 1695459137796 + size: 341428 + timestamp: 1724954862644 - kind: conda name: mypy_extensions version: 1.0.0 @@ -7378,19 +7383,19 @@ packages: timestamp: 1725632294079 - kind: conda name: setuptools - version: 75.3.0 - build: pyhd8ed1ab_0 + version: 75.5.0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.3.0-pyhd8ed1ab_0.conda - sha256: a36d020b9f32fc3f1a6488a1c4a9c13988c6468faf6895bf30ca69521a61230e - md5: 2ce9825396daf72baabaade36cee16da + url: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda + sha256: 54dcf5f09f74f69641e0063bc695b38340d0349fa8371b1f2ed0c45c5b2fd224 + md5: ade63405adb52eeff89d506cd55908c0 depends: - - python >=3.8 + - python >=3.9 license: MIT license_family: MIT - size: 779561 - timestamp: 1730382173961 + size: 772480 + timestamp: 1731707561164 - kind: conda name: shellingham version: 1.5.4 @@ -8238,55 +8243,58 @@ packages: timestamp: 1641347626613 - kind: conda name: yarl - version: 1.16.0 - build: py312h0bf5046_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.16.0-py312h0bf5046_0.conda - sha256: 2485912fa1c1acf51501519cd4d0253234f7e5b243093985b26ce167fdd67407 - md5: 81e954d5e6d3465d00f040b8ac1a8f67 + version: 1.17.1 + build: py312h66e93f0_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda + sha256: b0addeacbe45e5ed148ec3b61cab0298dab1a6a244daf7bbb6c1fac052f955b2 + md5: ec87a401644dafa3887b268e100cd8b0 depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - idna >=2.0 + - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.12,<3.13.0a0 - - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 138281 - timestamp: 1729798786022 + size: 149825 + timestamp: 1731680478105 - kind: conda name: yarl - version: 1.16.0 - build: py312h66e93f0_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.16.0-py312h66e93f0_0.conda - sha256: e9718b1f67f7359dee66995164ff734890066ad2eecb483b08f3f35b3f813c2d - md5: c3f4a6b56026c22319bf31514662b283 + version: 1.17.1 + build: py312hb2c0f52_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda + sha256: ab4464d73389d0dc1ac695cfc2e001a6944a374466f7d6cd40639376531bcbd7 + md5: 6138128f52ac49744f113666648920fa depends: - - __glibc >=2.17,<3.0.a0 - idna >=2.0 - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.12,<3.13.0a0 + - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 147820 - timestamp: 1729798523861 + size: 147879 + timestamp: 1731680579252 - kind: conda name: yarl - version: 1.16.0 - build: py312hb2c0f52_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.16.0-py312hb2c0f52_0.conda - sha256: ee59521491ba9658a45a6c469cf1046c135c90f03f725caba76057a4d346c3a4 - md5: 0cf6a3caac35f0c668b4eaffd18d74c9 + version: 1.17.1 + build: py312hea69d52_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda + sha256: 3530756352b69d5fb689080b5902420e6336c42b7df2f56635520d09a8bc6f51 + md5: 64b70173136092b3b6b07c8d27e3f8fb depends: + - __osx >=11.0 - idna >=2.0 - - libgcc >=13 - multidict >=4.0 - propcache >=0.2.0 - python >=3.12,<3.13.0a0 @@ -8294,8 +8302,8 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 145651 - timestamp: 1729798643724 + size: 140472 + timestamp: 1731680626629 - kind: conda name: zeromq version: 4.3.5 @@ -8312,6 +8320,7 @@ packages: - libsodium >=1.0.20,<1.0.21.0a0 - libstdcxx >=13 license: MPL-2.0 + license_family: MOZILLA size: 335400 timestamp: 1731585026517 - kind: conda @@ -8329,6 +8338,7 @@ packages: - libsodium >=1.0.20,<1.0.21.0a0 - libstdcxx >=13 license: MPL-2.0 + license_family: MOZILLA size: 371419 timestamp: 1731589490850 - kind: conda @@ -8346,6 +8356,7 @@ packages: - libcxx >=18 - libsodium >=1.0.20,<1.0.21.0a0 license: MPL-2.0 + license_family: MOZILLA size: 281565 timestamp: 1731585108039 - kind: conda From fb004b703b6ae2f7d75654926586179faad21601 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 16 Nov 2024 07:49:11 -0800 Subject: [PATCH 06/28] [mojo-lang] Refactor some implicit conversion handling. This refactors some implicit conversion emission logic in the compiler's OverloadSet processing logic to follow the `CallSyntax` enum instead of using a redundant `allowImplicitConversions` boolean. Beyond unifying the code this exposes a problem where we allowed implicit conversions from implicit conversions (invalid "a->b->c" conversion) in one case. This fixes that, which requires tightening up some logic in the standard library. MODULAR_ORIG_COMMIT_REV_ID: fe26e7bfdb8d36b36f9537d5370a142076a58feb --- stdlib/src/builtin/object.mojo | 11 +++++++++++ stdlib/src/memory/arc.mojo | 2 +- stdlib/src/python/python.mojo | 2 +- stdlib/src/sys/info.mojo | 14 ++++++++------ stdlib/src/utils/numerics.mojo | 4 ++-- stdlib/test/builtin/test_none.mojo | 5 +++++ stdlib/test/os/test_atomic.mojo | 4 ++-- stdlib/test/pathlib/test_pathlib.mojo | 2 +- 8 files changed, 31 insertions(+), 13 deletions(-) diff --git a/stdlib/src/builtin/object.mojo b/stdlib/src/builtin/object.mojo index 2d0cef2c92..5b1f41298f 100644 --- a/stdlib/src/builtin/object.mojo +++ b/stdlib/src/builtin/object.mojo @@ -743,6 +743,17 @@ struct object( """ self._value = _ObjectImpl() + # FIXME: None literal should be of NoneType not !kgen.none. + @doc_private + @always_inline + fn __init__(out self, none: __mlir_type.`!kgen.none`): + """Initializes a none value object from a `None` literal. + + Args: + none: None. + """ + self = NoneType() + @always_inline fn __init__(out self, value: Int): """Initializes the object with an integer value. diff --git a/stdlib/src/memory/arc.mojo b/stdlib/src/memory/arc.mojo index 9863d700b0..4ff31e4900 100644 --- a/stdlib/src/memory/arc.mojo +++ b/stdlib/src/memory/arc.mojo @@ -56,7 +56,7 @@ struct _ArcInner[T: Movable]: fn __init__(out self, owned value: T): """Create an initialized instance of this with a refcount of 1.""" - self.refcount = 1 + self.refcount = Scalar[DType.uint64](1) self.payload = value^ fn add_ref(inout self): diff --git a/stdlib/src/python/python.mojo b/stdlib/src/python/python.mojo index 937f727915..fbd1825c26 100644 --- a/stdlib/src/python/python.mojo +++ b/stdlib/src/python/python.mojo @@ -60,7 +60,7 @@ struct _PythonGlobal: @always_inline fn _get_global_python_itf() -> _PythonInterfaceImpl: var ptr = _PYTHON_GLOBAL.get_or_create_ptr() - return ptr.bitcast[CPython]() + return _PythonInterfaceImpl(ptr.bitcast[CPython]()) struct _PythonInterfaceImpl: diff --git a/stdlib/src/sys/info.mojo b/stdlib/src/sys/info.mojo index 682f4f2d78..661fc0b94f 100644 --- a/stdlib/src/sys/info.mojo +++ b/stdlib/src/sys/info.mojo @@ -34,12 +34,14 @@ fn _accelerator_arch() -> StringLiteral: fn _get_arch[target: __mlir_type.`!kgen.target`]() -> String: - return __mlir_attr[ - `#kgen.param.expr : !kgen.string`, - ] + return String( + __mlir_attr[ + `#kgen.param.expr : !kgen.string`, + ] + ) @always_inline("nodebug") diff --git a/stdlib/src/utils/numerics.mojo b/stdlib/src/utils/numerics.mojo index 72dea362b3..05db78d5f5 100644 --- a/stdlib/src/utils/numerics.mojo +++ b/stdlib/src/utils/numerics.mojo @@ -812,7 +812,7 @@ fn max_finite[type: DType]() -> Scalar[type]: elif type is DType.float64: return 1.79769313486231570815e308 elif type is DType.bool: - return True + return rebind[Scalar[type]](Scalar(True)) else: constrained[False, "max_finite() called on unsupported type"]() return 0 @@ -853,7 +853,7 @@ fn min_finite[type: DType]() -> Scalar[type]: elif type.is_floating_point(): return -max_finite[type]() elif type is DType.bool: - return False + return rebind[Scalar[type]](Scalar(False)) else: constrained[False, "min_finite() called on unsupported type"]() return 0 diff --git a/stdlib/test/builtin/test_none.mojo b/stdlib/test/builtin/test_none.mojo index 9d588bb7d4..07404bb8ae 100644 --- a/stdlib/test/builtin/test_none.mojo +++ b/stdlib/test/builtin/test_none.mojo @@ -40,6 +40,11 @@ struct FromNone: fn __init__(out self, none: NoneType): self.value = -1 + # FIXME: None literal should be of NoneType not !kgen.none. + @always_inline + fn __init__(out self, none: __mlir_type.`!kgen.none`): + self = NoneType() + fn __init__(out self, value: Int): self.value = value diff --git a/stdlib/test/os/test_atomic.mojo b/stdlib/test/os/test_atomic.mojo index ab536d9e41..d8433fd194 100644 --- a/stdlib/test/os/test_atomic.mojo +++ b/stdlib/test/os/test_atomic.mojo @@ -18,7 +18,7 @@ from testing import assert_equal, assert_false, assert_true fn test_atomic() raises: - var atom: Atomic[DType.index] = 3 + var atom = Atomic[DType.index](3) assert_equal(atom.load(), 3) @@ -68,7 +68,7 @@ fn test_atomic_floating_point() raises: def test_compare_exchange_weak(): - var atom: Atomic[DType.int64] = 3 + var atom = Atomic[DType.int64](3) var expected = Int64(3) var desired = Int64(3) var ok = atom.compare_exchange_weak(expected, desired) diff --git a/stdlib/test/pathlib/test_pathlib.mojo b/stdlib/test/pathlib/test_pathlib.mojo index fc54c8f8d4..d57c149e0f 100644 --- a/stdlib/test/pathlib/test_pathlib.mojo +++ b/stdlib/test/pathlib/test_pathlib.mojo @@ -91,7 +91,7 @@ fn get_user_path() -> Path: @parameter if os_is_windows(): return Path("C:") / "Users" / "user" - return "/home/user" + return Path("/home/user") fn get_current_home() -> String: From 194b24b70648f6d835915e5240392a1394019d4e Mon Sep 17 00:00:00 2001 From: martinvuyk <110240700+martinvuyk@users.noreply.github.com> Date: Sat, 16 Nov 2024 09:50:20 -0600 Subject: [PATCH 07/28] [External] [stdlib] Fix unsafe `String.write_bytes()` (#50972) [External] [stdlib] Fix unsafe `String.write_bytes()` Fix an unsafe assumption that the span is null terminated. Co-authored-by: martinvuyk <110240700+martinvuyk@users.noreply.github.com> Closes modularml/mojo#3773 MODULAR_ORIG_COMMIT_REV_ID: 4b07e6d189015a2053b6f8f3a5a0249ab00b3b1f --- stdlib/src/collections/string.mojo | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/stdlib/src/collections/string.mojo b/stdlib/src/collections/string.mojo index b76e93e94c..4cbebc3028 100644 --- a/stdlib/src/collections/string.mojo +++ b/stdlib/src/collections/string.mojo @@ -847,14 +847,13 @@ struct String( # ===------------------------------------------------------------------=== # fn write_bytes(inout self, bytes: Span[Byte, _]): - """ - Write a byte span to this String. + """Write a byte span to this String. Args: bytes: The byte span to write to this String. Must NOT be - null terminated. + null terminated. """ - self._iadd[True](bytes) + self._iadd[False](bytes) fn write[*Ts: Writable](inout self, *args: *Ts): """Write a sequence of Writable arguments to the provided Writer. From 7f902000bf1d89f7c1c3c3b1dbe89a2c5d701c97 Mon Sep 17 00:00:00 2001 From: Alvydas Vitkauskas Date: Sat, 16 Nov 2024 09:54:16 -0600 Subject: [PATCH 08/28] [External] [stdlib] Deque - add remaining methods and tests (#50973) [External] [stdlib] Deque - add remaining methods and tests This is a final part of the Deque implementation. Resolves https://github.com/modularml/mojo/issues/2659. Co-authored-by: Alvydas Vitkauskas Closes modularml/mojo#3759 MODULAR_ORIG_COMMIT_REV_ID: 61c06ed2438fa18d7ee7136d3e4aad84b3795f4c --- docs/changelog.md | 13 + stdlib/src/builtin/reversed.mojo | 22 +- stdlib/src/collections/deque.mojo | 277 ++++++++++++++++- stdlib/test/builtin/test_reversed.mojo | 11 +- stdlib/test/collections/test_deque.mojo | 390 +++++++++++++++++++++++- 5 files changed, 708 insertions(+), 5 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 2d168dbe6a..d18b597ce4 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -239,6 +239,19 @@ what we publish. allocate additional capacity. ([PR #3755](https://github.com/modularml/mojo/pull/3755) by [@thatstoasty](https://github.com/thatstoasty)). +- Introduced a new `Deque` (double-ended queue) collection type, based on a + dynamically resizing circular buffer for efficient O(1) additions and removals + at both ends as well as O(1) direct access to all elements. + + The `Deque` supports the full Python `collections.deque` API, ensuring that all + expected deque operations perform as in Python. + + Enhancements to the standard Python API include `peek()` and `peekleft()` + methods for non-destructive access to the last and first elements, and advanced + constructor options (`capacity`, `min_capacity`, and `shrink`) for customizing + memory allocation and performance. These options allow for optimized memory usage + and reduced buffer reallocations, providing flexibility based on application requirements. + ### 🦋 Changed - The argument convention for `__init__` methods has been changed from `inout` diff --git a/stdlib/src/builtin/reversed.mojo b/stdlib/src/builtin/reversed.mojo index 0ddb24621b..20f4fa4db3 100644 --- a/stdlib/src/builtin/reversed.mojo +++ b/stdlib/src/builtin/reversed.mojo @@ -15,7 +15,8 @@ These are Mojo built-ins, so you don't need to import them. """ -from collections import Dict +from collections import Deque, Dict +from collections.deque import _DequeIter from collections.dict import _DictEntryIter, _DictKeyIter, _DictValueIter from collections.list import _ListIter @@ -97,6 +98,25 @@ fn reversed[ return value.__reversed__() +fn reversed[ + T: CollectionElement +](ref [_]value: Deque[T]) -> _DequeIter[T, __origin_of(value), False]: + """Get a reversed iterator of the deque. + + **Note**: iterators are currently non-raising. + + Parameters: + T: The type of the elements in the deque. + + Args: + value: The deque to get the reversed iterator of. + + Returns: + The reversed iterator of the deque. + """ + return value.__reversed__() + + fn reversed[ K: KeyElement, V: CollectionElement, diff --git a/stdlib/src/collections/deque.mojo b/stdlib/src/collections/deque.mojo index b619c4bb5a..c7a02c219a 100644 --- a/stdlib/src/collections/deque.mojo +++ b/stdlib/src/collections/deque.mojo @@ -85,7 +85,7 @@ struct Deque[ElementType: CollectionElement]( # ===-------------------------------------------------------------------===# fn __init__( - inout self, + out self, *, owned elements: Optional[List[ElementType]] = None, capacity: Int = self.default_capacity, @@ -537,6 +537,28 @@ struct Deque[ElementType: CollectionElement]( self._head = 0 self._tail = 0 + fn count[ + EqualityElementType: EqualityComparableCollectionElement, // + ](self: Deque[EqualityElementType], value: EqualityElementType) -> Int: + """Counts the number of occurrences of a `value` in the deque. + + Parameters: + EqualityElementType: The type of the elements in the deque. + Must implement the trait `EqualityComparableCollectionElement`. + + Args: + value: The value to count. + + Returns: + The number of occurrences of the value in the deque. + """ + count = 0 + for i in range(len(self)): + offset = self._physical_index(self._head + i) + if (self._data + offset)[] == value: + count += 1 + return count + fn extend(inout self, owned values: List[ElementType]): """Extends the right side of the deque by consuming elements of the list argument. @@ -603,6 +625,259 @@ struct Deque[ElementType: CollectionElement]( self._head = self._physical_index(self._head - 1) (src + i).move_pointee_into(self._data + self._head) + fn index[ + EqualityElementType: EqualityComparableCollectionElement, // + ]( + self: Deque[EqualityElementType], + value: EqualityElementType, + start: Int = 0, + stop: Optional[Int] = None, + ) raises -> Int: + """Returns the index of the first occurrence of a `value` in a deque + restricted by the range given the `start` and `stop` bounds. + + Parameters: + EqualityElementType: The type of the elements in the deque. + Must implement the `EqualityComparableCollectionElement` trait. + + Args: + value: The value to search for. + start: The starting index of the search, treated as a slice index + (defaults to 0). + stop: The ending index of the search, treated as a slice index + (defaults to None, which means the end of the deque). + + Returns: + The index of the first occurrence of the value in the deque. + + Raises: + ValueError: If the value is not found in the deque. + """ + start_normalized = start + + if stop is None: + stop_normalized = len(self) + else: + stop_normalized = stop.value() + + if start_normalized < 0: + start_normalized += len(self) + if stop_normalized < 0: + stop_normalized += len(self) + + start_normalized = max(0, min(start_normalized, len(self))) + stop_normalized = max(0, min(stop_normalized, len(self))) + + for idx in range(start_normalized, stop_normalized): + offset = self._physical_index(self._head + idx) + if (self._data + offset)[] == value: + return idx + raise "ValueError: Given element is not in deque" + + fn insert(inout self, idx: Int, owned value: ElementType) raises: + """Inserts the `value` into the deque at position `idx`. + + Args: + idx: The position to insert the value into. + value: The value to insert. + + Raises: + IndexError: If deque is already at its maximum size. + """ + deque_len = len(self) + + if deque_len == self._maxlen: + raise "IndexError: Deque is already at its maximum size" + + normalized_idx = idx + + if normalized_idx < -deque_len: + normalized_idx = 0 + + if normalized_idx > deque_len: + normalized_idx = deque_len + + if normalized_idx < 0: + normalized_idx += deque_len + + if normalized_idx <= deque_len // 2: + for i in range(normalized_idx): + src = self._physical_index(self._head + i) + dst = self._physical_index(src - 1) + (self._data + src).move_pointee_into(self._data + dst) + self._head = self._physical_index(self._head - 1) + else: + for i in range(deque_len - normalized_idx): + dst = self._physical_index(self._tail - i) + src = self._physical_index(dst - 1) + (self._data + src).move_pointee_into(self._data + dst) + self._tail = self._physical_index(self._tail + 1) + + offset = self._physical_index(self._head + normalized_idx) + (self._data + offset).init_pointee_move(value^) + + if self._head == self._tail: + self._realloc(self._capacity << 1) + + fn remove[ + EqualityElementType: EqualityComparableCollectionElement, // + ]( + inout self: Deque[EqualityElementType], + value: EqualityElementType, + ) raises: + """Removes the first occurrence of the `value`. + + Parameters: + EqualityElementType: The type of the elements in the deque. + Must implement the `EqualityComparableCollectionElement` trait. + + Args: + value: The value to remove. + + Raises: + ValueError: If the value is not found in the deque. + """ + deque_len = len(self) + for idx in range(deque_len): + offset = self._physical_index(self._head + idx) + if (self._data + offset)[] == value: + (self._data + offset).destroy_pointee() + + if idx < deque_len // 2: + for i in reversed(range(idx)): + src = self._physical_index(self._head + i) + dst = self._physical_index(src + 1) + (self._data + src).move_pointee_into(self._data + dst) + self._head = self._physical_index(self._head + 1) + else: + for i in range(idx + 1, deque_len): + src = self._physical_index(self._head + i) + dst = self._physical_index(src - 1) + (self._data + src).move_pointee_into(self._data + dst) + self._tail = self._physical_index(self._tail - 1) + + if ( + self._shrink + and self._capacity > self._min_capacity + and self._capacity // 4 >= len(self) + ): + self._realloc(self._capacity >> 1) + + return + + raise "ValueError: Given element is not in deque" + + fn peek(self) raises -> ElementType: + """Inspect the last (rightmost) element of the deque without removing it. + + Returns: + The the last (rightmost) element of the deque. + + Raises: + IndexError: If the deque is empty. + """ + if self._head == self._tail: + raise "IndexError: Deque is empty" + + return (self._data + self._physical_index(self._tail - 1))[] + + fn peekleft(self) raises -> ElementType: + """Inspect the first (leftmost) element of the deque without removing it. + + Returns: + The the first (leftmost) element of the deque. + + Raises: + IndexError: If the deque is empty. + """ + if self._head == self._tail: + raise "IndexError: Deque is empty" + + return (self._data + self._head)[] + + fn pop(inout self) raises -> ElementType as element: + """Removes and returns the element from the right side of the deque. + + Returns: + The popped value. + + Raises: + IndexError: If the deque is empty. + """ + if self._head == self._tail: + raise "IndexError: Deque is empty" + + self._tail = self._physical_index(self._tail - 1) + element = (self._data + self._tail).take_pointee() + + if ( + self._shrink + and self._capacity > self._min_capacity + and self._capacity // 4 >= len(self) + ): + self._realloc(self._capacity >> 1) + + return + + fn popleft(inout self) raises -> ElementType as element: + """Removes and returns the element from the left side of the deque. + + Returns: + The popped value. + + Raises: + IndexError: If the deque is empty. + """ + if self._head == self._tail: + raise "IndexError: Deque is empty" + + element = (self._data + self._head).take_pointee() + self._head = self._physical_index(self._head + 1) + + if ( + self._shrink + and self._capacity > self._min_capacity + and self._capacity // 4 >= len(self) + ): + self._realloc(self._capacity >> 1) + + return + + fn reverse(inout self): + """Reverses the elements of the deque in-place.""" + last = self._head + len(self) - 1 + for i in range(len(self) // 2): + src = self._physical_index(self._head + i) + dst = self._physical_index(last - i) + tmp = (self._data + dst).take_pointee() + (self._data + src).move_pointee_into(self._data + dst) + (self._data + src).init_pointee_move(tmp^) + + fn rotate(inout self, n: Int = 1): + """Rotates the deque by `n` steps. + + If `n` is positive, rotates to the right. + If `n` is negative, rotates to the left. + + Args: + n: Number of steps to rotate the deque + (defaults to 1). + """ + if n < 0: + for _ in range(-n): + (self._data + self._head).move_pointee_into( + self._data + self._tail + ) + self._tail = self._physical_index(self._tail + 1) + self._head = self._physical_index(self._head + 1) + else: + for _ in range(n): + self._tail = self._physical_index(self._tail - 1) + self._head = self._physical_index(self._head - 1) + (self._data + self._tail).move_pointee_into( + self._data + self._head + ) + fn _compute_pop_and_move_counts( self, len_self: Int, len_values: Int ) -> (Int, Int, Int, Int, Int): diff --git a/stdlib/test/builtin/test_reversed.mojo b/stdlib/test/builtin/test_reversed.mojo index 59b466da98..d6027d5429 100644 --- a/stdlib/test/builtin/test_reversed.mojo +++ b/stdlib/test/builtin/test_reversed.mojo @@ -12,7 +12,7 @@ # ===----------------------------------------------------------------------=== # # RUN: %mojo %s -from collections import Dict +from collections import Deque, Dict from testing import assert_equal @@ -25,6 +25,15 @@ def test_reversed_list(): check -= 1 +def test_reversed_deque(): + var deque = Deque[Int](1, 2, 3, 4, 5, 6) + var check: Int = 6 + + for item in reversed(deque): + assert_equal(item[], check, "item[], check") + check -= 1 + + def test_reversed_dict(): var dict = Dict[String, Int]() dict["a"] = 1 diff --git a/stdlib/test/collections/test_deque.mojo b/stdlib/test/collections/test_deque.mojo index 16746021e7..a9350c2180 100644 --- a/stdlib/test/collections/test_deque.mojo +++ b/stdlib/test/collections/test_deque.mojo @@ -218,6 +218,77 @@ fn test_impl_append_with_maxlen() raises: assert_equal((q._data + 3)[], 3) +fn test_impl_appendleft() raises: + q = Deque[Int](capacity=2) + + q.appendleft(0) + # head wrapped to the end of the buffer + assert_equal(q._head, 1) + assert_equal(q._tail, 0) + assert_equal(q._capacity, 2) + assert_equal((q._data + 1)[], 0) + + q.appendleft(1) + # re-allocated buffer and moved all elements + assert_equal(q._head, 0) + assert_equal(q._tail, 2) + assert_equal(q._capacity, 4) + assert_equal((q._data + 0)[], 1) + assert_equal((q._data + 1)[], 0) + + q.appendleft(2) + # head wrapped to the end of the buffer + assert_equal(q._head, 3) + assert_equal(q._tail, 2) + assert_equal(q._capacity, 4) + assert_equal((q._data + 3)[], 2) + assert_equal((q._data + 0)[], 1) + assert_equal((q._data + 1)[], 0) + + # simulate pop() + q._tail -= 1 + q.appendleft(3) + assert_equal(q._head, 2) + assert_equal(q._tail, 1) + assert_equal(q._capacity, 4) + assert_equal((q._data + 2)[], 3) + assert_equal((q._data + 3)[], 2) + assert_equal((q._data + 0)[], 1) + + q.appendleft(4) + # re-allocated buffer and moved all elements + assert_equal(q._head, 0) + assert_equal(q._tail, 4) + assert_equal(q._capacity, 8) + assert_equal((q._data + 0)[], 4) + assert_equal((q._data + 1)[], 3) + assert_equal((q._data + 2)[], 2) + assert_equal((q._data + 3)[], 1) + + +fn test_impl_appendleft_with_maxlen() raises: + q = Deque[Int](maxlen=3) + + assert_equal(q._maxlen, 3) + assert_equal(q._capacity, 4) + + q.appendleft(0) + q.appendleft(1) + q.appendleft(2) + assert_equal(q._head, 1) + assert_equal(q._tail, 0) + + q.appendleft(3) + # first popped the rightmost element + # so there was no re-allocation of buffer + assert_equal(q._head, 0) + assert_equal(q._tail, 3) + assert_equal(q._capacity, 4) + assert_equal((q._data + 0)[], 3) + assert_equal((q._data + 1)[], 2) + assert_equal((q._data + 2)[], 1) + + fn test_impl_extend() raises: q = Deque[Int](maxlen=4) lst = List[Int](0, 1, 2) @@ -280,6 +351,122 @@ fn test_impl_extend() raises: assert_equal((q._data + 15)[], 9) +fn test_impl_extendleft() raises: + q = Deque[Int](maxlen=4) + lst = List[Int](0, 1, 2) + + q.extendleft(lst) + # head wrapped to the end of the buffer + assert_equal(q._capacity, 8) + assert_equal(q._head, 5) + assert_equal(q._tail, 0) + assert_equal((q._data + 5)[], 2) + assert_equal((q._data + 6)[], 1) + assert_equal((q._data + 7)[], 0) + + q.extendleft(lst) + # popped the last 2 elements + assert_equal(q._capacity, 8) + assert_equal(q._head, 2) + assert_equal(q._tail, 6) + assert_equal((q._data + 2)[], 2) + assert_equal((q._data + 3)[], 1) + assert_equal((q._data + 4)[], 0) + assert_equal((q._data + 5)[], 2) + + # turn off `maxlen` restriction + q._maxlen = -1 + q.extendleft(lst) + assert_equal(q._capacity, 8) + assert_equal(q._head, 7) + assert_equal(q._tail, 6) + assert_equal((q._data + 7)[], 2) + assert_equal((q._data + 0)[], 1) + assert_equal((q._data + 1)[], 0) + assert_equal((q._data + 2)[], 2) + assert_equal((q._data + 3)[], 1) + assert_equal((q._data + 4)[], 0) + assert_equal((q._data + 5)[], 2) + + # turn on `maxlen` and force to re-allocate + q._maxlen = 8 + q.extendleft(lst) + assert_equal(q._capacity, 16) + assert_equal(q._head, 13) + assert_equal(q._tail, 5) + # has to popleft the last 2 elements + assert_equal((q._data + 13)[], 2) + assert_equal((q._data + 14)[], 1) + assert_equal((q._data + 3)[], 2) + assert_equal((q._data + 4)[], 1) + + # extend with the list that is longer than `maxlen` + # has to pop all deque elements and some initial + # elements from the list as well + lst = List(0, 1, 2, 3, 4, 5, 6, 7, 8, 9) + q.extendleft(lst) + assert_equal(q._capacity, 16) + assert_equal(q._head, 5) + assert_equal(q._tail, 13) + assert_equal((q._data + 5)[], 9) + assert_equal((q._data + 6)[], 8) + assert_equal((q._data + 11)[], 3) + assert_equal((q._data + 12)[], 2) + + +fn test_impl_insert() raises: + q = Deque[Int](0, 1, 2, 3, 4, 5) + + q.insert(0, 6) + assert_equal(q._head, q.default_capacity - 1) + assert_equal((q._data + q._head)[], 6) + assert_equal((q._data + 0)[], 0) + + q.insert(1, 7) + assert_equal(q._head, q.default_capacity - 2) + assert_equal((q._data + q._head + 0)[], 6) + assert_equal((q._data + q._head + 1)[], 7) + + q.insert(8, 8) + assert_equal(q._tail, 7) + assert_equal((q._data + q._tail - 1)[], 8) + assert_equal((q._data + q._tail - 2)[], 5) + + q.insert(8, 9) + assert_equal(q._tail, 8) + assert_equal((q._data + q._tail - 1)[], 8) + assert_equal((q._data + q._tail - 2)[], 9) + + +fn test_impl_pop() raises: + q = Deque[Int](capacity=2, min_capacity=2) + with assert_raises(): + _ = q.pop() + + q.append(1) + q.appendleft(2) + assert_equal(q._capacity, 4) + assert_equal(q.pop(), 1) + assert_equal(len(q), 1) + assert_equal(q[0], 2) + assert_equal(q._capacity, 2) + + +fn test_popleft() raises: + q = Deque[Int](capacity=2, min_capacity=2) + assert_equal(q._capacity, 2) + with assert_raises(): + _ = q.popleft() + + q.appendleft(1) + q.append(2) + assert_equal(q._capacity, 4) + assert_equal(q.popleft(), 1) + assert_equal(len(q), 1) + assert_equal(q[0], 2) + assert_equal(q._capacity, 2) + + fn test_impl_clear() raises: q = Deque[Int](capacity=2) q.append(1) @@ -587,6 +774,18 @@ fn test_ne() raises: assert_true(q != p) +fn test_count() raises: + q = Deque(1, 2, 1, 2, 3, 1) + + assert_equal(q.count(1), 3) + assert_equal(q.count(2), 2) + assert_equal(q.count(3), 1) + assert_equal(q.count(4), 0) + + q.appendleft(2) + assert_equal(q.count(2), 3) + + fn test_contains() raises: q = Deque[Int](1, 2, 3) @@ -594,6 +793,181 @@ fn test_contains() raises: assert_false(4 in q) +fn test_index() raises: + q = Deque(1, 2, 1, 2, 3, 1) + + assert_equal(q.index(2), 1) + assert_equal(q.index(2, 1), 1) + assert_equal(q.index(2, 1, 3), 1) + assert_equal(q.index(2, stop=4), 1) + assert_equal(q.index(1, -12, 10), 0) + assert_equal(q.index(1, -4), 2) + assert_equal(q.index(1, -3), 5) + with assert_raises(): + _ = q.index(4) + + +fn test_insert() raises: + q = Deque[Int](capacity=4, maxlen=7) + + # negative index outbound + q.insert(-10, 0) + # Deque(0) + assert_equal(q[0], 0) + assert_equal(len(q), 1) + + # zero index + q.insert(0, 1) + # Deque(1, 0) + assert_equal(q[0], 1) + assert_equal(q[1], 0) + assert_equal(len(q), 2) + + # # positive index eq length + q.insert(2, 2) + # Deque(1, 0, 2) + assert_equal(q[2], 2) + assert_equal(q[1], 0) + + # # positive index outbound + q.insert(10, 3) + # Deque(1, 0, 2, 3) + assert_equal(q[3], 3) + assert_equal(q[2], 2) + + # assert deque buffer reallocated + assert_equal(len(q), 4) + assert_equal(q._capacity, 8) + + # # positive index inbound + q.insert(1, 4) + # Deque(1, 4, 0, 2, 3) + assert_equal(q[1], 4) + assert_equal(q[0], 1) + assert_equal(q[2], 0) + + # # positive index inbound + q.insert(3, 5) + # Deque(1, 4, 0, 5, 2, 3) + assert_equal(q[3], 5) + assert_equal(q[2], 0) + assert_equal(q[4], 2) + + # # negative index inbound + q.insert(-3, 6) + # Deque(1, 4, 0, 6, 5, 2, 3) + assert_equal(q[3], 6) + assert_equal(q[2], 0) + assert_equal(q[4], 5) + + # deque is at its maxlen + assert_equal(len(q), 7) + with assert_raises(): + q.insert(3, 7) + + +fn test_remove() raises: + q = Deque[Int](min_capacity=32) + q.extend(List(0, 1, 0, 2, 3, 0, 4, 5)) + assert_equal(len(q), 8) + assert_equal(q._capacity, 64) + + # remove first + q.remove(0) + # Deque(1, 0, 2, 3, 0, 4, 5) + assert_equal(len(q), 7) + assert_equal(q[0], 1) + # had to shrink its capacity + assert_equal(q._capacity, 32) + + # remove last + q.remove(5) + # Deque(1, 0, 2, 3, 0, 4) + assert_equal(len(q), 6) + assert_equal(q[5], 4) + # should not shrink further + assert_equal(q._capacity, 32) + + # remove in the first half + q.remove(0) + # Deque(1, 2, 3, 0, 4) + assert_equal(len(q), 5) + assert_equal(q[1], 2) + + # remove in the last half + q.remove(0) + # Deque(1, 2, 3, 4) + assert_equal(len(q), 4) + assert_equal(q[3], 4) + + # assert raises when not found + with assert_raises(): + q.remove(5) + + +fn test_peek_and_peekleft() raises: + q = Deque[Int](capacity=4) + assert_equal(q._capacity, 4) + + with assert_raises(): + _ = q.peek() + with assert_raises(): + _ = q.peekleft() + + q.extend(List(1, 2, 3)) + assert_equal(q.peekleft(), 1) + assert_equal(q.peek(), 3) + + _ = q.popleft() + assert_equal(q.peekleft(), 2) + assert_equal(q.peek(), 3) + + q.append(4) + assert_equal(q._capacity, 4) + assert_equal(q.peekleft(), 2) + assert_equal(q.peek(), 4) + + q.append(5) + assert_equal(q._capacity, 8) + assert_equal(q.peekleft(), 2) + assert_equal(q.peek(), 5) + + +fn test_reverse() raises: + q = Deque(0, 1, 2, 3) + + q.reverse() + assert_equal(q[0], 3) + assert_equal(q[1], 2) + assert_equal(q[2], 1) + assert_equal(q[3], 0) + + q.appendleft(4) + q.reverse() + assert_equal(q[0], 0) + assert_equal(q[4], 4) + + +fn test_rotate() raises: + q = Deque(0, 1, 2, 3) + + q.rotate() + assert_equal(q[0], 3) + assert_equal(q[3], 2) + + q.rotate(-1) + assert_equal(q[0], 0) + assert_equal(q[3], 3) + + q.rotate(3) + assert_equal(q[0], 1) + assert_equal(q[3], 0) + + q.rotate(-3) + assert_equal(q[0], 0) + assert_equal(q[3], 3) + + fn test_iter() raises: q = Deque(1, 2, 3) @@ -641,8 +1015,7 @@ fn test_reversed_iter() raises: q = Deque(1, 2, 3) i = 0 - # change to reversed(q) when implemented in builtin for Deque - for e in q.__reversed__(): + for e in reversed(q): i -= 1 assert_equal(e[], q[i]) assert_equal(-i, len(q)) @@ -678,7 +1051,13 @@ def main(): test_impl_bool() test_impl_append() test_impl_append_with_maxlen() + test_impl_appendleft() + test_impl_appendleft_with_maxlen() test_impl_extend() + test_impl_extendleft() + test_impl_insert() + test_impl_pop() + test_popleft() test_impl_clear() test_impl_add() test_impl_iadd() @@ -692,7 +1071,14 @@ def main(): test_setitem() test_eq() test_ne() + test_count() test_contains() + test_index() + test_insert() + test_remove() + test_peek_and_peekleft() + test_reverse() + test_rotate() test_iter() test_iter_with_list() test_reversed_iter() From 846916460cabdf691ada59664d0e8f0c01a78ec1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sat, 16 Nov 2024 09:05:38 -0800 Subject: [PATCH 09/28] [mojo-stdlib] Start phasing in some markers for `@implicit` Explicitly-opted-in implicit conversions are coming, this starts adding some markers to some core types, which is necessary prior to landing the compiler support. There is more to do. MODULAR_ORIG_COMMIT_REV_ID: e393705561f37a557cd17dbe1fce573d9c86633a --- stdlib/src/builtin/bool.mojo | 8 ++++++-- stdlib/src/builtin/int.mojo | 8 ++++++++ stdlib/src/builtin/int_literal.mojo | 1 + stdlib/src/builtin/simd.mojo | 7 +++++++ stdlib/src/builtin/uint.mojo | 4 ++++ stdlib/src/collections/string.mojo | 4 ++++ stdlib/src/utils/string_slice.mojo | 2 ++ 7 files changed, 32 insertions(+), 2 deletions(-) diff --git a/stdlib/src/builtin/bool.mojo b/stdlib/src/builtin/bool.mojo index 06ccff6578..c9073c3558 100644 --- a/stdlib/src/builtin/bool.mojo +++ b/stdlib/src/builtin/bool.mojo @@ -131,6 +131,7 @@ struct Bool( @doc_private @always_inline("nodebug") + @implicit fn __init__(out self, value: __mlir_type.i1): """Construct a Bool value given a __mlir_type.i1 value. @@ -141,6 +142,7 @@ struct Bool( @doc_private @always_inline("nodebug") + @implicit fn __init__(out self, value: __mlir_type.`!pop.scalar`): """Construct a Bool value given a `!pop.scalar` value. @@ -152,6 +154,7 @@ struct Bool( ) @always_inline("nodebug") + @implicit fn __init__[T: ImplicitlyBoolable, //](inout self, value: T): """Convert an ImplicitlyBoolable value to a Bool. @@ -164,6 +167,7 @@ struct Bool( self = value.__bool__() @always_inline("nodebug") + @implicit fn __init__(out self, value: SIMD[DType.bool, 1]): """Convert a scalar SIMD value to a Bool. @@ -252,7 +256,7 @@ struct Bool( Returns: 1 if the Bool is True, 0 otherwise. """ - return _select_register_value(self.value, Int(1), Int(0)) + return _select_register_value(self, Int(1), Int(0)) @always_inline("nodebug") fn __float__(self) -> Float64: @@ -261,7 +265,7 @@ struct Bool( Returns: 1.0 if True else 0.0 otherwise. """ - return _select_register_value(self.value, Float64(1.0), Float64(0.0)) + return _select_register_value(self, Float64(1.0), Float64(0.0)) @always_inline("nodebug") fn __index__(self) -> Int: diff --git a/stdlib/src/builtin/int.mojo b/stdlib/src/builtin/int.mojo index 0cc7a6e1b3..f68e1d0c0d 100644 --- a/stdlib/src/builtin/int.mojo +++ b/stdlib/src/builtin/int.mojo @@ -321,6 +321,7 @@ struct Int( @doc_private @always_inline("nodebug") + @implicit fn __init__(out self, value: __mlir_type.index): """Construct Int from the given index value. @@ -331,6 +332,7 @@ struct Int( @doc_private @always_inline("nodebug") + @implicit fn __init__(out self, value: __mlir_type.`!pop.scalar`): """Construct Int from the given Int16 value. @@ -345,6 +347,7 @@ struct Int( @doc_private @always_inline("nodebug") + @implicit fn __init__(out self, value: __mlir_type.`!pop.scalar`): """Construct Int from the given Int32 value. @@ -359,6 +362,7 @@ struct Int( @doc_private @always_inline("nodebug") + @implicit fn __init__(out self, value: __mlir_type.`!pop.scalar`): """Construct Int from the given Int64 value. @@ -373,6 +377,7 @@ struct Int( @doc_private @always_inline("nodebug") + @implicit fn __init__(out self, value: __mlir_type.`!pop.scalar`): """Construct Int from the given Index value. @@ -384,6 +389,7 @@ struct Int( ) @always_inline("nodebug") + @implicit fn __init__(out self, value: IntLiteral): """Construct Int from the given IntLiteral value. @@ -393,6 +399,7 @@ struct Int( self = value.__int__() @always_inline("nodebug") + @implicit fn __init__[IndexerTy: Indexer](inout self, value: IndexerTy): """Construct Int from the given Indexer value. @@ -405,6 +412,7 @@ struct Int( self = value.__index__() @always_inline("nodebug") + @implicit fn __init__(out self, value: UInt): """Construct Int from the given UInt value. diff --git a/stdlib/src/builtin/int_literal.mojo b/stdlib/src/builtin/int_literal.mojo index 326759e115..1b17508a3b 100644 --- a/stdlib/src/builtin/int_literal.mojo +++ b/stdlib/src/builtin/int_literal.mojo @@ -59,6 +59,7 @@ struct IntLiteral( @doc_private @always_inline("nodebug") + @implicit fn __init__(out self, value: __mlir_type.`!kgen.int_literal`): """Construct IntLiteral from the given mlir !kgen.int_literal value. diff --git a/stdlib/src/builtin/simd.mojo b/stdlib/src/builtin/simd.mojo index 9238ca42f7..8f9e350580 100644 --- a/stdlib/src/builtin/simd.mojo +++ b/stdlib/src/builtin/simd.mojo @@ -248,6 +248,7 @@ struct SIMD[type: DType, size: Int]( # self.__copyinit__(other) @always_inline("nodebug") + @implicit fn __init__(out self, value: UInt): """Initializes the SIMD vector with an unsigned integer. @@ -260,6 +261,7 @@ struct SIMD[type: DType, size: Int]( self = Self(value.value) @always_inline("nodebug") + @implicit fn __init__(out self, value: Int): """Initializes the SIMD vector with a signed integer. @@ -273,6 +275,7 @@ struct SIMD[type: DType, size: Int]( @doc_private @always_inline("nodebug") + @implicit fn __init__(out self, value: __mlir_type.index): _simd_construction_checks[type, size]() @@ -287,6 +290,7 @@ struct SIMD[type: DType, size: Int]( ](casted) @always_inline("nodebug") + @implicit fn __init__(out self, value: IntLiteral): """Initializes the SIMD vector with an integer. @@ -312,6 +316,7 @@ struct SIMD[type: DType, size: Int]( ](casted) @always_inline("nodebug") + @implicit fn __init__(out self: SIMD[DType.bool, size], value: Bool, /): """Initializes the SIMD vector with a bool value. @@ -330,6 +335,7 @@ struct SIMD[type: DType, size: Int]( ](casted) @always_inline("nodebug") + @implicit fn __init__( inout self, value: __mlir_type[`!pop.simd<`, size.value, `, `, type.value, `>`], @@ -343,6 +349,7 @@ struct SIMD[type: DType, size: Int]( self.value = value @always_inline("nodebug") + @implicit fn __init__(out self, value: Scalar[type], /): """Constructs a SIMD vector by splatting a scalar value. diff --git a/stdlib/src/builtin/uint.mojo b/stdlib/src/builtin/uint.mojo index 03bb691300..5a914e8da1 100644 --- a/stdlib/src/builtin/uint.mojo +++ b/stdlib/src/builtin/uint.mojo @@ -60,6 +60,7 @@ struct UInt(IntLike, _HashableWithHasher): @doc_private @always_inline("nodebug") + @implicit fn __init__(out self, value: __mlir_type.index): """Construct UInt from the given index value. @@ -70,6 +71,7 @@ struct UInt(IntLike, _HashableWithHasher): @doc_private @always_inline("nodebug") + @implicit fn __init__(out self, value: __mlir_type.`!pop.scalar`): """Construct UInt from the given Index value. @@ -81,6 +83,7 @@ struct UInt(IntLike, _HashableWithHasher): ) @always_inline("nodebug") + @implicit fn __init__(out self, value: Int): """Construct UInt from the given index value. @@ -90,6 +93,7 @@ struct UInt(IntLike, _HashableWithHasher): self.value = value.value @always_inline("nodebug") + @implicit fn __init__(out self, value: IntLiteral): """Construct UInt from the given IntLiteral value. diff --git a/stdlib/src/collections/string.mojo b/stdlib/src/collections/string.mojo index 4cbebc3028..09112037b9 100644 --- a/stdlib/src/collections/string.mojo +++ b/stdlib/src/collections/string.mojo @@ -734,6 +734,7 @@ struct String( # ===------------------------------------------------------------------=== # @always_inline + @implicit fn __init__(out self, owned impl: List[UInt8, *_]): """Construct a string from a buffer of bytes. @@ -783,6 +784,7 @@ struct String( """ self.__copyinit__(other) + @implicit fn __init__(out self, str: StringRef): """Construct a string from a StringRef object. @@ -796,6 +798,7 @@ struct String( memcpy(dest=buffer.data, src=str.data, count=length) self = Self(buffer^) + @implicit fn __init__(out self, str_slice: StringSlice): """Construct a string from a string slice. @@ -819,6 +822,7 @@ struct String( self = Self(buffer^) @always_inline + @implicit fn __init__(out self, literal: StringLiteral): """Constructs a String value given a constant string. diff --git a/stdlib/src/utils/string_slice.mojo b/stdlib/src/utils/string_slice.mojo index c0e38d5f42..effc8ec5c9 100644 --- a/stdlib/src/utils/string_slice.mojo +++ b/stdlib/src/utils/string_slice.mojo @@ -267,6 +267,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable].type,]( # ===------------------------------------------------------------------===# @always_inline + @implicit fn __init__(out self: StaticString, lit: StringLiteral): """Construct a new `StringSlice` from a `StringLiteral`. @@ -348,6 +349,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable].type,]( """ self._slice = other._slice + @implicit fn __init__[ O: ImmutableOrigin, // ](inout self: StringSlice[O], ref [O]value: String): From 80f0aa048dc5e8689f4646bc62066342298d7a1c Mon Sep 17 00:00:00 2001 From: abdul dakkak Date: Sat, 16 Nov 2024 12:24:54 -0800 Subject: [PATCH 10/28] [******][GPU] Make compile_function aware of the target accelerator MODULAR_ORIG_COMMIT_REV_ID: d233c78fd439804bb9f7036b768e3a3b8007cc35 --- stdlib/src/sys/info.mojo | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/stdlib/src/sys/info.mojo b/stdlib/src/sys/info.mojo index 661fc0b94f..9930fe79a0 100644 --- a/stdlib/src/sys/info.mojo +++ b/stdlib/src/sys/info.mojo @@ -387,31 +387,36 @@ fn os_is_windows() -> Bool: @always_inline("nodebug") -fn _triple_attr() -> __mlir_type.`!kgen.string`: +fn _triple_attr[ + triple: __mlir_type.`!kgen.target` = _current_target() +]() -> __mlir_type.`!kgen.string`: return __mlir_attr[ `#kgen.param.expr : !kgen.string`, ] @always_inline("nodebug") -fn is_triple[triple: StringLiteral]() -> Bool: +fn is_triple[ + name: StringLiteral, target: __mlir_type.`!kgen.target` = _current_target() +]() -> Bool: """Returns True if the target triple of the compiler matches the input and False otherwise. Parameters: - triple: The triple value to be checked against. + name: The name of the triple value. + target: The triple value to be checked against. Returns: True if the triple matches and False otherwise. """ return __mlir_attr[ `#kgen.param.expr : i1`, ] From d8b702759bb5fec891ac555487360e453fbf9cb9 Mon Sep 17 00:00:00 2001 From: Jack Clayton Date: Sat, 16 Nov 2024 12:58:48 -0800 Subject: [PATCH 11/28] [stdlib] Allow passing variables to GPU `debug_assert` This buffers the message for debug_assert which allows passing multiple args with variables on GPU for the message. It also removes all allocations for debug_assert on CPU. MODULAR_ORIG_COMMIT_REV_ID: d3699bcc8e5aa0b6cc56027fbee5559600c13769 --- stdlib/src/builtin/debug_assert.mojo | 162 +++++++++++---------------- stdlib/src/utils/write.mojo | 2 + 2 files changed, 68 insertions(+), 96 deletions(-) diff --git a/stdlib/src/builtin/debug_assert.mojo b/stdlib/src/builtin/debug_assert.mojo index d0d33d4899..6d33f5f5e4 100644 --- a/stdlib/src/builtin/debug_assert.mojo +++ b/stdlib/src/builtin/debug_assert.mojo @@ -17,12 +17,12 @@ These are Mojo built-ins, so you don't need to import them. from os import abort -from sys import is_defined, is_nvidia_gpu +from sys import is_nvidia_gpu, llvm_intrinsic from sys._build import is_debug_build from sys.param_env import env_get_string from sys.ffi import external_call, c_uint, c_size_t, c_char -from sys.info import sizeof from memory import UnsafePointer +from utils.write import _WriteBufferHeap, _WriteBufferStack, write_args from builtin._location import __call_location, _SourceLocation @@ -52,65 +52,6 @@ fn _assert_enabled[assert_mode: StringLiteral, cpu_only: Bool]() -> Bool: return defined_mode == assert_mode -@always_inline -fn debug_assert[ - assert_mode: StringLiteral = "none", cpu_only: Bool = False -](cond: Bool, message: StringLiteral): - """Asserts that the condition is true. - - Parameters: - assert_mode: Determines when the assert is turned on. - cpu_only: If true, only run the assert on CPU. - - Args: - cond: The function to invoke to check if the assertion holds. - message: A StringLiteral to print on failure. - - - Pass in a condition and single StringLiteral to stop execution and - show an error on failure: - - ```mojo - x = 0 - debug_assert(x > 0, "x is not more than 0") - ``` - - By default it's a no-op, you can change the assertion level for example: - - ```sh - mojo -D ASSERT=all main.mojo - ``` - - Assertion modes: - - - none: turn off all assertions for performance at the cost of safety. - - warn: print any errors instead of aborting. - - safe: standard safety checks that are on even in release builds. - - all: turn on all assertions. - - You can set the `assert_mode` to `safe` so the assertion runs even in - release builds: - - ```mojo - debug_assert[assert_mode="safe"]( - x > 0, "expected x to be more than 0 but got: ", x - ) - ``` - - To ensure that you have no runtime penality from your assertion in release - builds, make sure there are no side effects in your message and condition. - - On GPU this will also show the the block and thread idx's on failure. - . - """ - - @parameter - if _assert_enabled[assert_mode, cpu_only](): - if cond: - return - _debug_assert_msg_literal(message, __call_location()) - - @always_inline fn debug_assert[ cond: fn () capturing [_] -> Bool, @@ -187,7 +128,6 @@ fn debug_assert[ ```mojo debug_assert[check_name, cpu_only=True]("unexpected name") ``` - . """ @parameter @@ -271,7 +211,6 @@ fn debug_assert[ ```mojo debug_assert[check_name, cpu_only=True]("unexpected name") ``` - . """ @parameter @@ -294,53 +233,84 @@ fn _debug_assert_msg( abort's implementation could use debug_assert) """ + var stdout = sys.stdout + @parameter if is_nvidia_gpu(): - external_call["__assertfail", NoneType]( - "debug_assert message must be a single StringLiteral on GPU" - .unsafe_cstr_ptr(), - loc.file_name.unsafe_cstr_ptr(), - c_uint(loc.line), - # TODO(MSTDL-962) pass through the funciton name here - "kernel".unsafe_cstr_ptr(), - c_size_t(sizeof[Int8]()), - ) - - else: - message = String.write(messages) + var buffer = _WriteBufferHeap[4096](stdout) + buffer.write("At ", loc, ": ") + _write_gpu_thread_context(buffer) @parameter if defined_mode == "warn": - print(loc.prefix("Assert Warning: " + message)) + buffer.write(" Assert Warning: ") else: - abort(loc.prefix("Assert Error: " + message)) + buffer.write(" Assert Error: ") + write_args(buffer, messages, end="\n") + buffer.flush() -@no_inline -fn _debug_assert_msg_literal(message: StringLiteral, loc: _SourceLocation): - """Aborts with (or prints) the given message and location. + @parameter + if defined_mode != "warn": + abort() - This function is intentionally marked as no_inline to reduce binary size. + else: + var buffer = _WriteBufferStack[4096](stdout) + buffer.write("At ", loc, ": ") - Note that it's important that this function doesn't get inlined; otherwise, - an indirect recursion of @always_inline functions is possible (e.g. because - abort's implementation could use debug_assert) - """ + @parameter + if defined_mode == "warn": + buffer.write(" Assert Warning: ") + else: + buffer.write(" Assert Error: ") + write_args(buffer, messages, end="\n") + buffer.flush() + + @parameter + if defined_mode != "warn": + abort() + + +# Can't import gpu module at this stage in compilation for thread/block idx +fn _write_gpu_thread_context[W: Writer](inout writer: W): + writer.write("block: [") + _write_id["block", "x"](writer) + writer.write(",") + _write_id["block", "y"](writer) + writer.write(",") + _write_id["block", "z"](writer) + writer.write("] thread: [") + _write_id["thread", "x"](writer) + writer.write(",") + _write_id["thread", "y"](writer) + writer.write(",") + _write_id["thread", "z"](writer) + writer.write("]") + + +fn _write_id[ + W: Writer, //, type: StringLiteral, dim: StringLiteral +](inout writer: W): + alias intrinsic_name = _get_intrinsic_name[type, dim]() + writer.write(llvm_intrinsic[intrinsic_name, Int32, has_side_effect=False]()) + + +fn _get_intrinsic_name[ + type: StringLiteral, dim: StringLiteral +]() -> StringLiteral: @parameter if is_nvidia_gpu(): - external_call["__assertfail", NoneType]( - message.unsafe_cstr_ptr(), - loc.file_name.unsafe_cstr_ptr(), - c_uint(loc.line), - # TODO(MSTDL-962) pass through the funciton name here - "kernel".unsafe_cstr_ptr(), - c_size_t(sizeof[Int8]()), - ) + + @parameter + if type == "thread": + return "llvm.nvvm.read.ptx.sreg.tid." + dim + else: + return "llvm.nvvm.read.ptx.sreg.ctaid." + dim else: @parameter - if defined_mode == "warn": - print(loc.prefix(str("Assert Warning: ") + message)) + if type == "thread": + return "llvm.amdgcn.workitem.id." + dim else: - abort(loc.prefix(str("Assert Error: ") + message)) + return "llvm.amdgcn.workgroup.id." + dim diff --git a/stdlib/src/utils/write.mojo b/stdlib/src/utils/write.mojo index c82e4afa1b..ed667bfa96 100644 --- a/stdlib/src/utils/write.mojo +++ b/stdlib/src/utils/write.mojo @@ -361,6 +361,8 @@ fn write_buffered[ ``` . """ + + @parameter if is_nvidia_gpu(): # Stack space is very small on GPU due to many threads, so use heap var buffer = _WriteBufferHeap[buffer_size](writer^) From 7fe25190e68845aa886aabc6d9755dab670bad5c Mon Sep 17 00:00:00 2001 From: modularbot Date: Sun, 17 Nov 2024 06:44:01 +0000 Subject: [PATCH 12/28] Update lockfiles to point to latest nightly version: 24.6.0.dev2024111705 --- examples/magic.lock | 182 +++++++++++++++--------------- examples/notebooks/magic.lock | 203 +++++++++++++++++----------------- examples/operators/magic.lock | 182 +++++++++++++++--------------- magic.lock | 182 +++++++++++++++--------------- 4 files changed, 374 insertions(+), 375 deletions(-) diff --git a/examples/magic.lock b/examples/magic.lock index e211f02a82..b5975338fa 100644 --- a/examples/magic.lock +++ b/examples/magic.lock @@ -122,12 +122,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py311h2dc5d0c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py311h9ecbd09_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -146,7 +146,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py311h7db5c69_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda @@ -331,12 +331,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py311ha09ea12_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py311h58d527c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py311ha879c10_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -355,7 +355,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.3-py311h848c333_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda @@ -530,12 +530,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py311h56c23cb_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py311h30e7462_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py311h460d6c5_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -554,7 +554,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py311h9cb3ce9_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda @@ -5360,76 +5360,76 @@ packages: timestamp: 1729352296161 - kind: conda name: max - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - sha256: f5cbd2a19475c03e9fab1bd8a3cd253acfa699acf54f030feff225cbb14e3771 - md5: 6ba4b2a713bc0cd09981be4d713485f7 - depends: - - max-core ==24.6.0.dev2024111606 release - - max-python >=24.6.0.dev2024111606,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111606 release - - mblack ==24.6.0.dev2024111606 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + sha256: 62ae69f479b7393f6894b10787bdc6aa38b6ef2d519f4da9123a74c6a96d61b3 + md5: 362de46a74c054a047599714c6e20639 + depends: + - max-core ==24.6.0.dev2024111705 release + - max-python >=24.6.0.dev2024111705,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111705 release license: LicenseRef-Modular-Proprietary - size: 9927 - timestamp: 1731740801388 + size: 9918 + timestamp: 1731820900608 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda - sha256: a0944b5a2cb9d130302944f3fddf29aa759d3136a093a9646d64d91819ee9033 - md5: aa46e9d790453675d997454f773f8472 + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda + sha256: 9fd4c4a5917b51b09aaa968eacaeaa7bbfb0da8f02d19bef5e681a6f2465b015 + md5: 1f6f61e0f83bc7a803afe5b5658930ae depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 269747282 - timestamp: 1731740891642 + size: 271483501 + timestamp: 1731821032238 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda - sha256: ed37b180c1e9f6611347a276f19d32929605e5d1380f710096881c88cfb5e285 - md5: d718fedde6faf82712b42b17cba0e11c + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda + sha256: bdf3005d225cf5d238efbed8314d8224bd7d6b9d18f3e3c30b5fb12a6cbd9ae2 + md5: 9bf5a00e7a7feadf323fe2c33e702b7c depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 273517196 - timestamp: 1731740801386 + size: 274964524 + timestamp: 1731820900606 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda - sha256: 75f8fb2fe371d5719f7005b854eedf1dae434bb26adf98b67128e11b8887343a - md5: 590ab20ef796cac866e442cad04258b9 + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda + sha256: 4d1df13c312f16894195ad42e125835d696ab2cff4f206d1b42c39a7160ba236 + md5: 8bb3cb761f00f0fd3e7eded8a19f75d6 depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 231626699 - timestamp: 1731740929323 + size: 233205538 + timestamp: 1731820868487 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.11release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.11release.conda - sha256: 925abea767254ff08ec7dfc63b7d8ae86b5146f5e4139493d383267a5312ddb6 - md5: 726ae2c28b166e410f4683669f6d7d75 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.11release.conda + sha256: 686d2b15adc92f5ac910c59bbbb5ecc0f3348dab32a3775ab80dca244b4e183d + md5: ec005df2d7c513f1a94ac940b89c8535 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5449,18 +5449,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 135379290 - timestamp: 1731740891652 + size: 136852997 + timestamp: 1731821032247 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.11release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.11release.conda - sha256: 8f756be002f7c096a1b8dc266eaed9b0cacaf6d0d87c798d68218356522e90ac - md5: 2c157ad8a00de70c0360f4f5376ee7ba + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.11release.conda + sha256: 3e681a5d7ac851b5501dd7220f6763760ed0186b3a24fba1c86c3bf9844588ab + md5: 7cf8a31642dd569a7d5b165147925751 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5480,18 +5480,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 138850406 - timestamp: 1731740801396 + size: 140409174 + timestamp: 1731820900616 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.11release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.11release.conda - sha256: c1cf37fa6ee4bda68639aae04ee8849f2f9537c2b5e8a8cb32da93034383005c - md5: 2f61245368fc60c46eec330047989d5c + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.11release.conda + sha256: 99764e2263c513895ae67b23cedddb805bdd7af1fc4644806ab59faec4012b7e + md5: faf3573cfe6e2637cc20de40208285f0 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5511,17 +5511,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 123904511 - timestamp: 1731740929326 + size: 125443869 + timestamp: 1731820868489 - kind: conda name: mblack - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - sha256: 150afdfddbae9021bd38ca58c53c8502a35cc7c7307bafcc12e9b80e77fb9539 - md5: 0cdeaa3f81adf4667bc94167949ac63c + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + sha256: c052c8067a82eb13ddbd2abd0740596ce4e85ca66d3b023c5b581adb597feb55 + md5: da2e49b6e38d67fd12fa72a928461110 depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5531,8 +5531,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130619 - timestamp: 1731740801394 + size: 130603 + timestamp: 1731820900615 - kind: conda name: mdurl version: 0.1.2 @@ -5550,21 +5550,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - sha256: 2acd22f59870d4df76115913950891b12b03ac2f47c0688ba55425c6af5bcc51 - md5: 255895b0865394838eb19b7a0d10cbaa + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + sha256: 18072ad83df2a7944a6df95598a0e66cea9eee612401900fc59afe4e06d0a5ca + md5: e684800b970c50bc2daff53eabd57ff8 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22954 - timestamp: 1731740801397 + size: 22946 + timestamp: 1731820900617 - kind: conda name: multidict version: 6.1.0 @@ -6112,18 +6112,18 @@ packages: - kind: conda name: packaging version: '24.2' - build: pyhd8ed1ab_0 + build: pyhff2d567_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda - sha256: 0f8273bf66c2a5c1de72312a509deae07f163bb0ae8de8273c52e6fe945a0850 - md5: c16469afe1ec91aaafcf4bea966c0465 + url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda + sha256: 74843f871e5cd8a1baf5ed8c406c571139c287141efe532f8ffbdafa3664d244 + md5: 8508b703977f4c4ada34d657d051972c depends: - python >=3.8 license: Apache-2.0 - license_family: APACHE - size: 60345 - timestamp: 1731457074006 + size: 60380 + timestamp: 1731802602808 - kind: conda name: pandas version: 2.2.3 diff --git a/examples/notebooks/magic.lock b/examples/notebooks/magic.lock index 02b61356a1..6d582101b1 100644 --- a/examples/notebooks/magic.lock +++ b/examples/notebooks/magic.lock @@ -102,7 +102,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.1-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 @@ -157,13 +157,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -188,7 +188,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.2-py312h1d6d2e6_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda @@ -382,7 +382,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.1-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 @@ -437,13 +437,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -468,7 +468,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.2-py312h14eacfc_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda @@ -661,7 +661,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.1-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda @@ -708,13 +708,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -739,7 +739,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.2-py312h8ae5369_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/parso-0.8.4-pyhd8ed1ab_0.conda @@ -3745,18 +3745,17 @@ packages: timestamp: 1710262791393 - kind: conda name: jupyterlab - version: 4.3.0 - build: pyhd8ed1ab_0 + version: 4.3.1 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.0-pyhd8ed1ab_0.conda - sha256: a27e5227a11c2ce7b299d02f2f2c99713df4c9bb0e78ddd6cf8ffc6a77593dc2 - md5: 4e51411b565d07405d7d3245b9a3b8c1 + url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.1-pyhff2d567_0.conda + sha256: ff1035eb0020dbaf4e332ef4b81a7068b595dfc57dde3313e9c4a37583772644 + md5: b4f3d579fc21a44518d52c52507461b4 depends: - async-lru >=1.0.0 - httpx >=0.25.0 - importlib-metadata >=4.8.3 - - importlib_resources >=1.4 - ipykernel >=6.5.0 - jinja2 >=3.0.3 - jupyter-lsp >=2.0.0 @@ -3765,15 +3764,15 @@ packages: - jupyterlab_server >=2.27.1,<3 - notebook-shim >=0.2 - packaging - - python >=3.8 + - python >=3.9 - setuptools >=40.1.0 - tomli >=1.2.2 - tornado >=6.2.0 - traitlets license: BSD-3-Clause license_family: BSD - size: 7327279 - timestamp: 1730308848803 + size: 7101932 + timestamp: 1731776859245 - kind: conda name: jupyterlab_pygments version: 0.3.0 @@ -6379,76 +6378,76 @@ packages: timestamp: 1713250613726 - kind: conda name: max - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - sha256: f5cbd2a19475c03e9fab1bd8a3cd253acfa699acf54f030feff225cbb14e3771 - md5: 6ba4b2a713bc0cd09981be4d713485f7 + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + sha256: 62ae69f479b7393f6894b10787bdc6aa38b6ef2d519f4da9123a74c6a96d61b3 + md5: 362de46a74c054a047599714c6e20639 depends: - - max-core ==24.6.0.dev2024111606 release - - max-python >=24.6.0.dev2024111606,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111606 release - - mblack ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release + - max-python >=24.6.0.dev2024111705,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111705 release license: LicenseRef-Modular-Proprietary - size: 9927 - timestamp: 1731740801388 + size: 9918 + timestamp: 1731820900608 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda - sha256: a0944b5a2cb9d130302944f3fddf29aa759d3136a093a9646d64d91819ee9033 - md5: aa46e9d790453675d997454f773f8472 + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda + sha256: 9fd4c4a5917b51b09aaa968eacaeaa7bbfb0da8f02d19bef5e681a6f2465b015 + md5: 1f6f61e0f83bc7a803afe5b5658930ae depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 269747282 - timestamp: 1731740891642 + size: 271483501 + timestamp: 1731821032238 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda - sha256: ed37b180c1e9f6611347a276f19d32929605e5d1380f710096881c88cfb5e285 - md5: d718fedde6faf82712b42b17cba0e11c + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda + sha256: bdf3005d225cf5d238efbed8314d8224bd7d6b9d18f3e3c30b5fb12a6cbd9ae2 + md5: 9bf5a00e7a7feadf323fe2c33e702b7c depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 273517196 - timestamp: 1731740801386 + size: 274964524 + timestamp: 1731820900606 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda - sha256: 75f8fb2fe371d5719f7005b854eedf1dae434bb26adf98b67128e11b8887343a - md5: 590ab20ef796cac866e442cad04258b9 + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda + sha256: 4d1df13c312f16894195ad42e125835d696ab2cff4f206d1b42c39a7160ba236 + md5: 8bb3cb761f00f0fd3e7eded8a19f75d6 depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 231626699 - timestamp: 1731740929323 + size: 233205538 + timestamp: 1731820868487 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda - sha256: 00b0f79e81674ec427159d886a9fb398882f717379f21963b2c3119ac25daacc - md5: e9690926adf4b4d2f0e2f559820a725c + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda + sha256: 3542929f063728324a5ad525006c71f3ee6b438598195d57a15b365ce94ade44 + md5: d9d61909d2e52ad830b1a9e02db390e8 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6468,18 +6467,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 135350303 - timestamp: 1731740891655 + size: 136828326 + timestamp: 1731821032250 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda - sha256: c038462aa29afd7df015b62aa2bb282d1a330b987c189c9fd77a84deeac60137 - md5: fe0821156eb04863961b86fb8444f32e + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda + sha256: 02a3af553c0ebf9e0bf150e5f5bc5184f568eaedc3ee2c71636d2fb6925da106 + md5: c2849a1879d8fdbdc75b0cd595f3e8b5 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6499,18 +6498,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 138816226 - timestamp: 1731740801400 + size: 140366075 + timestamp: 1731820900620 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda - sha256: 12d8043348c838dc38b9b65a77b12a127ab966b2f76943c98d7e462e87265a65 - md5: e96cf862942301e107466d19dc659eeb + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda + sha256: c00cbf04f15aaeec821b27599bd861cafd7384af8b189ae1a11b745f52742f5d + md5: 61af5810d577e434469254fe66f2792b depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6530,17 +6529,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 123924607 - timestamp: 1731740929327 + size: 125468680 + timestamp: 1731820868490 - kind: conda name: mblack - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - sha256: 150afdfddbae9021bd38ca58c53c8502a35cc7c7307bafcc12e9b80e77fb9539 - md5: 0cdeaa3f81adf4667bc94167949ac63c + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + sha256: c052c8067a82eb13ddbd2abd0740596ce4e85ca66d3b023c5b581adb597feb55 + md5: da2e49b6e38d67fd12fa72a928461110 depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -6550,8 +6549,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130619 - timestamp: 1731740801394 + size: 130603 + timestamp: 1731820900615 - kind: conda name: mdurl version: 0.1.2 @@ -6584,21 +6583,21 @@ packages: timestamp: 1698947249750 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - sha256: 2acd22f59870d4df76115913950891b12b03ac2f47c0688ba55425c6af5bcc51 - md5: 255895b0865394838eb19b7a0d10cbaa + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + sha256: 18072ad83df2a7944a6df95598a0e66cea9eee612401900fc59afe4e06d0a5ca + md5: e684800b970c50bc2daff53eabd57ff8 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22954 - timestamp: 1731740801397 + size: 22946 + timestamp: 1731820900617 - kind: conda name: multidict version: 6.1.0 @@ -7266,18 +7265,18 @@ packages: - kind: conda name: packaging version: '24.2' - build: pyhd8ed1ab_0 + build: pyhff2d567_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda - sha256: 0f8273bf66c2a5c1de72312a509deae07f163bb0ae8de8273c52e6fe945a0850 - md5: c16469afe1ec91aaafcf4bea966c0465 + url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda + sha256: 74843f871e5cd8a1baf5ed8c406c571139c287141efe532f8ffbdafa3664d244 + md5: 8508b703977f4c4ada34d657d051972c depends: - python >=3.8 license: Apache-2.0 - license_family: APACHE - size: 60345 - timestamp: 1731457074006 + size: 60380 + timestamp: 1731802602808 - kind: conda name: pandas version: 2.2.2 diff --git a/examples/operators/magic.lock b/examples/operators/magic.lock index 48c9e54334..f544dcc482 100644 --- a/examples/operators/magic.lock +++ b/examples/operators/magic.lock @@ -122,12 +122,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -146,7 +146,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda @@ -331,12 +331,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -355,7 +355,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda @@ -530,12 +530,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -554,7 +554,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda @@ -5360,76 +5360,76 @@ packages: timestamp: 1729351534830 - kind: conda name: max - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - sha256: f5cbd2a19475c03e9fab1bd8a3cd253acfa699acf54f030feff225cbb14e3771 - md5: 6ba4b2a713bc0cd09981be4d713485f7 - depends: - - max-core ==24.6.0.dev2024111606 release - - max-python >=24.6.0.dev2024111606,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111606 release - - mblack ==24.6.0.dev2024111606 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + sha256: 62ae69f479b7393f6894b10787bdc6aa38b6ef2d519f4da9123a74c6a96d61b3 + md5: 362de46a74c054a047599714c6e20639 + depends: + - max-core ==24.6.0.dev2024111705 release + - max-python >=24.6.0.dev2024111705,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111705 release license: LicenseRef-Modular-Proprietary - size: 9927 - timestamp: 1731740801388 + size: 9918 + timestamp: 1731820900608 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda - sha256: a0944b5a2cb9d130302944f3fddf29aa759d3136a093a9646d64d91819ee9033 - md5: aa46e9d790453675d997454f773f8472 + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda + sha256: 9fd4c4a5917b51b09aaa968eacaeaa7bbfb0da8f02d19bef5e681a6f2465b015 + md5: 1f6f61e0f83bc7a803afe5b5658930ae depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 269747282 - timestamp: 1731740891642 + size: 271483501 + timestamp: 1731821032238 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda - sha256: ed37b180c1e9f6611347a276f19d32929605e5d1380f710096881c88cfb5e285 - md5: d718fedde6faf82712b42b17cba0e11c + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda + sha256: bdf3005d225cf5d238efbed8314d8224bd7d6b9d18f3e3c30b5fb12a6cbd9ae2 + md5: 9bf5a00e7a7feadf323fe2c33e702b7c depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 273517196 - timestamp: 1731740801386 + size: 274964524 + timestamp: 1731820900606 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda - sha256: 75f8fb2fe371d5719f7005b854eedf1dae434bb26adf98b67128e11b8887343a - md5: 590ab20ef796cac866e442cad04258b9 + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda + sha256: 4d1df13c312f16894195ad42e125835d696ab2cff4f206d1b42c39a7160ba236 + md5: 8bb3cb761f00f0fd3e7eded8a19f75d6 depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 231626699 - timestamp: 1731740929323 + size: 233205538 + timestamp: 1731820868487 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda - sha256: 00b0f79e81674ec427159d886a9fb398882f717379f21963b2c3119ac25daacc - md5: e9690926adf4b4d2f0e2f559820a725c + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda + sha256: 3542929f063728324a5ad525006c71f3ee6b438598195d57a15b365ce94ade44 + md5: d9d61909d2e52ad830b1a9e02db390e8 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5449,18 +5449,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 135350303 - timestamp: 1731740891655 + size: 136828326 + timestamp: 1731821032250 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda - sha256: c038462aa29afd7df015b62aa2bb282d1a330b987c189c9fd77a84deeac60137 - md5: fe0821156eb04863961b86fb8444f32e + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda + sha256: 02a3af553c0ebf9e0bf150e5f5bc5184f568eaedc3ee2c71636d2fb6925da106 + md5: c2849a1879d8fdbdc75b0cd595f3e8b5 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5480,18 +5480,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 138816226 - timestamp: 1731740801400 + size: 140366075 + timestamp: 1731820900620 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda - sha256: 12d8043348c838dc38b9b65a77b12a127ab966b2f76943c98d7e462e87265a65 - md5: e96cf862942301e107466d19dc659eeb + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda + sha256: c00cbf04f15aaeec821b27599bd861cafd7384af8b189ae1a11b745f52742f5d + md5: 61af5810d577e434469254fe66f2792b depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5511,17 +5511,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 123924607 - timestamp: 1731740929327 + size: 125468680 + timestamp: 1731820868490 - kind: conda name: mblack - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - sha256: 150afdfddbae9021bd38ca58c53c8502a35cc7c7307bafcc12e9b80e77fb9539 - md5: 0cdeaa3f81adf4667bc94167949ac63c + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + sha256: c052c8067a82eb13ddbd2abd0740596ce4e85ca66d3b023c5b581adb597feb55 + md5: da2e49b6e38d67fd12fa72a928461110 depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5531,8 +5531,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130619 - timestamp: 1731740801394 + size: 130603 + timestamp: 1731820900615 - kind: conda name: mdurl version: 0.1.2 @@ -5550,21 +5550,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - sha256: 2acd22f59870d4df76115913950891b12b03ac2f47c0688ba55425c6af5bcc51 - md5: 255895b0865394838eb19b7a0d10cbaa + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + sha256: 18072ad83df2a7944a6df95598a0e66cea9eee612401900fc59afe4e06d0a5ca + md5: e684800b970c50bc2daff53eabd57ff8 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22954 - timestamp: 1731740801397 + size: 22946 + timestamp: 1731820900617 - kind: conda name: multidict version: 6.1.0 @@ -6112,18 +6112,18 @@ packages: - kind: conda name: packaging version: '24.2' - build: pyhd8ed1ab_0 + build: pyhff2d567_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda - sha256: 0f8273bf66c2a5c1de72312a509deae07f163bb0ae8de8273c52e6fe945a0850 - md5: c16469afe1ec91aaafcf4bea966c0465 + url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda + sha256: 74843f871e5cd8a1baf5ed8c406c571139c287141efe532f8ffbdafa3664d244 + md5: 8508b703977f4c4ada34d657d051972c depends: - python >=3.8 license: Apache-2.0 - license_family: APACHE - size: 60345 - timestamp: 1731457074006 + size: 60380 + timestamp: 1731802602808 - kind: conda name: pandas version: 2.2.3 diff --git a/magic.lock b/magic.lock index 81f4cba2f0..b323bca23a 100644 --- a/magic.lock +++ b/magic.lock @@ -123,12 +123,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -147,7 +147,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda @@ -333,12 +333,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -357,7 +357,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda @@ -533,12 +533,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -557,7 +557,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda @@ -5378,76 +5378,76 @@ packages: timestamp: 1729351534830 - kind: conda name: max - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111606-release.conda - sha256: f5cbd2a19475c03e9fab1bd8a3cd253acfa699acf54f030feff225cbb14e3771 - md5: 6ba4b2a713bc0cd09981be4d713485f7 - depends: - - max-core ==24.6.0.dev2024111606 release - - max-python >=24.6.0.dev2024111606,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111606 release - - mblack ==24.6.0.dev2024111606 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda + sha256: 62ae69f479b7393f6894b10787bdc6aa38b6ef2d519f4da9123a74c6a96d61b3 + md5: 362de46a74c054a047599714c6e20639 + depends: + - max-core ==24.6.0.dev2024111705 release + - max-python >=24.6.0.dev2024111705,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111705 release license: LicenseRef-Modular-Proprietary - size: 9927 - timestamp: 1731740801388 + size: 9918 + timestamp: 1731820900608 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111606-release.conda - sha256: a0944b5a2cb9d130302944f3fddf29aa759d3136a093a9646d64d91819ee9033 - md5: aa46e9d790453675d997454f773f8472 + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda + sha256: 9fd4c4a5917b51b09aaa968eacaeaa7bbfb0da8f02d19bef5e681a6f2465b015 + md5: 1f6f61e0f83bc7a803afe5b5658930ae depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 269747282 - timestamp: 1731740891642 + size: 271483501 + timestamp: 1731821032238 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111606-release.conda - sha256: ed37b180c1e9f6611347a276f19d32929605e5d1380f710096881c88cfb5e285 - md5: d718fedde6faf82712b42b17cba0e11c + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda + sha256: bdf3005d225cf5d238efbed8314d8224bd7d6b9d18f3e3c30b5fb12a6cbd9ae2 + md5: 9bf5a00e7a7feadf323fe2c33e702b7c depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 273517196 - timestamp: 1731740801386 + size: 274964524 + timestamp: 1731820900606 - kind: conda name: max-core - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111606-release.conda - sha256: 75f8fb2fe371d5719f7005b854eedf1dae434bb26adf98b67128e11b8887343a - md5: 590ab20ef796cac866e442cad04258b9 + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda + sha256: 4d1df13c312f16894195ad42e125835d696ab2cff4f206d1b42c39a7160ba236 + md5: 8bb3cb761f00f0fd3e7eded8a19f75d6 depends: - - mblack ==24.6.0.dev2024111606 release + - mblack ==24.6.0.dev2024111705 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 231626699 - timestamp: 1731740929323 + size: 233205538 + timestamp: 1731820868487 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111606-3.12release.conda - sha256: 00b0f79e81674ec427159d886a9fb398882f717379f21963b2c3119ac25daacc - md5: e9690926adf4b4d2f0e2f559820a725c + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda + sha256: 3542929f063728324a5ad525006c71f3ee6b438598195d57a15b365ce94ade44 + md5: d9d61909d2e52ad830b1a9e02db390e8 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5467,18 +5467,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 135350303 - timestamp: 1731740891655 + size: 136828326 + timestamp: 1731821032250 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111606-3.12release.conda - sha256: c038462aa29afd7df015b62aa2bb282d1a330b987c189c9fd77a84deeac60137 - md5: fe0821156eb04863961b86fb8444f32e + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda + sha256: 02a3af553c0ebf9e0bf150e5f5bc5184f568eaedc3ee2c71636d2fb6925da106 + md5: c2849a1879d8fdbdc75b0cd595f3e8b5 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5498,18 +5498,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 138816226 - timestamp: 1731740801400 + size: 140366075 + timestamp: 1731820900620 - kind: conda name: max-python - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111606-3.12release.conda - sha256: 12d8043348c838dc38b9b65a77b12a127ab966b2f76943c98d7e462e87265a65 - md5: e96cf862942301e107466d19dc659eeb + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda + sha256: c00cbf04f15aaeec821b27599bd861cafd7384af8b189ae1a11b745f52742f5d + md5: 61af5810d577e434469254fe66f2792b depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5529,17 +5529,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 123924607 - timestamp: 1731740929327 + size: 125468680 + timestamp: 1731820868490 - kind: conda name: mblack - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111606-release.conda - sha256: 150afdfddbae9021bd38ca58c53c8502a35cc7c7307bafcc12e9b80e77fb9539 - md5: 0cdeaa3f81adf4667bc94167949ac63c + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + sha256: c052c8067a82eb13ddbd2abd0740596ce4e85ca66d3b023c5b581adb597feb55 + md5: da2e49b6e38d67fd12fa72a928461110 depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5549,8 +5549,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130619 - timestamp: 1731740801394 + size: 130603 + timestamp: 1731820900615 - kind: conda name: mdurl version: 0.1.2 @@ -5568,21 +5568,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111606 + version: 24.6.0.dev2024111705 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111606-release.conda - sha256: 2acd22f59870d4df76115913950891b12b03ac2f47c0688ba55425c6af5bcc51 - md5: 255895b0865394838eb19b7a0d10cbaa + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + sha256: 18072ad83df2a7944a6df95598a0e66cea9eee612401900fc59afe4e06d0a5ca + md5: e684800b970c50bc2daff53eabd57ff8 depends: - - max-core ==24.6.0.dev2024111606 release + - max-core ==24.6.0.dev2024111705 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22954 - timestamp: 1731740801397 + size: 22946 + timestamp: 1731820900617 - kind: conda name: multidict version: 6.1.0 @@ -6130,18 +6130,18 @@ packages: - kind: conda name: packaging version: '24.2' - build: pyhd8ed1ab_0 + build: pyhff2d567_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_0.conda - sha256: 0f8273bf66c2a5c1de72312a509deae07f163bb0ae8de8273c52e6fe945a0850 - md5: c16469afe1ec91aaafcf4bea966c0465 + url: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda + sha256: 74843f871e5cd8a1baf5ed8c406c571139c287141efe532f8ffbdafa3664d244 + md5: 8508b703977f4c4ada34d657d051972c depends: - python >=3.8 license: Apache-2.0 - license_family: APACHE - size: 60345 - timestamp: 1731457074006 + size: 60380 + timestamp: 1731802602808 - kind: conda name: pandas version: 2.2.3 From 95a4b8579d590e7c5fac5d19627db562eec1f971 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 17 Nov 2024 12:19:14 -0800 Subject: [PATCH 13/28] [mojo-lang] Allow `ref x: Type` in argument list. This treats `ref x: Foo` the same as `ref [_] x: Foo`, inferring the origin from the call site. This was discussed in the arg convention resyntaxing thread. MODULAR_ORIG_COMMIT_REV_ID: 6a9d97b8ef01b87dab972a3e783315ac3db8ff12 --- docs/changelog.md | 8 ++++++++ docs/manual/values/lifetimes.ipynb | 6 +++--- stdlib/src/builtin/rebind.mojo | 2 +- stdlib/src/builtin/reversed.mojo | 10 ++++----- stdlib/src/builtin/string_literal.mojo | 4 ++-- stdlib/src/builtin/tuple.mojo | 6 ++---- stdlib/src/collections/counter.mojo | 10 +++------ stdlib/src/collections/deque.mojo | 6 +++--- stdlib/src/collections/dict.mojo | 24 +++++++++------------- stdlib/src/collections/inline_array.mojo | 8 +++----- stdlib/src/collections/inline_list.mojo | 10 ++++----- stdlib/src/collections/list.mojo | 12 +++++------ stdlib/src/collections/optional.mojo | 4 ++-- stdlib/src/collections/set.mojo | 4 +--- stdlib/src/collections/string.mojo | 6 +++--- stdlib/src/memory/maybe_uninitialized.mojo | 2 +- stdlib/src/utils/inline_string.mojo | 8 ++++---- stdlib/src/utils/span.mojo | 2 +- stdlib/src/utils/static_tuple.mojo | 2 +- stdlib/src/utils/string_slice.mojo | 12 +++++------ stdlib/src/utils/stringref.mojo | 2 +- stdlib/src/utils/variant.mojo | 6 +++--- 22 files changed, 72 insertions(+), 82 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index d18b597ce4..bb06947757 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -180,6 +180,14 @@ what we publish. return a ``` +- `ref` function arguments without an origin clause are now treated as + `ref [_]`, which is more syntactically convenient and consistent: + + ```mojo + fn takes_and_return_ref(ref a: String) -> ref [a] String: + return a + ``` + - `Slice.step` is now an `Optional[Int]`, matching the optionality of `slice.step` in Python. ([PR #3160](https://github.com/modularml/mojo/pull/3160) by diff --git a/docs/manual/values/lifetimes.ipynb b/docs/manual/values/lifetimes.ipynb index 314e186c81..f218538d67 100644 --- a/docs/manual/values/lifetimes.ipynb +++ b/docs/manual/values/lifetimes.ipynb @@ -323,7 +323,7 @@ " can think of the underscore as a wildcard that will accept any origin:\n", "\n", " ```mojo\n", - " def add_ref(ref [_] a: Int, b: Int) -> Int:\n", + " def add_ref(ref a: Int, b: Int) -> Int:\n", " return a+b\n", " ```" ] @@ -427,7 +427,7 @@ " for name in names:\n", " self.names.append(name[])\n", "\n", - " def __getitem__(ref [_] self: Self, index: Int) ->\n", + " def __getitem__(ref self, index: Int) ->\n", " ref [self.names] String:\n", " if (index >=0 and index < len(self.names)):\n", " return self.names[index]\n", @@ -530,7 +530,7 @@ "above:\n", "\n", "```mojo\n", - "def __getitem__(ref [_] self: Self, index: Int) ->\n", + "def __getitem__(ref self, index: Int) ->\n", " ref [self] String:\n", "```\n", "\n", diff --git a/stdlib/src/builtin/rebind.mojo b/stdlib/src/builtin/rebind.mojo index 5d9debeeab..baa60c0233 100644 --- a/stdlib/src/builtin/rebind.mojo +++ b/stdlib/src/builtin/rebind.mojo @@ -46,7 +46,7 @@ fn rebind[ fn rebind[ src_type: AnyType, //, dest_type: AnyType, -](ref [_]src: src_type) -> ref [src] dest_type: +](ref src: src_type) -> ref [src] dest_type: """Statically assert that a parameter input type `src_type` resolves to the same type as a parameter result type `dest_type` after function instantiation and "rebind" the input to the result type, returning a diff --git a/stdlib/src/builtin/reversed.mojo b/stdlib/src/builtin/reversed.mojo index 20f4fa4db3..352f6d10b4 100644 --- a/stdlib/src/builtin/reversed.mojo +++ b/stdlib/src/builtin/reversed.mojo @@ -79,7 +79,7 @@ fn reversed[T: ReversibleRange](value: T) -> _StridedRange: fn reversed[ T: CollectionElement -](ref [_]value: List[T, *_]) -> _ListIter[ +](ref value: List[T, *_]) -> _ListIter[ T, __type_of(value).hint_trivial_type, __origin_of(value), False ]: """Get a reversed iterator of the input list. @@ -100,7 +100,7 @@ fn reversed[ fn reversed[ T: CollectionElement -](ref [_]value: Deque[T]) -> _DequeIter[T, __origin_of(value), False]: +](ref value: Deque[T]) -> _DequeIter[T, __origin_of(value), False]: """Get a reversed iterator of the deque. **Note**: iterators are currently non-raising. @@ -120,7 +120,7 @@ fn reversed[ fn reversed[ K: KeyElement, V: CollectionElement, -](ref [_]value: Dict[K, V],) -> _DictKeyIter[K, V, __origin_of(value), False]: +](ref value: Dict[K, V],) -> _DictKeyIter[K, V, __origin_of(value), False]: """Get a reversed iterator of the input dict. **Note**: iterators are currently non-raising. @@ -143,7 +143,7 @@ fn reversed[ V: CollectionElement, dict_mutability: Bool, dict_origin: Origin[dict_mutability].type, -](ref [_]value: _DictValueIter[K, V, dict_origin]) -> _DictValueIter[ +](ref value: _DictValueIter[K, V, dict_origin]) -> _DictValueIter[ K, V, dict_origin, False ]: """Get a reversed iterator of the input dict values. @@ -170,7 +170,7 @@ fn reversed[ V: CollectionElement, dict_mutability: Bool, dict_origin: Origin[dict_mutability].type, -](ref [_]value: _DictEntryIter[K, V, dict_origin]) -> _DictEntryIter[ +](ref value: _DictEntryIter[K, V, dict_origin]) -> _DictEntryIter[ K, V, dict_origin, False ]: """Get a reversed iterator of the input dict items. diff --git a/stdlib/src/builtin/string_literal.mojo b/stdlib/src/builtin/string_literal.mojo index 2974eadbb7..a298ae5189 100644 --- a/stdlib/src/builtin/string_literal.mojo +++ b/stdlib/src/builtin/string_literal.mojo @@ -364,7 +364,7 @@ struct StringLiteral( """ return self.__str__() - fn __iter__(ref [_]self) -> _StringSliceIter[StaticConstantOrigin]: + fn __iter__(ref self) -> _StringSliceIter[StaticConstantOrigin]: """Return an iterator over the string literal. Returns: @@ -468,7 +468,7 @@ struct StringLiteral( ) @always_inline - fn as_bytes(ref [_]self) -> Span[Byte, __origin_of(self)]: + fn as_bytes(ref self) -> Span[Byte, __origin_of(self)]: """Returns a contiguous slice of the bytes owned by this string. Returns: diff --git a/stdlib/src/builtin/tuple.mojo b/stdlib/src/builtin/tuple.mojo index 8984289bb6..efad7a2226 100644 --- a/stdlib/src/builtin/tuple.mojo +++ b/stdlib/src/builtin/tuple.mojo @@ -153,9 +153,7 @@ struct Tuple[*element_types: CollectionElement](Sized, CollectionElement): return Self.__len__() @always_inline("nodebug") - fn __getitem__[ - idx: Int - ](ref [_]self: Self) -> ref [self] element_types[idx.value]: + fn __getitem__[idx: Int](ref self) -> ref [self] element_types[idx.value]: """Get a reference to an element in the tuple. Parameters: @@ -178,7 +176,7 @@ struct Tuple[*element_types: CollectionElement](Sized, CollectionElement): # TODO(#38268): Remove this method when references and parameter expressions # cooperate better. We can't handle the use in test_simd without this. @always_inline("nodebug") - fn get[i: Int, T: CollectionElement](ref [_]self) -> ref [self] T: + fn get[i: Int, T: CollectionElement](ref self) -> ref [self] T: """Get a tuple element and rebind to the specified type. Parameters: diff --git a/stdlib/src/collections/counter.mojo b/stdlib/src/collections/counter.mojo index 64db6a205a..a02f2136ad 100644 --- a/stdlib/src/collections/counter.mojo +++ b/stdlib/src/collections/counter.mojo @@ -481,9 +481,7 @@ struct Counter[V: KeyElement](Sized, CollectionElement, Boolable): """ return self._data.pop(value, default) - fn keys( - ref [_]self: Self, - ) -> _DictKeyIter[V, Int, __origin_of(self._data)]: + fn keys(ref self) -> _DictKeyIter[V, Int, __origin_of(self._data)]: """Iterate over the Counter's keys as immutable references. Returns: @@ -491,9 +489,7 @@ struct Counter[V: KeyElement](Sized, CollectionElement, Boolable): """ return self._data.keys() - fn values( - ref [_]self: Self, - ) -> _DictValueIter[V, Int, __origin_of(self._data)]: + fn values(ref self) -> _DictValueIter[V, Int, __origin_of(self._data)]: """Iterate over the Counter's values as references. Returns: @@ -501,7 +497,7 @@ struct Counter[V: KeyElement](Sized, CollectionElement, Boolable): """ return self._data.values() - fn items(self: Self) -> _DictEntryIter[V, Int, __origin_of(self._data)]: + fn items(self) -> _DictEntryIter[V, Int, __origin_of(self._data)]: """Iterate over the dict's entries as immutable references. Returns: diff --git a/stdlib/src/collections/deque.mojo b/stdlib/src/collections/deque.mojo index c7a02c219a..84bc48bec4 100644 --- a/stdlib/src/collections/deque.mojo +++ b/stdlib/src/collections/deque.mojo @@ -338,7 +338,7 @@ struct Deque[ElementType: CollectionElement]( return False fn __iter__( - ref [_]self, + ref self, ) -> _DequeIter[ElementType, __origin_of(self)]: """Iterates over elements of the deque, returning the references. @@ -348,7 +348,7 @@ struct Deque[ElementType: CollectionElement]( return _DequeIter(0, Pointer.address_of(self)) fn __reversed__( - ref [_]self, + ref self, ) -> _DequeIter[ElementType, __origin_of(self), False]: """Iterate backwards over the deque, returning the references. @@ -379,7 +379,7 @@ struct Deque[ElementType: CollectionElement]( """ return (self._tail - self._head) & (self._capacity - 1) - fn __getitem__(ref [_]self, idx: Int) -> ref [self] ElementType: + fn __getitem__(ref self, idx: Int) -> ref [self] ElementType: """Gets the deque element at the given index. Args: diff --git a/stdlib/src/collections/dict.mojo b/stdlib/src/collections/dict.mojo index bd9cdb5687..2ecba20f32 100644 --- a/stdlib/src/collections/dict.mojo +++ b/stdlib/src/collections/dict.mojo @@ -617,9 +617,7 @@ struct Dict[K: KeyElement, V: CollectionElement]( """ return self.find(key).__bool__() - fn __iter__( - ref [_]self: Self, - ) -> _DictKeyIter[K, V, __origin_of(self)]: + fn __iter__(ref self) -> _DictKeyIter[K, V, __origin_of(self)]: """Iterate over the dict's keys as immutable references. Returns: @@ -627,9 +625,7 @@ struct Dict[K: KeyElement, V: CollectionElement]( """ return _DictKeyIter(_DictEntryIter(0, 0, self)) - fn __reversed__( - ref [_]self: Self, - ) -> _DictKeyIter[K, V, __origin_of(self), False]: + fn __reversed__(ref self) -> _DictKeyIter[K, V, __origin_of(self), False]: """Iterate backwards over the dict keys, returning immutable references. Returns: @@ -761,7 +757,7 @@ struct Dict[K: KeyElement, V: CollectionElement]( # TODO(MOCO-604): Return Optional[Pointer] instead of raising fn _find_ref( - ref [_]self: Self, key: K + ref self, key: K ) raises -> ref [self._entries[0].value().value] Self.V: """Find a value in the dictionary by key. @@ -880,7 +876,7 @@ struct Dict[K: KeyElement, V: CollectionElement]( raise "KeyError: popitem(): dictionary is empty" - fn keys(ref [_]self: Self) -> _DictKeyIter[K, V, __origin_of(self)]: + fn keys(ref self) -> _DictKeyIter[K, V, __origin_of(self)]: """Iterate over the dict's keys as immutable references. Returns: @@ -888,7 +884,7 @@ struct Dict[K: KeyElement, V: CollectionElement]( """ return Self.__iter__(self) - fn values(ref [_]self: Self) -> _DictValueIter[K, V, __origin_of(self)]: + fn values(ref self) -> _DictValueIter[K, V, __origin_of(self)]: """Iterate over the dict's values as references. Returns: @@ -896,7 +892,7 @@ struct Dict[K: KeyElement, V: CollectionElement]( """ return _DictValueIter(_DictEntryIter(0, 0, self)) - fn items(ref [_]self: Self) -> _DictEntryIter[K, V, __origin_of(self)]: + fn items(ref self) -> _DictEntryIter[K, V, __origin_of(self)]: """Iterate over the dict's entries as immutable references. These can't yet be unpacked like Python dict items, but you can @@ -1215,7 +1211,7 @@ struct OwnedKwargsDict[V: CollectionElement]( return self._dict.pop(key) fn __iter__( - ref [_]self: Self, + ref self, ) -> _DictKeyIter[Self.key_type, V, __origin_of(self._dict)]: """Iterate over the keyword dict's keys as immutable references. @@ -1225,7 +1221,7 @@ struct OwnedKwargsDict[V: CollectionElement]( return self._dict.keys() fn keys( - ref [_]self: Self, + ref self, ) -> _DictKeyIter[Self.key_type, V, __origin_of(self._dict)]: """Iterate over the keyword dict's keys as immutable references. @@ -1235,7 +1231,7 @@ struct OwnedKwargsDict[V: CollectionElement]( return self._dict.keys() fn values( - ref [_]self: Self, + ref self, ) -> _DictValueIter[Self.key_type, V, __origin_of(self._dict)]: """Iterate over the keyword dict's values as references. @@ -1245,7 +1241,7 @@ struct OwnedKwargsDict[V: CollectionElement]( return self._dict.values() fn items( - ref [_]self: Self, + ref self, ) -> _DictEntryIter[Self.key_type, V, __origin_of(self._dict)]: """Iterate over the keyword dictionary's entries as immutable references. diff --git a/stdlib/src/collections/inline_array.mojo b/stdlib/src/collections/inline_array.mojo index 7aab9d4618..642bc72104 100644 --- a/stdlib/src/collections/inline_array.mojo +++ b/stdlib/src/collections/inline_array.mojo @@ -232,7 +232,7 @@ struct InlineArray[ # ===------------------------------------------------------------------===# @always_inline - fn __getitem__(ref [_]self: Self, idx: Int) -> ref [self] Self.ElementType: + fn __getitem__(ref self, idx: Int) -> ref [self] Self.ElementType: """Get a `Pointer` to the element at the given index. Args: @@ -245,9 +245,7 @@ struct InlineArray[ return self.unsafe_get(normalized_index) @always_inline - fn __getitem__[ - idx: Int, - ](ref [_]self: Self) -> ref [self] Self.ElementType: + fn __getitem__[idx: Int](ref self) -> ref [self] Self.ElementType: """Get a `Pointer` to the element at the given index. Parameters: @@ -284,7 +282,7 @@ struct InlineArray[ # ===------------------------------------------------------------------===# @always_inline - fn unsafe_get(ref [_]self: Self, idx: Int) -> ref [self] Self.ElementType: + fn unsafe_get(ref self, idx: Int) -> ref [self] Self.ElementType: """Get a reference to an element of self without checking index bounds. Users should opt for `__getitem__` instead of this method as it is diff --git a/stdlib/src/collections/inline_list.mojo b/stdlib/src/collections/inline_list.mojo index 792635f427..285944f10d 100644 --- a/stdlib/src/collections/inline_list.mojo +++ b/stdlib/src/collections/inline_list.mojo @@ -132,7 +132,7 @@ struct InlineList[ElementType: CollectionElementNew, capacity: Int = 16](Sized): @always_inline fn __getitem__( - ref [_]self: Self, owned idx: Int + ref self, owned idx: Int ) -> ref [self._array] Self.ElementType: """Get a `Pointer` to the element at the given index. @@ -174,7 +174,7 @@ struct InlineList[ElementType: CollectionElementNew, capacity: Int = 16](Sized): return len(self) > 0 fn __iter__( - ref [_]self: Self, + ref self, ) -> _InlineListIter[ElementType, capacity, __origin_of(self)]: """Iterate over elements of the list, returning immutable references. @@ -185,7 +185,7 @@ struct InlineList[ElementType: CollectionElementNew, capacity: Int = 16](Sized): fn __contains__[ C: EqualityComparableCollectionElement, // - ](self: Self, value: C) -> Bool: + ](self, value: C) -> Bool: """Verify if a given value is present in the list. ```mojo @@ -215,9 +215,7 @@ struct InlineList[ElementType: CollectionElementNew, capacity: Int = 16](Sized): # Methods # ===-------------------------------------------------------------------===# - fn count[ - C: EqualityComparableCollectionElement, // - ](self: Self, value: C) -> Int: + fn count[C: EqualityComparableCollectionElement, //](self, value: C) -> Int: """Counts the number of occurrences of a value in the list. ```mojo diff --git a/stdlib/src/collections/list.mojo b/stdlib/src/collections/list.mojo index 301825d0a7..d63b8d6aa8 100644 --- a/stdlib/src/collections/list.mojo +++ b/stdlib/src/collections/list.mojo @@ -345,9 +345,7 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False]( """ self.extend(other^) - fn __iter__( - ref [_]self: Self, - ) -> _ListIter[T, hint_trivial_type, __origin_of(self)]: + fn __iter__(ref self) -> _ListIter[T, hint_trivial_type, __origin_of(self)]: """Iterate over elements of the list, returning immutable references. Returns: @@ -356,7 +354,7 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False]( return _ListIter(0, Pointer.address_of(self)) fn __reversed__( - ref [_]self: Self, + ref self, ) -> _ListIter[T, hint_trivial_type, __origin_of(self), False]: """Iterate backwards over the list, returning immutable references. @@ -689,7 +687,7 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False]( fn index[ C: EqualityComparableCollectionElement, // ]( - ref [_]self: List[C, *_], + ref self: List[C, *_], value: C, start: Int = 0, stop: Optional[Int] = None, @@ -785,7 +783,7 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False]( return res^ - fn __getitem__(ref [_]self, idx: Int) -> ref [self] T: + fn __getitem__(ref self, idx: Int) -> ref [self] T: """Gets the list element at the given index. Args: @@ -810,7 +808,7 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False]( return (self.data + normalized_idx)[] @always_inline - fn unsafe_get(ref [_]self: Self, idx: Int) -> ref [self] Self.T: + fn unsafe_get(ref self, idx: Int) -> ref [self] Self.T: """Get a reference to an element of self without checking index bounds. Users should consider using `__getitem__` instead of this method as it diff --git a/stdlib/src/collections/optional.mojo b/stdlib/src/collections/optional.mojo index d9326aa4cc..82eab48450 100644 --- a/stdlib/src/collections/optional.mojo +++ b/stdlib/src/collections/optional.mojo @@ -298,7 +298,7 @@ struct Optional[T: CollectionElement]( # ===-------------------------------------------------------------------===# @always_inline - fn value(ref [_]self: Self) -> ref [self._value] T: + fn value(ref self) -> ref [self._value] T: """Retrieve a reference to the value of the Optional. This check to see if the optional contains a value. @@ -315,7 +315,7 @@ struct Optional[T: CollectionElement]( return self.unsafe_value() @always_inline - fn unsafe_value(ref [_]self: Self) -> ref [self._value] T: + fn unsafe_value(ref self) -> ref [self._value] T: """Unsafely retrieve a reference to the value of the Optional. This doesn't check to see if the optional contains a value. diff --git a/stdlib/src/collections/set.mojo b/stdlib/src/collections/set.mojo index 809d838a55..bd37074c32 100644 --- a/stdlib/src/collections/set.mojo +++ b/stdlib/src/collections/set.mojo @@ -354,9 +354,7 @@ struct Set[T: KeyElement](Sized, Comparable, Hashable, Boolable): # Methods # ===-------------------------------------------------------------------===# - fn __iter__( - ref [_]self: Self, - ) -> _DictKeyIter[T, NoneType, __origin_of(self._data)]: + fn __iter__(ref self) -> _DictKeyIter[T, NoneType, __origin_of(self._data)]: """Iterate over elements of the set, returning immutable references. Returns: diff --git a/stdlib/src/collections/string.mojo b/stdlib/src/collections/string.mojo index 09112037b9..144e7cc493 100644 --- a/stdlib/src/collections/string.mojo +++ b/stdlib/src/collections/string.mojo @@ -1529,7 +1529,7 @@ struct String( return self.unsafe_ptr().bitcast[c_char]() @always_inline - fn as_bytes(ref [_]self) -> Span[Byte, __origin_of(self)]: + fn as_bytes(ref self) -> Span[Byte, __origin_of(self)]: """Returns a contiguous slice of the bytes owned by this string. Returns: @@ -1545,7 +1545,7 @@ struct String( ) @always_inline - fn as_string_slice(ref [_]self) -> StringSlice[__origin_of(self)]: + fn as_string_slice(ref self) -> StringSlice[__origin_of(self)]: """Returns a string slice of the data owned by this string. Returns: @@ -2024,7 +2024,7 @@ struct String( return copy fn startswith( - ref [_]self, prefix: String, start: Int = 0, end: Int = -1 + ref self, prefix: String, start: Int = 0, end: Int = -1 ) -> Bool: """Checks if the string starts with the specified prefix between start and end positions. Returns True if found and False otherwise. diff --git a/stdlib/src/memory/maybe_uninitialized.mojo b/stdlib/src/memory/maybe_uninitialized.mojo index 010822a602..b25dbda51d 100644 --- a/stdlib/src/memory/maybe_uninitialized.mojo +++ b/stdlib/src/memory/maybe_uninitialized.mojo @@ -213,7 +213,7 @@ struct UnsafeMaybeUninitialized[ElementType: AnyType](CollectionElementNew): @always_inline fn assume_initialized( - ref [_]self: Self, + ref self: Self, ) -> ref [self] Self.ElementType: """Returns a reference to the internal value. diff --git a/stdlib/src/utils/inline_string.mojo b/stdlib/src/utils/inline_string.mojo index 18ee49465f..21cb2a5881 100644 --- a/stdlib/src/utils/inline_string.mojo +++ b/stdlib/src/utils/inline_string.mojo @@ -267,7 +267,7 @@ struct InlineString(Sized, Stringable, CollectionElement, CollectionElementNew): return self._storage[String].unsafe_ptr() @always_inline - fn as_string_slice(ref [_]self: Self) -> StringSlice[__origin_of(self)]: + fn as_string_slice(ref self: Self) -> StringSlice[__origin_of(self)]: """Returns a string slice of the data owned by this inline string. Returns: @@ -280,7 +280,7 @@ struct InlineString(Sized, Stringable, CollectionElement, CollectionElementNew): return StringSlice(unsafe_from_utf8=self.as_bytes()) @always_inline - fn as_bytes(ref [_]self: Self) -> Span[Byte, __origin_of(self)]: + fn as_bytes(ref self: Self) -> Span[Byte, __origin_of(self)]: """ Returns a contiguous slice of the bytes owned by this string. @@ -505,7 +505,7 @@ struct _FixedString[CAP: Int]( return self.buffer.unsafe_ptr() @always_inline - fn as_string_slice(ref [_]self: Self) -> StringSlice[__origin_of(self)]: + fn as_string_slice(ref self: Self) -> StringSlice[__origin_of(self)]: """Returns a string slice of the data owned by this fixed string. Returns: @@ -518,7 +518,7 @@ struct _FixedString[CAP: Int]( return StringSlice(unsafe_from_utf8=self.as_bytes()) @always_inline - fn as_bytes(ref [_]self: Self) -> Span[Byte, __origin_of(self)]: + fn as_bytes(ref self: Self) -> Span[Byte, __origin_of(self)]: """ Returns a contiguous slice of the bytes owned by this string. diff --git a/stdlib/src/utils/span.mojo b/stdlib/src/utils/span.mojo index 97dc5b6aae..4eb0679cd7 100644 --- a/stdlib/src/utils/span.mojo +++ b/stdlib/src/utils/span.mojo @@ -31,7 +31,7 @@ trait AsBytes: span. """ - fn as_bytes(ref [_]self) -> Span[Byte, __origin_of(self)]: + fn as_bytes(ref self) -> Span[Byte, __origin_of(self)]: """Returns a contiguous slice of the bytes owned by this string. Returns: diff --git a/stdlib/src/utils/static_tuple.mojo b/stdlib/src/utils/static_tuple.mojo index f4066c9a4e..8248fae4f0 100644 --- a/stdlib/src/utils/static_tuple.mojo +++ b/stdlib/src/utils/static_tuple.mojo @@ -33,7 +33,7 @@ fn _set_array_elem[ type: AnyTrivialRegType, ]( val: type, - ref [_]array: __mlir_type[`!pop.array<`, size.value, `, `, type, `>`], + ref array: __mlir_type[`!pop.array<`, size.value, `, `, type, `>`], ): """Sets the array element at position `index` with the value `val`. diff --git a/stdlib/src/utils/string_slice.mojo b/stdlib/src/utils/string_slice.mojo index effc8ec5c9..50619e7978 100644 --- a/stdlib/src/utils/string_slice.mojo +++ b/stdlib/src/utils/string_slice.mojo @@ -566,7 +566,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable].type,]( buf.append(0) return String(buf^) - fn __contains__(ref [_]self, substr: StringSlice[_]) -> Bool: + fn __contains__(ref self, substr: StringSlice[_]) -> Bool: """Returns True if the substring is contained within the current string. Args: @@ -784,7 +784,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable].type,]( """ return _FormatCurlyEntry.format(self, args) - fn find(ref [_]self, substr: StringSlice, start: Int = 0) -> Int: + fn find(ref self, substr: StringSlice, start: Int = 0) -> Int: """Finds the offset of the first occurrence of `substr` starting at `start`. If not found, returns `-1`. @@ -1186,19 +1186,19 @@ struct _FormatCurlyEntry(CollectionElement, CollectionElementNew): self.format_spec = format_spec @always_inline - fn is_escaped_brace(ref [_]self) -> Bool: + fn is_escaped_brace(ref self) -> Bool: return self.field.isa[Bool]() @always_inline - fn is_kwargs_field(ref [_]self) -> Bool: + fn is_kwargs_field(ref self) -> Bool: return self.field.isa[String]() @always_inline - fn is_automatic_indexing(ref [_]self) -> Bool: + fn is_automatic_indexing(ref self) -> Bool: return self.field.isa[NoneType]() @always_inline - fn is_manual_indexing(ref [_]self) -> Bool: + fn is_manual_indexing(ref self) -> Bool: return self.field.isa[Int]() @staticmethod diff --git a/stdlib/src/utils/stringref.mojo b/stdlib/src/utils/stringref.mojo index 0d1ede078e..391440abd7 100644 --- a/stdlib/src/utils/stringref.mojo +++ b/stdlib/src/utils/stringref.mojo @@ -213,7 +213,7 @@ struct StringRef( return StringRef() return Self(self.data, self.length - num_bytes) - fn as_bytes(ref [_]self) -> Span[Byte, __origin_of(self)]: + fn as_bytes(ref self) -> Span[Byte, __origin_of(self)]: """Returns a contiguous Span of the bytes owned by this string. Returns: diff --git a/stdlib/src/utils/variant.mojo b/stdlib/src/utils/variant.mojo index e26cd537fc..4b36fab203 100644 --- a/stdlib/src/utils/variant.mojo +++ b/stdlib/src/utils/variant.mojo @@ -194,7 +194,7 @@ struct Variant[*Ts: CollectionElement]( # Operator dunders # ===-------------------------------------------------------------------===# - fn __getitem__[T: CollectionElement](ref [_]self: Self) -> ref [self] T: + fn __getitem__[T: CollectionElement](ref self: Self) -> ref [self] T: """Get the value out of the variant as a type-checked type. This explicitly check that your value is of that type! @@ -230,7 +230,7 @@ struct Variant[*Ts: CollectionElement]( return discr_ptr @always_inline("nodebug") - fn _get_discr(ref [_]self: Self) -> ref [self] UInt8: + fn _get_discr(ref self: Self) -> ref [self] UInt8: var ptr = UnsafePointer.address_of(self._impl).address var discr_ptr = __mlir_op.`pop.variant.discr_gep`[ _type = __mlir_type.`!kgen.pointer>` @@ -362,7 +362,7 @@ struct Variant[*Ts: CollectionElement]( alias idx = Self._check[T]() return self._get_discr() == idx - fn unsafe_get[T: CollectionElement](ref [_]self: Self) -> ref [self] T: + fn unsafe_get[T: CollectionElement](ref self: Self) -> ref [self] T: """Get the value out of the variant as a type-checked type. This doesn't explicitly check that your value is of that type! From fffdfd08171d33e05d4a5d7a00153a5d7d1850d1 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 17 Nov 2024 13:03:21 -0800 Subject: [PATCH 14/28] [mojo-stdlib] Use implicit `Self`, NFC. This moves from `self: Self` to just `self` to clean things up. MODULAR_ORIG_COMMIT_REV_ID: 1a26d34dcb9cc22b9d8a9da0e94402a2730e786c --- docs/manual/decorators/nonmaterializable.ipynb | 2 +- stdlib/src/collections/counter.mojo | 2 +- stdlib/src/memory/arc.mojo | 2 +- stdlib/src/memory/maybe_uninitialized.mojo | 4 +--- stdlib/src/utils/inline_string.mojo | 8 ++++---- stdlib/src/utils/lock.mojo | 12 ++++++------ stdlib/src/utils/variant.mojo | 6 +++--- stdlib/test/collections/test_string.mojo | 2 +- 8 files changed, 18 insertions(+), 20 deletions(-) diff --git a/docs/manual/decorators/nonmaterializable.ipynb b/docs/manual/decorators/nonmaterializable.ipynb index 4e88c205ae..49d6b312fc 100644 --- a/docs/manual/decorators/nonmaterializable.ipynb +++ b/docs/manual/decorators/nonmaterializable.ipynb @@ -62,7 +62,7 @@ " var x: Int\n", "\n", " @always_inline(\"nodebug\")\n", - " fn __add__(self: Self, rhs: Self) -> Self:\n", + " fn __add__(self, rhs: Self) -> Self:\n", " return NmStruct(self.x + rhs.x)\n", "\n", "alias still_nm_struct = NmStruct(1) + NmStruct(2)\n", diff --git a/stdlib/src/collections/counter.mojo b/stdlib/src/collections/counter.mojo index a02f2136ad..ef99934506 100644 --- a/stdlib/src/collections/counter.mojo +++ b/stdlib/src/collections/counter.mojo @@ -121,7 +121,7 @@ struct Counter[V: KeyElement](Sized, CollectionElement, Boolable): """ self._data[value] = count - fn __iter__(self: Self) -> _DictKeyIter[V, Int, __origin_of(self._data)]: + fn __iter__(self) -> _DictKeyIter[V, Int, __origin_of(self._data)]: """Iterate over the keyword dict's keys as immutable references. Returns: diff --git a/stdlib/src/memory/arc.mojo b/stdlib/src/memory/arc.mojo index 4ff31e4900..f8fde04682 100644 --- a/stdlib/src/memory/arc.mojo +++ b/stdlib/src/memory/arc.mojo @@ -140,7 +140,7 @@ struct Arc[T: Movable](CollectionElement, CollectionElementNew, Identifiable): fn __getitem__[ self_life: ImmutableOrigin ]( - ref [self_life]self: Self, + ref [self_life]self, ) -> ref [ _lit_mut_cast[self_life, result_mutable=True].result ] T: diff --git a/stdlib/src/memory/maybe_uninitialized.mojo b/stdlib/src/memory/maybe_uninitialized.mojo index b25dbda51d..20901a6fff 100644 --- a/stdlib/src/memory/maybe_uninitialized.mojo +++ b/stdlib/src/memory/maybe_uninitialized.mojo @@ -212,9 +212,7 @@ struct UnsafeMaybeUninitialized[ElementType: AnyType](CollectionElementNew): self.unsafe_ptr().init_pointee_move(value^) @always_inline - fn assume_initialized( - ref self: Self, - ) -> ref [self] Self.ElementType: + fn assume_initialized(ref self) -> ref [self] Self.ElementType: """Returns a reference to the internal value. Calling this method assumes that the memory is initialized. diff --git a/stdlib/src/utils/inline_string.mojo b/stdlib/src/utils/inline_string.mojo index 21cb2a5881..d7b543a704 100644 --- a/stdlib/src/utils/inline_string.mojo +++ b/stdlib/src/utils/inline_string.mojo @@ -267,7 +267,7 @@ struct InlineString(Sized, Stringable, CollectionElement, CollectionElementNew): return self._storage[String].unsafe_ptr() @always_inline - fn as_string_slice(ref self: Self) -> StringSlice[__origin_of(self)]: + fn as_string_slice(ref self) -> StringSlice[__origin_of(self)]: """Returns a string slice of the data owned by this inline string. Returns: @@ -280,7 +280,7 @@ struct InlineString(Sized, Stringable, CollectionElement, CollectionElementNew): return StringSlice(unsafe_from_utf8=self.as_bytes()) @always_inline - fn as_bytes(ref self: Self) -> Span[Byte, __origin_of(self)]: + fn as_bytes(ref self) -> Span[Byte, __origin_of(self)]: """ Returns a contiguous slice of the bytes owned by this string. @@ -505,7 +505,7 @@ struct _FixedString[CAP: Int]( return self.buffer.unsafe_ptr() @always_inline - fn as_string_slice(ref self: Self) -> StringSlice[__origin_of(self)]: + fn as_string_slice(ref self) -> StringSlice[__origin_of(self)]: """Returns a string slice of the data owned by this fixed string. Returns: @@ -518,7 +518,7 @@ struct _FixedString[CAP: Int]( return StringSlice(unsafe_from_utf8=self.as_bytes()) @always_inline - fn as_bytes(ref self: Self) -> Span[Byte, __origin_of(self)]: + fn as_bytes(ref self) -> Span[Byte, __origin_of(self)]: """ Returns a contiguous slice of the bytes owned by this string. diff --git a/stdlib/src/utils/lock.mojo b/stdlib/src/utils/lock.mojo index e7529401d7..9737dc2178 100644 --- a/stdlib/src/utils/lock.mojo +++ b/stdlib/src/utils/lock.mojo @@ -29,20 +29,20 @@ struct SpinWaiter: var storage: OpaquePointer """Pointer to the underlying SpinWaiter instance.""" - fn __init__(out self: Self): + fn __init__(out self): """Initializes a SpinWaiter instance.""" self.storage = external_call[ "KGEN_CompilerRT_AsyncRT_InitializeSpinWaiter", OpaquePointer, ]() - fn __del__(owned self: Self): + fn __del__(owned self): """Destroys the SpinWaiter instance.""" external_call["KGEN_CompilerRT_AsyncRT_DestroySpinWaiter", NoneType]( self.storage ) - fn wait(self: Self): + fn wait(self): """Blocks the current task for a duration determined by the underlying policy.""" external_call["KGEN_CompilerRT_AsyncRT_SpinWaiter_Wait", NoneType]( @@ -60,12 +60,12 @@ struct BlockingSpinLock: var counter: Atomic[DType.int64] """The atomic counter implementing the spin lock.""" - fn __init__(out self: Self): + fn __init__(out self): """Default constructor.""" self.counter = Atomic[DType.int64](Self.UNLOCKED) - fn lock(inout self: Self, owner: Int): + fn lock(inout self, owner: Int): """Acquires the lock. Args: @@ -79,7 +79,7 @@ struct BlockingSpinLock: waiter.wait() expected = Self.UNLOCKED - fn unlock(inout self: Self, owner: Int) -> Bool: + fn unlock(inout self, owner: Int) -> Bool: """Releases the lock. Args: diff --git a/stdlib/src/utils/variant.mojo b/stdlib/src/utils/variant.mojo index 4b36fab203..308e0761e8 100644 --- a/stdlib/src/utils/variant.mojo +++ b/stdlib/src/utils/variant.mojo @@ -194,7 +194,7 @@ struct Variant[*Ts: CollectionElement]( # Operator dunders # ===-------------------------------------------------------------------===# - fn __getitem__[T: CollectionElement](ref self: Self) -> ref [self] T: + fn __getitem__[T: CollectionElement](ref self) -> ref [self] T: """Get the value out of the variant as a type-checked type. This explicitly check that your value is of that type! @@ -230,7 +230,7 @@ struct Variant[*Ts: CollectionElement]( return discr_ptr @always_inline("nodebug") - fn _get_discr(ref self: Self) -> ref [self] UInt8: + fn _get_discr(ref self) -> ref [self] UInt8: var ptr = UnsafePointer.address_of(self._impl).address var discr_ptr = __mlir_op.`pop.variant.discr_gep`[ _type = __mlir_type.`!kgen.pointer>` @@ -362,7 +362,7 @@ struct Variant[*Ts: CollectionElement]( alias idx = Self._check[T]() return self._get_discr() == idx - fn unsafe_get[T: CollectionElement](ref self: Self) -> ref [self] T: + fn unsafe_get[T: CollectionElement](ref self) -> ref [self] T: """Get the value out of the variant as a type-checked type. This doesn't explicitly check that your value is of that type! diff --git a/stdlib/test/collections/test_string.mojo b/stdlib/test/collections/test_string.mojo index dc925e41f2..9f81629b8a 100644 --- a/stdlib/test/collections/test_string.mojo +++ b/stdlib/test/collections/test_string.mojo @@ -32,7 +32,7 @@ from utils import StringRef, StringSlice @value struct AString(Stringable): - fn __str__(self: Self) -> String: + fn __str__(self) -> String: return "a string" From 3f8e712c0b7c7b030a859ee752ebe59b45e4b037 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Sun, 17 Nov 2024 13:34:07 -0800 Subject: [PATCH 15/28] [mojo-tools] Fix mojo-doc printing of ref args and results. (#51016) THis makes us print implicit origins correctly. MODULAR_ORIG_COMMIT_REV_ID: 94ecbc049d3c60b3208437aad0d5099adfbb91d7 --- docs/changelog.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/changelog.md b/docs/changelog.md index bb06947757..1da385ce63 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -521,3 +521,6 @@ what we publish. ```plaintext ... cannot be converted from 'UnsafePointer[UInt]' to 'UnsafePointer[Int]' ``` + +- Tooling now prints the origins of `ref` arguments and results correctly, and + prints `self` instead of `self: Self` in methods. From 4c3a8239c1148992b3787b9380f6aaf044b19d4f Mon Sep 17 00:00:00 2001 From: Lukas Hermann <1734032+lsh@users.noreply.github.com> Date: Sun, 17 Nov 2024 16:27:13 -0800 Subject: [PATCH 16/28] [stdlib] Add comparison to StringSlice for StringLiteral This commit adds the necessary equality functions to allow `StringLiteral` to compare to `StringSlice` such that the literal is on the left hand side. Note that since `String` can coerce to `StringLiteral`, this overload should handle both cases. MODULAR_ORIG_COMMIT_REV_ID: 82abd25fc36ee6534887f037137743ba36a3819d --- stdlib/src/builtin/string_literal.mojo | 24 ++++++++++++++++++++ stdlib/test/builtin/test_string_literal.mojo | 9 ++++++++ 2 files changed, 33 insertions(+) diff --git a/stdlib/src/builtin/string_literal.mojo b/stdlib/src/builtin/string_literal.mojo index a298ae5189..7aa426d5d9 100644 --- a/stdlib/src/builtin/string_literal.mojo +++ b/stdlib/src/builtin/string_literal.mojo @@ -197,6 +197,30 @@ struct StringLiteral( """ return StringRef(self) != StringRef(rhs) + @always_inline("nodebug") + fn __eq__(self, rhs: StringSlice) -> Bool: + """Compare two string literals for equality. + + Args: + rhs: The string to compare. + + Returns: + True if they are equal. + """ + return not (self != rhs) + + @always_inline("nodebug") + fn __ne__(self, rhs: StringSlice) -> Bool: + """Compare two string literals for inequality. + + Args: + rhs: The string to compare. + + Returns: + True if they are not equal. + """ + return self.as_string_slice() != rhs + @always_inline("nodebug") fn __lt__(self, rhs: StringLiteral) -> Bool: """Compare this StringLiteral to the RHS using LT comparison. diff --git a/stdlib/test/builtin/test_string_literal.mojo b/stdlib/test/builtin/test_string_literal.mojo index f8fb2825e5..1e4ca44832 100644 --- a/stdlib/test/builtin/test_string_literal.mojo +++ b/stdlib/test/builtin/test_string_literal.mojo @@ -66,6 +66,15 @@ def test_equality(): assert_true(StringLiteral.__ne__("five", "six")) assert_false(StringLiteral.__ne__("six", "six")) + var hello = str("hello") + var hello_ref = hello.as_string_slice() + + assert_false(StringLiteral.__eq__("goodbye", hello)) + assert_true(StringLiteral.__eq__("hello", hello)) + + assert_false(StringLiteral.__eq__("goodbye", hello_ref)) + assert_true(StringLiteral.__eq__("hello", hello_ref)) + def test_len(): assert_equal(0, StringLiteral.__len__("")) From 559d0d74dca8ee7c67529e143cbf3f6a8c91996e Mon Sep 17 00:00:00 2001 From: Jack Clayton Date: Sun, 17 Nov 2024 18:36:17 -0800 Subject: [PATCH 17/28] [stdlib] Add implicit decorators to constructors, NFC This adds `@implicit` to all single-argument constructors to enable explicit by default construction. Implicit conversions are used heavily throughout the codebase, and so this is a required step to get it to compile. This allows us to take off `@implicit` constructors where they don't make sense, and fix the compiler errors one step at a time. MODULAR_ORIG_COMMIT_REV_ID: 931a2f38a0f9fe87007e334158f1fdf399f04bb2 --- examples/matmul.mojo | 1 + stdlib/src/builtin/anytype.mojo | 1 + stdlib/src/builtin/builtin_list.mojo | 6 ++++++ stdlib/src/builtin/coroutine.mojo | 2 ++ stdlib/src/builtin/error.mojo | 3 +++ stdlib/src/builtin/file_descriptor.mojo | 2 ++ stdlib/src/builtin/float_literal.mojo | 2 ++ stdlib/src/builtin/io.mojo | 1 + stdlib/src/builtin/none.mojo | 10 ++++++++++ stdlib/src/builtin/object.mojo | 20 ++++++++++++++++++++ stdlib/src/builtin/range.mojo | 3 +++ stdlib/src/builtin/simd.mojo | 2 ++ stdlib/src/builtin/sort.mojo | 4 ++++ stdlib/src/builtin/string_literal.mojo | 1 + stdlib/src/builtin/tuple.mojo | 1 + stdlib/src/builtin/value.mojo | 3 +++ stdlib/src/collections/counter.mojo | 1 + stdlib/src/collections/deque.mojo | 2 ++ stdlib/src/collections/dict.mojo | 1 + stdlib/src/collections/inline_array.mojo | 2 ++ stdlib/src/collections/inline_list.mojo | 1 + stdlib/src/collections/list.mojo | 2 ++ stdlib/src/collections/optional.mojo | 6 ++++++ stdlib/src/collections/set.mojo | 3 +++ stdlib/src/collections/vector.mojo | 2 ++ stdlib/src/memory/arc.mojo | 2 ++ stdlib/src/memory/pointer.mojo | 3 +++ stdlib/src/memory/unsafe_pointer.mojo | 2 ++ stdlib/src/os/atomic.mojo | 1 + stdlib/src/pathlib/path.mojo | 1 + stdlib/src/python/_cpython.mojo | 2 ++ stdlib/src/python/python.mojo | 1 + stdlib/src/python/python_object.mojo | 15 +++++++++++++++ stdlib/src/sys/intrinsics.mojo | 3 +++ stdlib/src/utils/index.mojo | 17 +++++++++++++++++ stdlib/src/utils/inline_string.mojo | 2 ++ stdlib/src/utils/span.mojo | 1 + stdlib/src/utils/static_tuple.mojo | 12 ++++++++++++ stdlib/src/utils/stringref.mojo | 2 ++ stdlib/src/utils/variant.mojo | 1 + stdlib/src/utils/write.mojo | 2 ++ stdlib/test/builtin/test_none.mojo | 3 +++ stdlib/test/collections/test_dict.mojo | 4 ++++ stdlib/test/collections/test_list.mojo | 1 + stdlib/test/test_utils/types.mojo | 4 ++++ 45 files changed, 161 insertions(+) diff --git a/examples/matmul.mojo b/examples/matmul.mojo index 44cc91f097..77eb9c447d 100644 --- a/examples/matmul.mojo +++ b/examples/matmul.mojo @@ -57,6 +57,7 @@ struct Matrix[rows: Int, cols: Int]: memset_zero(self.data, rows * cols) # Initialize taking a pointer, don't set any elements + @implicit fn __init__(out self, data: UnsafePointer[Scalar[type]]): self.data = data diff --git a/stdlib/src/builtin/anytype.mojo b/stdlib/src/builtin/anytype.mojo index 03da7a124d..8c7a061ba5 100644 --- a/stdlib/src/builtin/anytype.mojo +++ b/stdlib/src/builtin/anytype.mojo @@ -46,6 +46,7 @@ trait AnyType: var p: UnsafePointer[Int] var size: Int + @implicit fn __init__(out self, size: Int): self.p = UnsafePointer[Int].alloc(size) self.size = size diff --git a/stdlib/src/builtin/builtin_list.mojo b/stdlib/src/builtin/builtin_list.mojo index 7541b4f9c4..80e4b61185 100644 --- a/stdlib/src/builtin/builtin_list.mojo +++ b/stdlib/src/builtin/builtin_list.mojo @@ -40,6 +40,7 @@ struct ListLiteral[*Ts: CollectionElement](Sized, CollectionElement): # ===-------------------------------------------------------------------===# @always_inline + @implicit fn __init__(out self, owned *args: *Ts): """Construct the list literal from the given values. @@ -164,6 +165,7 @@ struct VariadicList[type: AnyTrivialRegType](Sized): alias IterType = _VariadicListIter[type] @always_inline + @implicit fn __init__(out self, *value: type): """Constructs a VariadicList from a variadic list of arguments. @@ -175,6 +177,7 @@ struct VariadicList[type: AnyTrivialRegType](Sized): @doc_private @always_inline + @implicit fn __init__(out self, value: Self._mlir_type): """Constructs a VariadicList from a variadic argument type. @@ -327,6 +330,7 @@ struct VariadicListMem[ # Provide support for borrowed variadic arguments. @doc_private @always_inline + @implicit fn __init__(out self, value: Self._mlir_type): """Constructs a VariadicList from a variadic argument type. @@ -344,6 +348,7 @@ struct VariadicListMem[ ] @always_inline + @implicit fn __init__(out self, value: Self._inout_variadic_type): """Constructs a VariadicList from a variadic argument type. @@ -364,6 +369,7 @@ struct VariadicListMem[ ] @always_inline + @implicit fn __init__(out self, value: Self._owned_variadic_type): """Constructs a VariadicList from a variadic argument type. diff --git a/stdlib/src/builtin/coroutine.mojo b/stdlib/src/builtin/coroutine.mojo index 4c8517d687..d33445e100 100644 --- a/stdlib/src/builtin/coroutine.mojo +++ b/stdlib/src/builtin/coroutine.mojo @@ -120,6 +120,7 @@ struct Coroutine[type: AnyType, origins: OriginSet]: ) @always_inline + @implicit fn __init__(out self, handle: AnyCoroutine): """Construct a coroutine object from a handle. @@ -200,6 +201,7 @@ struct RaisingCoroutine[type: AnyType, origins: OriginSet]: ) @always_inline + @implicit fn __init__(out self, handle: AnyCoroutine): """Construct a coroutine object from a handle. diff --git a/stdlib/src/builtin/error.mojo b/stdlib/src/builtin/error.mojo index 5e74bdff77..c319e708ea 100644 --- a/stdlib/src/builtin/error.mojo +++ b/stdlib/src/builtin/error.mojo @@ -65,6 +65,7 @@ struct Error( self.loaded_length = 0 @always_inline + @implicit fn __init__(out self, value: StringLiteral): """Construct an Error object with a given string literal. @@ -74,6 +75,7 @@ struct Error( self.data = value.unsafe_ptr() self.loaded_length = len(value) + @implicit fn __init__(out self, src: String): """Construct an Error object with a given string. @@ -91,6 +93,7 @@ struct Error( self.data = dest self.loaded_length = -length + @implicit fn __init__(out self, src: StringRef): """Construct an Error object with a given string ref. diff --git a/stdlib/src/builtin/file_descriptor.mojo b/stdlib/src/builtin/file_descriptor.mojo index 9edbc8c58c..241fa10bf3 100644 --- a/stdlib/src/builtin/file_descriptor.mojo +++ b/stdlib/src/builtin/file_descriptor.mojo @@ -38,6 +38,7 @@ struct FileDescriptor(Writer): var value: Int """The underlying value of the file descriptor.""" + @implicit fn __init__(out self, value: Int = 1): """Constructs the file descriptor from an integer. @@ -46,6 +47,7 @@ struct FileDescriptor(Writer): """ self.value = value + @implicit fn __init__(out self, f: FileHandle): """Constructs the file descriptor from a file handle. diff --git a/stdlib/src/builtin/float_literal.mojo b/stdlib/src/builtin/float_literal.mojo index c3da23fcbc..b454ba6d94 100644 --- a/stdlib/src/builtin/float_literal.mojo +++ b/stdlib/src/builtin/float_literal.mojo @@ -49,6 +49,7 @@ struct FloatLiteral( # ===------------------------------------------------------------------===# @always_inline("nodebug") + @implicit fn __init__(out self, value: Self.fp_type): """Create a FloatLiteral value from a kgen.float_literal value. @@ -58,6 +59,7 @@ struct FloatLiteral( self.value = value @always_inline("nodebug") + @implicit fn __init__(out self, value: IntLiteral): """Convert an IntLiteral to a FloatLiteral value. diff --git a/stdlib/src/builtin/io.mojo b/stdlib/src/builtin/io.mojo index f02b5b1a80..c2d3f82a33 100644 --- a/stdlib/src/builtin/io.mojo +++ b/stdlib/src/builtin/io.mojo @@ -43,6 +43,7 @@ from utils import StringRef, StaticString, StringSlice struct _fdopen[mode: StringLiteral = "a"]: var handle: OpaquePointer + @implicit fn __init__(out self, stream_id: FileDescriptor): """Creates a file handle to the stdout/stderr stream. diff --git a/stdlib/src/builtin/none.mojo b/stdlib/src/builtin/none.mojo index 966525ef95..3cfc856b32 100644 --- a/stdlib/src/builtin/none.mojo +++ b/stdlib/src/builtin/none.mojo @@ -37,6 +37,16 @@ struct NoneType( """Construct an instance of the `None` type.""" self._value = None + @always_inline + @implicit + fn __init__(out self, value: Self._mlir_type): + """Construct an instance of the `None` type. + + Args: + value: The MLIR none type to construct from. + """ + self._value = value + @always_inline fn __init__(out self, *, other: Self): """Explicit copy constructor. diff --git a/stdlib/src/builtin/object.mojo b/stdlib/src/builtin/object.mojo index 5b1f41298f..c54d99fc18 100644 --- a/stdlib/src/builtin/object.mojo +++ b/stdlib/src/builtin/object.mojo @@ -178,6 +178,7 @@ struct _RefCountedAttrsDictRef(CollectionElement, CollectionElementNew): """The reference to the dictionary.""" @always_inline + @implicit fn __init__(out self, values: VariadicListMem[Attr, _]): var ptr = UnsafePointer[_RefCountedAttrsDict].alloc(1) __get_address_as_uninit_lvalue(ptr.address) = _RefCountedAttrsDict() @@ -305,6 +306,7 @@ struct _ObjectImpl( # ===------------------------------------------------------------------=== # @always_inline + @implicit fn __init__(out self, value: Self.type): self.value = value @@ -313,6 +315,7 @@ struct _ObjectImpl( self.value = Self.type(_NoneMarker {}) @always_inline + @implicit fn __init__(out self, value: Bool): self.value = Self.type(value) @@ -325,18 +328,22 @@ struct _ObjectImpl( self.value = Self.type(value) @always_inline + @implicit fn __init__(out self, value: _ImmutableString): self.value = Self.type(value) @always_inline + @implicit fn __init__(out self, value: _RefCountedListRef): self.value = Self.type(value) @always_inline + @implicit fn __init__(out self, value: _Function): self.value = Self.type(value) @always_inline + @implicit fn __init__(out self, value: _RefCountedAttrsDictRef): self.value = Self.type(value) @@ -725,6 +732,7 @@ struct object( self._value = _ObjectImpl() @always_inline + @implicit fn __init__(out self, impl: _ObjectImpl): """Initializes the object with an implementation value. This is meant for internal use only. @@ -735,6 +743,7 @@ struct object( self._value = impl @always_inline + @implicit fn __init__(out self, none: NoneType): """Initializes a none value object from a `None` literal. @@ -746,6 +755,7 @@ struct object( # FIXME: None literal should be of NoneType not !kgen.none. @doc_private @always_inline + @implicit fn __init__(out self, none: __mlir_type.`!kgen.none`): """Initializes a none value object from a `None` literal. @@ -755,6 +765,7 @@ struct object( self = NoneType() @always_inline + @implicit fn __init__(out self, value: Int): """Initializes the object with an integer value. @@ -764,6 +775,7 @@ struct object( self._value = Int64(value) @always_inline + @implicit fn __init__(out self, value: Float64): """Initializes the object with an floating-point value. @@ -792,6 +804,7 @@ struct object( self._value = value @always_inline + @implicit fn __init__(out self, value: Bool): """Initializes the object from a bool. @@ -801,6 +814,7 @@ struct object( self._value = value @always_inline + @implicit fn __init__(out self, value: StringLiteral): """Initializes the object from a string literal. @@ -810,6 +824,7 @@ struct object( self = object(StringRef(value)) @always_inline + @implicit fn __init__(out self, value: StringRef): """Initializes the object from a string reference. @@ -861,6 +876,7 @@ struct object( ]() @always_inline + @implicit fn __init__(out self, func: Self.nullary_function): """Initializes an object from a function that takes no arguments. @@ -870,6 +886,7 @@ struct object( self._value = _Function(func) @always_inline + @implicit fn __init__(out self, func: Self.unary_function): """Initializes an object from a function that takes one argument. @@ -879,6 +896,7 @@ struct object( self._value = _Function(func) @always_inline + @implicit fn __init__(out self, func: Self.binary_function): """Initializes an object from a function that takes two arguments. @@ -888,6 +906,7 @@ struct object( self._value = _Function(func) @always_inline + @implicit fn __init__(out self, func: Self.ternary_function): """Initializes an object from a function that takes three arguments. @@ -897,6 +916,7 @@ struct object( self._value = _Function(func) @always_inline + @implicit fn __init__(out self, *attrs: Attr): """Initializes the object with a sequence of zero or more attributes. diff --git a/stdlib/src/builtin/range.mojo b/stdlib/src/builtin/range.mojo index 2b9e691e42..345c2124a4 100644 --- a/stdlib/src/builtin/range.mojo +++ b/stdlib/src/builtin/range.mojo @@ -48,6 +48,7 @@ struct _ZeroStartingRange(Sized, ReversibleRange, _IntIterable): var end: Int @always_inline + @implicit fn __init__(out self, end: Int): self.curr = max(0, end) self.end = self.curr @@ -324,6 +325,7 @@ struct _UIntZeroStartingRange(UIntSized): var end: UInt @always_inline + @implicit fn __init__(out self, end: UInt): self.curr = max(0, end) self.end = self.curr @@ -464,6 +466,7 @@ struct _ZeroStartingScalarRange[type: DType]: var end: Scalar[type] @always_inline + @implicit fn __init__(out self, end: Scalar[type]): self.curr = max(0, end) self.end = self.curr diff --git a/stdlib/src/builtin/simd.mojo b/stdlib/src/builtin/simd.mojo index 8f9e350580..a299140a57 100644 --- a/stdlib/src/builtin/simd.mojo +++ b/stdlib/src/builtin/simd.mojo @@ -366,6 +366,7 @@ struct SIMD[type: DType, size: Int]( ](value.value) @always_inline("nodebug") + @implicit fn __init__(out self, *elems: Scalar[type]): """Constructs a SIMD vector via a variadic list of elements. @@ -405,6 +406,7 @@ struct SIMD[type: DType, size: Int]( self[i] = elems[i] @always_inline + @implicit fn __init__(out self, value: FloatLiteral): """Initializes the SIMD vector with a float. diff --git a/stdlib/src/builtin/sort.mojo b/stdlib/src/builtin/sort.mojo index 77d00ecc3e..8e2f0aadbe 100644 --- a/stdlib/src/builtin/sort.mojo +++ b/stdlib/src/builtin/sort.mojo @@ -34,6 +34,10 @@ alias insertion_sort_threshold = 32 struct _SortWrapper[type: CollectionElement](CollectionElement): var data: type + @implicit + fn __init__(out self, data: type): + self.data = data + fn __init__(out self, *, other: Self): self.data = other.data diff --git a/stdlib/src/builtin/string_literal.mojo b/stdlib/src/builtin/string_literal.mojo index 7aa426d5d9..c363f1b7bd 100644 --- a/stdlib/src/builtin/string_literal.mojo +++ b/stdlib/src/builtin/string_literal.mojo @@ -70,6 +70,7 @@ struct StringLiteral( # ===-------------------------------------------------------------------===# @always_inline("nodebug") + @implicit fn __init__(out self, value: Self.type): """Create a string literal from a builtin string type. diff --git a/stdlib/src/builtin/tuple.mojo b/stdlib/src/builtin/tuple.mojo index efad7a2226..698a73286e 100644 --- a/stdlib/src/builtin/tuple.mojo +++ b/stdlib/src/builtin/tuple.mojo @@ -47,6 +47,7 @@ struct Tuple[*element_types: CollectionElement](Sized, CollectionElement): """The underlying storage for the tuple.""" @always_inline("nodebug") + @implicit fn __init__(out self, owned *args: *element_types): """Construct the tuple. diff --git a/stdlib/src/builtin/value.mojo b/stdlib/src/builtin/value.mojo index d8e6d8e5ea..fab16a7b44 100644 --- a/stdlib/src/builtin/value.mojo +++ b/stdlib/src/builtin/value.mojo @@ -66,6 +66,7 @@ trait Copyable: struct Foo(Copyable): var s: String + @implicit fn __init__(out self, s: String): self.s = s @@ -117,9 +118,11 @@ trait ExplicitlyCopyable: struct Foo(ExplicitlyCopyable): var s: String + @implicit fn __init__(out self, s: String): self.s = s + @implicit fn __init__(out self, copy: Self): print("explicitly copying value") self.s = copy.s diff --git a/stdlib/src/collections/counter.mojo b/stdlib/src/collections/counter.mojo index ef99934506..e6000ce5fb 100644 --- a/stdlib/src/collections/counter.mojo +++ b/stdlib/src/collections/counter.mojo @@ -56,6 +56,7 @@ struct Counter[V: KeyElement](Sized, CollectionElement, Boolable): self._data = Dict[V, Int]() # TODO: Change List to Iterable when it is supported in Mojo + @implicit fn __init__(out self, items: List[V, *_]): """Create a from an input iterable. diff --git a/stdlib/src/collections/deque.mojo b/stdlib/src/collections/deque.mojo index 84bc48bec4..5af332c273 100644 --- a/stdlib/src/collections/deque.mojo +++ b/stdlib/src/collections/deque.mojo @@ -132,6 +132,7 @@ struct Deque[ElementType: CollectionElement]( if elements is not None: self.extend(elements.value()) + @implicit fn __init__(out self, owned *values: ElementType): """Constructs a deque from the given values. @@ -167,6 +168,7 @@ struct Deque[ElementType: CollectionElement]( self._tail = args_length + @implicit fn __init__(out self, other: Self): """Creates a deepcopy of the given deque. diff --git a/stdlib/src/collections/dict.mojo b/stdlib/src/collections/dict.mojo index 2ecba20f32..e6c8c2a821 100644 --- a/stdlib/src/collections/dict.mojo +++ b/stdlib/src/collections/dict.mojo @@ -270,6 +270,7 @@ struct _DictIndex: var data: OpaquePointer @always_inline + @implicit fn __init__(out self, reserved: Int): if reserved <= 128: var data = UnsafePointer[Int8].alloc(reserved) diff --git a/stdlib/src/collections/inline_array.mojo b/stdlib/src/collections/inline_array.mojo index 642bc72104..b1c833b75c 100644 --- a/stdlib/src/collections/inline_array.mojo +++ b/stdlib/src/collections/inline_array.mojo @@ -139,6 +139,7 @@ struct InlineArray[ ) @always_inline + @implicit fn __init__(out self, fill: Self.ElementType): """Constructs an empty array where each element is the supplied `fill`. @@ -157,6 +158,7 @@ struct InlineArray[ ptr.init_pointee_copy(fill) @always_inline + @implicit fn __init__(out self, owned *elems: Self.ElementType): """Constructs an array given a set of arguments. diff --git a/stdlib/src/collections/inline_list.mojo b/stdlib/src/collections/inline_list.mojo index 285944f10d..9d5610ff36 100644 --- a/stdlib/src/collections/inline_list.mojo +++ b/stdlib/src/collections/inline_list.mojo @@ -109,6 +109,7 @@ struct InlineList[ElementType: CollectionElementNew, capacity: Int = 16](Sized): # TODO: Avoid copying elements in once owned varargs # allow transfers. + @implicit fn __init__(out self, *values: ElementType): """Constructs a list from the given values. diff --git a/stdlib/src/collections/list.mojo b/stdlib/src/collections/list.mojo index d63b8d6aa8..1ed439c040 100644 --- a/stdlib/src/collections/list.mojo +++ b/stdlib/src/collections/list.mojo @@ -135,6 +135,7 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False]( self.size = 0 self.capacity = capacity + @implicit fn __init__(out self, owned *values: T): """Constructs a list from the given values. @@ -164,6 +165,7 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False]( self.size = length + @implicit fn __init__(out self, span: Span[T]): """Constructs a list from the a Span of values. diff --git a/stdlib/src/collections/optional.mojo b/stdlib/src/collections/optional.mojo index 82eab48450..2bcaf9ea8e 100644 --- a/stdlib/src/collections/optional.mojo +++ b/stdlib/src/collections/optional.mojo @@ -92,6 +92,7 @@ struct Optional[T: CollectionElement]( """Construct an empty Optional.""" self._value = Self._type(_NoneType()) + @implicit fn __init__(out self, owned value: T): """Construct an Optional containing a value. @@ -104,6 +105,7 @@ struct Optional[T: CollectionElement]( # This initializer should not be necessary, we should need # only the initilaizer from a `NoneType`. @doc_private + @implicit fn __init__(out self, value: NoneType._mlir_type): """Construct an empty Optional. @@ -112,6 +114,7 @@ struct Optional[T: CollectionElement]( """ self = Self(value=NoneType(value)) + @implicit fn __init__(out self, value: NoneType): """Construct an empty Optional. @@ -407,6 +410,7 @@ struct OptionalReg[T: AnyTrivialRegType](Boolable): """Create an optional with a value of None.""" self = Self(None) + @implicit fn __init__(out self, value: T): """Create an optional with a value. @@ -421,6 +425,7 @@ struct OptionalReg[T: AnyTrivialRegType](Boolable): # This initializer should not be necessary, we should need # only the initilaizer from a `NoneType`. @doc_private + @implicit fn __init__(out self, value: NoneType._mlir_type): """Construct an empty Optional. @@ -429,6 +434,7 @@ struct OptionalReg[T: AnyTrivialRegType](Boolable): """ self = Self(value=NoneType(value)) + @implicit fn __init__(out self, value: NoneType): """Create an optional without a value from a None literal. diff --git a/stdlib/src/collections/set.mojo b/stdlib/src/collections/set.mojo index bd37074c32..10451bc126 100644 --- a/stdlib/src/collections/set.mojo +++ b/stdlib/src/collections/set.mojo @@ -54,6 +54,7 @@ struct Set[T: KeyElement](Sized, Comparable, Hashable, Boolable): # Life cycle methods # ===-------------------------------------------------------------------===# + @implicit fn __init__(out self, *ts: T): """Construct a set from initial elements. @@ -64,6 +65,7 @@ struct Set[T: KeyElement](Sized, Comparable, Hashable, Boolable): for t in ts: self.add(t[]) + @implicit fn __init__(out self, elements: Self): """Explicitly copy another Set instance. @@ -74,6 +76,7 @@ struct Set[T: KeyElement](Sized, Comparable, Hashable, Boolable): for e in elements: self.add(e[]) + @implicit fn __init__(out self, elements: List[T, *_]): """Construct a set from a List of elements. diff --git a/stdlib/src/collections/vector.mojo b/stdlib/src/collections/vector.mojo index 6fd87dd51e..8812b4b61c 100644 --- a/stdlib/src/collections/vector.mojo +++ b/stdlib/src/collections/vector.mojo @@ -114,6 +114,7 @@ struct InlinedFixedVector[ """The maximum number of elements that can fit in the vector.""" @always_inline + @implicit fn __init__(out self, capacity: Int): """Constructs `InlinedFixedVector` with the given capacity. @@ -130,6 +131,7 @@ struct InlinedFixedVector[ self.capacity = capacity @always_inline + @implicit fn __init__(out self, existing: Self): """ Copy constructor. diff --git a/stdlib/src/memory/arc.mojo b/stdlib/src/memory/arc.mojo index f8fde04682..fa904d53e8 100644 --- a/stdlib/src/memory/arc.mojo +++ b/stdlib/src/memory/arc.mojo @@ -54,6 +54,7 @@ struct _ArcInner[T: Movable]: var refcount: Atomic[DType.uint64] var payload: T + @implicit fn __init__(out self, owned value: T): """Create an initialized instance of this with a refcount of 1.""" self.refcount = Scalar[DType.uint64](1) @@ -88,6 +89,7 @@ struct Arc[T: Movable](CollectionElement, CollectionElementNew, Identifiable): alias _inner_type = _ArcInner[T] var _inner: UnsafePointer[Self._inner_type] + @implicit fn __init__(out self, owned value: T): """Construct a new thread-safe, reference-counted smart pointer, and move the value into heap memory managed by the new pointer. diff --git a/stdlib/src/memory/pointer.mojo b/stdlib/src/memory/pointer.mojo index fcea6422e0..dfccdc524c 100644 --- a/stdlib/src/memory/pointer.mojo +++ b/stdlib/src/memory/pointer.mojo @@ -47,6 +47,7 @@ struct _GPUAddressSpace(EqualityComparable): """Local address space.""" @always_inline("nodebug") + @implicit fn __init__(out self, value: Int): self._value = value @@ -170,6 +171,7 @@ struct AddressSpace(EqualityComparable, Stringable, Writable): """Generic address space.""" @always_inline("nodebug") + @implicit fn __init__(out self, value: Int): """Initializes the address space from the underlying integral value. @@ -179,6 +181,7 @@ struct AddressSpace(EqualityComparable, Stringable, Writable): self._value = value @always_inline("nodebug") + @implicit fn __init__(out self, value: _GPUAddressSpace): """Initializes the address space from the underlying integral value. diff --git a/stdlib/src/memory/unsafe_pointer.mojo b/stdlib/src/memory/unsafe_pointer.mojo index cd4066c8cb..9c75cc59a6 100644 --- a/stdlib/src/memory/unsafe_pointer.mojo +++ b/stdlib/src/memory/unsafe_pointer.mojo @@ -104,6 +104,7 @@ struct UnsafePointer[ @doc_private @always_inline + @implicit fn __init__(out self, value: Self._mlir_type): """Create a pointer with the input value. @@ -113,6 +114,7 @@ struct UnsafePointer[ self.address = value @always_inline + @implicit fn __init__(out self, other: UnsafePointer[type, address_space, *_, **_]): """Exclusivity parameter cast a pointer. diff --git a/stdlib/src/os/atomic.mojo b/stdlib/src/os/atomic.mojo index 94c7047187..73a97c09ea 100644 --- a/stdlib/src/os/atomic.mojo +++ b/stdlib/src/os/atomic.mojo @@ -41,6 +41,7 @@ struct Atomic[type: DType]: """ @always_inline + @implicit fn __init__(out self, value: Scalar[type]): """Constructs a new atomic value. diff --git a/stdlib/src/pathlib/path.mojo b/stdlib/src/pathlib/path.mojo index e77c305081..0d4449d405 100644 --- a/stdlib/src/pathlib/path.mojo +++ b/stdlib/src/pathlib/path.mojo @@ -84,6 +84,7 @@ struct Path( """Initializes a path with the current directory.""" self = cwd() + @implicit fn __init__(out self, path: String): """Initializes a path with the provided path. diff --git a/stdlib/src/python/_cpython.mojo b/stdlib/src/python/_cpython.mojo index b8c8c8266a..ef437a3d06 100644 --- a/stdlib/src/python/_cpython.mojo +++ b/stdlib/src/python/_cpython.mojo @@ -259,6 +259,7 @@ struct PythonVersion: var patch: Int """The patch version number.""" + @implicit fn __init__(out self, version: StringRef): """Initialize a PythonVersion object from a version string. @@ -647,6 +648,7 @@ struct PyModuleDef(Stringable, Representable, Writable): alias _free_fn_type = fn (OpaquePointer) -> OpaquePointer var free_fn: Self._free_fn_type + @implicit fn __init__(out self, name: String): self.base = PyModuleDef_Base() self.name = name.unsafe_cstr_ptr() diff --git a/stdlib/src/python/python.mojo b/stdlib/src/python/python.mojo index fbd1825c26..990daaf583 100644 --- a/stdlib/src/python/python.mojo +++ b/stdlib/src/python/python.mojo @@ -66,6 +66,7 @@ fn _get_global_python_itf() -> _PythonInterfaceImpl: struct _PythonInterfaceImpl: var _cpython: UnsafePointer[CPython] + @implicit fn __init__(out self, cpython: UnsafePointer[CPython]): self._cpython = cpython diff --git a/stdlib/src/python/python_object.mojo b/stdlib/src/python/python_object.mojo index a7089fc8f5..151336f510 100644 --- a/stdlib/src/python/python_object.mojo +++ b/stdlib/src/python/python_object.mojo @@ -60,6 +60,7 @@ struct _PyIter(Sized): self.preparedNextItem = existing.preparedNextItem self.isDone = existing.isDone + @implicit fn __init__(out self, iter: PythonObject): """Initialize an iterator. @@ -261,6 +262,7 @@ struct PythonObject( """ self = other + @implicit fn __init__(out self, ptr: PyObjectPtr): """Initialize this object from an owned reference-counted Python object pointer. @@ -308,6 +310,7 @@ struct PythonObject( return PythonObject(borrowed_ptr) + @implicit fn __init__(out self, owned typed_obj: TypedPythonObject[_]): """Construct a PythonObject from a typed object, dropping the type hint information. @@ -330,6 +333,7 @@ struct PythonObject( # This initializer should not be necessary, we should need # only the initilaizer from a `NoneType`. @doc_private + @implicit fn __init__(out self, none: NoneType._mlir_type): """Initialize a none value object from a `None` literal. @@ -338,6 +342,7 @@ struct PythonObject( """ self = Self(none=NoneType()) + @implicit fn __init__(out self, none: NoneType): """Initialize a none value object from a `None` literal. @@ -348,6 +353,7 @@ struct PythonObject( self.py_object = cpython.Py_None() cpython.Py_IncRef(self.py_object) + @implicit fn __init__(out self, value: Bool): """Initialize the object from a bool. @@ -357,6 +363,7 @@ struct PythonObject( cpython = _get_global_python_itf().cpython() self.py_object = cpython.PyBool_FromLong(int(value)) + @implicit fn __init__(out self, integer: Int): """Initialize the object with an integer value. @@ -366,6 +373,7 @@ struct PythonObject( cpython = _get_global_python_itf().cpython() self.py_object = cpython.PyLong_FromSsize_t(integer) + @implicit fn __init__[dt: DType](inout self, value: SIMD[dt, 1]): """Initialize the object with a generic scalar value. If the scalar value type is bool, it is converted to a boolean. Otherwise, it is @@ -389,6 +397,7 @@ struct PythonObject( fp_val = value.cast[DType.float64]() self.py_object = cpython.PyFloat_FromDouble(fp_val) + @implicit fn __init__(out self, value: StringLiteral): """Initialize the object from a string literal. @@ -397,6 +406,7 @@ struct PythonObject( """ self = PythonObject(str(value)) + @implicit fn __init__(out self, strref: StringRef): """Initialize the object from a string reference. @@ -406,6 +416,7 @@ struct PythonObject( cpython = _get_global_python_itf().cpython() self.py_object = cpython.PyUnicode_DecodeUTF8(strref) + @implicit fn __init__(out self, string: String): """Initialize the object from a string. @@ -415,6 +426,7 @@ struct PythonObject( cpython = _get_global_python_itf().cpython() self.py_object = cpython.PyUnicode_DecodeUTF8(string.as_string_slice()) + @implicit fn __init__[*Ts: CollectionElement](inout self, value: ListLiteral[*Ts]): """Initialize the object from a list literal. @@ -457,6 +469,7 @@ struct PythonObject( cpython.Py_IncRef(obj.py_object) _ = cpython.PyList_SetItem(self.py_object, i, obj.py_object) + @implicit fn __init__[*Ts: CollectionElement](inout self, value: Tuple[*Ts]): """Initialize the object from a tuple literal. @@ -500,6 +513,7 @@ struct PythonObject( cpython.Py_IncRef(obj.py_object) _ = cpython.PyTuple_SetItem(self.py_object, i, obj.py_object) + @implicit fn __init__(out self, slice: Slice): """Initialize the object from a Mojo Slice. @@ -508,6 +522,7 @@ struct PythonObject( """ self.py_object = _slice_to_py_object_ptr(slice) + @implicit fn __init__(out self, value: Dict[Self, Self]): """Initialize the object from a dictionary of PythonObjects. diff --git a/stdlib/src/sys/intrinsics.mojo b/stdlib/src/sys/intrinsics.mojo index 5b54419691..38f6ae8e5b 100644 --- a/stdlib/src/sys/intrinsics.mojo +++ b/stdlib/src/sys/intrinsics.mojo @@ -279,6 +279,7 @@ struct PrefetchLocality: """Extremely local locality (keep in cache).""" @always_inline("nodebug") + @implicit fn __init__(out self, value: Int): """Constructs a prefetch locality option. @@ -301,6 +302,7 @@ struct PrefetchRW: """Write prefetch.""" @always_inline("nodebug") + @implicit fn __init__(out self, value: Int): """Constructs a prefetch read-write option. @@ -324,6 +326,7 @@ struct PrefetchCache: """The data prefetching option.""" @always_inline("nodebug") + @implicit fn __init__(out self, value: Int): """Constructs a prefetch option. diff --git a/stdlib/src/utils/index.mojo b/stdlib/src/utils/index.mojo index 26c8620f26..ff6ada51d1 100644 --- a/stdlib/src/utils/index.mojo +++ b/stdlib/src/utils/index.mojo @@ -198,8 +198,19 @@ struct IndexList[ """Constructs a static int tuple of the given size.""" self = 0 + @always_inline + @implicit + fn __init__(out self, data: StaticTuple[Self._int_type, size]): + """Constructs a static int tuple of the given size. + + Args: + data: The StaticTuple to construct the IndexList from. + """ + self.data = data + @doc_private @always_inline + @implicit fn __init__(out self, value: __mlir_type.index): """Constructs a sized 1 static int tuple of given the element value. @@ -210,6 +221,7 @@ struct IndexList[ self = Int(value) @always_inline + @implicit fn __init__(out self, elems: (Int, Int)): """Constructs a static int tuple given a tuple of integers. @@ -235,6 +247,7 @@ struct IndexList[ self = tup @always_inline + @implicit fn __init__(out self, elems: (Int, Int, Int)): """Constructs a static int tuple given a tuple of integers. @@ -260,6 +273,7 @@ struct IndexList[ self = tup @always_inline + @implicit fn __init__(out self, elems: (Int, Int, Int, Int)): """Constructs a static int tuple given a tuple of integers. @@ -285,6 +299,7 @@ struct IndexList[ self = tup @always_inline + @implicit fn __init__(out self, *elems: Int): """Constructs a static int tuple given a set of arguments. @@ -308,6 +323,7 @@ struct IndexList[ self = tup @always_inline + @implicit fn __init__(out self, elem: Int): """Constructs a static int tuple given a set of arguments. @@ -330,6 +346,7 @@ struct IndexList[ self.data = other.data @always_inline + @implicit fn __init__(out self, values: VariadicList[Int]): """Creates a tuple constant using the specified values. diff --git a/stdlib/src/utils/inline_string.mojo b/stdlib/src/utils/inline_string.mojo index d7b543a704..3f8d5d52f0 100644 --- a/stdlib/src/utils/inline_string.mojo +++ b/stdlib/src/utils/inline_string.mojo @@ -57,6 +57,7 @@ struct InlineString(Sized, Stringable, CollectionElement, CollectionElementNew): var fixed = _FixedString[Self.SMALL_CAP]() self._storage = Self.Layout(fixed^) + @implicit fn __init__(out self, literal: StringLiteral): """Constructs a InlineString value given a string literal. @@ -81,6 +82,7 @@ struct InlineString(Sized, Stringable, CollectionElement, CollectionElementNew): var heap = String(literal) self._storage = Self.Layout(heap^) + @implicit fn __init__(out self, owned heap_string: String): """Construct a new small string by taking ownership of an existing heap-allocated String. diff --git a/stdlib/src/utils/span.mojo b/stdlib/src/utils/span.mojo index 4eb0679cd7..40098ecafc 100644 --- a/stdlib/src/utils/span.mojo +++ b/stdlib/src/utils/span.mojo @@ -135,6 +135,7 @@ struct Span[ self._len = other._len @always_inline + @implicit fn __init__(out self, ref [origin]list: List[T, *_]): """Construct a Span from a List. diff --git a/stdlib/src/utils/static_tuple.mojo b/stdlib/src/utils/static_tuple.mojo index 8248fae4f0..9a14c36e24 100644 --- a/stdlib/src/utils/static_tuple.mojo +++ b/stdlib/src/utils/static_tuple.mojo @@ -135,6 +135,17 @@ struct StaticTuple[element_type: AnyTrivialRegType, size: Int](Sized): ]() @always_inline + @implicit + fn __init__(out self, array: Self.type): + """Constructs from an array type. + + Args: + array: Underlying MLIR array type. + """ + self.array = array + + @always_inline + @implicit fn __init__(out self, *elems: Self.element_type): """Constructs a static tuple given a set of arguments. @@ -145,6 +156,7 @@ struct StaticTuple[element_type: AnyTrivialRegType, size: Int](Sized): self.array = _create_array[size](elems) @always_inline + @implicit fn __init__(out self, values: VariadicList[Self.element_type]): """Creates a tuple constant using the specified values. diff --git a/stdlib/src/utils/stringref.mojo b/stdlib/src/utils/stringref.mojo index 391440abd7..729999be24 100644 --- a/stdlib/src/utils/stringref.mojo +++ b/stdlib/src/utils/stringref.mojo @@ -85,6 +85,7 @@ struct StringRef( self.length = other.length @always_inline + @implicit fn __init__(out self, str: StringLiteral): """Construct a StringRef value given a constant string. @@ -127,6 +128,7 @@ struct StringRef( self = StringRef(ptr, len) @always_inline + @implicit fn __init__(out self, ptr: UnsafePointer[c_char]): """Construct a StringRef value given a null-terminated string. diff --git a/stdlib/src/utils/variant.mojo b/stdlib/src/utils/variant.mojo index 308e0761e8..07dc22da63 100644 --- a/stdlib/src/utils/variant.mojo +++ b/stdlib/src/utils/variant.mojo @@ -123,6 +123,7 @@ struct Variant[*Ts: CollectionElement]( """ self._impl = __mlir_attr[`#kgen.unknown : `, Self._mlir_type] + @implicit fn __init__[T: CollectionElement](inout self, owned value: T): """Create a variant with one of the types. diff --git a/stdlib/src/utils/write.mojo b/stdlib/src/utils/write.mojo index ed667bfa96..5cf8ba1d3e 100644 --- a/stdlib/src/utils/write.mojo +++ b/stdlib/src/utils/write.mojo @@ -228,6 +228,7 @@ struct _WriteBufferHeap[W: MovableWriter, //, capacity: Int](Writer): var pos: Int var writer: W + @implicit fn __init__(out self, owned writer: W): self.data = UnsafePointer[ UInt8, @@ -275,6 +276,7 @@ struct _WriteBufferStack[W: MovableWriter, //, capacity: Int](Writer): var pos: Int var writer: W + @implicit fn __init__(out self, owned writer: W): self.data = InlineArray[UInt8, capacity](unsafe_uninitialized=True) self.pos = 0 diff --git a/stdlib/test/builtin/test_none.mojo b/stdlib/test/builtin/test_none.mojo index 07404bb8ae..8c153ad329 100644 --- a/stdlib/test/builtin/test_none.mojo +++ b/stdlib/test/builtin/test_none.mojo @@ -37,14 +37,17 @@ def test_format_to(): struct FromNone: var value: Int + @implicit fn __init__(out self, none: NoneType): self.value = -1 # FIXME: None literal should be of NoneType not !kgen.none. @always_inline + @implicit fn __init__(out self, none: __mlir_type.`!kgen.none`): self = NoneType() + @implicit fn __init__(out self, value: Int): self.value = value diff --git a/stdlib/test/collections/test_dict.mojo b/stdlib/test/collections/test_dict.mojo index d9807ea83b..4f8b1e965c 100644 --- a/stdlib/test/collections/test_dict.mojo +++ b/stdlib/test/collections/test_dict.mojo @@ -391,6 +391,10 @@ def test_dict_update_empty_new(): struct DummyKey(KeyElement): var value: Int + @implicit + fn __init__(out self, value: Int): + self.value = value + fn __init__(out self, *, other: Self): self = other diff --git a/stdlib/test/collections/test_list.mojo b/stdlib/test/collections/test_list.mojo index 49bd72a1bb..873baf32e6 100644 --- a/stdlib/test/collections/test_list.mojo +++ b/stdlib/test/collections/test_list.mojo @@ -555,6 +555,7 @@ struct CopyCountedStruct(CollectionElement): self.counter = CopyCounter(other=other.counter) self.value = String(other=other.value) + @implicit fn __init__(out self, value: String): self.counter = CopyCounter() self.value = value diff --git a/stdlib/test/test_utils/types.mojo b/stdlib/test/test_utils/types.mojo index b9dd9cd91a..0e83d44dca 100644 --- a/stdlib/test/test_utils/types.mojo +++ b/stdlib/test/test_utils/types.mojo @@ -27,6 +27,7 @@ struct MoveOnly[T: Movable](Movable): var data: T """Test data payload.""" + @implicit fn __init__(out self, owned i: T): """Construct a MoveOnly providing the payload data. @@ -53,6 +54,7 @@ struct ExplicitCopyOnly(ExplicitlyCopyable): var value: Int var copy_count: Int + @implicit fn __init__(out self, value: Int): self.value = value self.copy_count = 0 @@ -71,6 +73,7 @@ struct ImplicitCopyOnly(Copyable): var value: Int var copy_count: Int + @implicit fn __init__(out self, value: Int): self.value = value self.copy_count = 0 @@ -117,6 +120,7 @@ struct MoveCounter[T: CollectionElementNew]( var value: T var move_count: Int + @implicit fn __init__(out self, owned value: T): """Construct a new instance of this type. This initial move is not counted. """ From 83f0e5823d2c0658682e9c8fdd1904927618b19a Mon Sep 17 00:00:00 2001 From: Jack Clayton Date: Sun, 17 Nov 2024 19:12:21 -0800 Subject: [PATCH 18/28] [mojo-lang] Turn on explicit by default constructors Require `@implicit` decorator above single argument `__init__` function to allow it to be implicitly constructed. See changelog entry in this commit for an example and more details. This fixes https://github.com/modularml/mojo/issues/1310 MODULAR_ORIG_COMMIT_REV_ID: ace1a1da978fd7acbd9a8ea60d807448f8889fcf --- docs/changelog.md | 47 +++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 45 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 1da385ce63..d8261b9ad9 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -444,7 +444,7 @@ what we publish. These operators can't be evaluated at runtime, as a `StringLiteral` must be written into the binary during compilation. - - You can now index into `UnsafePointer` using SIMD scalar integral types: +- You can now index into `UnsafePointer` using SIMD scalar integral types: ```mojo p = UnsafePointer[Int].alloc(1) @@ -453,7 +453,7 @@ what we publish. print(p[i]) ``` - - Float32 and Float64 are now printed and converted to strings with roundtrip +- Float32 and Float64 are now printed and converted to strings with roundtrip guarantee and shortest representation: ```plaintext @@ -470,6 +470,49 @@ what we publish. Float64(1.234 * 10**16) 12340000000000000.0 1.234e+16 ``` +- Single argument constructors now require a `@implicit` decorator to allow + for implicit conversions. Previously you could define an `__init__` that + takes a single argument: + + ```mojo + struct Foo: + var value: Int + + fn __init__(out self, value: Int): + self.value = value + ``` + + And this would allow you to pass an `Int` in the position of `Foo`: + + ```mojo + fn func(foo: Foo): + print("implicitly converted Int to Foo:", foo.value) + + fn main(): + func(Int(42)) + ``` + + This can result in difficult to reason about behaviour as the chain of + implicit conversions grow. By default this implicit behavior is now turned + off so you have to explicitly construct `Foo`: + + ```mojo + fn main(): + func(Foo(42)) + ``` + + But you can still opt into implicit conversions by adding the `@implicit` + decorator: + + ```mojo + struct Foo: + var value: Int + + @implicit + fn __init__(out self, value: Int): + self.value = value + ``` + ### ❌ Removed - The `UnsafePointer.bitcast` overload for `DType` has been removed. Wrap your From ff8fef26cf3cecce4fb9be02d5684484dd5b08e0 Mon Sep 17 00:00:00 2001 From: Jack Clayton Date: Sun, 17 Nov 2024 22:19:01 -0800 Subject: [PATCH 19/28] [docs] Add changelog fix for implicit conversions And slight rewording. MODULAR_ORIG_COMMIT_REV_ID: cc40b7c83b539274076c83197a704c8367fc5fac --- docs/changelog.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index d8261b9ad9..d6c831da5b 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -482,7 +482,7 @@ what we publish. self.value = value ``` - And this would allow you to pass an `Int` in the position of `Foo`: + And this would allow you to pass an `Int` in the position of a `Foo`: ```mojo fn func(foo: Foo): @@ -492,17 +492,17 @@ what we publish. func(Int(42)) ``` - This can result in difficult to reason about behaviour as the chain of - implicit conversions grow. By default this implicit behavior is now turned - off so you have to explicitly construct `Foo`: + This can result in complicated errors that are difficult to debug. By default + this implicit behavior is now turned off, so you have to explicitly construct + `Foo`: ```mojo fn main(): func(Foo(42)) ``` - But you can still opt into implicit conversions by adding the `@implicit` - decorator: + You can still opt into implicit conversions by adding the `@implicit` + decorator. For example, to enable implicit conversions from `Int` to `Foo`: ```mojo struct Foo: @@ -523,6 +523,9 @@ what we publish. - Lifetime tracking is now fully field sensitive, which makes the uninitialized variable checker more precise. +- [Issue #1310](https://github.com/modularml/mojo/issues/1310) - Mojo permits + the use of any constructor for implicit conversions + - [Issue #1632](https://github.com/modularml/mojo/issues/1632) - Mojo produces weird error when inout function is used in non mutating function From 5277e0879f2e42fde8a3e401925fb97ad9ac7c72 Mon Sep 17 00:00:00 2001 From: modularbot Date: Mon, 18 Nov 2024 18:44:42 +0000 Subject: [PATCH 20/28] Update lockfiles to point to latest nightly version: 24.6.0.dev2024111816 --- examples/magic.lock | 257 +++++++++++++++++----------------- examples/notebooks/magic.lock | 255 +++++++++++++++++---------------- examples/operators/magic.lock | 257 +++++++++++++++++----------------- magic.lock | 257 +++++++++++++++++----------------- 4 files changed, 511 insertions(+), 515 deletions(-) diff --git a/examples/magic.lock b/examples/magic.lock index b5975338fa..a539b55040 100644 --- a/examples/magic.lock +++ b/examples/magic.lock @@ -44,7 +44,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -122,12 +122,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py311h2dc5d0c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py311h9ecbd09_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -163,7 +163,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/pyinstrument-5.0.0-py311h9ecbd09_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.10-hc5c86c4_3_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.17-pyhff2d567_0.conda @@ -209,7 +209,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/xxhash-0.8.2-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py311h9ecbd09_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.2-py311h9ecbd09_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py311hbc35293_1.conda @@ -252,7 +252,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -331,12 +331,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py311ha09ea12_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py311h58d527c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py311ha879c10_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -372,7 +372,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyinstrument-5.0.0-py311ha879c10_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.11.10-h5d932e8_3_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.17-pyhff2d567_0.conda @@ -418,7 +418,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xxhash-0.8.2-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py311ha879c10_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.2-py311ha879c10_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-h5efb499_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.23.0-py311hd5293d8_1.conda @@ -460,7 +460,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -530,12 +530,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py311h56c23cb_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py311h30e7462_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py311h460d6c5_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -571,7 +571,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyinstrument-5.0.0-py311hae2e1ce_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.10-hc51fdd5_3_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.17-pyhff2d567_0.conda @@ -616,7 +616,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xxhash-0.8.2-hb547adb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py311h917b07b_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.2-py311h917b07b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-hc1bb282_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py311ha60cc69_1.conda @@ -2200,20 +2200,20 @@ packages: timestamp: 1731706749584 - kind: conda name: deprecated - version: 1.2.14 - build: pyh1a96a4e_0 + version: 1.2.15 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - sha256: 8f61539b00ea315c99f8b6f9e2408caa6894593617676741214cc0280e875ca0 - md5: 4e4c4236e1ca9bcd8816b921a4805882 + url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda + sha256: 48182a27a8fd855db3a402ed914823802f94c3344c87b0d074facc51411296ee + md5: ca75e235b44ab995655fae392f99595e depends: - python >=2.7 - wrapt <2,>=1.10 license: MIT license_family: MIT - size: 14033 - timestamp: 1685233463632 + size: 14182 + timestamp: 1731836933516 - kind: conda name: dill version: 0.3.8 @@ -2599,6 +2599,7 @@ packages: - anyio >=3.0,<5.0 - certifi license: BSD-3-Clause + license_family: BSD size: 48959 timestamp: 1731707562362 - kind: conda @@ -5360,76 +5361,76 @@ packages: timestamp: 1729352296161 - kind: conda name: max - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - sha256: 62ae69f479b7393f6894b10787bdc6aa38b6ef2d519f4da9123a74c6a96d61b3 - md5: 362de46a74c054a047599714c6e20639 - depends: - - max-core ==24.6.0.dev2024111705 release - - max-python >=24.6.0.dev2024111705,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111705 release - - mblack ==24.6.0.dev2024111705 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + sha256: fa56e98447bb9722c73e114e668327474621732929a3b3bf03d706558c0b41df + md5: 099bfd8c69724fb21c86aa6440b07ed4 + depends: + - max-core ==24.6.0.dev2024111816 release + - max-python >=24.6.0.dev2024111816,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024111816 release license: LicenseRef-Modular-Proprietary - size: 9918 - timestamp: 1731820900608 + size: 9924 + timestamp: 1731949226511 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda - sha256: 9fd4c4a5917b51b09aaa968eacaeaa7bbfb0da8f02d19bef5e681a6f2465b015 - md5: 1f6f61e0f83bc7a803afe5b5658930ae + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda + sha256: 4bbaf8418f56808a9a7ed147755de1fd9ff479bb5db60e0b0060f501007a6d03 + md5: 9239cc63963a1e4a15ce32f6ec8fa36c depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 271483501 - timestamp: 1731821032238 + size: 271464508 + timestamp: 1731949226509 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda - sha256: bdf3005d225cf5d238efbed8314d8224bd7d6b9d18f3e3c30b5fb12a6cbd9ae2 - md5: 9bf5a00e7a7feadf323fe2c33e702b7c + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda + sha256: 232a2ca14f07fc562bddb44ecec6848e31f026cfa93267737fd329c51cb26a66 + md5: 9b6d01a1fe29a43ded2016a8c6a6a2c0 depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 274964524 - timestamp: 1731820900606 + size: 275099918 + timestamp: 1731949126926 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda - sha256: 4d1df13c312f16894195ad42e125835d696ab2cff4f206d1b42c39a7160ba236 - md5: 8bb3cb761f00f0fd3e7eded8a19f75d6 + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda + sha256: e8fc65d3b90b8557a6f64e0aa7700b97f4d00a2e2d2bbee651f918986dacb9cb + md5: fd415a5af0a193bfa9241e17eaf3747d depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 233205538 - timestamp: 1731820868487 + size: 233285763 + timestamp: 1731949312758 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.11release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.11release.conda - sha256: 686d2b15adc92f5ac910c59bbbb5ecc0f3348dab32a3775ab80dca244b4e183d - md5: ec005df2d7c513f1a94ac940b89c8535 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.11release.conda + sha256: 19aca53724a4f71c13082dad144fb39446977662458c5fdda62211ccc9b2bdf5 + md5: 5cdb2b6cf87ec478e82440d3a9ec1665 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5449,18 +5450,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 136852997 - timestamp: 1731821032247 + size: 136813048 + timestamp: 1731949226519 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.11release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.11release.conda - sha256: 3e681a5d7ac851b5501dd7220f6763760ed0186b3a24fba1c86c3bf9844588ab - md5: 7cf8a31642dd569a7d5b165147925751 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.11release.conda + sha256: 4a9cb744f9aa694191121d6f9d40bd8652e9046d6919fafa4a908e6c762e2f35 + md5: 0fb76b1bd3bc8a19b8f10ab460b709ec depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5480,18 +5481,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 140409174 - timestamp: 1731820900616 + size: 140376944 + timestamp: 1731949126935 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.11release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.11release.conda - sha256: 99764e2263c513895ae67b23cedddb805bdd7af1fc4644806ab59faec4012b7e - md5: faf3573cfe6e2637cc20de40208285f0 + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.11release.conda + sha256: ed12919aba860fe1aaf485dc647ff67077c6a4d796c04da838e047cc626c64e7 + md5: cc3e59fa6ec40fda5df0ecb9de453ff8 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5511,17 +5512,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 125443869 - timestamp: 1731820868489 + size: 125461339 + timestamp: 1731949312761 - kind: conda name: mblack - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - sha256: c052c8067a82eb13ddbd2abd0740596ce4e85ca66d3b023c5b581adb597feb55 - md5: da2e49b6e38d67fd12fa72a928461110 + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + sha256: 49cab69b1c9539336534907a415e6404b791290bccba5ed61b50b92be7278b6e + md5: 9e7f2d795645d6a04620718dfb10d39c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5531,8 +5532,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130603 - timestamp: 1731820900615 + size: 130612 + timestamp: 1731949226516 - kind: conda name: mdurl version: 0.1.2 @@ -5550,21 +5551,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - sha256: 18072ad83df2a7944a6df95598a0e66cea9eee612401900fc59afe4e06d0a5ca - md5: e684800b970c50bc2daff53eabd57ff8 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + sha256: db5710960cab7c1d1c63ecf6916652cc07fdb8cda80528773d410141b3db0076 + md5: 1959b4bee271c31390854e23a85a7815 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22946 - timestamp: 1731820900617 + size: 22941 + timestamp: 1731949226517 - kind: conda name: multidict version: 6.1.0 @@ -6122,6 +6123,7 @@ packages: depends: - python >=3.8 license: Apache-2.0 + license_family: APACHE size: 60380 timestamp: 1731802602808 - kind: conda @@ -6787,20 +6789,20 @@ packages: timestamp: 1729043512711 - kind: conda name: python-dateutil - version: 2.9.0 - build: pyhd8ed1ab_0 + version: 2.9.0.post0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - sha256: f3ceef02ac164a8d3a080d0d32f8e2ebe10dd29e3a685d240e38b3599e146320 - md5: 2cf4264fffb9e6eff6031c5b6884d61c + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda + sha256: 3888012c5916efaef45d503e3e544bbcc571b84426c1bb9577799ada9efefb54 + md5: b6dfd90a2141e573e4b6a81630b56df5 depends: - - python >=3.7 + - python >=3.9 - six >=1.5 license: Apache-2.0 license_family: APACHE - size: 222742 - timestamp: 1709299922152 + size: 221925 + timestamp: 1731919374686 - kind: conda name: python-dotenv version: 1.0.1 @@ -8228,13 +8230,12 @@ packages: timestamp: 1641347626613 - kind: conda name: yarl - version: 1.17.1 - build: py311h917b07b_1 - build_number: 1 + version: 1.17.2 + build: py311h917b07b_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py311h917b07b_1.conda - sha256: b230535f4cdecda50cbbebc7f35c61850e8ce4b794e044501b92e906bff2c627 - md5: 88c8fd257a784e6a85c35635a45d3380 + url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.2-py311h917b07b_0.conda + sha256: 9f36ca92a19b11f3f5c79cc954f1ad9fee574bada0680df2dd44eec6933c8bf9 + md5: 37a19c890f2e7b4cfabcdf4e4ef7288f depends: - __osx >=11.0 - idna >=2.0 @@ -8245,17 +8246,16 @@ packages: - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 141151 - timestamp: 1731680688005 + size: 141207 + timestamp: 1731927269197 - kind: conda name: yarl - version: 1.17.1 - build: py311h9ecbd09_1 - build_number: 1 + version: 1.17.2 + build: py311h9ecbd09_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py311h9ecbd09_1.conda - sha256: 95e219cbadd2ab4310f47cbf822055de182d5e65901650e1d49c578a2ee77b10 - md5: 67f1b2dcdd3ea20b49da43a06a680ea0 + url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.2-py311h9ecbd09_0.conda + sha256: 76f0c0a55af42386c6d11a95ae3a056c05762576cafda4a9a15a011869361bfb + md5: a13b1162515c6d66cc16336caccbb388 depends: - __glibc >=2.17,<3.0.a0 - idna >=2.0 @@ -8266,17 +8266,16 @@ packages: - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 152353 - timestamp: 1731680504530 + size: 152868 + timestamp: 1731927069636 - kind: conda name: yarl - version: 1.17.1 - build: py311ha879c10_1 - build_number: 1 + version: 1.17.2 + build: py311ha879c10_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py311ha879c10_1.conda - sha256: 7c0c20bb75541a4368ed46aaa5a4c4ec2abdfa9c50e767c1e602773d3211e708 - md5: a678598f195728ca4828e81196a8ed7f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.2-py311ha879c10_0.conda + sha256: 5f210eaea25a43223df1fb367458c7e084702c7bb2a256b79b665f14db148bea + md5: d3c543cce70fac51c90f83c4c3e0897d depends: - idna >=2.0 - libgcc >=13 @@ -8287,8 +8286,8 @@ packages: - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: Apache - size: 149987 - timestamp: 1731680531675 + size: 150042 + timestamp: 1731927151770 - kind: conda name: zeromq version: 4.3.5 diff --git a/examples/notebooks/magic.lock b/examples/notebooks/magic.lock index 6d582101b1..fd178e1c0d 100644 --- a/examples/notebooks/magic.lock +++ b/examples/notebooks/magic.lock @@ -58,7 +58,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.8-py312h2ec8cdc_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -157,13 +157,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -215,7 +215,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/pyinstrument-5.0.0-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.7-hc5c86c4_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.20.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda @@ -280,7 +280,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/xxhash-0.8.2-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.2-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312hef9b889_1.conda @@ -337,7 +337,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.8-py312h6f74592_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -437,13 +437,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -495,7 +495,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyinstrument-5.0.0-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.12.7-h5d932e8_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.20.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda @@ -560,7 +560,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xxhash-0.8.2-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.2-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-h5efb499_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.23.0-py312hb698573_1.conda @@ -617,7 +617,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.8-py312hd8f9ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/defusedxml-0.7.1-pyhd8ed1ab_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -708,13 +708,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -768,7 +768,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-10.3.1-py312hd24fc31_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.7-h739c21a_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-fastjsonschema-2.20.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda @@ -832,7 +832,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xxhash-0.8.2-hb547adb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.2-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-hc1bb282_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py312h15fbf35_1.conda @@ -2736,20 +2736,20 @@ packages: timestamp: 1615232388757 - kind: conda name: deprecated - version: 1.2.14 - build: pyh1a96a4e_0 + version: 1.2.15 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - sha256: 8f61539b00ea315c99f8b6f9e2408caa6894593617676741214cc0280e875ca0 - md5: 4e4c4236e1ca9bcd8816b921a4805882 + url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda + sha256: 48182a27a8fd855db3a402ed914823802f94c3344c87b0d074facc51411296ee + md5: ca75e235b44ab995655fae392f99595e depends: - python >=2.7 - wrapt <2,>=1.10 license: MIT license_family: MIT - size: 14033 - timestamp: 1685233463632 + size: 14182 + timestamp: 1731836933516 - kind: conda name: dill version: 0.3.8 @@ -3181,6 +3181,7 @@ packages: - anyio >=3.0,<5.0 - certifi license: BSD-3-Clause + license_family: BSD size: 48959 timestamp: 1731707562362 - kind: conda @@ -6378,76 +6379,76 @@ packages: timestamp: 1713250613726 - kind: conda name: max - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - sha256: 62ae69f479b7393f6894b10787bdc6aa38b6ef2d519f4da9123a74c6a96d61b3 - md5: 362de46a74c054a047599714c6e20639 + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + sha256: fa56e98447bb9722c73e114e668327474621732929a3b3bf03d706558c0b41df + md5: 099bfd8c69724fb21c86aa6440b07ed4 depends: - - max-core ==24.6.0.dev2024111705 release - - max-python >=24.6.0.dev2024111705,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111705 release - - mblack ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release + - max-python >=24.6.0.dev2024111816,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024111816 release license: LicenseRef-Modular-Proprietary - size: 9918 - timestamp: 1731820900608 + size: 9924 + timestamp: 1731949226511 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda - sha256: 9fd4c4a5917b51b09aaa968eacaeaa7bbfb0da8f02d19bef5e681a6f2465b015 - md5: 1f6f61e0f83bc7a803afe5b5658930ae + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda + sha256: 4bbaf8418f56808a9a7ed147755de1fd9ff479bb5db60e0b0060f501007a6d03 + md5: 9239cc63963a1e4a15ce32f6ec8fa36c depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 271483501 - timestamp: 1731821032238 + size: 271464508 + timestamp: 1731949226509 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda - sha256: bdf3005d225cf5d238efbed8314d8224bd7d6b9d18f3e3c30b5fb12a6cbd9ae2 - md5: 9bf5a00e7a7feadf323fe2c33e702b7c + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda + sha256: 232a2ca14f07fc562bddb44ecec6848e31f026cfa93267737fd329c51cb26a66 + md5: 9b6d01a1fe29a43ded2016a8c6a6a2c0 depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 274964524 - timestamp: 1731820900606 + size: 275099918 + timestamp: 1731949126926 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda - sha256: 4d1df13c312f16894195ad42e125835d696ab2cff4f206d1b42c39a7160ba236 - md5: 8bb3cb761f00f0fd3e7eded8a19f75d6 + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda + sha256: e8fc65d3b90b8557a6f64e0aa7700b97f4d00a2e2d2bbee651f918986dacb9cb + md5: fd415a5af0a193bfa9241e17eaf3747d depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 233205538 - timestamp: 1731820868487 + size: 233285763 + timestamp: 1731949312758 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda - sha256: 3542929f063728324a5ad525006c71f3ee6b438598195d57a15b365ce94ade44 - md5: d9d61909d2e52ad830b1a9e02db390e8 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda + sha256: a625852f27ef5a5f3ad3142199eab2bd81c66e44d5b46bddcfd4f68001372eda + md5: a4f8b2d1c96022cac3bff1a1e2de7770 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6467,18 +6468,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 136828326 - timestamp: 1731821032250 + size: 136809568 + timestamp: 1731949226522 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda - sha256: 02a3af553c0ebf9e0bf150e5f5bc5184f568eaedc3ee2c71636d2fb6925da106 - md5: c2849a1879d8fdbdc75b0cd595f3e8b5 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda + sha256: cd12e22f775075932eb6aee4d8654fad445ecf08fef09f08fec259d08a8b93fe + md5: dd91853ef7d888e133cca3368f8651bc depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6498,18 +6499,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 140366075 - timestamp: 1731820900620 + size: 140331334 + timestamp: 1731949126939 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda - sha256: c00cbf04f15aaeec821b27599bd861cafd7384af8b189ae1a11b745f52742f5d - md5: 61af5810d577e434469254fe66f2792b + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda + sha256: 6b96a0d537f247fe3fa9851d5147d57733038ef4ba245510e75d8362b5e5aabf + md5: 6ed7307847e8d9a0592b8bc08c31cf80 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6529,17 +6530,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 125468680 - timestamp: 1731820868490 + size: 125415344 + timestamp: 1731949312762 - kind: conda name: mblack - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - sha256: c052c8067a82eb13ddbd2abd0740596ce4e85ca66d3b023c5b581adb597feb55 - md5: da2e49b6e38d67fd12fa72a928461110 + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + sha256: 49cab69b1c9539336534907a415e6404b791290bccba5ed61b50b92be7278b6e + md5: 9e7f2d795645d6a04620718dfb10d39c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -6549,8 +6550,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130603 - timestamp: 1731820900615 + size: 130612 + timestamp: 1731949226516 - kind: conda name: mdurl version: 0.1.2 @@ -6583,21 +6584,21 @@ packages: timestamp: 1698947249750 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - sha256: 18072ad83df2a7944a6df95598a0e66cea9eee612401900fc59afe4e06d0a5ca - md5: e684800b970c50bc2daff53eabd57ff8 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + sha256: db5710960cab7c1d1c63ecf6916652cc07fdb8cda80528773d410141b3db0076 + md5: 1959b4bee271c31390854e23a85a7815 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22946 - timestamp: 1731820900617 + size: 22941 + timestamp: 1731949226517 - kind: conda name: multidict version: 6.1.0 @@ -7275,6 +7276,7 @@ packages: depends: - python >=3.8 license: Apache-2.0 + license_family: APACHE size: 60380 timestamp: 1731802602808 - kind: conda @@ -8164,20 +8166,20 @@ packages: timestamp: 1728059777603 - kind: conda name: python-dateutil - version: 2.9.0 - build: pyhd8ed1ab_0 + version: 2.9.0.post0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - sha256: f3ceef02ac164a8d3a080d0d32f8e2ebe10dd29e3a685d240e38b3599e146320 - md5: 2cf4264fffb9e6eff6031c5b6884d61c + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda + sha256: 3888012c5916efaef45d503e3e544bbcc571b84426c1bb9577799ada9efefb54 + md5: b6dfd90a2141e573e4b6a81630b56df5 depends: - - python >=3.7 + - python >=3.9 - six >=1.5 license: Apache-2.0 license_family: APACHE - size: 222742 - timestamp: 1709299922152 + size: 221925 + timestamp: 1731919374686 - kind: conda name: python-dotenv version: 1.0.1 @@ -9978,13 +9980,12 @@ packages: timestamp: 1641347626613 - kind: conda name: yarl - version: 1.17.1 - build: py312h66e93f0_1 - build_number: 1 + version: 1.17.2 + build: py312h66e93f0_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda - sha256: b0addeacbe45e5ed148ec3b61cab0298dab1a6a244daf7bbb6c1fac052f955b2 - md5: ec87a401644dafa3887b268e100cd8b0 + url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.2-py312h66e93f0_0.conda + sha256: 4e870938d29f38cd2aa43247efff6f99f6ecd8973735509122cd3167ccc22add + md5: 99518ade67138dcce4f2751b47ab5b00 depends: - __glibc >=2.17,<3.0.a0 - idna >=2.0 @@ -9995,17 +9996,16 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 149825 - timestamp: 1731680478105 + size: 150022 + timestamp: 1731927117182 - kind: conda name: yarl - version: 1.17.1 - build: py312hb2c0f52_1 - build_number: 1 + version: 1.17.2 + build: py312hb2c0f52_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda - sha256: ab4464d73389d0dc1ac695cfc2e001a6944a374466f7d6cd40639376531bcbd7 - md5: 6138128f52ac49744f113666648920fa + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.2-py312hb2c0f52_0.conda + sha256: 77065689cc05daff357fc6e909133b6c058dbbd638c5b89781ed89483d70174f + md5: 96a074a5adcb189ad15a6c474da1d775 depends: - idna >=2.0 - libgcc >=13 @@ -10016,17 +10016,16 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 147879 - timestamp: 1731680579252 + size: 148123 + timestamp: 1731927164492 - kind: conda name: yarl - version: 1.17.1 - build: py312hea69d52_1 - build_number: 1 + version: 1.17.2 + build: py312hea69d52_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda - sha256: 3530756352b69d5fb689080b5902420e6336c42b7df2f56635520d09a8bc6f51 - md5: 64b70173136092b3b6b07c8d27e3f8fb + url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.2-py312hea69d52_0.conda + sha256: 43d85ffae29642b81e1ef4191560a7700911f3753078ab23248b8275952abcec + md5: e3d4600d565bac01340b12d3c4cba2b2 depends: - __osx >=11.0 - idna >=2.0 @@ -10037,8 +10036,8 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 140472 - timestamp: 1731680626629 + size: 140245 + timestamp: 1731927409723 - kind: conda name: zeromq version: 4.3.5 diff --git a/examples/operators/magic.lock b/examples/operators/magic.lock index f544dcc482..a981a7da90 100644 --- a/examples/operators/magic.lock +++ b/examples/operators/magic.lock @@ -44,7 +44,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -122,12 +122,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -163,7 +163,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/pyinstrument-5.0.0-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.7-hc5c86c4_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.17-pyhff2d567_0.conda @@ -209,7 +209,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/xxhash-0.8.2-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.2-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312hef9b889_1.conda @@ -252,7 +252,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -331,12 +331,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -372,7 +372,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyinstrument-5.0.0-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.12.7-h5d932e8_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.17-pyhff2d567_0.conda @@ -418,7 +418,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xxhash-0.8.2-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.2-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-h5efb499_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.23.0-py312hb698573_1.conda @@ -460,7 +460,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -530,12 +530,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -571,7 +571,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyinstrument-5.0.0-py312h0bf5046_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.7-h739c21a_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.17-pyhff2d567_0.conda @@ -616,7 +616,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xxhash-0.8.2-hb547adb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.2-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-hc1bb282_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py312h15fbf35_1.conda @@ -2200,20 +2200,20 @@ packages: timestamp: 1731706749584 - kind: conda name: deprecated - version: 1.2.14 - build: pyh1a96a4e_0 + version: 1.2.15 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - sha256: 8f61539b00ea315c99f8b6f9e2408caa6894593617676741214cc0280e875ca0 - md5: 4e4c4236e1ca9bcd8816b921a4805882 + url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda + sha256: 48182a27a8fd855db3a402ed914823802f94c3344c87b0d074facc51411296ee + md5: ca75e235b44ab995655fae392f99595e depends: - python >=2.7 - wrapt <2,>=1.10 license: MIT license_family: MIT - size: 14033 - timestamp: 1685233463632 + size: 14182 + timestamp: 1731836933516 - kind: conda name: dill version: 0.3.8 @@ -2599,6 +2599,7 @@ packages: - anyio >=3.0,<5.0 - certifi license: BSD-3-Clause + license_family: BSD size: 48959 timestamp: 1731707562362 - kind: conda @@ -5360,76 +5361,76 @@ packages: timestamp: 1729351534830 - kind: conda name: max - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - sha256: 62ae69f479b7393f6894b10787bdc6aa38b6ef2d519f4da9123a74c6a96d61b3 - md5: 362de46a74c054a047599714c6e20639 - depends: - - max-core ==24.6.0.dev2024111705 release - - max-python >=24.6.0.dev2024111705,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111705 release - - mblack ==24.6.0.dev2024111705 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + sha256: fa56e98447bb9722c73e114e668327474621732929a3b3bf03d706558c0b41df + md5: 099bfd8c69724fb21c86aa6440b07ed4 + depends: + - max-core ==24.6.0.dev2024111816 release + - max-python >=24.6.0.dev2024111816,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024111816 release license: LicenseRef-Modular-Proprietary - size: 9918 - timestamp: 1731820900608 + size: 9924 + timestamp: 1731949226511 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda - sha256: 9fd4c4a5917b51b09aaa968eacaeaa7bbfb0da8f02d19bef5e681a6f2465b015 - md5: 1f6f61e0f83bc7a803afe5b5658930ae + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda + sha256: 4bbaf8418f56808a9a7ed147755de1fd9ff479bb5db60e0b0060f501007a6d03 + md5: 9239cc63963a1e4a15ce32f6ec8fa36c depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 271483501 - timestamp: 1731821032238 + size: 271464508 + timestamp: 1731949226509 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda - sha256: bdf3005d225cf5d238efbed8314d8224bd7d6b9d18f3e3c30b5fb12a6cbd9ae2 - md5: 9bf5a00e7a7feadf323fe2c33e702b7c + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda + sha256: 232a2ca14f07fc562bddb44ecec6848e31f026cfa93267737fd329c51cb26a66 + md5: 9b6d01a1fe29a43ded2016a8c6a6a2c0 depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 274964524 - timestamp: 1731820900606 + size: 275099918 + timestamp: 1731949126926 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda - sha256: 4d1df13c312f16894195ad42e125835d696ab2cff4f206d1b42c39a7160ba236 - md5: 8bb3cb761f00f0fd3e7eded8a19f75d6 + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda + sha256: e8fc65d3b90b8557a6f64e0aa7700b97f4d00a2e2d2bbee651f918986dacb9cb + md5: fd415a5af0a193bfa9241e17eaf3747d depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 233205538 - timestamp: 1731820868487 + size: 233285763 + timestamp: 1731949312758 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda - sha256: 3542929f063728324a5ad525006c71f3ee6b438598195d57a15b365ce94ade44 - md5: d9d61909d2e52ad830b1a9e02db390e8 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda + sha256: a625852f27ef5a5f3ad3142199eab2bd81c66e44d5b46bddcfd4f68001372eda + md5: a4f8b2d1c96022cac3bff1a1e2de7770 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5449,18 +5450,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 136828326 - timestamp: 1731821032250 + size: 136809568 + timestamp: 1731949226522 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda - sha256: 02a3af553c0ebf9e0bf150e5f5bc5184f568eaedc3ee2c71636d2fb6925da106 - md5: c2849a1879d8fdbdc75b0cd595f3e8b5 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda + sha256: cd12e22f775075932eb6aee4d8654fad445ecf08fef09f08fec259d08a8b93fe + md5: dd91853ef7d888e133cca3368f8651bc depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5480,18 +5481,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 140366075 - timestamp: 1731820900620 + size: 140331334 + timestamp: 1731949126939 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda - sha256: c00cbf04f15aaeec821b27599bd861cafd7384af8b189ae1a11b745f52742f5d - md5: 61af5810d577e434469254fe66f2792b + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda + sha256: 6b96a0d537f247fe3fa9851d5147d57733038ef4ba245510e75d8362b5e5aabf + md5: 6ed7307847e8d9a0592b8bc08c31cf80 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5511,17 +5512,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 125468680 - timestamp: 1731820868490 + size: 125415344 + timestamp: 1731949312762 - kind: conda name: mblack - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - sha256: c052c8067a82eb13ddbd2abd0740596ce4e85ca66d3b023c5b581adb597feb55 - md5: da2e49b6e38d67fd12fa72a928461110 + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + sha256: 49cab69b1c9539336534907a415e6404b791290bccba5ed61b50b92be7278b6e + md5: 9e7f2d795645d6a04620718dfb10d39c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5531,8 +5532,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130603 - timestamp: 1731820900615 + size: 130612 + timestamp: 1731949226516 - kind: conda name: mdurl version: 0.1.2 @@ -5550,21 +5551,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - sha256: 18072ad83df2a7944a6df95598a0e66cea9eee612401900fc59afe4e06d0a5ca - md5: e684800b970c50bc2daff53eabd57ff8 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + sha256: db5710960cab7c1d1c63ecf6916652cc07fdb8cda80528773d410141b3db0076 + md5: 1959b4bee271c31390854e23a85a7815 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22946 - timestamp: 1731820900617 + size: 22941 + timestamp: 1731949226517 - kind: conda name: multidict version: 6.1.0 @@ -6122,6 +6123,7 @@ packages: depends: - python >=3.8 license: Apache-2.0 + license_family: APACHE size: 60380 timestamp: 1731802602808 - kind: conda @@ -6784,20 +6786,20 @@ packages: timestamp: 1728059777603 - kind: conda name: python-dateutil - version: 2.9.0 - build: pyhd8ed1ab_0 + version: 2.9.0.post0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - sha256: f3ceef02ac164a8d3a080d0d32f8e2ebe10dd29e3a685d240e38b3599e146320 - md5: 2cf4264fffb9e6eff6031c5b6884d61c + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda + sha256: 3888012c5916efaef45d503e3e544bbcc571b84426c1bb9577799ada9efefb54 + md5: b6dfd90a2141e573e4b6a81630b56df5 depends: - - python >=3.7 + - python >=3.9 - six >=1.5 license: Apache-2.0 license_family: APACHE - size: 222742 - timestamp: 1709299922152 + size: 221925 + timestamp: 1731919374686 - kind: conda name: python-dotenv version: 1.0.1 @@ -8225,13 +8227,12 @@ packages: timestamp: 1641347626613 - kind: conda name: yarl - version: 1.17.1 - build: py312h66e93f0_1 - build_number: 1 + version: 1.17.2 + build: py312h66e93f0_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda - sha256: b0addeacbe45e5ed148ec3b61cab0298dab1a6a244daf7bbb6c1fac052f955b2 - md5: ec87a401644dafa3887b268e100cd8b0 + url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.2-py312h66e93f0_0.conda + sha256: 4e870938d29f38cd2aa43247efff6f99f6ecd8973735509122cd3167ccc22add + md5: 99518ade67138dcce4f2751b47ab5b00 depends: - __glibc >=2.17,<3.0.a0 - idna >=2.0 @@ -8242,17 +8243,16 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 149825 - timestamp: 1731680478105 + size: 150022 + timestamp: 1731927117182 - kind: conda name: yarl - version: 1.17.1 - build: py312hb2c0f52_1 - build_number: 1 + version: 1.17.2 + build: py312hb2c0f52_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda - sha256: ab4464d73389d0dc1ac695cfc2e001a6944a374466f7d6cd40639376531bcbd7 - md5: 6138128f52ac49744f113666648920fa + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.2-py312hb2c0f52_0.conda + sha256: 77065689cc05daff357fc6e909133b6c058dbbd638c5b89781ed89483d70174f + md5: 96a074a5adcb189ad15a6c474da1d775 depends: - idna >=2.0 - libgcc >=13 @@ -8263,17 +8263,16 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 147879 - timestamp: 1731680579252 + size: 148123 + timestamp: 1731927164492 - kind: conda name: yarl - version: 1.17.1 - build: py312hea69d52_1 - build_number: 1 + version: 1.17.2 + build: py312hea69d52_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda - sha256: 3530756352b69d5fb689080b5902420e6336c42b7df2f56635520d09a8bc6f51 - md5: 64b70173136092b3b6b07c8d27e3f8fb + url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.2-py312hea69d52_0.conda + sha256: 43d85ffae29642b81e1ef4191560a7700911f3753078ab23248b8275952abcec + md5: e3d4600d565bac01340b12d3c4cba2b2 depends: - __osx >=11.0 - idna >=2.0 @@ -8284,8 +8283,8 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 140472 - timestamp: 1731680626629 + size: 140245 + timestamp: 1731927409723 - kind: conda name: zeromq version: 4.3.5 diff --git a/magic.lock b/magic.lock index b323bca23a..0354e8c01d 100644 --- a/magic.lock +++ b/magic.lock @@ -44,7 +44,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -123,12 +123,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -164,7 +164,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/pyinstrument-5.0.0-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.7-hc5c86c4_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.17-pyhff2d567_0.conda @@ -210,7 +210,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/xxhash-0.8.2-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.2-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zeromq-4.3.5-h3b0a872_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/zstandard-0.23.0-py312hef9b889_1.conda @@ -253,7 +253,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -333,12 +333,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -374,7 +374,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyinstrument-5.0.0-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.12.7-h5d932e8_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.17-pyhff2d567_0.conda @@ -420,7 +420,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xxhash-0.8.2-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xz-5.2.6-h9cdd2b7_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yaml-0.2.5-hf897c2e_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.2-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zeromq-4.3.5-h5efb499_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstandard-0.23.0-py312hb698573_1.conda @@ -462,7 +462,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-3.1.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dill-0.3.8-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/dnspython-2.7.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/email-validator-2.2.0-pyhd8ed1ab_0.conda @@ -533,12 +533,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -574,7 +574,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyinstrument-5.0.0-py312h0bf5046_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.7-h739c21a_0_cpython.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-1.0.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-json-logger-2.0.7-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/python-multipart-0.0.17-pyhff2d567_0.conda @@ -619,7 +619,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xxhash-0.8.2-hb547adb_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.2-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zeromq-4.3.5-hc1bb282_7.conda - conda: https://conda.anaconda.org/conda-forge/noarch/zipp-3.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/zstandard-0.23.0-py312h15fbf35_1.conda @@ -2203,20 +2203,20 @@ packages: timestamp: 1731706749584 - kind: conda name: deprecated - version: 1.2.14 - build: pyh1a96a4e_0 + version: 1.2.15 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.14-pyh1a96a4e_0.conda - sha256: 8f61539b00ea315c99f8b6f9e2408caa6894593617676741214cc0280e875ca0 - md5: 4e4c4236e1ca9bcd8816b921a4805882 + url: https://conda.anaconda.org/conda-forge/noarch/deprecated-1.2.15-pyhff2d567_0.conda + sha256: 48182a27a8fd855db3a402ed914823802f94c3344c87b0d074facc51411296ee + md5: ca75e235b44ab995655fae392f99595e depends: - python >=2.7 - wrapt <2,>=1.10 license: MIT license_family: MIT - size: 14033 - timestamp: 1685233463632 + size: 14182 + timestamp: 1731836933516 - kind: conda name: dill version: 0.3.8 @@ -2602,6 +2602,7 @@ packages: - anyio >=3.0,<5.0 - certifi license: BSD-3-Clause + license_family: BSD size: 48959 timestamp: 1731707562362 - kind: conda @@ -5378,76 +5379,76 @@ packages: timestamp: 1729351534830 - kind: conda name: max - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111705-release.conda - sha256: 62ae69f479b7393f6894b10787bdc6aa38b6ef2d519f4da9123a74c6a96d61b3 - md5: 362de46a74c054a047599714c6e20639 - depends: - - max-core ==24.6.0.dev2024111705 release - - max-python >=24.6.0.dev2024111705,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111705 release - - mblack ==24.6.0.dev2024111705 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda + sha256: fa56e98447bb9722c73e114e668327474621732929a3b3bf03d706558c0b41df + md5: 099bfd8c69724fb21c86aa6440b07ed4 + depends: + - max-core ==24.6.0.dev2024111816 release + - max-python >=24.6.0.dev2024111816,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024111816 release license: LicenseRef-Modular-Proprietary - size: 9918 - timestamp: 1731820900608 + size: 9924 + timestamp: 1731949226511 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111705-release.conda - sha256: 9fd4c4a5917b51b09aaa968eacaeaa7bbfb0da8f02d19bef5e681a6f2465b015 - md5: 1f6f61e0f83bc7a803afe5b5658930ae + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda + sha256: 4bbaf8418f56808a9a7ed147755de1fd9ff479bb5db60e0b0060f501007a6d03 + md5: 9239cc63963a1e4a15ce32f6ec8fa36c depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 271483501 - timestamp: 1731821032238 + size: 271464508 + timestamp: 1731949226509 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111705-release.conda - sha256: bdf3005d225cf5d238efbed8314d8224bd7d6b9d18f3e3c30b5fb12a6cbd9ae2 - md5: 9bf5a00e7a7feadf323fe2c33e702b7c + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda + sha256: 232a2ca14f07fc562bddb44ecec6848e31f026cfa93267737fd329c51cb26a66 + md5: 9b6d01a1fe29a43ded2016a8c6a6a2c0 depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 274964524 - timestamp: 1731820900606 + size: 275099918 + timestamp: 1731949126926 - kind: conda name: max-core - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111705-release.conda - sha256: 4d1df13c312f16894195ad42e125835d696ab2cff4f206d1b42c39a7160ba236 - md5: 8bb3cb761f00f0fd3e7eded8a19f75d6 + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda + sha256: e8fc65d3b90b8557a6f64e0aa7700b97f4d00a2e2d2bbee651f918986dacb9cb + md5: fd415a5af0a193bfa9241e17eaf3747d depends: - - mblack ==24.6.0.dev2024111705 release + - mblack ==24.6.0.dev2024111816 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 233205538 - timestamp: 1731820868487 + size: 233285763 + timestamp: 1731949312758 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111705-3.12release.conda - sha256: 3542929f063728324a5ad525006c71f3ee6b438598195d57a15b365ce94ade44 - md5: d9d61909d2e52ad830b1a9e02db390e8 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda + sha256: a625852f27ef5a5f3ad3142199eab2bd81c66e44d5b46bddcfd4f68001372eda + md5: a4f8b2d1c96022cac3bff1a1e2de7770 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5467,18 +5468,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 136828326 - timestamp: 1731821032250 + size: 136809568 + timestamp: 1731949226522 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111705-3.12release.conda - sha256: 02a3af553c0ebf9e0bf150e5f5bc5184f568eaedc3ee2c71636d2fb6925da106 - md5: c2849a1879d8fdbdc75b0cd595f3e8b5 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda + sha256: cd12e22f775075932eb6aee4d8654fad445ecf08fef09f08fec259d08a8b93fe + md5: dd91853ef7d888e133cca3368f8651bc depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5498,18 +5499,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 140366075 - timestamp: 1731820900620 + size: 140331334 + timestamp: 1731949126939 - kind: conda name: max-python - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111705-3.12release.conda - sha256: c00cbf04f15aaeec821b27599bd861cafd7384af8b189ae1a11b745f52742f5d - md5: 61af5810d577e434469254fe66f2792b + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda + sha256: 6b96a0d537f247fe3fa9851d5147d57733038ef4ba245510e75d8362b5e5aabf + md5: 6ed7307847e8d9a0592b8bc08c31cf80 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5529,17 +5530,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 125468680 - timestamp: 1731820868490 + size: 125415344 + timestamp: 1731949312762 - kind: conda name: mblack - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111705-release.conda - sha256: c052c8067a82eb13ddbd2abd0740596ce4e85ca66d3b023c5b581adb597feb55 - md5: da2e49b6e38d67fd12fa72a928461110 + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + sha256: 49cab69b1c9539336534907a415e6404b791290bccba5ed61b50b92be7278b6e + md5: 9e7f2d795645d6a04620718dfb10d39c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5549,8 +5550,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130603 - timestamp: 1731820900615 + size: 130612 + timestamp: 1731949226516 - kind: conda name: mdurl version: 0.1.2 @@ -5568,21 +5569,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111705 + version: 24.6.0.dev2024111816 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111705-release.conda - sha256: 18072ad83df2a7944a6df95598a0e66cea9eee612401900fc59afe4e06d0a5ca - md5: e684800b970c50bc2daff53eabd57ff8 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + sha256: db5710960cab7c1d1c63ecf6916652cc07fdb8cda80528773d410141b3db0076 + md5: 1959b4bee271c31390854e23a85a7815 depends: - - max-core ==24.6.0.dev2024111705 release + - max-core ==24.6.0.dev2024111816 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22946 - timestamp: 1731820900617 + size: 22941 + timestamp: 1731949226517 - kind: conda name: multidict version: 6.1.0 @@ -6140,6 +6141,7 @@ packages: depends: - python >=3.8 license: Apache-2.0 + license_family: APACHE size: 60380 timestamp: 1731802602808 - kind: conda @@ -6802,20 +6804,20 @@ packages: timestamp: 1728059777603 - kind: conda name: python-dateutil - version: 2.9.0 - build: pyhd8ed1ab_0 + version: 2.9.0.post0 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0-pyhd8ed1ab_0.conda - sha256: f3ceef02ac164a8d3a080d0d32f8e2ebe10dd29e3a685d240e38b3599e146320 - md5: 2cf4264fffb9e6eff6031c5b6884d61c + url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.9.0.post0-pyhff2d567_0.conda + sha256: 3888012c5916efaef45d503e3e544bbcc571b84426c1bb9577799ada9efefb54 + md5: b6dfd90a2141e573e4b6a81630b56df5 depends: - - python >=3.7 + - python >=3.9 - six >=1.5 license: Apache-2.0 license_family: APACHE - size: 222742 - timestamp: 1709299922152 + size: 221925 + timestamp: 1731919374686 - kind: conda name: python-dotenv version: 1.0.1 @@ -8243,13 +8245,12 @@ packages: timestamp: 1641347626613 - kind: conda name: yarl - version: 1.17.1 - build: py312h66e93f0_1 - build_number: 1 + version: 1.17.2 + build: py312h66e93f0_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.1-py312h66e93f0_1.conda - sha256: b0addeacbe45e5ed148ec3b61cab0298dab1a6a244daf7bbb6c1fac052f955b2 - md5: ec87a401644dafa3887b268e100cd8b0 + url: https://conda.anaconda.org/conda-forge/linux-64/yarl-1.17.2-py312h66e93f0_0.conda + sha256: 4e870938d29f38cd2aa43247efff6f99f6ecd8973735509122cd3167ccc22add + md5: 99518ade67138dcce4f2751b47ab5b00 depends: - __glibc >=2.17,<3.0.a0 - idna >=2.0 @@ -8260,17 +8261,16 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 149825 - timestamp: 1731680478105 + size: 150022 + timestamp: 1731927117182 - kind: conda name: yarl - version: 1.17.1 - build: py312hb2c0f52_1 - build_number: 1 + version: 1.17.2 + build: py312hb2c0f52_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.1-py312hb2c0f52_1.conda - sha256: ab4464d73389d0dc1ac695cfc2e001a6944a374466f7d6cd40639376531bcbd7 - md5: 6138128f52ac49744f113666648920fa + url: https://conda.anaconda.org/conda-forge/linux-aarch64/yarl-1.17.2-py312hb2c0f52_0.conda + sha256: 77065689cc05daff357fc6e909133b6c058dbbd638c5b89781ed89483d70174f + md5: 96a074a5adcb189ad15a6c474da1d775 depends: - idna >=2.0 - libgcc >=13 @@ -8281,17 +8281,16 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 147879 - timestamp: 1731680579252 + size: 148123 + timestamp: 1731927164492 - kind: conda name: yarl - version: 1.17.1 - build: py312hea69d52_1 - build_number: 1 + version: 1.17.2 + build: py312hea69d52_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.1-py312hea69d52_1.conda - sha256: 3530756352b69d5fb689080b5902420e6336c42b7df2f56635520d09a8bc6f51 - md5: 64b70173136092b3b6b07c8d27e3f8fb + url: https://conda.anaconda.org/conda-forge/osx-arm64/yarl-1.17.2-py312hea69d52_0.conda + sha256: 43d85ffae29642b81e1ef4191560a7700911f3753078ab23248b8275952abcec + md5: e3d4600d565bac01340b12d3c4cba2b2 depends: - __osx >=11.0 - idna >=2.0 @@ -8302,8 +8301,8 @@ packages: - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: Apache - size: 140472 - timestamp: 1731680626629 + size: 140245 + timestamp: 1731927409723 - kind: conda name: zeromq version: 4.3.5 From f18cd74f2986aa52274564ac55afe589a7a3c6f6 Mon Sep 17 00:00:00 2001 From: Maxim Zaks Date: Mon, 18 Nov 2024 12:24:24 -0600 Subject: [PATCH 21/28] [External] [stdlib] Add full unicode support for character casing functions (#47479) [External] [stdlib] Add full unicode support for character casing functions The code I used to generate the lookup tables can be found here https://gist.github.com/mzaks/bbadaeebcf81a5200021af041568b26b Co-authored-by: Maxim Zaks Closes modularml/mojo#3496 MODULAR_ORIG_COMMIT_REV_ID: 971d447e40e3221b84df526393f984b7fe22fcba --- stdlib/src/collections/string.mojo | 65 +- stdlib/src/utils/_unicode.mojo | 265 + stdlib/src/utils/_unicode_lookups.mojo | 5876 ++++++++++++++++++++++ stdlib/test/collections/test_string.mojo | 10 +- 4 files changed, 6168 insertions(+), 48 deletions(-) create mode 100644 stdlib/src/utils/_unicode.mojo create mode 100644 stdlib/src/utils/_unicode_lookups.mojo diff --git a/stdlib/src/collections/string.mojo b/stdlib/src/collections/string.mojo index 144e7cc493..f5046bfc74 100644 --- a/stdlib/src/collections/string.mojo +++ b/stdlib/src/collections/string.mojo @@ -47,6 +47,13 @@ from utils.string_slice import ( _to_string_list, ) +from utils._unicode import ( + is_lowercase, + is_uppercase, + to_lowercase, + to_uppercase, +) + # ===----------------------------------------------------------------------=== # # ord # ===----------------------------------------------------------------------=== # @@ -86,7 +93,7 @@ fn ord(s: StringSlice) -> Int: # 2: 110aaaaa 10bbbbbb -> 00000000 00000000 00000aaa aabbbbbb a << 6 | b # 3: 1110aaaa 10bbbbbb 10cccccc -> 00000000 00000000 aaaabbbb bbcccccc a << 12 | b << 6 | c # 4: 11110aaa 10bbbbbb 10cccccc 10dddddd -> 00000000 000aaabb bbbbcccc ccdddddd a << 18 | b << 12 | c << 6 | d - var p = s.unsafe_ptr().bitcast[UInt8]() + var p = s.unsafe_ptr() var b1 = p[] if (b1 >> 7) == 0: # This is 1 byte ASCII char debug_assert(s.byte_length() == 1, "input string length must be 1") @@ -757,6 +764,10 @@ struct String( ) # We make a backup because steal_data() will clear size and capacity. var size = impl.size + debug_assert( + impl[size - 1] == 0, + "expected last element of String buffer to be null terminator", + ) var capacity = impl.capacity self._buffer = Self._buffer_type( ptr=impl.steal_data(), length=size, capacity=capacity @@ -1985,43 +1996,26 @@ struct String( return String(res^) fn lower(self) -> String: - """Returns a copy of the string with all ASCII cased characters + """Returns a copy of the string with all cased characters converted to lowercase. Returns: A new string where cased letters have been converted to lowercase. """ - # TODO(#26444): - # Support the Unicode standard casing behavior to handle cased letters - # outside of the standard ASCII letters. - return self._toggle_ascii_case[_is_ascii_uppercase]() + # TODO: the _unicode module does not support locale sensitive conversions yet. + return to_lowercase(self) fn upper(self) -> String: - """Returns a copy of the string with all ASCII cased characters + """Returns a copy of the string with all cased characters converted to uppercase. Returns: A new string where cased letters have been converted to uppercase. """ - # TODO(#26444): - # Support the Unicode standard casing behavior to handle cased letters - # outside of the standard ASCII letters. - return self._toggle_ascii_case[_is_ascii_lowercase]() - - fn _toggle_ascii_case[check_case: fn (UInt8) -> Bool](self) -> String: - var copy: String = self - - var char_ptr = copy.unsafe_ptr() - - for i in range(self.byte_length()): - var char: UInt8 = char_ptr[i] - if check_case(char): - var lower = _toggle_ascii_case(char) - char_ptr[i] = lower - - return copy + # TODO: the _unicode module does not support locale sensitive conversions yet. + return to_uppercase(self) fn startswith( ref self, prefix: String, start: Int = 0, end: Int = -1 @@ -2188,44 +2182,25 @@ struct String( return False return True - fn _isupper_islower[*, upper: Bool](self) -> Bool: - fn is_ascii_cased(c: UInt8) -> Bool: - return _is_ascii_uppercase(c) or _is_ascii_lowercase(c) - - for c in self: - debug_assert(c.byte_length() == 1, "only implemented for ASCII") - if is_ascii_cased(ord(c)): - - @parameter - if upper: - return self == self.upper() - else: - return self == self.lower() - return False - fn isupper(self) -> Bool: """Returns True if all cased characters in the string are uppercase and there is at least one cased character. - Note that this currently only works with ASCII strings. - Returns: True if all cased characters in the string are uppercase and there is at least one cased character, False otherwise. """ - return self._isupper_islower[upper=True]() + return len(self) > 0 and is_uppercase(self) fn islower(self) -> Bool: """Returns True if all cased characters in the string are lowercase and there is at least one cased character. - Note that this currently only works with ASCII strings. - Returns: True if all cased characters in the string are lowercase and there is at least one cased character, False otherwise. """ - return self._isupper_islower[upper=False]() + return len(self) > 0 and is_lowercase(self) fn isprintable(self) -> Bool: """Returns True if all characters in the string are ASCII printable. diff --git a/stdlib/src/utils/_unicode.mojo b/stdlib/src/utils/_unicode.mojo new file mode 100644 index 0000000000..079bd7e180 --- /dev/null +++ b/stdlib/src/utils/_unicode.mojo @@ -0,0 +1,265 @@ +# ===----------------------------------------------------------------------=== # +# Copyright (c) 2024, Modular Inc. All rights reserved. +# +# Licensed under the Apache License v2.0 with LLVM Exceptions: +# https://llvm.org/LICENSE.txt +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ===----------------------------------------------------------------------=== # +from bit import count_leading_zeros +from memory import memcpy, UnsafePointer +from ._unicode_lookups import * + + +fn _uppercase_mapping_index(rune: Int) -> Int: + """Return index for upper case mapping or -1 if no mapping is given.""" + return _to_index[has_uppercase_mapping](rune) + + +fn _uppercase_mapping2_index(rune: Int) -> Int: + """Return index for upper case mapping converting the rune to 2 runes, or -1 if no mapping is given. + """ + return _to_index[has_uppercase_mapping2](rune) + + +fn _uppercase_mapping3_index(rune: Int) -> Int: + """Return index for upper case mapping converting the rune to 3 runes, or -1 if no mapping is given. + """ + return _to_index[has_uppercase_mapping3](rune) + + +fn _lowercase_mapping_index(rune: Int) -> Int: + """Return index for lower case mapping or -1 if no mapping is given.""" + return _to_index[has_lowercase_mapping](rune) + + +@always_inline +fn _to_index[lookup: List[UInt32, **_]](rune: Int) -> Int: + """Find index of rune in lookup with binary search. + Returns -1 if not found.""" + var cursor = 0 + var x = UInt32(rune) + var b = lookup.data + var length = len(lookup) + while length > 1: + var half = length >> 1 + length -= half + cursor += int(b.load(cursor + half - 1) < x) * half + + return cursor if b.load(cursor) == x else -1 + + +fn is_uppercase(s: String) -> Bool: + """Returns True if all characters in the string are uppercase, and + there is at least one cased character. + + Args: + s: The string to examine. + + Returns: + True if all characters in the string are uppercaseand + there is at least one cased character, False otherwise. + """ + var found = False + for c in s: + var rune = ord(c) + var index = _lowercase_mapping_index(rune) + if index != -1: + found = True + continue + index = _uppercase_mapping_index(rune) + if index != -1: + return False + index = _uppercase_mapping2_index(rune) + if index != -1: + return False + index = _uppercase_mapping3_index(rune) + if index != -1: + return False + return found + + +fn is_lowercase(s: String) -> Bool: + """Returns True if all characters in the string are lowercase, and + there is at least one cased character. + + Args: + s: The string to examine. + + Returns: + True if all characters in the string are lowercase and + there is at least one cased character, False otherwise. + """ + var found = False + for c in s: + var rune = ord(c) + var index = _uppercase_mapping_index(rune) + if index != -1: + found = True + continue + index = _uppercase_mapping2_index(rune) + if index != -1: + found = True + continue + index = _uppercase_mapping3_index(rune) + if index != -1: + found = True + continue + index = _lowercase_mapping_index(rune) + if index != -1: + return False + return found + + +fn _ord(_p: UnsafePointer[UInt8]) -> (Int, Int): + """Return the rune and number of bytes to be consumed, for given UTF-8 string pointer + """ + var p = _p + var b1 = p[] + if (b1 >> 7) == 0: # This is 1 byte ASCII char + return int(b1), 1 + var num_bytes = count_leading_zeros(~b1) + var shift = int((6 * (num_bytes - 1))) + var b1_mask = 0b11111111 >> (num_bytes + 1) + var result = int(b1 & b1_mask) << shift + for _ in range(1, num_bytes): + p += 1 + shift -= 6 + result |= int(p[] & 0b00111111) << shift + return result, int(num_bytes) + + +fn _write_rune(rune: UInt32, p: UnsafePointer[UInt8]) -> Int: + """Write rune as UTF-8 into provided pointer. Return number of added bytes. + """ + if (rune >> 7) == 0: # This is 1 byte ASCII char + p[0] = rune.cast[DType.uint8]() + return 1 + + @always_inline + fn _utf8_len(val: UInt32) -> Int: + alias sizes = SIMD[DType.uint32, 4]( + 0, 0b1111_111, 0b1111_1111_111, 0b1111_1111_1111_1111 + ) + var values = SIMD[DType.uint32, 4](val) + var mask = values > sizes + return int(mask.cast[DType.uint8]().reduce_add()) + + var num_bytes = _utf8_len(rune) + var shift = 6 * (num_bytes - 1) + var mask = UInt32(0xFF) >> (num_bytes + 1) + var num_bytes_marker = UInt32(0xFF) << (8 - num_bytes) + p[0] = (((rune >> shift) & mask) | num_bytes_marker).cast[DType.uint8]() + for i in range(1, num_bytes): + shift -= 6 + p[i] = (((rune >> shift) & 0b00111111) | 0b10000000).cast[DType.uint8]() + return num_bytes + + +fn to_lowercase(s: String) -> String: + """Returns a new string with all characters converted to uppercase. + + Args: + s: Input string. + + Returns: + A new string where cased letters have been converted to lowercase. + """ + var input = s.unsafe_ptr() + var capacity = (s.byte_length() >> 1) * 3 + 1 + var output = UnsafePointer[UInt8].alloc(capacity) + var input_offset = 0 + var output_offset = 0 + while input_offset < s.byte_length(): + var rune_and_size = _ord(input + input_offset) + var index = _lowercase_mapping_index(rune_and_size[0]) + if index == -1: + memcpy( + output + output_offset, input + input_offset, rune_and_size[1] + ) + output_offset += rune_and_size[1] + else: + output_offset += _write_rune( + lowercase_mapping[index], output + output_offset + ) + + input_offset += rune_and_size[1] + + if output_offset >= ( + capacity - 5 + ): # check if we need to resize the ouput + capacity += ((s.byte_length() - input_offset) >> 1) * 3 + 1 + var new_output = UnsafePointer[UInt8].alloc(capacity) + memcpy(new_output, output, output_offset) + output.free() + output = new_output + + output[output_offset] = 0 + var list = List[UInt8]( + ptr=output, length=(output_offset + 1), capacity=capacity + ) + return String(list) + + +fn to_uppercase(s: String) -> String: + """Returns a new string with all characters converted to uppercase. + + Args: + s: Input string. + + Returns: + A new string where cased letters have been converted to uppercase. + """ + var input = s.unsafe_ptr() + var capacity = (s.byte_length() >> 1) * 3 + 1 + var output = UnsafePointer[UInt8].alloc(capacity) + var input_offset = 0 + var output_offset = 0 + while input_offset < s.byte_length(): + var rune_and_size = _ord(input + input_offset) + var index = _uppercase_mapping_index(rune_and_size[0]) + var index2 = _uppercase_mapping2_index( + rune_and_size[0] + ) if index == -1 else -1 + var index3 = _uppercase_mapping3_index( + rune_and_size[0] + ) if index == -1 and index2 == -1 else -1 + if index != -1: + output_offset += _write_rune( + uppercase_mapping[index], output + output_offset + ) + elif index2 != -1: + var runes = uppercase_mapping2[index2] + output_offset += _write_rune(runes[0], output + output_offset) + output_offset += _write_rune(runes[1], output + output_offset) + elif index3 != -1: + var runes = uppercase_mapping3[index3] + output_offset += _write_rune(runes[0], output + output_offset) + output_offset += _write_rune(runes[1], output + output_offset) + output_offset += _write_rune(runes[2], output + output_offset) + else: + memcpy( + output + output_offset, input + input_offset, rune_and_size[1] + ) + output_offset += rune_and_size[1] + + input_offset += rune_and_size[1] + + if output_offset >= ( + capacity - 5 + ): # check if we need to resize the ouput + capacity += ((s.byte_length() - input_offset) >> 1) * 3 + 1 + var new_output = UnsafePointer[UInt8].alloc(capacity) + memcpy(new_output, output, output_offset) + output.free() + output = new_output + + output[output_offset] = 0 + var list = List[UInt8]( + ptr=output, length=(output_offset + 1), capacity=capacity + ) + return String(list) diff --git a/stdlib/src/utils/_unicode_lookups.mojo b/stdlib/src/utils/_unicode_lookups.mojo new file mode 100644 index 0000000000..bb05d05582 --- /dev/null +++ b/stdlib/src/utils/_unicode_lookups.mojo @@ -0,0 +1,5876 @@ +# ===----------------------------------------------------------------------=== # +# Copyright (c) 2024, Modular Inc. All rights reserved. +# +# Licensed under the Apache License v2.0 with LLVM Exceptions: +# https://llvm.org/LICENSE.txt +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# ===----------------------------------------------------------------------=== # +"""This file contains lookup tables for Unicode conversions generated from +UnicodeData.txt and SpecialCasing.txt files, which can be found at +https://www.unicode.org/Public/16.0.0/""" + +alias has_uppercase_mapping = List[UInt32, hint_trivial_type=True]( + 0x0061, # LATIN SMALL LETTER A a + 0x0062, # LATIN SMALL LETTER B b + 0x0063, # LATIN SMALL LETTER C c + 0x0064, # LATIN SMALL LETTER D d + 0x0065, # LATIN SMALL LETTER E e + 0x0066, # LATIN SMALL LETTER F f + 0x0067, # LATIN SMALL LETTER G g + 0x0068, # LATIN SMALL LETTER H h + 0x0069, # LATIN SMALL LETTER I i + 0x006A, # LATIN SMALL LETTER J j + 0x006B, # LATIN SMALL LETTER K k + 0x006C, # LATIN SMALL LETTER L l + 0x006D, # LATIN SMALL LETTER M m + 0x006E, # LATIN SMALL LETTER N n + 0x006F, # LATIN SMALL LETTER O o + 0x0070, # LATIN SMALL LETTER P p + 0x0071, # LATIN SMALL LETTER Q q + 0x0072, # LATIN SMALL LETTER R r + 0x0073, # LATIN SMALL LETTER S s + 0x0074, # LATIN SMALL LETTER T t + 0x0075, # LATIN SMALL LETTER U u + 0x0076, # LATIN SMALL LETTER V v + 0x0077, # LATIN SMALL LETTER W w + 0x0078, # LATIN SMALL LETTER X x + 0x0079, # LATIN SMALL LETTER Y y + 0x007A, # LATIN SMALL LETTER Z z + 0x00B5, # MICRO SIGN µ + 0x00E0, # LATIN SMALL LETTER A WITH GRAVE à + 0x00E1, # LATIN SMALL LETTER A WITH ACUTE á + 0x00E2, # LATIN SMALL LETTER A WITH CIRCUMFLEX â + 0x00E3, # LATIN SMALL LETTER A WITH TILDE ã + 0x00E4, # LATIN SMALL LETTER A WITH DIAERESIS ä + 0x00E5, # LATIN SMALL LETTER A WITH RING ABOVE å + 0x00E6, # LATIN SMALL LETTER AE æ + 0x00E7, # LATIN SMALL LETTER C WITH CEDILLA ç + 0x00E8, # LATIN SMALL LETTER E WITH GRAVE è + 0x00E9, # LATIN SMALL LETTER E WITH ACUTE é + 0x00EA, # LATIN SMALL LETTER E WITH CIRCUMFLEX ê + 0x00EB, # LATIN SMALL LETTER E WITH DIAERESIS ë + 0x00EC, # LATIN SMALL LETTER I WITH GRAVE ì + 0x00ED, # LATIN SMALL LETTER I WITH ACUTE í + 0x00EE, # LATIN SMALL LETTER I WITH CIRCUMFLEX î + 0x00EF, # LATIN SMALL LETTER I WITH DIAERESIS ï + 0x00F0, # LATIN SMALL LETTER ETH ð + 0x00F1, # LATIN SMALL LETTER N WITH TILDE ñ + 0x00F2, # LATIN SMALL LETTER O WITH GRAVE ò + 0x00F3, # LATIN SMALL LETTER O WITH ACUTE ó + 0x00F4, # LATIN SMALL LETTER O WITH CIRCUMFLEX ô + 0x00F5, # LATIN SMALL LETTER O WITH TILDE õ + 0x00F6, # LATIN SMALL LETTER O WITH DIAERESIS ö + 0x00F8, # LATIN SMALL LETTER O WITH STROKE ø + 0x00F9, # LATIN SMALL LETTER U WITH GRAVE ù + 0x00FA, # LATIN SMALL LETTER U WITH ACUTE ú + 0x00FB, # LATIN SMALL LETTER U WITH CIRCUMFLEX û + 0x00FC, # LATIN SMALL LETTER U WITH DIAERESIS ü + 0x00FD, # LATIN SMALL LETTER Y WITH ACUTE ý + 0x00FE, # LATIN SMALL LETTER THORN þ + 0x00FF, # LATIN SMALL LETTER Y WITH DIAERESIS ÿ + 0x0101, # LATIN SMALL LETTER A WITH MACRON ā + 0x0103, # LATIN SMALL LETTER A WITH BREVE ă + 0x0105, # LATIN SMALL LETTER A WITH OGONEK ą + 0x0107, # LATIN SMALL LETTER C WITH ACUTE ć + 0x0109, # LATIN SMALL LETTER C WITH CIRCUMFLEX ĉ + 0x010B, # LATIN SMALL LETTER C WITH DOT ABOVE ċ + 0x010D, # LATIN SMALL LETTER C WITH CARON č + 0x010F, # LATIN SMALL LETTER D WITH CARON ď + 0x0111, # LATIN SMALL LETTER D WITH STROKE đ + 0x0113, # LATIN SMALL LETTER E WITH MACRON ē + 0x0115, # LATIN SMALL LETTER E WITH BREVE ĕ + 0x0117, # LATIN SMALL LETTER E WITH DOT ABOVE ė + 0x0119, # LATIN SMALL LETTER E WITH OGONEK ę + 0x011B, # LATIN SMALL LETTER E WITH CARON ě + 0x011D, # LATIN SMALL LETTER G WITH CIRCUMFLEX ĝ + 0x011F, # LATIN SMALL LETTER G WITH BREVE ğ + 0x0121, # LATIN SMALL LETTER G WITH DOT ABOVE ġ + 0x0123, # LATIN SMALL LETTER G WITH CEDILLA ģ + 0x0125, # LATIN SMALL LETTER H WITH CIRCUMFLEX ĥ + 0x0127, # LATIN SMALL LETTER H WITH STROKE ħ + 0x0129, # LATIN SMALL LETTER I WITH TILDE ĩ + 0x012B, # LATIN SMALL LETTER I WITH MACRON ī + 0x012D, # LATIN SMALL LETTER I WITH BREVE ĭ + 0x012F, # LATIN SMALL LETTER I WITH OGONEK į + 0x0131, # LATIN SMALL LETTER DOTLESS I ı + 0x0133, # LATIN SMALL LIGATURE IJ ij + 0x0135, # LATIN SMALL LETTER J WITH CIRCUMFLEX ĵ + 0x0137, # LATIN SMALL LETTER K WITH CEDILLA ķ + 0x013A, # LATIN SMALL LETTER L WITH ACUTE ĺ + 0x013C, # LATIN SMALL LETTER L WITH CEDILLA ļ + 0x013E, # LATIN SMALL LETTER L WITH CARON ľ + 0x0140, # LATIN SMALL LETTER L WITH MIDDLE DOT ŀ + 0x0142, # LATIN SMALL LETTER L WITH STROKE ł + 0x0144, # LATIN SMALL LETTER N WITH ACUTE ń + 0x0146, # LATIN SMALL LETTER N WITH CEDILLA ņ + 0x0148, # LATIN SMALL LETTER N WITH CARON ň + 0x014B, # LATIN SMALL LETTER ENG ŋ + 0x014D, # LATIN SMALL LETTER O WITH MACRON ō + 0x014F, # LATIN SMALL LETTER O WITH BREVE ŏ + 0x0151, # LATIN SMALL LETTER O WITH DOUBLE ACUTE ő + 0x0153, # LATIN SMALL LIGATURE OE œ + 0x0155, # LATIN SMALL LETTER R WITH ACUTE ŕ + 0x0157, # LATIN SMALL LETTER R WITH CEDILLA ŗ + 0x0159, # LATIN SMALL LETTER R WITH CARON ř + 0x015B, # LATIN SMALL LETTER S WITH ACUTE ś + 0x015D, # LATIN SMALL LETTER S WITH CIRCUMFLEX ŝ + 0x015F, # LATIN SMALL LETTER S WITH CEDILLA ş + 0x0161, # LATIN SMALL LETTER S WITH CARON š + 0x0163, # LATIN SMALL LETTER T WITH CEDILLA ţ + 0x0165, # LATIN SMALL LETTER T WITH CARON ť + 0x0167, # LATIN SMALL LETTER T WITH STROKE ŧ + 0x0169, # LATIN SMALL LETTER U WITH TILDE ũ + 0x016B, # LATIN SMALL LETTER U WITH MACRON ū + 0x016D, # LATIN SMALL LETTER U WITH BREVE ŭ + 0x016F, # LATIN SMALL LETTER U WITH RING ABOVE ů + 0x0171, # LATIN SMALL LETTER U WITH DOUBLE ACUTE ű + 0x0173, # LATIN SMALL LETTER U WITH OGONEK ų + 0x0175, # LATIN SMALL LETTER W WITH CIRCUMFLEX ŵ + 0x0177, # LATIN SMALL LETTER Y WITH CIRCUMFLEX ŷ + 0x017A, # LATIN SMALL LETTER Z WITH ACUTE ź + 0x017C, # LATIN SMALL LETTER Z WITH DOT ABOVE ż + 0x017E, # LATIN SMALL LETTER Z WITH CARON ž + 0x017F, # LATIN SMALL LETTER LONG S ſ + 0x0180, # LATIN SMALL LETTER B WITH STROKE ƀ + 0x0183, # LATIN SMALL LETTER B WITH TOPBAR ƃ + 0x0185, # LATIN SMALL LETTER TONE SIX ƅ + 0x0188, # LATIN SMALL LETTER C WITH HOOK ƈ + 0x018C, # LATIN SMALL LETTER D WITH TOPBAR ƌ + 0x0192, # LATIN SMALL LETTER F WITH HOOK ƒ + 0x0195, # LATIN SMALL LETTER HV ƕ + 0x0199, # LATIN SMALL LETTER K WITH HOOK ƙ + 0x019A, # LATIN SMALL LETTER L WITH BAR ƚ + 0x019E, # LATIN SMALL LETTER N WITH LONG RIGHT LEG ƞ + 0x01A1, # LATIN SMALL LETTER O WITH HORN ơ + 0x01A3, # LATIN SMALL LETTER OI ƣ + 0x01A5, # LATIN SMALL LETTER P WITH HOOK ƥ + 0x01A8, # LATIN SMALL LETTER TONE TWO ƨ + 0x01AD, # LATIN SMALL LETTER T WITH HOOK ƭ + 0x01B0, # LATIN SMALL LETTER U WITH HORN ư + 0x01B4, # LATIN SMALL LETTER Y WITH HOOK ƴ + 0x01B6, # LATIN SMALL LETTER Z WITH STROKE ƶ + 0x01B9, # LATIN SMALL LETTER EZH REVERSED ƹ + 0x01BD, # LATIN SMALL LETTER TONE FIVE ƽ + 0x01BF, # LATIN LETTER WYNN ƿ + 0x01C5, # LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON Dž + 0x01C6, # LATIN SMALL LETTER DZ WITH CARON dž + 0x01C8, # LATIN CAPITAL LETTER L WITH SMALL LETTER J Lj + 0x01C9, # LATIN SMALL LETTER LJ lj + 0x01CB, # LATIN CAPITAL LETTER N WITH SMALL LETTER J Nj + 0x01CC, # LATIN SMALL LETTER NJ nj + 0x01CE, # LATIN SMALL LETTER A WITH CARON ǎ + 0x01D0, # LATIN SMALL LETTER I WITH CARON ǐ + 0x01D2, # LATIN SMALL LETTER O WITH CARON ǒ + 0x01D4, # LATIN SMALL LETTER U WITH CARON ǔ + 0x01D6, # LATIN SMALL LETTER U WITH DIAERESIS AND MACRON ǖ + 0x01D8, # LATIN SMALL LETTER U WITH DIAERESIS AND ACUTE ǘ + 0x01DA, # LATIN SMALL LETTER U WITH DIAERESIS AND CARON ǚ + 0x01DC, # LATIN SMALL LETTER U WITH DIAERESIS AND GRAVE ǜ + 0x01DD, # LATIN SMALL LETTER TURNED E ǝ + 0x01DF, # LATIN SMALL LETTER A WITH DIAERESIS AND MACRON ǟ + 0x01E1, # LATIN SMALL LETTER A WITH DOT ABOVE AND MACRON ǡ + 0x01E3, # LATIN SMALL LETTER AE WITH MACRON ǣ + 0x01E5, # LATIN SMALL LETTER G WITH STROKE ǥ + 0x01E7, # LATIN SMALL LETTER G WITH CARON ǧ + 0x01E9, # LATIN SMALL LETTER K WITH CARON ǩ + 0x01EB, # LATIN SMALL LETTER O WITH OGONEK ǫ + 0x01ED, # LATIN SMALL LETTER O WITH OGONEK AND MACRON ǭ + 0x01EF, # LATIN SMALL LETTER EZH WITH CARON ǯ + 0x01F2, # LATIN CAPITAL LETTER D WITH SMALL LETTER Z Dz + 0x01F3, # LATIN SMALL LETTER DZ dz + 0x01F5, # LATIN SMALL LETTER G WITH ACUTE ǵ + 0x01F9, # LATIN SMALL LETTER N WITH GRAVE ǹ + 0x01FB, # LATIN SMALL LETTER A WITH RING ABOVE AND ACUTE ǻ + 0x01FD, # LATIN SMALL LETTER AE WITH ACUTE ǽ + 0x01FF, # LATIN SMALL LETTER O WITH STROKE AND ACUTE ǿ + 0x0201, # LATIN SMALL LETTER A WITH DOUBLE GRAVE ȁ + 0x0203, # LATIN SMALL LETTER A WITH INVERTED BREVE ȃ + 0x0205, # LATIN SMALL LETTER E WITH DOUBLE GRAVE ȅ + 0x0207, # LATIN SMALL LETTER E WITH INVERTED BREVE ȇ + 0x0209, # LATIN SMALL LETTER I WITH DOUBLE GRAVE ȉ + 0x020B, # LATIN SMALL LETTER I WITH INVERTED BREVE ȋ + 0x020D, # LATIN SMALL LETTER O WITH DOUBLE GRAVE ȍ + 0x020F, # LATIN SMALL LETTER O WITH INVERTED BREVE ȏ + 0x0211, # LATIN SMALL LETTER R WITH DOUBLE GRAVE ȑ + 0x0213, # LATIN SMALL LETTER R WITH INVERTED BREVE ȓ + 0x0215, # LATIN SMALL LETTER U WITH DOUBLE GRAVE ȕ + 0x0217, # LATIN SMALL LETTER U WITH INVERTED BREVE ȗ + 0x0219, # LATIN SMALL LETTER S WITH COMMA BELOW ș + 0x021B, # LATIN SMALL LETTER T WITH COMMA BELOW ț + 0x021D, # LATIN SMALL LETTER YOGH ȝ + 0x021F, # LATIN SMALL LETTER H WITH CARON ȟ + 0x0223, # LATIN SMALL LETTER OU ȣ + 0x0225, # LATIN SMALL LETTER Z WITH HOOK ȥ + 0x0227, # LATIN SMALL LETTER A WITH DOT ABOVE ȧ + 0x0229, # LATIN SMALL LETTER E WITH CEDILLA ȩ + 0x022B, # LATIN SMALL LETTER O WITH DIAERESIS AND MACRON ȫ + 0x022D, # LATIN SMALL LETTER O WITH TILDE AND MACRON ȭ + 0x022F, # LATIN SMALL LETTER O WITH DOT ABOVE ȯ + 0x0231, # LATIN SMALL LETTER O WITH DOT ABOVE AND MACRON ȱ + 0x0233, # LATIN SMALL LETTER Y WITH MACRON ȳ + 0x023C, # LATIN SMALL LETTER C WITH STROKE ȼ + 0x023F, # LATIN SMALL LETTER S WITH SWASH TAIL ȿ + 0x0240, # LATIN SMALL LETTER Z WITH SWASH TAIL ɀ + 0x0242, # LATIN SMALL LETTER GLOTTAL STOP ɂ + 0x0247, # LATIN SMALL LETTER E WITH STROKE ɇ + 0x0249, # LATIN SMALL LETTER J WITH STROKE ɉ + 0x024B, # LATIN SMALL LETTER Q WITH HOOK TAIL ɋ + 0x024D, # LATIN SMALL LETTER R WITH STROKE ɍ + 0x024F, # LATIN SMALL LETTER Y WITH STROKE ɏ + 0x0250, # LATIN SMALL LETTER TURNED A ɐ + 0x0251, # LATIN SMALL LETTER ALPHA ɑ + 0x0252, # LATIN SMALL LETTER TURNED ALPHA ɒ + 0x0253, # LATIN SMALL LETTER B WITH HOOK ɓ + 0x0254, # LATIN SMALL LETTER OPEN O ɔ + 0x0256, # LATIN SMALL LETTER D WITH TAIL ɖ + 0x0257, # LATIN SMALL LETTER D WITH HOOK ɗ + 0x0259, # LATIN SMALL LETTER SCHWA ə + 0x025B, # LATIN SMALL LETTER OPEN E ɛ + 0x025C, # LATIN SMALL LETTER REVERSED OPEN E ɜ + 0x0260, # LATIN SMALL LETTER G WITH HOOK ɠ + 0x0261, # LATIN SMALL LETTER SCRIPT G ɡ + 0x0263, # LATIN SMALL LETTER GAMMA ɣ + 0x0265, # LATIN SMALL LETTER TURNED H ɥ + 0x0266, # LATIN SMALL LETTER H WITH HOOK ɦ + 0x0268, # LATIN SMALL LETTER I WITH STROKE ɨ + 0x0269, # LATIN SMALL LETTER IOTA ɩ + 0x026A, # LATIN LETTER SMALL CAPITAL I ɪ + 0x026B, # LATIN SMALL LETTER L WITH MIDDLE TILDE ɫ + 0x026C, # LATIN SMALL LETTER L WITH BELT ɬ + 0x026F, # LATIN SMALL LETTER TURNED M ɯ + 0x0271, # LATIN SMALL LETTER M WITH HOOK ɱ + 0x0272, # LATIN SMALL LETTER N WITH LEFT HOOK ɲ + 0x0275, # LATIN SMALL LETTER BARRED O ɵ + 0x027D, # LATIN SMALL LETTER R WITH TAIL ɽ + 0x0280, # LATIN LETTER SMALL CAPITAL R ʀ + 0x0282, # LATIN SMALL LETTER S WITH HOOK ʂ + 0x0283, # LATIN SMALL LETTER ESH ʃ + 0x0287, # LATIN SMALL LETTER TURNED T ʇ + 0x0288, # LATIN SMALL LETTER T WITH RETROFLEX HOOK ʈ + 0x0289, # LATIN SMALL LETTER U BAR ʉ + 0x028A, # LATIN SMALL LETTER UPSILON ʊ + 0x028B, # LATIN SMALL LETTER V WITH HOOK ʋ + 0x028C, # LATIN SMALL LETTER TURNED V ʌ + 0x0292, # LATIN SMALL LETTER EZH ʒ + 0x029D, # LATIN SMALL LETTER J WITH CROSSED-TAIL ʝ + 0x029E, # LATIN SMALL LETTER TURNED K ʞ + 0x0345, # COMBINING GREEK YPOGEGRAMMENI ͅ + 0x0371, # GREEK SMALL LETTER HETA ͱ + 0x0373, # GREEK SMALL LETTER ARCHAIC SAMPI ͳ + 0x0377, # GREEK SMALL LETTER PAMPHYLIAN DIGAMMA ͷ + 0x037B, # GREEK SMALL REVERSED LUNATE SIGMA SYMBOL ͻ + 0x037C, # GREEK SMALL DOTTED LUNATE SIGMA SYMBOL ͼ + 0x037D, # GREEK SMALL REVERSED DOTTED LUNATE SIGMA SYMBOL ͽ + 0x03AC, # GREEK SMALL LETTER ALPHA WITH TONOS ά + 0x03AD, # GREEK SMALL LETTER EPSILON WITH TONOS έ + 0x03AE, # GREEK SMALL LETTER ETA WITH TONOS ή + 0x03AF, # GREEK SMALL LETTER IOTA WITH TONOS ί + 0x03B1, # GREEK SMALL LETTER ALPHA α + 0x03B2, # GREEK SMALL LETTER BETA β + 0x03B3, # GREEK SMALL LETTER GAMMA γ + 0x03B4, # GREEK SMALL LETTER DELTA δ + 0x03B5, # GREEK SMALL LETTER EPSILON ε + 0x03B6, # GREEK SMALL LETTER ZETA ζ + 0x03B7, # GREEK SMALL LETTER ETA η + 0x03B8, # GREEK SMALL LETTER THETA θ + 0x03B9, # GREEK SMALL LETTER IOTA ι + 0x03BA, # GREEK SMALL LETTER KAPPA κ + 0x03BB, # GREEK SMALL LETTER LAMDA λ + 0x03BC, # GREEK SMALL LETTER MU μ + 0x03BD, # GREEK SMALL LETTER NU ν + 0x03BE, # GREEK SMALL LETTER XI ξ + 0x03BF, # GREEK SMALL LETTER OMICRON ο + 0x03C0, # GREEK SMALL LETTER PI π + 0x03C1, # GREEK SMALL LETTER RHO ρ + 0x03C2, # GREEK SMALL LETTER FINAL SIGMA ς + 0x03C3, # GREEK SMALL LETTER SIGMA σ + 0x03C4, # GREEK SMALL LETTER TAU τ + 0x03C5, # GREEK SMALL LETTER UPSILON υ + 0x03C6, # GREEK SMALL LETTER PHI φ + 0x03C7, # GREEK SMALL LETTER CHI χ + 0x03C8, # GREEK SMALL LETTER PSI ψ + 0x03C9, # GREEK SMALL LETTER OMEGA ω + 0x03CA, # GREEK SMALL LETTER IOTA WITH DIALYTIKA ϊ + 0x03CB, # GREEK SMALL LETTER UPSILON WITH DIALYTIKA ϋ + 0x03CC, # GREEK SMALL LETTER OMICRON WITH TONOS ό + 0x03CD, # GREEK SMALL LETTER UPSILON WITH TONOS ύ + 0x03CE, # GREEK SMALL LETTER OMEGA WITH TONOS ώ + 0x03D0, # GREEK BETA SYMBOL ϐ + 0x03D1, # GREEK THETA SYMBOL ϑ + 0x03D5, # GREEK PHI SYMBOL ϕ + 0x03D6, # GREEK PI SYMBOL ϖ + 0x03D7, # GREEK KAI SYMBOL ϗ + 0x03D9, # GREEK SMALL LETTER ARCHAIC KOPPA ϙ + 0x03DB, # GREEK SMALL LETTER STIGMA ϛ + 0x03DD, # GREEK SMALL LETTER DIGAMMA ϝ + 0x03DF, # GREEK SMALL LETTER KOPPA ϟ + 0x03E1, # GREEK SMALL LETTER SAMPI ϡ + 0x03E3, # COPTIC SMALL LETTER SHEI ϣ + 0x03E5, # COPTIC SMALL LETTER FEI ϥ + 0x03E7, # COPTIC SMALL LETTER KHEI ϧ + 0x03E9, # COPTIC SMALL LETTER HORI ϩ + 0x03EB, # COPTIC SMALL LETTER GANGIA ϫ + 0x03ED, # COPTIC SMALL LETTER SHIMA ϭ + 0x03EF, # COPTIC SMALL LETTER DEI ϯ + 0x03F0, # GREEK KAPPA SYMBOL ϰ + 0x03F1, # GREEK RHO SYMBOL ϱ + 0x03F2, # GREEK LUNATE SIGMA SYMBOL ϲ + 0x03F3, # GREEK LETTER YOT ϳ + 0x03F5, # GREEK LUNATE EPSILON SYMBOL ϵ + 0x03F8, # GREEK SMALL LETTER SHO ϸ + 0x03FB, # GREEK SMALL LETTER SAN ϻ + 0x0430, # CYRILLIC SMALL LETTER A а + 0x0431, # CYRILLIC SMALL LETTER BE б + 0x0432, # CYRILLIC SMALL LETTER VE в + 0x0433, # CYRILLIC SMALL LETTER GHE г + 0x0434, # CYRILLIC SMALL LETTER DE д + 0x0435, # CYRILLIC SMALL LETTER IE е + 0x0436, # CYRILLIC SMALL LETTER ZHE ж + 0x0437, # CYRILLIC SMALL LETTER ZE з + 0x0438, # CYRILLIC SMALL LETTER I и + 0x0439, # CYRILLIC SMALL LETTER SHORT I й + 0x043A, # CYRILLIC SMALL LETTER KA к + 0x043B, # CYRILLIC SMALL LETTER EL л + 0x043C, # CYRILLIC SMALL LETTER EM м + 0x043D, # CYRILLIC SMALL LETTER EN н + 0x043E, # CYRILLIC SMALL LETTER O о + 0x043F, # CYRILLIC SMALL LETTER PE п + 0x0440, # CYRILLIC SMALL LETTER ER р + 0x0441, # CYRILLIC SMALL LETTER ES с + 0x0442, # CYRILLIC SMALL LETTER TE т + 0x0443, # CYRILLIC SMALL LETTER U у + 0x0444, # CYRILLIC SMALL LETTER EF ф + 0x0445, # CYRILLIC SMALL LETTER HA х + 0x0446, # CYRILLIC SMALL LETTER TSE ц + 0x0447, # CYRILLIC SMALL LETTER CHE ч + 0x0448, # CYRILLIC SMALL LETTER SHA ш + 0x0449, # CYRILLIC SMALL LETTER SHCHA щ + 0x044A, # CYRILLIC SMALL LETTER HARD SIGN ъ + 0x044B, # CYRILLIC SMALL LETTER YERU ы + 0x044C, # CYRILLIC SMALL LETTER SOFT SIGN ь + 0x044D, # CYRILLIC SMALL LETTER E э + 0x044E, # CYRILLIC SMALL LETTER YU ю + 0x044F, # CYRILLIC SMALL LETTER YA я + 0x0450, # CYRILLIC SMALL LETTER IE WITH GRAVE ѐ + 0x0451, # CYRILLIC SMALL LETTER IO ё + 0x0452, # CYRILLIC SMALL LETTER DJE ђ + 0x0453, # CYRILLIC SMALL LETTER GJE ѓ + 0x0454, # CYRILLIC SMALL LETTER UKRAINIAN IE є + 0x0455, # CYRILLIC SMALL LETTER DZE ѕ + 0x0456, # CYRILLIC SMALL LETTER BYELORUSSIAN-UKRAINIAN I і + 0x0457, # CYRILLIC SMALL LETTER YI ї + 0x0458, # CYRILLIC SMALL LETTER JE ј + 0x0459, # CYRILLIC SMALL LETTER LJE љ + 0x045A, # CYRILLIC SMALL LETTER NJE њ + 0x045B, # CYRILLIC SMALL LETTER TSHE ћ + 0x045C, # CYRILLIC SMALL LETTER KJE ќ + 0x045D, # CYRILLIC SMALL LETTER I WITH GRAVE ѝ + 0x045E, # CYRILLIC SMALL LETTER SHORT U ў + 0x045F, # CYRILLIC SMALL LETTER DZHE џ + 0x0461, # CYRILLIC SMALL LETTER OMEGA ѡ + 0x0463, # CYRILLIC SMALL LETTER YAT ѣ + 0x0465, # CYRILLIC SMALL LETTER IOTIFIED E ѥ + 0x0467, # CYRILLIC SMALL LETTER LITTLE YUS ѧ + 0x0469, # CYRILLIC SMALL LETTER IOTIFIED LITTLE YUS ѩ + 0x046B, # CYRILLIC SMALL LETTER BIG YUS ѫ + 0x046D, # CYRILLIC SMALL LETTER IOTIFIED BIG YUS ѭ + 0x046F, # CYRILLIC SMALL LETTER KSI ѯ + 0x0471, # CYRILLIC SMALL LETTER PSI ѱ + 0x0473, # CYRILLIC SMALL LETTER FITA ѳ + 0x0475, # CYRILLIC SMALL LETTER IZHITSA ѵ + 0x0477, # CYRILLIC SMALL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT ѷ + 0x0479, # CYRILLIC SMALL LETTER UK ѹ + 0x047B, # CYRILLIC SMALL LETTER ROUND OMEGA ѻ + 0x047D, # CYRILLIC SMALL LETTER OMEGA WITH TITLO ѽ + 0x047F, # CYRILLIC SMALL LETTER OT ѿ + 0x0481, # CYRILLIC SMALL LETTER KOPPA ҁ + 0x048B, # CYRILLIC SMALL LETTER SHORT I WITH TAIL ҋ + 0x048D, # CYRILLIC SMALL LETTER SEMISOFT SIGN ҍ + 0x048F, # CYRILLIC SMALL LETTER ER WITH TICK ҏ + 0x0491, # CYRILLIC SMALL LETTER GHE WITH UPTURN ґ + 0x0493, # CYRILLIC SMALL LETTER GHE WITH STROKE ғ + 0x0495, # CYRILLIC SMALL LETTER GHE WITH MIDDLE HOOK ҕ + 0x0497, # CYRILLIC SMALL LETTER ZHE WITH DESCENDER җ + 0x0499, # CYRILLIC SMALL LETTER ZE WITH DESCENDER ҙ + 0x049B, # CYRILLIC SMALL LETTER KA WITH DESCENDER қ + 0x049D, # CYRILLIC SMALL LETTER KA WITH VERTICAL STROKE ҝ + 0x049F, # CYRILLIC SMALL LETTER KA WITH STROKE ҟ + 0x04A1, # CYRILLIC SMALL LETTER BASHKIR KA ҡ + 0x04A3, # CYRILLIC SMALL LETTER EN WITH DESCENDER ң + 0x04A5, # CYRILLIC SMALL LIGATURE EN GHE ҥ + 0x04A7, # CYRILLIC SMALL LETTER PE WITH MIDDLE HOOK ҧ + 0x04A9, # CYRILLIC SMALL LETTER ABKHASIAN HA ҩ + 0x04AB, # CYRILLIC SMALL LETTER ES WITH DESCENDER ҫ + 0x04AD, # CYRILLIC SMALL LETTER TE WITH DESCENDER ҭ + 0x04AF, # CYRILLIC SMALL LETTER STRAIGHT U ү + 0x04B1, # CYRILLIC SMALL LETTER STRAIGHT U WITH STROKE ұ + 0x04B3, # CYRILLIC SMALL LETTER HA WITH DESCENDER ҳ + 0x04B5, # CYRILLIC SMALL LIGATURE TE TSE ҵ + 0x04B7, # CYRILLIC SMALL LETTER CHE WITH DESCENDER ҷ + 0x04B9, # CYRILLIC SMALL LETTER CHE WITH VERTICAL STROKE ҹ + 0x04BB, # CYRILLIC SMALL LETTER SHHA һ + 0x04BD, # CYRILLIC SMALL LETTER ABKHASIAN CHE ҽ + 0x04BF, # CYRILLIC SMALL LETTER ABKHASIAN CHE WITH DESCENDER ҿ + 0x04C2, # CYRILLIC SMALL LETTER ZHE WITH BREVE ӂ + 0x04C4, # CYRILLIC SMALL LETTER KA WITH HOOK ӄ + 0x04C6, # CYRILLIC SMALL LETTER EL WITH TAIL ӆ + 0x04C8, # CYRILLIC SMALL LETTER EN WITH HOOK ӈ + 0x04CA, # CYRILLIC SMALL LETTER EN WITH TAIL ӊ + 0x04CC, # CYRILLIC SMALL LETTER KHAKASSIAN CHE ӌ + 0x04CE, # CYRILLIC SMALL LETTER EM WITH TAIL ӎ + 0x04CF, # CYRILLIC SMALL LETTER PALOCHKA ӏ + 0x04D1, # CYRILLIC SMALL LETTER A WITH BREVE ӑ + 0x04D3, # CYRILLIC SMALL LETTER A WITH DIAERESIS ӓ + 0x04D5, # CYRILLIC SMALL LIGATURE A IE ӕ + 0x04D7, # CYRILLIC SMALL LETTER IE WITH BREVE ӗ + 0x04D9, # CYRILLIC SMALL LETTER SCHWA ә + 0x04DB, # CYRILLIC SMALL LETTER SCHWA WITH DIAERESIS ӛ + 0x04DD, # CYRILLIC SMALL LETTER ZHE WITH DIAERESIS ӝ + 0x04DF, # CYRILLIC SMALL LETTER ZE WITH DIAERESIS ӟ + 0x04E1, # CYRILLIC SMALL LETTER ABKHASIAN DZE ӡ + 0x04E3, # CYRILLIC SMALL LETTER I WITH MACRON ӣ + 0x04E5, # CYRILLIC SMALL LETTER I WITH DIAERESIS ӥ + 0x04E7, # CYRILLIC SMALL LETTER O WITH DIAERESIS ӧ + 0x04E9, # CYRILLIC SMALL LETTER BARRED O ө + 0x04EB, # CYRILLIC SMALL LETTER BARRED O WITH DIAERESIS ӫ + 0x04ED, # CYRILLIC SMALL LETTER E WITH DIAERESIS ӭ + 0x04EF, # CYRILLIC SMALL LETTER U WITH MACRON ӯ + 0x04F1, # CYRILLIC SMALL LETTER U WITH DIAERESIS ӱ + 0x04F3, # CYRILLIC SMALL LETTER U WITH DOUBLE ACUTE ӳ + 0x04F5, # CYRILLIC SMALL LETTER CHE WITH DIAERESIS ӵ + 0x04F7, # CYRILLIC SMALL LETTER GHE WITH DESCENDER ӷ + 0x04F9, # CYRILLIC SMALL LETTER YERU WITH DIAERESIS ӹ + 0x04FB, # CYRILLIC SMALL LETTER GHE WITH STROKE AND HOOK ӻ + 0x04FD, # CYRILLIC SMALL LETTER HA WITH HOOK ӽ + 0x04FF, # CYRILLIC SMALL LETTER HA WITH STROKE ӿ + 0x0501, # CYRILLIC SMALL LETTER KOMI DE ԁ + 0x0503, # CYRILLIC SMALL LETTER KOMI DJE ԃ + 0x0505, # CYRILLIC SMALL LETTER KOMI ZJE ԅ + 0x0507, # CYRILLIC SMALL LETTER KOMI DZJE ԇ + 0x0509, # CYRILLIC SMALL LETTER KOMI LJE ԉ + 0x050B, # CYRILLIC SMALL LETTER KOMI NJE ԋ + 0x050D, # CYRILLIC SMALL LETTER KOMI SJE ԍ + 0x050F, # CYRILLIC SMALL LETTER KOMI TJE ԏ + 0x0511, # CYRILLIC SMALL LETTER REVERSED ZE ԑ + 0x0513, # CYRILLIC SMALL LETTER EL WITH HOOK ԓ + 0x0515, # CYRILLIC SMALL LETTER LHA ԕ + 0x0517, # CYRILLIC SMALL LETTER RHA ԗ + 0x0519, # CYRILLIC SMALL LETTER YAE ԙ + 0x051B, # CYRILLIC SMALL LETTER QA ԛ + 0x051D, # CYRILLIC SMALL LETTER WE ԝ + 0x051F, # CYRILLIC SMALL LETTER ALEUT KA ԟ + 0x0521, # CYRILLIC SMALL LETTER EL WITH MIDDLE HOOK ԡ + 0x0523, # CYRILLIC SMALL LETTER EN WITH MIDDLE HOOK ԣ + 0x0525, # CYRILLIC SMALL LETTER PE WITH DESCENDER ԥ + 0x0527, # CYRILLIC SMALL LETTER SHHA WITH DESCENDER ԧ + 0x0529, # CYRILLIC SMALL LETTER EN WITH LEFT HOOK ԩ + 0x052B, # CYRILLIC SMALL LETTER DZZHE ԫ + 0x052D, # CYRILLIC SMALL LETTER DCHE ԭ + 0x052F, # CYRILLIC SMALL LETTER EL WITH DESCENDER ԯ + 0x0561, # ARMENIAN SMALL LETTER AYB ա + 0x0562, # ARMENIAN SMALL LETTER BEN բ + 0x0563, # ARMENIAN SMALL LETTER GIM գ + 0x0564, # ARMENIAN SMALL LETTER DA դ + 0x0565, # ARMENIAN SMALL LETTER ECH ե + 0x0566, # ARMENIAN SMALL LETTER ZA զ + 0x0567, # ARMENIAN SMALL LETTER EH է + 0x0568, # ARMENIAN SMALL LETTER ET ը + 0x0569, # ARMENIAN SMALL LETTER TO թ + 0x056A, # ARMENIAN SMALL LETTER ZHE ժ + 0x056B, # ARMENIAN SMALL LETTER INI ի + 0x056C, # ARMENIAN SMALL LETTER LIWN լ + 0x056D, # ARMENIAN SMALL LETTER XEH խ + 0x056E, # ARMENIAN SMALL LETTER CA ծ + 0x056F, # ARMENIAN SMALL LETTER KEN կ + 0x0570, # ARMENIAN SMALL LETTER HO հ + 0x0571, # ARMENIAN SMALL LETTER JA ձ + 0x0572, # ARMENIAN SMALL LETTER GHAD ղ + 0x0573, # ARMENIAN SMALL LETTER CHEH ճ + 0x0574, # ARMENIAN SMALL LETTER MEN մ + 0x0575, # ARMENIAN SMALL LETTER YI յ + 0x0576, # ARMENIAN SMALL LETTER NOW ն + 0x0577, # ARMENIAN SMALL LETTER SHA շ + 0x0578, # ARMENIAN SMALL LETTER VO ո + 0x0579, # ARMENIAN SMALL LETTER CHA չ + 0x057A, # ARMENIAN SMALL LETTER PEH պ + 0x057B, # ARMENIAN SMALL LETTER JHEH ջ + 0x057C, # ARMENIAN SMALL LETTER RA ռ + 0x057D, # ARMENIAN SMALL LETTER SEH ս + 0x057E, # ARMENIAN SMALL LETTER VEW վ + 0x057F, # ARMENIAN SMALL LETTER TIWN տ + 0x0580, # ARMENIAN SMALL LETTER REH ր + 0x0581, # ARMENIAN SMALL LETTER CO ց + 0x0582, # ARMENIAN SMALL LETTER YIWN ւ + 0x0583, # ARMENIAN SMALL LETTER PIWR փ + 0x0584, # ARMENIAN SMALL LETTER KEH ք + 0x0585, # ARMENIAN SMALL LETTER OH օ + 0x0586, # ARMENIAN SMALL LETTER FEH ֆ + 0x10D0, # GEORGIAN LETTER AN ა + 0x10D1, # GEORGIAN LETTER BAN ბ + 0x10D2, # GEORGIAN LETTER GAN გ + 0x10D3, # GEORGIAN LETTER DON დ + 0x10D4, # GEORGIAN LETTER EN ე + 0x10D5, # GEORGIAN LETTER VIN ვ + 0x10D6, # GEORGIAN LETTER ZEN ზ + 0x10D7, # GEORGIAN LETTER TAN თ + 0x10D8, # GEORGIAN LETTER IN ი + 0x10D9, # GEORGIAN LETTER KAN კ + 0x10DA, # GEORGIAN LETTER LAS ლ + 0x10DB, # GEORGIAN LETTER MAN მ + 0x10DC, # GEORGIAN LETTER NAR ნ + 0x10DD, # GEORGIAN LETTER ON ო + 0x10DE, # GEORGIAN LETTER PAR პ + 0x10DF, # GEORGIAN LETTER ZHAR ჟ + 0x10E0, # GEORGIAN LETTER RAE რ + 0x10E1, # GEORGIAN LETTER SAN ს + 0x10E2, # GEORGIAN LETTER TAR ტ + 0x10E3, # GEORGIAN LETTER UN უ + 0x10E4, # GEORGIAN LETTER PHAR ფ + 0x10E5, # GEORGIAN LETTER KHAR ქ + 0x10E6, # GEORGIAN LETTER GHAN ღ + 0x10E7, # GEORGIAN LETTER QAR ყ + 0x10E8, # GEORGIAN LETTER SHIN შ + 0x10E9, # GEORGIAN LETTER CHIN ჩ + 0x10EA, # GEORGIAN LETTER CAN ც + 0x10EB, # GEORGIAN LETTER JIL ძ + 0x10EC, # GEORGIAN LETTER CIL წ + 0x10ED, # GEORGIAN LETTER CHAR ჭ + 0x10EE, # GEORGIAN LETTER XAN ხ + 0x10EF, # GEORGIAN LETTER JHAN ჯ + 0x10F0, # GEORGIAN LETTER HAE ჰ + 0x10F1, # GEORGIAN LETTER HE ჱ + 0x10F2, # GEORGIAN LETTER HIE ჲ + 0x10F3, # GEORGIAN LETTER WE ჳ + 0x10F4, # GEORGIAN LETTER HAR ჴ + 0x10F5, # GEORGIAN LETTER HOE ჵ + 0x10F6, # GEORGIAN LETTER FI ჶ + 0x10F7, # GEORGIAN LETTER YN ჷ + 0x10F8, # GEORGIAN LETTER ELIFI ჸ + 0x10F9, # GEORGIAN LETTER TURNED GAN ჹ + 0x10FA, # GEORGIAN LETTER AIN ჺ + 0x10FD, # GEORGIAN LETTER AEN ჽ + 0x10FE, # GEORGIAN LETTER HARD SIGN ჾ + 0x10FF, # GEORGIAN LETTER LABIAL SIGN ჿ + 0x13F8, # CHEROKEE SMALL LETTER YE ᏸ + 0x13F9, # CHEROKEE SMALL LETTER YI ᏹ + 0x13FA, # CHEROKEE SMALL LETTER YO ᏺ + 0x13FB, # CHEROKEE SMALL LETTER YU ᏻ + 0x13FC, # CHEROKEE SMALL LETTER YV ᏼ + 0x13FD, # CHEROKEE SMALL LETTER MV ᏽ + 0x1C80, # CYRILLIC SMALL LETTER ROUNDED VE ᲀ + 0x1C81, # CYRILLIC SMALL LETTER LONG-LEGGED DE ᲁ + 0x1C82, # CYRILLIC SMALL LETTER NARROW O ᲂ + 0x1C83, # CYRILLIC SMALL LETTER WIDE ES ᲃ + 0x1C84, # CYRILLIC SMALL LETTER TALL TE ᲄ + 0x1C85, # CYRILLIC SMALL LETTER THREE-LEGGED TE ᲅ + 0x1C86, # CYRILLIC SMALL LETTER TALL HARD SIGN ᲆ + 0x1C87, # CYRILLIC SMALL LETTER TALL YAT ᲇ + 0x1C88, # CYRILLIC SMALL LETTER UNBLENDED UK ᲈ + 0x1D79, # LATIN SMALL LETTER INSULAR G ᵹ + 0x1D7D, # LATIN SMALL LETTER P WITH STROKE ᵽ + 0x1D8E, # LATIN SMALL LETTER Z WITH PALATAL HOOK ᶎ + 0x1E01, # LATIN SMALL LETTER A WITH RING BELOW ḁ + 0x1E03, # LATIN SMALL LETTER B WITH DOT ABOVE ḃ + 0x1E05, # LATIN SMALL LETTER B WITH DOT BELOW ḅ + 0x1E07, # LATIN SMALL LETTER B WITH LINE BELOW ḇ + 0x1E09, # LATIN SMALL LETTER C WITH CEDILLA AND ACUTE ḉ + 0x1E0B, # LATIN SMALL LETTER D WITH DOT ABOVE ḋ + 0x1E0D, # LATIN SMALL LETTER D WITH DOT BELOW ḍ + 0x1E0F, # LATIN SMALL LETTER D WITH LINE BELOW ḏ + 0x1E11, # LATIN SMALL LETTER D WITH CEDILLA ḑ + 0x1E13, # LATIN SMALL LETTER D WITH CIRCUMFLEX BELOW ḓ + 0x1E15, # LATIN SMALL LETTER E WITH MACRON AND GRAVE ḕ + 0x1E17, # LATIN SMALL LETTER E WITH MACRON AND ACUTE ḗ + 0x1E19, # LATIN SMALL LETTER E WITH CIRCUMFLEX BELOW ḙ + 0x1E1B, # LATIN SMALL LETTER E WITH TILDE BELOW ḛ + 0x1E1D, # LATIN SMALL LETTER E WITH CEDILLA AND BREVE ḝ + 0x1E1F, # LATIN SMALL LETTER F WITH DOT ABOVE ḟ + 0x1E21, # LATIN SMALL LETTER G WITH MACRON ḡ + 0x1E23, # LATIN SMALL LETTER H WITH DOT ABOVE ḣ + 0x1E25, # LATIN SMALL LETTER H WITH DOT BELOW ḥ + 0x1E27, # LATIN SMALL LETTER H WITH DIAERESIS ḧ + 0x1E29, # LATIN SMALL LETTER H WITH CEDILLA ḩ + 0x1E2B, # LATIN SMALL LETTER H WITH BREVE BELOW ḫ + 0x1E2D, # LATIN SMALL LETTER I WITH TILDE BELOW ḭ + 0x1E2F, # LATIN SMALL LETTER I WITH DIAERESIS AND ACUTE ḯ + 0x1E31, # LATIN SMALL LETTER K WITH ACUTE ḱ + 0x1E33, # LATIN SMALL LETTER K WITH DOT BELOW ḳ + 0x1E35, # LATIN SMALL LETTER K WITH LINE BELOW ḵ + 0x1E37, # LATIN SMALL LETTER L WITH DOT BELOW ḷ + 0x1E39, # LATIN SMALL LETTER L WITH DOT BELOW AND MACRON ḹ + 0x1E3B, # LATIN SMALL LETTER L WITH LINE BELOW ḻ + 0x1E3D, # LATIN SMALL LETTER L WITH CIRCUMFLEX BELOW ḽ + 0x1E3F, # LATIN SMALL LETTER M WITH ACUTE ḿ + 0x1E41, # LATIN SMALL LETTER M WITH DOT ABOVE ṁ + 0x1E43, # LATIN SMALL LETTER M WITH DOT BELOW ṃ + 0x1E45, # LATIN SMALL LETTER N WITH DOT ABOVE ṅ + 0x1E47, # LATIN SMALL LETTER N WITH DOT BELOW ṇ + 0x1E49, # LATIN SMALL LETTER N WITH LINE BELOW ṉ + 0x1E4B, # LATIN SMALL LETTER N WITH CIRCUMFLEX BELOW ṋ + 0x1E4D, # LATIN SMALL LETTER O WITH TILDE AND ACUTE ṍ + 0x1E4F, # LATIN SMALL LETTER O WITH TILDE AND DIAERESIS ṏ + 0x1E51, # LATIN SMALL LETTER O WITH MACRON AND GRAVE ṑ + 0x1E53, # LATIN SMALL LETTER O WITH MACRON AND ACUTE ṓ + 0x1E55, # LATIN SMALL LETTER P WITH ACUTE ṕ + 0x1E57, # LATIN SMALL LETTER P WITH DOT ABOVE ṗ + 0x1E59, # LATIN SMALL LETTER R WITH DOT ABOVE ṙ + 0x1E5B, # LATIN SMALL LETTER R WITH DOT BELOW ṛ + 0x1E5D, # LATIN SMALL LETTER R WITH DOT BELOW AND MACRON ṝ + 0x1E5F, # LATIN SMALL LETTER R WITH LINE BELOW ṟ + 0x1E61, # LATIN SMALL LETTER S WITH DOT ABOVE ṡ + 0x1E63, # LATIN SMALL LETTER S WITH DOT BELOW ṣ + 0x1E65, # LATIN SMALL LETTER S WITH ACUTE AND DOT ABOVE ṥ + 0x1E67, # LATIN SMALL LETTER S WITH CARON AND DOT ABOVE ṧ + 0x1E69, # LATIN SMALL LETTER S WITH DOT BELOW AND DOT ABOVE ṩ + 0x1E6B, # LATIN SMALL LETTER T WITH DOT ABOVE ṫ + 0x1E6D, # LATIN SMALL LETTER T WITH DOT BELOW ṭ + 0x1E6F, # LATIN SMALL LETTER T WITH LINE BELOW ṯ + 0x1E71, # LATIN SMALL LETTER T WITH CIRCUMFLEX BELOW ṱ + 0x1E73, # LATIN SMALL LETTER U WITH DIAERESIS BELOW ṳ + 0x1E75, # LATIN SMALL LETTER U WITH TILDE BELOW ṵ + 0x1E77, # LATIN SMALL LETTER U WITH CIRCUMFLEX BELOW ṷ + 0x1E79, # LATIN SMALL LETTER U WITH TILDE AND ACUTE ṹ + 0x1E7B, # LATIN SMALL LETTER U WITH MACRON AND DIAERESIS ṻ + 0x1E7D, # LATIN SMALL LETTER V WITH TILDE ṽ + 0x1E7F, # LATIN SMALL LETTER V WITH DOT BELOW ṿ + 0x1E81, # LATIN SMALL LETTER W WITH GRAVE ẁ + 0x1E83, # LATIN SMALL LETTER W WITH ACUTE ẃ + 0x1E85, # LATIN SMALL LETTER W WITH DIAERESIS ẅ + 0x1E87, # LATIN SMALL LETTER W WITH DOT ABOVE ẇ + 0x1E89, # LATIN SMALL LETTER W WITH DOT BELOW ẉ + 0x1E8B, # LATIN SMALL LETTER X WITH DOT ABOVE ẋ + 0x1E8D, # LATIN SMALL LETTER X WITH DIAERESIS ẍ + 0x1E8F, # LATIN SMALL LETTER Y WITH DOT ABOVE ẏ + 0x1E91, # LATIN SMALL LETTER Z WITH CIRCUMFLEX ẑ + 0x1E93, # LATIN SMALL LETTER Z WITH DOT BELOW ẓ + 0x1E95, # LATIN SMALL LETTER Z WITH LINE BELOW ẕ + 0x1E9B, # LATIN SMALL LETTER LONG S WITH DOT ABOVE ẛ + 0x1EA1, # LATIN SMALL LETTER A WITH DOT BELOW ạ + 0x1EA3, # LATIN SMALL LETTER A WITH HOOK ABOVE ả + 0x1EA5, # LATIN SMALL LETTER A WITH CIRCUMFLEX AND ACUTE ấ + 0x1EA7, # LATIN SMALL LETTER A WITH CIRCUMFLEX AND GRAVE ầ + 0x1EA9, # LATIN SMALL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE ẩ + 0x1EAB, # LATIN SMALL LETTER A WITH CIRCUMFLEX AND TILDE ẫ + 0x1EAD, # LATIN SMALL LETTER A WITH CIRCUMFLEX AND DOT BELOW ậ + 0x1EAF, # LATIN SMALL LETTER A WITH BREVE AND ACUTE ắ + 0x1EB1, # LATIN SMALL LETTER A WITH BREVE AND GRAVE ằ + 0x1EB3, # LATIN SMALL LETTER A WITH BREVE AND HOOK ABOVE ẳ + 0x1EB5, # LATIN SMALL LETTER A WITH BREVE AND TILDE ẵ + 0x1EB7, # LATIN SMALL LETTER A WITH BREVE AND DOT BELOW ặ + 0x1EB9, # LATIN SMALL LETTER E WITH DOT BELOW ẹ + 0x1EBB, # LATIN SMALL LETTER E WITH HOOK ABOVE ẻ + 0x1EBD, # LATIN SMALL LETTER E WITH TILDE ẽ + 0x1EBF, # LATIN SMALL LETTER E WITH CIRCUMFLEX AND ACUTE ế + 0x1EC1, # LATIN SMALL LETTER E WITH CIRCUMFLEX AND GRAVE ề + 0x1EC3, # LATIN SMALL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE ể + 0x1EC5, # LATIN SMALL LETTER E WITH CIRCUMFLEX AND TILDE ễ + 0x1EC7, # LATIN SMALL LETTER E WITH CIRCUMFLEX AND DOT BELOW ệ + 0x1EC9, # LATIN SMALL LETTER I WITH HOOK ABOVE ỉ + 0x1ECB, # LATIN SMALL LETTER I WITH DOT BELOW ị + 0x1ECD, # LATIN SMALL LETTER O WITH DOT BELOW ọ + 0x1ECF, # LATIN SMALL LETTER O WITH HOOK ABOVE ỏ + 0x1ED1, # LATIN SMALL LETTER O WITH CIRCUMFLEX AND ACUTE ố + 0x1ED3, # LATIN SMALL LETTER O WITH CIRCUMFLEX AND GRAVE ồ + 0x1ED5, # LATIN SMALL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE ổ + 0x1ED7, # LATIN SMALL LETTER O WITH CIRCUMFLEX AND TILDE ỗ + 0x1ED9, # LATIN SMALL LETTER O WITH CIRCUMFLEX AND DOT BELOW ộ + 0x1EDB, # LATIN SMALL LETTER O WITH HORN AND ACUTE ớ + 0x1EDD, # LATIN SMALL LETTER O WITH HORN AND GRAVE ờ + 0x1EDF, # LATIN SMALL LETTER O WITH HORN AND HOOK ABOVE ở + 0x1EE1, # LATIN SMALL LETTER O WITH HORN AND TILDE ỡ + 0x1EE3, # LATIN SMALL LETTER O WITH HORN AND DOT BELOW ợ + 0x1EE5, # LATIN SMALL LETTER U WITH DOT BELOW ụ + 0x1EE7, # LATIN SMALL LETTER U WITH HOOK ABOVE ủ + 0x1EE9, # LATIN SMALL LETTER U WITH HORN AND ACUTE ứ + 0x1EEB, # LATIN SMALL LETTER U WITH HORN AND GRAVE ừ + 0x1EED, # LATIN SMALL LETTER U WITH HORN AND HOOK ABOVE ử + 0x1EEF, # LATIN SMALL LETTER U WITH HORN AND TILDE ữ + 0x1EF1, # LATIN SMALL LETTER U WITH HORN AND DOT BELOW ự + 0x1EF3, # LATIN SMALL LETTER Y WITH GRAVE ỳ + 0x1EF5, # LATIN SMALL LETTER Y WITH DOT BELOW ỵ + 0x1EF7, # LATIN SMALL LETTER Y WITH HOOK ABOVE ỷ + 0x1EF9, # LATIN SMALL LETTER Y WITH TILDE ỹ + 0x1EFB, # LATIN SMALL LETTER MIDDLE-WELSH LL ỻ + 0x1EFD, # LATIN SMALL LETTER MIDDLE-WELSH V ỽ + 0x1EFF, # LATIN SMALL LETTER Y WITH LOOP ỿ + 0x1F00, # GREEK SMALL LETTER ALPHA WITH PSILI ἀ + 0x1F01, # GREEK SMALL LETTER ALPHA WITH DASIA ἁ + 0x1F02, # GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA ἂ + 0x1F03, # GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA ἃ + 0x1F04, # GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA ἄ + 0x1F05, # GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA ἅ + 0x1F06, # GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI ἆ + 0x1F07, # GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI ἇ + 0x1F10, # GREEK SMALL LETTER EPSILON WITH PSILI ἐ + 0x1F11, # GREEK SMALL LETTER EPSILON WITH DASIA ἑ + 0x1F12, # GREEK SMALL LETTER EPSILON WITH PSILI AND VARIA ἒ + 0x1F13, # GREEK SMALL LETTER EPSILON WITH DASIA AND VARIA ἓ + 0x1F14, # GREEK SMALL LETTER EPSILON WITH PSILI AND OXIA ἔ + 0x1F15, # GREEK SMALL LETTER EPSILON WITH DASIA AND OXIA ἕ + 0x1F20, # GREEK SMALL LETTER ETA WITH PSILI ἠ + 0x1F21, # GREEK SMALL LETTER ETA WITH DASIA ἡ + 0x1F22, # GREEK SMALL LETTER ETA WITH PSILI AND VARIA ἢ + 0x1F23, # GREEK SMALL LETTER ETA WITH DASIA AND VARIA ἣ + 0x1F24, # GREEK SMALL LETTER ETA WITH PSILI AND OXIA ἤ + 0x1F25, # GREEK SMALL LETTER ETA WITH DASIA AND OXIA ἥ + 0x1F26, # GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI ἦ + 0x1F27, # GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI ἧ + 0x1F30, # GREEK SMALL LETTER IOTA WITH PSILI ἰ + 0x1F31, # GREEK SMALL LETTER IOTA WITH DASIA ἱ + 0x1F32, # GREEK SMALL LETTER IOTA WITH PSILI AND VARIA ἲ + 0x1F33, # GREEK SMALL LETTER IOTA WITH DASIA AND VARIA ἳ + 0x1F34, # GREEK SMALL LETTER IOTA WITH PSILI AND OXIA ἴ + 0x1F35, # GREEK SMALL LETTER IOTA WITH DASIA AND OXIA ἵ + 0x1F36, # GREEK SMALL LETTER IOTA WITH PSILI AND PERISPOMENI ἶ + 0x1F37, # GREEK SMALL LETTER IOTA WITH DASIA AND PERISPOMENI ἷ + 0x1F40, # GREEK SMALL LETTER OMICRON WITH PSILI ὀ + 0x1F41, # GREEK SMALL LETTER OMICRON WITH DASIA ὁ + 0x1F42, # GREEK SMALL LETTER OMICRON WITH PSILI AND VARIA ὂ + 0x1F43, # GREEK SMALL LETTER OMICRON WITH DASIA AND VARIA ὃ + 0x1F44, # GREEK SMALL LETTER OMICRON WITH PSILI AND OXIA ὄ + 0x1F45, # GREEK SMALL LETTER OMICRON WITH DASIA AND OXIA ὅ + 0x1F51, # GREEK SMALL LETTER UPSILON WITH DASIA ὑ + 0x1F53, # GREEK SMALL LETTER UPSILON WITH DASIA AND VARIA ὓ + 0x1F55, # GREEK SMALL LETTER UPSILON WITH DASIA AND OXIA ὕ + 0x1F57, # GREEK SMALL LETTER UPSILON WITH DASIA AND PERISPOMENI ὗ + 0x1F60, # GREEK SMALL LETTER OMEGA WITH PSILI ὠ + 0x1F61, # GREEK SMALL LETTER OMEGA WITH DASIA ὡ + 0x1F62, # GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA ὢ + 0x1F63, # GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA ὣ + 0x1F64, # GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA ὤ + 0x1F65, # GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA ὥ + 0x1F66, # GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI ὦ + 0x1F67, # GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI ὧ + 0x1F70, # GREEK SMALL LETTER ALPHA WITH VARIA ὰ + 0x1F71, # GREEK SMALL LETTER ALPHA WITH OXIA ά + 0x1F72, # GREEK SMALL LETTER EPSILON WITH VARIA ὲ + 0x1F73, # GREEK SMALL LETTER EPSILON WITH OXIA έ + 0x1F74, # GREEK SMALL LETTER ETA WITH VARIA ὴ + 0x1F75, # GREEK SMALL LETTER ETA WITH OXIA ή + 0x1F76, # GREEK SMALL LETTER IOTA WITH VARIA ὶ + 0x1F77, # GREEK SMALL LETTER IOTA WITH OXIA ί + 0x1F78, # GREEK SMALL LETTER OMICRON WITH VARIA ὸ + 0x1F79, # GREEK SMALL LETTER OMICRON WITH OXIA ό + 0x1F7A, # GREEK SMALL LETTER UPSILON WITH VARIA ὺ + 0x1F7B, # GREEK SMALL LETTER UPSILON WITH OXIA ύ + 0x1F7C, # GREEK SMALL LETTER OMEGA WITH VARIA ὼ + 0x1F7D, # GREEK SMALL LETTER OMEGA WITH OXIA ώ + 0x1F80, # GREEK SMALL LETTER ALPHA WITH PSILI AND YPOGEGRAMMENI ᾀ + 0x1F81, # GREEK SMALL LETTER ALPHA WITH DASIA AND YPOGEGRAMMENI ᾁ + 0x1F82, # GREEK SMALL LETTER ALPHA WITH PSILI AND VARIA AND YPOGEGRAMMENI ᾂ + 0x1F83, # GREEK SMALL LETTER ALPHA WITH DASIA AND VARIA AND YPOGEGRAMMENI ᾃ + 0x1F84, # GREEK SMALL LETTER ALPHA WITH PSILI AND OXIA AND YPOGEGRAMMENI ᾄ + 0x1F85, # GREEK SMALL LETTER ALPHA WITH DASIA AND OXIA AND YPOGEGRAMMENI ᾅ + 0x1F86, # GREEK SMALL LETTER ALPHA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI ᾆ + 0x1F87, # GREEK SMALL LETTER ALPHA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI ᾇ + 0x1F90, # GREEK SMALL LETTER ETA WITH PSILI AND YPOGEGRAMMENI ᾐ + 0x1F91, # GREEK SMALL LETTER ETA WITH DASIA AND YPOGEGRAMMENI ᾑ + 0x1F92, # GREEK SMALL LETTER ETA WITH PSILI AND VARIA AND YPOGEGRAMMENI ᾒ + 0x1F93, # GREEK SMALL LETTER ETA WITH DASIA AND VARIA AND YPOGEGRAMMENI ᾓ + 0x1F94, # GREEK SMALL LETTER ETA WITH PSILI AND OXIA AND YPOGEGRAMMENI ᾔ + 0x1F95, # GREEK SMALL LETTER ETA WITH DASIA AND OXIA AND YPOGEGRAMMENI ᾕ + 0x1F96, # GREEK SMALL LETTER ETA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI ᾖ + 0x1F97, # GREEK SMALL LETTER ETA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI ᾗ + 0x1FA0, # GREEK SMALL LETTER OMEGA WITH PSILI AND YPOGEGRAMMENI ᾠ + 0x1FA1, # GREEK SMALL LETTER OMEGA WITH DASIA AND YPOGEGRAMMENI ᾡ + 0x1FA2, # GREEK SMALL LETTER OMEGA WITH PSILI AND VARIA AND YPOGEGRAMMENI ᾢ + 0x1FA3, # GREEK SMALL LETTER OMEGA WITH DASIA AND VARIA AND YPOGEGRAMMENI ᾣ + 0x1FA4, # GREEK SMALL LETTER OMEGA WITH PSILI AND OXIA AND YPOGEGRAMMENI ᾤ + 0x1FA5, # GREEK SMALL LETTER OMEGA WITH DASIA AND OXIA AND YPOGEGRAMMENI ᾥ + 0x1FA6, # GREEK SMALL LETTER OMEGA WITH PSILI AND PERISPOMENI AND YPOGEGRAMMENI ᾦ + 0x1FA7, # GREEK SMALL LETTER OMEGA WITH DASIA AND PERISPOMENI AND YPOGEGRAMMENI ᾧ + 0x1FB0, # GREEK SMALL LETTER ALPHA WITH VRACHY ᾰ + 0x1FB1, # GREEK SMALL LETTER ALPHA WITH MACRON ᾱ + 0x1FB3, # GREEK SMALL LETTER ALPHA WITH YPOGEGRAMMENI ᾳ + 0x1FBE, # GREEK PROSGEGRAMMENI ι + 0x1FC3, # GREEK SMALL LETTER ETA WITH YPOGEGRAMMENI ῃ + 0x1FD0, # GREEK SMALL LETTER IOTA WITH VRACHY ῐ + 0x1FD1, # GREEK SMALL LETTER IOTA WITH MACRON ῑ + 0x1FE0, # GREEK SMALL LETTER UPSILON WITH VRACHY ῠ + 0x1FE1, # GREEK SMALL LETTER UPSILON WITH MACRON ῡ + 0x1FE5, # GREEK SMALL LETTER RHO WITH DASIA ῥ + 0x1FF3, # GREEK SMALL LETTER OMEGA WITH YPOGEGRAMMENI ῳ + 0x214E, # TURNED SMALL F ⅎ + 0x2170, # SMALL ROMAN NUMERAL ONE ⅰ + 0x2171, # SMALL ROMAN NUMERAL TWO ⅱ + 0x2172, # SMALL ROMAN NUMERAL THREE ⅲ + 0x2173, # SMALL ROMAN NUMERAL FOUR ⅳ + 0x2174, # SMALL ROMAN NUMERAL FIVE ⅴ + 0x2175, # SMALL ROMAN NUMERAL SIX ⅵ + 0x2176, # SMALL ROMAN NUMERAL SEVEN ⅶ + 0x2177, # SMALL ROMAN NUMERAL EIGHT ⅷ + 0x2178, # SMALL ROMAN NUMERAL NINE ⅸ + 0x2179, # SMALL ROMAN NUMERAL TEN ⅹ + 0x217A, # SMALL ROMAN NUMERAL ELEVEN ⅺ + 0x217B, # SMALL ROMAN NUMERAL TWELVE ⅻ + 0x217C, # SMALL ROMAN NUMERAL FIFTY ⅼ + 0x217D, # SMALL ROMAN NUMERAL ONE HUNDRED ⅽ + 0x217E, # SMALL ROMAN NUMERAL FIVE HUNDRED ⅾ + 0x217F, # SMALL ROMAN NUMERAL ONE THOUSAND ⅿ + 0x2184, # LATIN SMALL LETTER REVERSED C ↄ + 0x24D0, # CIRCLED LATIN SMALL LETTER A ⓐ + 0x24D1, # CIRCLED LATIN SMALL LETTER B ⓑ + 0x24D2, # CIRCLED LATIN SMALL LETTER C ⓒ + 0x24D3, # CIRCLED LATIN SMALL LETTER D ⓓ + 0x24D4, # CIRCLED LATIN SMALL LETTER E ⓔ + 0x24D5, # CIRCLED LATIN SMALL LETTER F ⓕ + 0x24D6, # CIRCLED LATIN SMALL LETTER G ⓖ + 0x24D7, # CIRCLED LATIN SMALL LETTER H ⓗ + 0x24D8, # CIRCLED LATIN SMALL LETTER I ⓘ + 0x24D9, # CIRCLED LATIN SMALL LETTER J ⓙ + 0x24DA, # CIRCLED LATIN SMALL LETTER K ⓚ + 0x24DB, # CIRCLED LATIN SMALL LETTER L ⓛ + 0x24DC, # CIRCLED LATIN SMALL LETTER M ⓜ + 0x24DD, # CIRCLED LATIN SMALL LETTER N ⓝ + 0x24DE, # CIRCLED LATIN SMALL LETTER O ⓞ + 0x24DF, # CIRCLED LATIN SMALL LETTER P ⓟ + 0x24E0, # CIRCLED LATIN SMALL LETTER Q ⓠ + 0x24E1, # CIRCLED LATIN SMALL LETTER R ⓡ + 0x24E2, # CIRCLED LATIN SMALL LETTER S ⓢ + 0x24E3, # CIRCLED LATIN SMALL LETTER T ⓣ + 0x24E4, # CIRCLED LATIN SMALL LETTER U ⓤ + 0x24E5, # CIRCLED LATIN SMALL LETTER V ⓥ + 0x24E6, # CIRCLED LATIN SMALL LETTER W ⓦ + 0x24E7, # CIRCLED LATIN SMALL LETTER X ⓧ + 0x24E8, # CIRCLED LATIN SMALL LETTER Y ⓨ + 0x24E9, # CIRCLED LATIN SMALL LETTER Z ⓩ + 0x2C30, # GLAGOLITIC SMALL LETTER AZU ⰰ + 0x2C31, # GLAGOLITIC SMALL LETTER BUKY ⰱ + 0x2C32, # GLAGOLITIC SMALL LETTER VEDE ⰲ + 0x2C33, # GLAGOLITIC SMALL LETTER GLAGOLI ⰳ + 0x2C34, # GLAGOLITIC SMALL LETTER DOBRO ⰴ + 0x2C35, # GLAGOLITIC SMALL LETTER YESTU ⰵ + 0x2C36, # GLAGOLITIC SMALL LETTER ZHIVETE ⰶ + 0x2C37, # GLAGOLITIC SMALL LETTER DZELO ⰷ + 0x2C38, # GLAGOLITIC SMALL LETTER ZEMLJA ⰸ + 0x2C39, # GLAGOLITIC SMALL LETTER IZHE ⰹ + 0x2C3A, # GLAGOLITIC SMALL LETTER INITIAL IZHE ⰺ + 0x2C3B, # GLAGOLITIC SMALL LETTER I ⰻ + 0x2C3C, # GLAGOLITIC SMALL LETTER DJERVI ⰼ + 0x2C3D, # GLAGOLITIC SMALL LETTER KAKO ⰽ + 0x2C3E, # GLAGOLITIC SMALL LETTER LJUDIJE ⰾ + 0x2C3F, # GLAGOLITIC SMALL LETTER MYSLITE ⰿ + 0x2C40, # GLAGOLITIC SMALL LETTER NASHI ⱀ + 0x2C41, # GLAGOLITIC SMALL LETTER ONU ⱁ + 0x2C42, # GLAGOLITIC SMALL LETTER POKOJI ⱂ + 0x2C43, # GLAGOLITIC SMALL LETTER RITSI ⱃ + 0x2C44, # GLAGOLITIC SMALL LETTER SLOVO ⱄ + 0x2C45, # GLAGOLITIC SMALL LETTER TVRIDO ⱅ + 0x2C46, # GLAGOLITIC SMALL LETTER UKU ⱆ + 0x2C47, # GLAGOLITIC SMALL LETTER FRITU ⱇ + 0x2C48, # GLAGOLITIC SMALL LETTER HERU ⱈ + 0x2C49, # GLAGOLITIC SMALL LETTER OTU ⱉ + 0x2C4A, # GLAGOLITIC SMALL LETTER PE ⱊ + 0x2C4B, # GLAGOLITIC SMALL LETTER SHTA ⱋ + 0x2C4C, # GLAGOLITIC SMALL LETTER TSI ⱌ + 0x2C4D, # GLAGOLITIC SMALL LETTER CHRIVI ⱍ + 0x2C4E, # GLAGOLITIC SMALL LETTER SHA ⱎ + 0x2C4F, # GLAGOLITIC SMALL LETTER YERU ⱏ + 0x2C50, # GLAGOLITIC SMALL LETTER YERI ⱐ + 0x2C51, # GLAGOLITIC SMALL LETTER YATI ⱑ + 0x2C52, # GLAGOLITIC SMALL LETTER SPIDERY HA ⱒ + 0x2C53, # GLAGOLITIC SMALL LETTER YU ⱓ + 0x2C54, # GLAGOLITIC SMALL LETTER SMALL YUS ⱔ + 0x2C55, # GLAGOLITIC SMALL LETTER SMALL YUS WITH TAIL ⱕ + 0x2C56, # GLAGOLITIC SMALL LETTER YO ⱖ + 0x2C57, # GLAGOLITIC SMALL LETTER IOTATED SMALL YUS ⱗ + 0x2C58, # GLAGOLITIC SMALL LETTER BIG YUS ⱘ + 0x2C59, # GLAGOLITIC SMALL LETTER IOTATED BIG YUS ⱙ + 0x2C5A, # GLAGOLITIC SMALL LETTER FITA ⱚ + 0x2C5B, # GLAGOLITIC SMALL LETTER IZHITSA ⱛ + 0x2C5C, # GLAGOLITIC SMALL LETTER SHTAPIC ⱜ + 0x2C5D, # GLAGOLITIC SMALL LETTER TROKUTASTI A ⱝ + 0x2C5E, # GLAGOLITIC SMALL LETTER LATINATE MYSLITE ⱞ + 0x2C5F, # GLAGOLITIC SMALL LETTER CAUDATE CHRIVI ⱟ + 0x2C61, # LATIN SMALL LETTER L WITH DOUBLE BAR ⱡ + 0x2C65, # LATIN SMALL LETTER A WITH STROKE ⱥ + 0x2C66, # LATIN SMALL LETTER T WITH DIAGONAL STROKE ⱦ + 0x2C68, # LATIN SMALL LETTER H WITH DESCENDER ⱨ + 0x2C6A, # LATIN SMALL LETTER K WITH DESCENDER ⱪ + 0x2C6C, # LATIN SMALL LETTER Z WITH DESCENDER ⱬ + 0x2C73, # LATIN SMALL LETTER W WITH HOOK ⱳ + 0x2C76, # LATIN SMALL LETTER HALF H ⱶ + 0x2C81, # COPTIC SMALL LETTER ALFA ⲁ + 0x2C83, # COPTIC SMALL LETTER VIDA ⲃ + 0x2C85, # COPTIC SMALL LETTER GAMMA ⲅ + 0x2C87, # COPTIC SMALL LETTER DALDA ⲇ + 0x2C89, # COPTIC SMALL LETTER EIE ⲉ + 0x2C8B, # COPTIC SMALL LETTER SOU ⲋ + 0x2C8D, # COPTIC SMALL LETTER ZATA ⲍ + 0x2C8F, # COPTIC SMALL LETTER HATE ⲏ + 0x2C91, # COPTIC SMALL LETTER THETHE ⲑ + 0x2C93, # COPTIC SMALL LETTER IAUDA ⲓ + 0x2C95, # COPTIC SMALL LETTER KAPA ⲕ + 0x2C97, # COPTIC SMALL LETTER LAULA ⲗ + 0x2C99, # COPTIC SMALL LETTER MI ⲙ + 0x2C9B, # COPTIC SMALL LETTER NI ⲛ + 0x2C9D, # COPTIC SMALL LETTER KSI ⲝ + 0x2C9F, # COPTIC SMALL LETTER O ⲟ + 0x2CA1, # COPTIC SMALL LETTER PI ⲡ + 0x2CA3, # COPTIC SMALL LETTER RO ⲣ + 0x2CA5, # COPTIC SMALL LETTER SIMA ⲥ + 0x2CA7, # COPTIC SMALL LETTER TAU ⲧ + 0x2CA9, # COPTIC SMALL LETTER UA ⲩ + 0x2CAB, # COPTIC SMALL LETTER FI ⲫ + 0x2CAD, # COPTIC SMALL LETTER KHI ⲭ + 0x2CAF, # COPTIC SMALL LETTER PSI ⲯ + 0x2CB1, # COPTIC SMALL LETTER OOU ⲱ + 0x2CB3, # COPTIC SMALL LETTER DIALECT-P ALEF ⲳ + 0x2CB5, # COPTIC SMALL LETTER OLD COPTIC AIN ⲵ + 0x2CB7, # COPTIC SMALL LETTER CRYPTOGRAMMIC EIE ⲷ + 0x2CB9, # COPTIC SMALL LETTER DIALECT-P KAPA ⲹ + 0x2CBB, # COPTIC SMALL LETTER DIALECT-P NI ⲻ + 0x2CBD, # COPTIC SMALL LETTER CRYPTOGRAMMIC NI ⲽ + 0x2CBF, # COPTIC SMALL LETTER OLD COPTIC OOU ⲿ + 0x2CC1, # COPTIC SMALL LETTER SAMPI ⳁ + 0x2CC3, # COPTIC SMALL LETTER CROSSED SHEI ⳃ + 0x2CC5, # COPTIC SMALL LETTER OLD COPTIC SHEI ⳅ + 0x2CC7, # COPTIC SMALL LETTER OLD COPTIC ESH ⳇ + 0x2CC9, # COPTIC SMALL LETTER AKHMIMIC KHEI ⳉ + 0x2CCB, # COPTIC SMALL LETTER DIALECT-P HORI ⳋ + 0x2CCD, # COPTIC SMALL LETTER OLD COPTIC HORI ⳍ + 0x2CCF, # COPTIC SMALL LETTER OLD COPTIC HA ⳏ + 0x2CD1, # COPTIC SMALL LETTER L-SHAPED HA ⳑ + 0x2CD3, # COPTIC SMALL LETTER OLD COPTIC HEI ⳓ + 0x2CD5, # COPTIC SMALL LETTER OLD COPTIC HAT ⳕ + 0x2CD7, # COPTIC SMALL LETTER OLD COPTIC GANGIA ⳗ + 0x2CD9, # COPTIC SMALL LETTER OLD COPTIC DJA ⳙ + 0x2CDB, # COPTIC SMALL LETTER OLD COPTIC SHIMA ⳛ + 0x2CDD, # COPTIC SMALL LETTER OLD NUBIAN SHIMA ⳝ + 0x2CDF, # COPTIC SMALL LETTER OLD NUBIAN NGI ⳟ + 0x2CE1, # COPTIC SMALL LETTER OLD NUBIAN NYI ⳡ + 0x2CE3, # COPTIC SMALL LETTER OLD NUBIAN WAU ⳣ + 0x2CEC, # COPTIC SMALL LETTER CRYPTOGRAMMIC SHEI ⳬ + 0x2CEE, # COPTIC SMALL LETTER CRYPTOGRAMMIC GANGIA ⳮ + 0x2CF3, # COPTIC SMALL LETTER BOHAIRIC KHEI ⳳ + 0x2D00, # GEORGIAN SMALL LETTER AN ⴀ + 0x2D01, # GEORGIAN SMALL LETTER BAN ⴁ + 0x2D02, # GEORGIAN SMALL LETTER GAN ⴂ + 0x2D03, # GEORGIAN SMALL LETTER DON ⴃ + 0x2D04, # GEORGIAN SMALL LETTER EN ⴄ + 0x2D05, # GEORGIAN SMALL LETTER VIN ⴅ + 0x2D06, # GEORGIAN SMALL LETTER ZEN ⴆ + 0x2D07, # GEORGIAN SMALL LETTER TAN ⴇ + 0x2D08, # GEORGIAN SMALL LETTER IN ⴈ + 0x2D09, # GEORGIAN SMALL LETTER KAN ⴉ + 0x2D0A, # GEORGIAN SMALL LETTER LAS ⴊ + 0x2D0B, # GEORGIAN SMALL LETTER MAN ⴋ + 0x2D0C, # GEORGIAN SMALL LETTER NAR ⴌ + 0x2D0D, # GEORGIAN SMALL LETTER ON ⴍ + 0x2D0E, # GEORGIAN SMALL LETTER PAR ⴎ + 0x2D0F, # GEORGIAN SMALL LETTER ZHAR ⴏ + 0x2D10, # GEORGIAN SMALL LETTER RAE ⴐ + 0x2D11, # GEORGIAN SMALL LETTER SAN ⴑ + 0x2D12, # GEORGIAN SMALL LETTER TAR ⴒ + 0x2D13, # GEORGIAN SMALL LETTER UN ⴓ + 0x2D14, # GEORGIAN SMALL LETTER PHAR ⴔ + 0x2D15, # GEORGIAN SMALL LETTER KHAR ⴕ + 0x2D16, # GEORGIAN SMALL LETTER GHAN ⴖ + 0x2D17, # GEORGIAN SMALL LETTER QAR ⴗ + 0x2D18, # GEORGIAN SMALL LETTER SHIN ⴘ + 0x2D19, # GEORGIAN SMALL LETTER CHIN ⴙ + 0x2D1A, # GEORGIAN SMALL LETTER CAN ⴚ + 0x2D1B, # GEORGIAN SMALL LETTER JIL ⴛ + 0x2D1C, # GEORGIAN SMALL LETTER CIL ⴜ + 0x2D1D, # GEORGIAN SMALL LETTER CHAR ⴝ + 0x2D1E, # GEORGIAN SMALL LETTER XAN ⴞ + 0x2D1F, # GEORGIAN SMALL LETTER JHAN ⴟ + 0x2D20, # GEORGIAN SMALL LETTER HAE ⴠ + 0x2D21, # GEORGIAN SMALL LETTER HE ⴡ + 0x2D22, # GEORGIAN SMALL LETTER HIE ⴢ + 0x2D23, # GEORGIAN SMALL LETTER WE ⴣ + 0x2D24, # GEORGIAN SMALL LETTER HAR ⴤ + 0x2D25, # GEORGIAN SMALL LETTER HOE ⴥ + 0x2D27, # GEORGIAN SMALL LETTER YN ⴧ + 0x2D2D, # GEORGIAN SMALL LETTER AEN ⴭ + 0xA641, # CYRILLIC SMALL LETTER ZEMLYA ꙁ + 0xA643, # CYRILLIC SMALL LETTER DZELO ꙃ + 0xA645, # CYRILLIC SMALL LETTER REVERSED DZE ꙅ + 0xA647, # CYRILLIC SMALL LETTER IOTA ꙇ + 0xA649, # CYRILLIC SMALL LETTER DJERV ꙉ + 0xA64B, # CYRILLIC SMALL LETTER MONOGRAPH UK ꙋ + 0xA64D, # CYRILLIC SMALL LETTER BROAD OMEGA ꙍ + 0xA64F, # CYRILLIC SMALL LETTER NEUTRAL YER ꙏ + 0xA651, # CYRILLIC SMALL LETTER YERU WITH BACK YER ꙑ + 0xA653, # CYRILLIC SMALL LETTER IOTIFIED YAT ꙓ + 0xA655, # CYRILLIC SMALL LETTER REVERSED YU ꙕ + 0xA657, # CYRILLIC SMALL LETTER IOTIFIED A ꙗ + 0xA659, # CYRILLIC SMALL LETTER CLOSED LITTLE YUS ꙙ + 0xA65B, # CYRILLIC SMALL LETTER BLENDED YUS ꙛ + 0xA65D, # CYRILLIC SMALL LETTER IOTIFIED CLOSED LITTLE YUS ꙝ + 0xA65F, # CYRILLIC SMALL LETTER YN ꙟ + 0xA661, # CYRILLIC SMALL LETTER REVERSED TSE ꙡ + 0xA663, # CYRILLIC SMALL LETTER SOFT DE ꙣ + 0xA665, # CYRILLIC SMALL LETTER SOFT EL ꙥ + 0xA667, # CYRILLIC SMALL LETTER SOFT EM ꙧ + 0xA669, # CYRILLIC SMALL LETTER MONOCULAR O ꙩ + 0xA66B, # CYRILLIC SMALL LETTER BINOCULAR O ꙫ + 0xA66D, # CYRILLIC SMALL LETTER DOUBLE MONOCULAR O ꙭ + 0xA681, # CYRILLIC SMALL LETTER DWE ꚁ + 0xA683, # CYRILLIC SMALL LETTER DZWE ꚃ + 0xA685, # CYRILLIC SMALL LETTER ZHWE ꚅ + 0xA687, # CYRILLIC SMALL LETTER CCHE ꚇ + 0xA689, # CYRILLIC SMALL LETTER DZZE ꚉ + 0xA68B, # CYRILLIC SMALL LETTER TE WITH MIDDLE HOOK ꚋ + 0xA68D, # CYRILLIC SMALL LETTER TWE ꚍ + 0xA68F, # CYRILLIC SMALL LETTER TSWE ꚏ + 0xA691, # CYRILLIC SMALL LETTER TSSE ꚑ + 0xA693, # CYRILLIC SMALL LETTER TCHE ꚓ + 0xA695, # CYRILLIC SMALL LETTER HWE ꚕ + 0xA697, # CYRILLIC SMALL LETTER SHWE ꚗ + 0xA699, # CYRILLIC SMALL LETTER DOUBLE O ꚙ + 0xA69B, # CYRILLIC SMALL LETTER CROSSED O ꚛ + 0xA723, # LATIN SMALL LETTER EGYPTOLOGICAL ALEF ꜣ + 0xA725, # LATIN SMALL LETTER EGYPTOLOGICAL AIN ꜥ + 0xA727, # LATIN SMALL LETTER HENG ꜧ + 0xA729, # LATIN SMALL LETTER TZ ꜩ + 0xA72B, # LATIN SMALL LETTER TRESILLO ꜫ + 0xA72D, # LATIN SMALL LETTER CUATRILLO ꜭ + 0xA72F, # LATIN SMALL LETTER CUATRILLO WITH COMMA ꜯ + 0xA733, # LATIN SMALL LETTER AA ꜳ + 0xA735, # LATIN SMALL LETTER AO ꜵ + 0xA737, # LATIN SMALL LETTER AU ꜷ + 0xA739, # LATIN SMALL LETTER AV ꜹ + 0xA73B, # LATIN SMALL LETTER AV WITH HORIZONTAL BAR ꜻ + 0xA73D, # LATIN SMALL LETTER AY ꜽ + 0xA73F, # LATIN SMALL LETTER REVERSED C WITH DOT ꜿ + 0xA741, # LATIN SMALL LETTER K WITH STROKE ꝁ + 0xA743, # LATIN SMALL LETTER K WITH DIAGONAL STROKE ꝃ + 0xA745, # LATIN SMALL LETTER K WITH STROKE AND DIAGONAL STROKE ꝅ + 0xA747, # LATIN SMALL LETTER BROKEN L ꝇ + 0xA749, # LATIN SMALL LETTER L WITH HIGH STROKE ꝉ + 0xA74B, # LATIN SMALL LETTER O WITH LONG STROKE OVERLAY ꝋ + 0xA74D, # LATIN SMALL LETTER O WITH LOOP ꝍ + 0xA74F, # LATIN SMALL LETTER OO ꝏ + 0xA751, # LATIN SMALL LETTER P WITH STROKE THROUGH DESCENDER ꝑ + 0xA753, # LATIN SMALL LETTER P WITH FLOURISH ꝓ + 0xA755, # LATIN SMALL LETTER P WITH SQUIRREL TAIL ꝕ + 0xA757, # LATIN SMALL LETTER Q WITH STROKE THROUGH DESCENDER ꝗ + 0xA759, # LATIN SMALL LETTER Q WITH DIAGONAL STROKE ꝙ + 0xA75B, # LATIN SMALL LETTER R ROTUNDA ꝛ + 0xA75D, # LATIN SMALL LETTER RUM ROTUNDA ꝝ + 0xA75F, # LATIN SMALL LETTER V WITH DIAGONAL STROKE ꝟ + 0xA761, # LATIN SMALL LETTER VY ꝡ + 0xA763, # LATIN SMALL LETTER VISIGOTHIC Z ꝣ + 0xA765, # LATIN SMALL LETTER THORN WITH STROKE ꝥ + 0xA767, # LATIN SMALL LETTER THORN WITH STROKE THROUGH DESCENDER ꝧ + 0xA769, # LATIN SMALL LETTER VEND ꝩ + 0xA76B, # LATIN SMALL LETTER ET ꝫ + 0xA76D, # LATIN SMALL LETTER IS ꝭ + 0xA76F, # LATIN SMALL LETTER CON ꝯ + 0xA77A, # LATIN SMALL LETTER INSULAR D ꝺ + 0xA77C, # LATIN SMALL LETTER INSULAR F ꝼ + 0xA77F, # LATIN SMALL LETTER TURNED INSULAR G ꝿ + 0xA781, # LATIN SMALL LETTER TURNED L ꞁ + 0xA783, # LATIN SMALL LETTER INSULAR R ꞃ + 0xA785, # LATIN SMALL LETTER INSULAR S ꞅ + 0xA787, # LATIN SMALL LETTER INSULAR T ꞇ + 0xA78C, # LATIN SMALL LETTER SALTILLO ꞌ + 0xA791, # LATIN SMALL LETTER N WITH DESCENDER ꞑ + 0xA793, # LATIN SMALL LETTER C WITH BAR ꞓ + 0xA794, # LATIN SMALL LETTER C WITH PALATAL HOOK ꞔ + 0xA797, # LATIN SMALL LETTER B WITH FLOURISH ꞗ + 0xA799, # LATIN SMALL LETTER F WITH STROKE ꞙ + 0xA79B, # LATIN SMALL LETTER VOLAPUK AE ꞛ + 0xA79D, # LATIN SMALL LETTER VOLAPUK OE ꞝ + 0xA79F, # LATIN SMALL LETTER VOLAPUK UE ꞟ + 0xA7A1, # LATIN SMALL LETTER G WITH OBLIQUE STROKE ꞡ + 0xA7A3, # LATIN SMALL LETTER K WITH OBLIQUE STROKE ꞣ + 0xA7A5, # LATIN SMALL LETTER N WITH OBLIQUE STROKE ꞥ + 0xA7A7, # LATIN SMALL LETTER R WITH OBLIQUE STROKE ꞧ + 0xA7A9, # LATIN SMALL LETTER S WITH OBLIQUE STROKE ꞩ + 0xA7B5, # LATIN SMALL LETTER BETA ꞵ + 0xA7B7, # LATIN SMALL LETTER OMEGA ꞷ + 0xA7B9, # LATIN SMALL LETTER U WITH STROKE ꞹ + 0xA7BB, # LATIN SMALL LETTER GLOTTAL A ꞻ + 0xA7BD, # LATIN SMALL LETTER GLOTTAL I ꞽ + 0xA7BF, # LATIN SMALL LETTER GLOTTAL U ꞿ + 0xA7C1, # LATIN SMALL LETTER OLD POLISH O ꟁ + 0xA7C3, # LATIN SMALL LETTER ANGLICANA W ꟃ + 0xA7C8, # LATIN SMALL LETTER D WITH SHORT STROKE OVERLAY ꟈ + 0xA7CA, # LATIN SMALL LETTER S WITH SHORT STROKE OVERLAY ꟊ + 0xA7D1, # LATIN SMALL LETTER CLOSED INSULAR G ꟑ + 0xA7D7, # LATIN SMALL LETTER MIDDLE SCOTS S ꟗ + 0xA7D9, # LATIN SMALL LETTER SIGMOID S ꟙ + 0xA7F6, # LATIN SMALL LETTER REVERSED HALF H ꟶ + 0xAB53, # LATIN SMALL LETTER CHI ꭓ + 0xAB70, # CHEROKEE SMALL LETTER A ꭰ + 0xAB71, # CHEROKEE SMALL LETTER E ꭱ + 0xAB72, # CHEROKEE SMALL LETTER I ꭲ + 0xAB73, # CHEROKEE SMALL LETTER O ꭳ + 0xAB74, # CHEROKEE SMALL LETTER U ꭴ + 0xAB75, # CHEROKEE SMALL LETTER V ꭵ + 0xAB76, # CHEROKEE SMALL LETTER GA ꭶ + 0xAB77, # CHEROKEE SMALL LETTER KA ꭷ + 0xAB78, # CHEROKEE SMALL LETTER GE ꭸ + 0xAB79, # CHEROKEE SMALL LETTER GI ꭹ + 0xAB7A, # CHEROKEE SMALL LETTER GO ꭺ + 0xAB7B, # CHEROKEE SMALL LETTER GU ꭻ + 0xAB7C, # CHEROKEE SMALL LETTER GV ꭼ + 0xAB7D, # CHEROKEE SMALL LETTER HA ꭽ + 0xAB7E, # CHEROKEE SMALL LETTER HE ꭾ + 0xAB7F, # CHEROKEE SMALL LETTER HI ꭿ + 0xAB80, # CHEROKEE SMALL LETTER HO ꮀ + 0xAB81, # CHEROKEE SMALL LETTER HU ꮁ + 0xAB82, # CHEROKEE SMALL LETTER HV ꮂ + 0xAB83, # CHEROKEE SMALL LETTER LA ꮃ + 0xAB84, # CHEROKEE SMALL LETTER LE ꮄ + 0xAB85, # CHEROKEE SMALL LETTER LI ꮅ + 0xAB86, # CHEROKEE SMALL LETTER LO ꮆ + 0xAB87, # CHEROKEE SMALL LETTER LU ꮇ + 0xAB88, # CHEROKEE SMALL LETTER LV ꮈ + 0xAB89, # CHEROKEE SMALL LETTER MA ꮉ + 0xAB8A, # CHEROKEE SMALL LETTER ME ꮊ + 0xAB8B, # CHEROKEE SMALL LETTER MI ꮋ + 0xAB8C, # CHEROKEE SMALL LETTER MO ꮌ + 0xAB8D, # CHEROKEE SMALL LETTER MU ꮍ + 0xAB8E, # CHEROKEE SMALL LETTER NA ꮎ + 0xAB8F, # CHEROKEE SMALL LETTER HNA ꮏ + 0xAB90, # CHEROKEE SMALL LETTER NAH ꮐ + 0xAB91, # CHEROKEE SMALL LETTER NE ꮑ + 0xAB92, # CHEROKEE SMALL LETTER NI ꮒ + 0xAB93, # CHEROKEE SMALL LETTER NO ꮓ + 0xAB94, # CHEROKEE SMALL LETTER NU ꮔ + 0xAB95, # CHEROKEE SMALL LETTER NV ꮕ + 0xAB96, # CHEROKEE SMALL LETTER QUA ꮖ + 0xAB97, # CHEROKEE SMALL LETTER QUE ꮗ + 0xAB98, # CHEROKEE SMALL LETTER QUI ꮘ + 0xAB99, # CHEROKEE SMALL LETTER QUO ꮙ + 0xAB9A, # CHEROKEE SMALL LETTER QUU ꮚ + 0xAB9B, # CHEROKEE SMALL LETTER QUV ꮛ + 0xAB9C, # CHEROKEE SMALL LETTER SA ꮜ + 0xAB9D, # CHEROKEE SMALL LETTER S ꮝ + 0xAB9E, # CHEROKEE SMALL LETTER SE ꮞ + 0xAB9F, # CHEROKEE SMALL LETTER SI ꮟ + 0xABA0, # CHEROKEE SMALL LETTER SO ꮠ + 0xABA1, # CHEROKEE SMALL LETTER SU ꮡ + 0xABA2, # CHEROKEE SMALL LETTER SV ꮢ + 0xABA3, # CHEROKEE SMALL LETTER DA ꮣ + 0xABA4, # CHEROKEE SMALL LETTER TA ꮤ + 0xABA5, # CHEROKEE SMALL LETTER DE ꮥ + 0xABA6, # CHEROKEE SMALL LETTER TE ꮦ + 0xABA7, # CHEROKEE SMALL LETTER DI ꮧ + 0xABA8, # CHEROKEE SMALL LETTER TI ꮨ + 0xABA9, # CHEROKEE SMALL LETTER DO ꮩ + 0xABAA, # CHEROKEE SMALL LETTER DU ꮪ + 0xABAB, # CHEROKEE SMALL LETTER DV ꮫ + 0xABAC, # CHEROKEE SMALL LETTER DLA ꮬ + 0xABAD, # CHEROKEE SMALL LETTER TLA ꮭ + 0xABAE, # CHEROKEE SMALL LETTER TLE ꮮ + 0xABAF, # CHEROKEE SMALL LETTER TLI ꮯ + 0xABB0, # CHEROKEE SMALL LETTER TLO ꮰ + 0xABB1, # CHEROKEE SMALL LETTER TLU ꮱ + 0xABB2, # CHEROKEE SMALL LETTER TLV ꮲ + 0xABB3, # CHEROKEE SMALL LETTER TSA ꮳ + 0xABB4, # CHEROKEE SMALL LETTER TSE ꮴ + 0xABB5, # CHEROKEE SMALL LETTER TSI ꮵ + 0xABB6, # CHEROKEE SMALL LETTER TSO ꮶ + 0xABB7, # CHEROKEE SMALL LETTER TSU ꮷ + 0xABB8, # CHEROKEE SMALL LETTER TSV ꮸ + 0xABB9, # CHEROKEE SMALL LETTER WA ꮹ + 0xABBA, # CHEROKEE SMALL LETTER WE ꮺ + 0xABBB, # CHEROKEE SMALL LETTER WI ꮻ + 0xABBC, # CHEROKEE SMALL LETTER WO ꮼ + 0xABBD, # CHEROKEE SMALL LETTER WU ꮽ + 0xABBE, # CHEROKEE SMALL LETTER WV ꮾ + 0xABBF, # CHEROKEE SMALL LETTER YA ꮿ + 0xFF41, # FULLWIDTH LATIN SMALL LETTER A a + 0xFF42, # FULLWIDTH LATIN SMALL LETTER B b + 0xFF43, # FULLWIDTH LATIN SMALL LETTER C c + 0xFF44, # FULLWIDTH LATIN SMALL LETTER D d + 0xFF45, # FULLWIDTH LATIN SMALL LETTER E e + 0xFF46, # FULLWIDTH LATIN SMALL LETTER F f + 0xFF47, # FULLWIDTH LATIN SMALL LETTER G g + 0xFF48, # FULLWIDTH LATIN SMALL LETTER H h + 0xFF49, # FULLWIDTH LATIN SMALL LETTER I i + 0xFF4A, # FULLWIDTH LATIN SMALL LETTER J j + 0xFF4B, # FULLWIDTH LATIN SMALL LETTER K k + 0xFF4C, # FULLWIDTH LATIN SMALL LETTER L l + 0xFF4D, # FULLWIDTH LATIN SMALL LETTER M m + 0xFF4E, # FULLWIDTH LATIN SMALL LETTER N n + 0xFF4F, # FULLWIDTH LATIN SMALL LETTER O o + 0xFF50, # FULLWIDTH LATIN SMALL LETTER P p + 0xFF51, # FULLWIDTH LATIN SMALL LETTER Q q + 0xFF52, # FULLWIDTH LATIN SMALL LETTER R r + 0xFF53, # FULLWIDTH LATIN SMALL LETTER S s + 0xFF54, # FULLWIDTH LATIN SMALL LETTER T t + 0xFF55, # FULLWIDTH LATIN SMALL LETTER U u + 0xFF56, # FULLWIDTH LATIN SMALL LETTER V v + 0xFF57, # FULLWIDTH LATIN SMALL LETTER W w + 0xFF58, # FULLWIDTH LATIN SMALL LETTER X x + 0xFF59, # FULLWIDTH LATIN SMALL LETTER Y y + 0xFF5A, # FULLWIDTH LATIN SMALL LETTER Z z + 0x10428, # DESERET SMALL LETTER LONG I 𐐨 + 0x10429, # DESERET SMALL LETTER LONG E 𐐩 + 0x1042A, # DESERET SMALL LETTER LONG A 𐐪 + 0x1042B, # DESERET SMALL LETTER LONG AH 𐐫 + 0x1042C, # DESERET SMALL LETTER LONG O 𐐬 + 0x1042D, # DESERET SMALL LETTER LONG OO 𐐭 + 0x1042E, # DESERET SMALL LETTER SHORT I 𐐮 + 0x1042F, # DESERET SMALL LETTER SHORT E 𐐯 + 0x10430, # DESERET SMALL LETTER SHORT A 𐐰 + 0x10431, # DESERET SMALL LETTER SHORT AH 𐐱 + 0x10432, # DESERET SMALL LETTER SHORT O 𐐲 + 0x10433, # DESERET SMALL LETTER SHORT OO 𐐳 + 0x10434, # DESERET SMALL LETTER AY 𐐴 + 0x10435, # DESERET SMALL LETTER OW 𐐵 + 0x10436, # DESERET SMALL LETTER WU 𐐶 + 0x10437, # DESERET SMALL LETTER YEE 𐐷 + 0x10438, # DESERET SMALL LETTER H 𐐸 + 0x10439, # DESERET SMALL LETTER PEE 𐐹 + 0x1043A, # DESERET SMALL LETTER BEE 𐐺 + 0x1043B, # DESERET SMALL LETTER TEE 𐐻 + 0x1043C, # DESERET SMALL LETTER DEE 𐐼 + 0x1043D, # DESERET SMALL LETTER CHEE 𐐽 + 0x1043E, # DESERET SMALL LETTER JEE 𐐾 + 0x1043F, # DESERET SMALL LETTER KAY 𐐿 + 0x10440, # DESERET SMALL LETTER GAY 𐑀 + 0x10441, # DESERET SMALL LETTER EF 𐑁 + 0x10442, # DESERET SMALL LETTER VEE 𐑂 + 0x10443, # DESERET SMALL LETTER ETH 𐑃 + 0x10444, # DESERET SMALL LETTER THEE 𐑄 + 0x10445, # DESERET SMALL LETTER ES 𐑅 + 0x10446, # DESERET SMALL LETTER ZEE 𐑆 + 0x10447, # DESERET SMALL LETTER ESH 𐑇 + 0x10448, # DESERET SMALL LETTER ZHEE 𐑈 + 0x10449, # DESERET SMALL LETTER ER 𐑉 + 0x1044A, # DESERET SMALL LETTER EL 𐑊 + 0x1044B, # DESERET SMALL LETTER EM 𐑋 + 0x1044C, # DESERET SMALL LETTER EN 𐑌 + 0x1044D, # DESERET SMALL LETTER ENG 𐑍 + 0x1044E, # DESERET SMALL LETTER OI 𐑎 + 0x1044F, # DESERET SMALL LETTER EW 𐑏 + 0x104D8, # OSAGE SMALL LETTER A 𐓘 + 0x104D9, # OSAGE SMALL LETTER AI 𐓙 + 0x104DA, # OSAGE SMALL LETTER AIN 𐓚 + 0x104DB, # OSAGE SMALL LETTER AH 𐓛 + 0x104DC, # OSAGE SMALL LETTER BRA 𐓜 + 0x104DD, # OSAGE SMALL LETTER CHA 𐓝 + 0x104DE, # OSAGE SMALL LETTER EHCHA 𐓞 + 0x104DF, # OSAGE SMALL LETTER E 𐓟 + 0x104E0, # OSAGE SMALL LETTER EIN 𐓠 + 0x104E1, # OSAGE SMALL LETTER HA 𐓡 + 0x104E2, # OSAGE SMALL LETTER HYA 𐓢 + 0x104E3, # OSAGE SMALL LETTER I 𐓣 + 0x104E4, # OSAGE SMALL LETTER KA 𐓤 + 0x104E5, # OSAGE SMALL LETTER EHKA 𐓥 + 0x104E6, # OSAGE SMALL LETTER KYA 𐓦 + 0x104E7, # OSAGE SMALL LETTER LA 𐓧 + 0x104E8, # OSAGE SMALL LETTER MA 𐓨 + 0x104E9, # OSAGE SMALL LETTER NA 𐓩 + 0x104EA, # OSAGE SMALL LETTER O 𐓪 + 0x104EB, # OSAGE SMALL LETTER OIN 𐓫 + 0x104EC, # OSAGE SMALL LETTER PA 𐓬 + 0x104ED, # OSAGE SMALL LETTER EHPA 𐓭 + 0x104EE, # OSAGE SMALL LETTER SA 𐓮 + 0x104EF, # OSAGE SMALL LETTER SHA 𐓯 + 0x104F0, # OSAGE SMALL LETTER TA 𐓰 + 0x104F1, # OSAGE SMALL LETTER EHTA 𐓱 + 0x104F2, # OSAGE SMALL LETTER TSA 𐓲 + 0x104F3, # OSAGE SMALL LETTER EHTSA 𐓳 + 0x104F4, # OSAGE SMALL LETTER TSHA 𐓴 + 0x104F5, # OSAGE SMALL LETTER DHA 𐓵 + 0x104F6, # OSAGE SMALL LETTER U 𐓶 + 0x104F7, # OSAGE SMALL LETTER WA 𐓷 + 0x104F8, # OSAGE SMALL LETTER KHA 𐓸 + 0x104F9, # OSAGE SMALL LETTER GHA 𐓹 + 0x104FA, # OSAGE SMALL LETTER ZA 𐓺 + 0x104FB, # OSAGE SMALL LETTER ZHA 𐓻 + 0x10597, # VITHKUQI SMALL LETTER A 𐖗 + 0x10598, # VITHKUQI SMALL LETTER BBE 𐖘 + 0x10599, # VITHKUQI SMALL LETTER BE 𐖙 + 0x1059A, # VITHKUQI SMALL LETTER CE 𐖚 + 0x1059B, # VITHKUQI SMALL LETTER CHE 𐖛 + 0x1059C, # VITHKUQI SMALL LETTER DE 𐖜 + 0x1059D, # VITHKUQI SMALL LETTER DHE 𐖝 + 0x1059E, # VITHKUQI SMALL LETTER EI 𐖞 + 0x1059F, # VITHKUQI SMALL LETTER E 𐖟 + 0x105A0, # VITHKUQI SMALL LETTER FE 𐖠 + 0x105A1, # VITHKUQI SMALL LETTER GA 𐖡 + 0x105A3, # VITHKUQI SMALL LETTER HA 𐖣 + 0x105A4, # VITHKUQI SMALL LETTER HHA 𐖤 + 0x105A5, # VITHKUQI SMALL LETTER I 𐖥 + 0x105A6, # VITHKUQI SMALL LETTER IJE 𐖦 + 0x105A7, # VITHKUQI SMALL LETTER JE 𐖧 + 0x105A8, # VITHKUQI SMALL LETTER KA 𐖨 + 0x105A9, # VITHKUQI SMALL LETTER LA 𐖩 + 0x105AA, # VITHKUQI SMALL LETTER LLA 𐖪 + 0x105AB, # VITHKUQI SMALL LETTER ME 𐖫 + 0x105AC, # VITHKUQI SMALL LETTER NE 𐖬 + 0x105AD, # VITHKUQI SMALL LETTER NJE 𐖭 + 0x105AE, # VITHKUQI SMALL LETTER O 𐖮 + 0x105AF, # VITHKUQI SMALL LETTER PE 𐖯 + 0x105B0, # VITHKUQI SMALL LETTER QA 𐖰 + 0x105B1, # VITHKUQI SMALL LETTER RE 𐖱 + 0x105B3, # VITHKUQI SMALL LETTER SE 𐖳 + 0x105B4, # VITHKUQI SMALL LETTER SHE 𐖴 + 0x105B5, # VITHKUQI SMALL LETTER TE 𐖵 + 0x105B6, # VITHKUQI SMALL LETTER THE 𐖶 + 0x105B7, # VITHKUQI SMALL LETTER U 𐖷 + 0x105B8, # VITHKUQI SMALL LETTER VE 𐖸 + 0x105B9, # VITHKUQI SMALL LETTER XE 𐖹 + 0x105BB, # VITHKUQI SMALL LETTER Y 𐖻 + 0x105BC, # VITHKUQI SMALL LETTER ZE 𐖼 + 0x10CC0, # OLD HUNGARIAN SMALL LETTER A 𐳀 + 0x10CC1, # OLD HUNGARIAN SMALL LETTER AA 𐳁 + 0x10CC2, # OLD HUNGARIAN SMALL LETTER EB 𐳂 + 0x10CC3, # OLD HUNGARIAN SMALL LETTER AMB 𐳃 + 0x10CC4, # OLD HUNGARIAN SMALL LETTER EC 𐳄 + 0x10CC5, # OLD HUNGARIAN SMALL LETTER ENC 𐳅 + 0x10CC6, # OLD HUNGARIAN SMALL LETTER ECS 𐳆 + 0x10CC7, # OLD HUNGARIAN SMALL LETTER ED 𐳇 + 0x10CC8, # OLD HUNGARIAN SMALL LETTER AND 𐳈 + 0x10CC9, # OLD HUNGARIAN SMALL LETTER E 𐳉 + 0x10CCA, # OLD HUNGARIAN SMALL LETTER CLOSE E 𐳊 + 0x10CCB, # OLD HUNGARIAN SMALL LETTER EE 𐳋 + 0x10CCC, # OLD HUNGARIAN SMALL LETTER EF 𐳌 + 0x10CCD, # OLD HUNGARIAN SMALL LETTER EG 𐳍 + 0x10CCE, # OLD HUNGARIAN SMALL LETTER EGY 𐳎 + 0x10CCF, # OLD HUNGARIAN SMALL LETTER EH 𐳏 + 0x10CD0, # OLD HUNGARIAN SMALL LETTER I 𐳐 + 0x10CD1, # OLD HUNGARIAN SMALL LETTER II 𐳑 + 0x10CD2, # OLD HUNGARIAN SMALL LETTER EJ 𐳒 + 0x10CD3, # OLD HUNGARIAN SMALL LETTER EK 𐳓 + 0x10CD4, # OLD HUNGARIAN SMALL LETTER AK 𐳔 + 0x10CD5, # OLD HUNGARIAN SMALL LETTER UNK 𐳕 + 0x10CD6, # OLD HUNGARIAN SMALL LETTER EL 𐳖 + 0x10CD7, # OLD HUNGARIAN SMALL LETTER ELY 𐳗 + 0x10CD8, # OLD HUNGARIAN SMALL LETTER EM 𐳘 + 0x10CD9, # OLD HUNGARIAN SMALL LETTER EN 𐳙 + 0x10CDA, # OLD HUNGARIAN SMALL LETTER ENY 𐳚 + 0x10CDB, # OLD HUNGARIAN SMALL LETTER O 𐳛 + 0x10CDC, # OLD HUNGARIAN SMALL LETTER OO 𐳜 + 0x10CDD, # OLD HUNGARIAN SMALL LETTER NIKOLSBURG OE 𐳝 + 0x10CDE, # OLD HUNGARIAN SMALL LETTER RUDIMENTA OE 𐳞 + 0x10CDF, # OLD HUNGARIAN SMALL LETTER OEE 𐳟 + 0x10CE0, # OLD HUNGARIAN SMALL LETTER EP 𐳠 + 0x10CE1, # OLD HUNGARIAN SMALL LETTER EMP 𐳡 + 0x10CE2, # OLD HUNGARIAN SMALL LETTER ER 𐳢 + 0x10CE3, # OLD HUNGARIAN SMALL LETTER SHORT ER 𐳣 + 0x10CE4, # OLD HUNGARIAN SMALL LETTER ES 𐳤 + 0x10CE5, # OLD HUNGARIAN SMALL LETTER ESZ 𐳥 + 0x10CE6, # OLD HUNGARIAN SMALL LETTER ET 𐳦 + 0x10CE7, # OLD HUNGARIAN SMALL LETTER ENT 𐳧 + 0x10CE8, # OLD HUNGARIAN SMALL LETTER ETY 𐳨 + 0x10CE9, # OLD HUNGARIAN SMALL LETTER ECH 𐳩 + 0x10CEA, # OLD HUNGARIAN SMALL LETTER U 𐳪 + 0x10CEB, # OLD HUNGARIAN SMALL LETTER UU 𐳫 + 0x10CEC, # OLD HUNGARIAN SMALL LETTER NIKOLSBURG UE 𐳬 + 0x10CED, # OLD HUNGARIAN SMALL LETTER RUDIMENTA UE 𐳭 + 0x10CEE, # OLD HUNGARIAN SMALL LETTER EV 𐳮 + 0x10CEF, # OLD HUNGARIAN SMALL LETTER EZ 𐳯 + 0x10CF0, # OLD HUNGARIAN SMALL LETTER EZS 𐳰 + 0x10CF1, # OLD HUNGARIAN SMALL LETTER ENT-SHAPED SIGN 𐳱 + 0x10CF2, # OLD HUNGARIAN SMALL LETTER US 𐳲 + 0x118C0, # WARANG CITI SMALL LETTER NGAA 𑣀 + 0x118C1, # WARANG CITI SMALL LETTER A 𑣁 + 0x118C2, # WARANG CITI SMALL LETTER WI 𑣂 + 0x118C3, # WARANG CITI SMALL LETTER YU 𑣃 + 0x118C4, # WARANG CITI SMALL LETTER YA 𑣄 + 0x118C5, # WARANG CITI SMALL LETTER YO 𑣅 + 0x118C6, # WARANG CITI SMALL LETTER II 𑣆 + 0x118C7, # WARANG CITI SMALL LETTER UU 𑣇 + 0x118C8, # WARANG CITI SMALL LETTER E 𑣈 + 0x118C9, # WARANG CITI SMALL LETTER O 𑣉 + 0x118CA, # WARANG CITI SMALL LETTER ANG 𑣊 + 0x118CB, # WARANG CITI SMALL LETTER GA 𑣋 + 0x118CC, # WARANG CITI SMALL LETTER KO 𑣌 + 0x118CD, # WARANG CITI SMALL LETTER ENY 𑣍 + 0x118CE, # WARANG CITI SMALL LETTER YUJ 𑣎 + 0x118CF, # WARANG CITI SMALL LETTER UC 𑣏 + 0x118D0, # WARANG CITI SMALL LETTER ENN 𑣐 + 0x118D1, # WARANG CITI SMALL LETTER ODD 𑣑 + 0x118D2, # WARANG CITI SMALL LETTER TTE 𑣒 + 0x118D3, # WARANG CITI SMALL LETTER NUNG 𑣓 + 0x118D4, # WARANG CITI SMALL LETTER DA 𑣔 + 0x118D5, # WARANG CITI SMALL LETTER AT 𑣕 + 0x118D6, # WARANG CITI SMALL LETTER AM 𑣖 + 0x118D7, # WARANG CITI SMALL LETTER BU 𑣗 + 0x118D8, # WARANG CITI SMALL LETTER PU 𑣘 + 0x118D9, # WARANG CITI SMALL LETTER HIYO 𑣙 + 0x118DA, # WARANG CITI SMALL LETTER HOLO 𑣚 + 0x118DB, # WARANG CITI SMALL LETTER HORR 𑣛 + 0x118DC, # WARANG CITI SMALL LETTER HAR 𑣜 + 0x118DD, # WARANG CITI SMALL LETTER SSUU 𑣝 + 0x118DE, # WARANG CITI SMALL LETTER SII 𑣞 + 0x118DF, # WARANG CITI SMALL LETTER VIYO 𑣟 + 0x16E60, # MEDEFAIDRIN SMALL LETTER M 𖹠 + 0x16E61, # MEDEFAIDRIN SMALL LETTER S 𖹡 + 0x16E62, # MEDEFAIDRIN SMALL LETTER V 𖹢 + 0x16E63, # MEDEFAIDRIN SMALL LETTER W 𖹣 + 0x16E64, # MEDEFAIDRIN SMALL LETTER ATIU 𖹤 + 0x16E65, # MEDEFAIDRIN SMALL LETTER Z 𖹥 + 0x16E66, # MEDEFAIDRIN SMALL LETTER KP 𖹦 + 0x16E67, # MEDEFAIDRIN SMALL LETTER P 𖹧 + 0x16E68, # MEDEFAIDRIN SMALL LETTER T 𖹨 + 0x16E69, # MEDEFAIDRIN SMALL LETTER G 𖹩 + 0x16E6A, # MEDEFAIDRIN SMALL LETTER F 𖹪 + 0x16E6B, # MEDEFAIDRIN SMALL LETTER I 𖹫 + 0x16E6C, # MEDEFAIDRIN SMALL LETTER K 𖹬 + 0x16E6D, # MEDEFAIDRIN SMALL LETTER A 𖹭 + 0x16E6E, # MEDEFAIDRIN SMALL LETTER J 𖹮 + 0x16E6F, # MEDEFAIDRIN SMALL LETTER E 𖹯 + 0x16E70, # MEDEFAIDRIN SMALL LETTER B 𖹰 + 0x16E71, # MEDEFAIDRIN SMALL LETTER C 𖹱 + 0x16E72, # MEDEFAIDRIN SMALL LETTER U 𖹲 + 0x16E73, # MEDEFAIDRIN SMALL LETTER YU 𖹳 + 0x16E74, # MEDEFAIDRIN SMALL LETTER L 𖹴 + 0x16E75, # MEDEFAIDRIN SMALL LETTER Q 𖹵 + 0x16E76, # MEDEFAIDRIN SMALL LETTER HP 𖹶 + 0x16E77, # MEDEFAIDRIN SMALL LETTER NY 𖹷 + 0x16E78, # MEDEFAIDRIN SMALL LETTER X 𖹸 + 0x16E79, # MEDEFAIDRIN SMALL LETTER D 𖹹 + 0x16E7A, # MEDEFAIDRIN SMALL LETTER OE 𖹺 + 0x16E7B, # MEDEFAIDRIN SMALL LETTER N 𖹻 + 0x16E7C, # MEDEFAIDRIN SMALL LETTER R 𖹼 + 0x16E7D, # MEDEFAIDRIN SMALL LETTER O 𖹽 + 0x16E7E, # MEDEFAIDRIN SMALL LETTER AI 𖹾 + 0x16E7F, # MEDEFAIDRIN SMALL LETTER Y 𖹿 + 0x1E922, # ADLAM SMALL LETTER ALIF 𞤢 + 0x1E923, # ADLAM SMALL LETTER DAALI 𞤣 + 0x1E924, # ADLAM SMALL LETTER LAAM 𞤤 + 0x1E925, # ADLAM SMALL LETTER MIIM 𞤥 + 0x1E926, # ADLAM SMALL LETTER BA 𞤦 + 0x1E927, # ADLAM SMALL LETTER SINNYIIYHE 𞤧 + 0x1E928, # ADLAM SMALL LETTER PE 𞤨 + 0x1E929, # ADLAM SMALL LETTER BHE 𞤩 + 0x1E92A, # ADLAM SMALL LETTER RA 𞤪 + 0x1E92B, # ADLAM SMALL LETTER E 𞤫 + 0x1E92C, # ADLAM SMALL LETTER FA 𞤬 + 0x1E92D, # ADLAM SMALL LETTER I 𞤭 + 0x1E92E, # ADLAM SMALL LETTER O 𞤮 + 0x1E92F, # ADLAM SMALL LETTER DHA 𞤯 + 0x1E930, # ADLAM SMALL LETTER YHE 𞤰 + 0x1E931, # ADLAM SMALL LETTER WAW 𞤱 + 0x1E932, # ADLAM SMALL LETTER NUN 𞤲 + 0x1E933, # ADLAM SMALL LETTER KAF 𞤳 + 0x1E934, # ADLAM SMALL LETTER YA 𞤴 + 0x1E935, # ADLAM SMALL LETTER U 𞤵 + 0x1E936, # ADLAM SMALL LETTER JIIM 𞤶 + 0x1E937, # ADLAM SMALL LETTER CHI 𞤷 + 0x1E938, # ADLAM SMALL LETTER HA 𞤸 + 0x1E939, # ADLAM SMALL LETTER QAAF 𞤹 + 0x1E93A, # ADLAM SMALL LETTER GA 𞤺 + 0x1E93B, # ADLAM SMALL LETTER NYA 𞤻 + 0x1E93C, # ADLAM SMALL LETTER TU 𞤼 + 0x1E93D, # ADLAM SMALL LETTER NHA 𞤽 + 0x1E93E, # ADLAM SMALL LETTER VA 𞤾 + 0x1E93F, # ADLAM SMALL LETTER KHA 𞤿 + 0x1E940, # ADLAM SMALL LETTER GBE 𞥀 + 0x1E941, # ADLAM SMALL LETTER ZAL 𞥁 + 0x1E942, # ADLAM SMALL LETTER KPO 𞥂 + 0x1E943, # ADLAM SMALL LETTER SHA 𞥃 +) +alias has_lowercase_mapping = List[UInt32, hint_trivial_type=True]( + 0x0041, # LATIN CAPITAL LETTER A A + 0x0042, # LATIN CAPITAL LETTER B B + 0x0043, # LATIN CAPITAL LETTER C C + 0x0044, # LATIN CAPITAL LETTER D D + 0x0045, # LATIN CAPITAL LETTER E E + 0x0046, # LATIN CAPITAL LETTER F F + 0x0047, # LATIN CAPITAL LETTER G G + 0x0048, # LATIN CAPITAL LETTER H H + 0x0049, # LATIN CAPITAL LETTER I I + 0x004A, # LATIN CAPITAL LETTER J J + 0x004B, # LATIN CAPITAL LETTER K K + 0x004C, # LATIN CAPITAL LETTER L L + 0x004D, # LATIN CAPITAL LETTER M M + 0x004E, # LATIN CAPITAL LETTER N N + 0x004F, # LATIN CAPITAL LETTER O O + 0x0050, # LATIN CAPITAL LETTER P P + 0x0051, # LATIN CAPITAL LETTER Q Q + 0x0052, # LATIN CAPITAL LETTER R R + 0x0053, # LATIN CAPITAL LETTER S S + 0x0054, # LATIN CAPITAL LETTER T T + 0x0055, # LATIN CAPITAL LETTER U U + 0x0056, # LATIN CAPITAL LETTER V V + 0x0057, # LATIN CAPITAL LETTER W W + 0x0058, # LATIN CAPITAL LETTER X X + 0x0059, # LATIN CAPITAL LETTER Y Y + 0x005A, # LATIN CAPITAL LETTER Z Z + 0x00C0, # LATIN CAPITAL LETTER A WITH GRAVE À + 0x00C1, # LATIN CAPITAL LETTER A WITH ACUTE Á + 0x00C2, # LATIN CAPITAL LETTER A WITH CIRCUMFLEX  + 0x00C3, # LATIN CAPITAL LETTER A WITH TILDE à + 0x00C4, # LATIN CAPITAL LETTER A WITH DIAERESIS Ä + 0x00C5, # LATIN CAPITAL LETTER A WITH RING ABOVE Å + 0x00C6, # LATIN CAPITAL LETTER AE Æ + 0x00C7, # LATIN CAPITAL LETTER C WITH CEDILLA Ç + 0x00C8, # LATIN CAPITAL LETTER E WITH GRAVE È + 0x00C9, # LATIN CAPITAL LETTER E WITH ACUTE É + 0x00CA, # LATIN CAPITAL LETTER E WITH CIRCUMFLEX Ê + 0x00CB, # LATIN CAPITAL LETTER E WITH DIAERESIS Ë + 0x00CC, # LATIN CAPITAL LETTER I WITH GRAVE Ì + 0x00CD, # LATIN CAPITAL LETTER I WITH ACUTE Í + 0x00CE, # LATIN CAPITAL LETTER I WITH CIRCUMFLEX Î + 0x00CF, # LATIN CAPITAL LETTER I WITH DIAERESIS Ï + 0x00D0, # LATIN CAPITAL LETTER ETH Ð + 0x00D1, # LATIN CAPITAL LETTER N WITH TILDE Ñ + 0x00D2, # LATIN CAPITAL LETTER O WITH GRAVE Ò + 0x00D3, # LATIN CAPITAL LETTER O WITH ACUTE Ó + 0x00D4, # LATIN CAPITAL LETTER O WITH CIRCUMFLEX Ô + 0x00D5, # LATIN CAPITAL LETTER O WITH TILDE Õ + 0x00D6, # LATIN CAPITAL LETTER O WITH DIAERESIS Ö + 0x00D8, # LATIN CAPITAL LETTER O WITH STROKE Ø + 0x00D9, # LATIN CAPITAL LETTER U WITH GRAVE Ù + 0x00DA, # LATIN CAPITAL LETTER U WITH ACUTE Ú + 0x00DB, # LATIN CAPITAL LETTER U WITH CIRCUMFLEX Û + 0x00DC, # LATIN CAPITAL LETTER U WITH DIAERESIS Ü + 0x00DD, # LATIN CAPITAL LETTER Y WITH ACUTE Ý + 0x00DE, # LATIN CAPITAL LETTER THORN Þ + 0x0100, # LATIN CAPITAL LETTER A WITH MACRON Ā + 0x0102, # LATIN CAPITAL LETTER A WITH BREVE Ă + 0x0104, # LATIN CAPITAL LETTER A WITH OGONEK Ą + 0x0106, # LATIN CAPITAL LETTER C WITH ACUTE Ć + 0x0108, # LATIN CAPITAL LETTER C WITH CIRCUMFLEX Ĉ + 0x010A, # LATIN CAPITAL LETTER C WITH DOT ABOVE Ċ + 0x010C, # LATIN CAPITAL LETTER C WITH CARON Č + 0x010E, # LATIN CAPITAL LETTER D WITH CARON Ď + 0x0110, # LATIN CAPITAL LETTER D WITH STROKE Đ + 0x0112, # LATIN CAPITAL LETTER E WITH MACRON Ē + 0x0114, # LATIN CAPITAL LETTER E WITH BREVE Ĕ + 0x0116, # LATIN CAPITAL LETTER E WITH DOT ABOVE Ė + 0x0118, # LATIN CAPITAL LETTER E WITH OGONEK Ę + 0x011A, # LATIN CAPITAL LETTER E WITH CARON Ě + 0x011C, # LATIN CAPITAL LETTER G WITH CIRCUMFLEX Ĝ + 0x011E, # LATIN CAPITAL LETTER G WITH BREVE Ğ + 0x0120, # LATIN CAPITAL LETTER G WITH DOT ABOVE Ġ + 0x0122, # LATIN CAPITAL LETTER G WITH CEDILLA Ģ + 0x0124, # LATIN CAPITAL LETTER H WITH CIRCUMFLEX Ĥ + 0x0126, # LATIN CAPITAL LETTER H WITH STROKE Ħ + 0x0128, # LATIN CAPITAL LETTER I WITH TILDE Ĩ + 0x012A, # LATIN CAPITAL LETTER I WITH MACRON Ī + 0x012C, # LATIN CAPITAL LETTER I WITH BREVE Ĭ + 0x012E, # LATIN CAPITAL LETTER I WITH OGONEK Į + 0x0130, # LATIN CAPITAL LETTER I WITH DOT ABOVE İ + 0x0132, # LATIN CAPITAL LIGATURE IJ IJ + 0x0134, # LATIN CAPITAL LETTER J WITH CIRCUMFLEX Ĵ + 0x0136, # LATIN CAPITAL LETTER K WITH CEDILLA Ķ + 0x0139, # LATIN CAPITAL LETTER L WITH ACUTE Ĺ + 0x013B, # LATIN CAPITAL LETTER L WITH CEDILLA Ļ + 0x013D, # LATIN CAPITAL LETTER L WITH CARON Ľ + 0x013F, # LATIN CAPITAL LETTER L WITH MIDDLE DOT Ŀ + 0x0141, # LATIN CAPITAL LETTER L WITH STROKE Ł + 0x0143, # LATIN CAPITAL LETTER N WITH ACUTE Ń + 0x0145, # LATIN CAPITAL LETTER N WITH CEDILLA Ņ + 0x0147, # LATIN CAPITAL LETTER N WITH CARON Ň + 0x014A, # LATIN CAPITAL LETTER ENG Ŋ + 0x014C, # LATIN CAPITAL LETTER O WITH MACRON Ō + 0x014E, # LATIN CAPITAL LETTER O WITH BREVE Ŏ + 0x0150, # LATIN CAPITAL LETTER O WITH DOUBLE ACUTE Ő + 0x0152, # LATIN CAPITAL LIGATURE OE Œ + 0x0154, # LATIN CAPITAL LETTER R WITH ACUTE Ŕ + 0x0156, # LATIN CAPITAL LETTER R WITH CEDILLA Ŗ + 0x0158, # LATIN CAPITAL LETTER R WITH CARON Ř + 0x015A, # LATIN CAPITAL LETTER S WITH ACUTE Ś + 0x015C, # LATIN CAPITAL LETTER S WITH CIRCUMFLEX Ŝ + 0x015E, # LATIN CAPITAL LETTER S WITH CEDILLA Ş + 0x0160, # LATIN CAPITAL LETTER S WITH CARON Š + 0x0162, # LATIN CAPITAL LETTER T WITH CEDILLA Ţ + 0x0164, # LATIN CAPITAL LETTER T WITH CARON Ť + 0x0166, # LATIN CAPITAL LETTER T WITH STROKE Ŧ + 0x0168, # LATIN CAPITAL LETTER U WITH TILDE Ũ + 0x016A, # LATIN CAPITAL LETTER U WITH MACRON Ū + 0x016C, # LATIN CAPITAL LETTER U WITH BREVE Ŭ + 0x016E, # LATIN CAPITAL LETTER U WITH RING ABOVE Ů + 0x0170, # LATIN CAPITAL LETTER U WITH DOUBLE ACUTE Ű + 0x0172, # LATIN CAPITAL LETTER U WITH OGONEK Ų + 0x0174, # LATIN CAPITAL LETTER W WITH CIRCUMFLEX Ŵ + 0x0176, # LATIN CAPITAL LETTER Y WITH CIRCUMFLEX Ŷ + 0x0178, # LATIN CAPITAL LETTER Y WITH DIAERESIS Ÿ + 0x0179, # LATIN CAPITAL LETTER Z WITH ACUTE Ź + 0x017B, # LATIN CAPITAL LETTER Z WITH DOT ABOVE Ż + 0x017D, # LATIN CAPITAL LETTER Z WITH CARON Ž + 0x0181, # LATIN CAPITAL LETTER B WITH HOOK Ɓ + 0x0182, # LATIN CAPITAL LETTER B WITH TOPBAR Ƃ + 0x0184, # LATIN CAPITAL LETTER TONE SIX Ƅ + 0x0186, # LATIN CAPITAL LETTER OPEN O Ɔ + 0x0187, # LATIN CAPITAL LETTER C WITH HOOK Ƈ + 0x0189, # LATIN CAPITAL LETTER AFRICAN D Ɖ + 0x018A, # LATIN CAPITAL LETTER D WITH HOOK Ɗ + 0x018B, # LATIN CAPITAL LETTER D WITH TOPBAR Ƌ + 0x018E, # LATIN CAPITAL LETTER REVERSED E Ǝ + 0x018F, # LATIN CAPITAL LETTER SCHWA Ə + 0x0190, # LATIN CAPITAL LETTER OPEN E Ɛ + 0x0191, # LATIN CAPITAL LETTER F WITH HOOK Ƒ + 0x0193, # LATIN CAPITAL LETTER G WITH HOOK Ɠ + 0x0194, # LATIN CAPITAL LETTER GAMMA Ɣ + 0x0196, # LATIN CAPITAL LETTER IOTA Ɩ + 0x0197, # LATIN CAPITAL LETTER I WITH STROKE Ɨ + 0x0198, # LATIN CAPITAL LETTER K WITH HOOK Ƙ + 0x019C, # LATIN CAPITAL LETTER TURNED M Ɯ + 0x019D, # LATIN CAPITAL LETTER N WITH LEFT HOOK Ɲ + 0x019F, # LATIN CAPITAL LETTER O WITH MIDDLE TILDE Ɵ + 0x01A0, # LATIN CAPITAL LETTER O WITH HORN Ơ + 0x01A2, # LATIN CAPITAL LETTER OI Ƣ + 0x01A4, # LATIN CAPITAL LETTER P WITH HOOK Ƥ + 0x01A6, # LATIN LETTER YR Ʀ + 0x01A7, # LATIN CAPITAL LETTER TONE TWO Ƨ + 0x01A9, # LATIN CAPITAL LETTER ESH Ʃ + 0x01AC, # LATIN CAPITAL LETTER T WITH HOOK Ƭ + 0x01AE, # LATIN CAPITAL LETTER T WITH RETROFLEX HOOK Ʈ + 0x01AF, # LATIN CAPITAL LETTER U WITH HORN Ư + 0x01B1, # LATIN CAPITAL LETTER UPSILON Ʊ + 0x01B2, # LATIN CAPITAL LETTER V WITH HOOK Ʋ + 0x01B3, # LATIN CAPITAL LETTER Y WITH HOOK Ƴ + 0x01B5, # LATIN CAPITAL LETTER Z WITH STROKE Ƶ + 0x01B7, # LATIN CAPITAL LETTER EZH Ʒ + 0x01B8, # LATIN CAPITAL LETTER EZH REVERSED Ƹ + 0x01BC, # LATIN CAPITAL LETTER TONE FIVE Ƽ + 0x01C4, # LATIN CAPITAL LETTER DZ WITH CARON DŽ + 0x01C5, # LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON Dž + 0x01C7, # LATIN CAPITAL LETTER LJ LJ + 0x01C8, # LATIN CAPITAL LETTER L WITH SMALL LETTER J Lj + 0x01CA, # LATIN CAPITAL LETTER NJ NJ + 0x01CB, # LATIN CAPITAL LETTER N WITH SMALL LETTER J Nj + 0x01CD, # LATIN CAPITAL LETTER A WITH CARON Ǎ + 0x01CF, # LATIN CAPITAL LETTER I WITH CARON Ǐ + 0x01D1, # LATIN CAPITAL LETTER O WITH CARON Ǒ + 0x01D3, # LATIN CAPITAL LETTER U WITH CARON Ǔ + 0x01D5, # LATIN CAPITAL LETTER U WITH DIAERESIS AND MACRON Ǖ + 0x01D7, # LATIN CAPITAL LETTER U WITH DIAERESIS AND ACUTE Ǘ + 0x01D9, # LATIN CAPITAL LETTER U WITH DIAERESIS AND CARON Ǚ + 0x01DB, # LATIN CAPITAL LETTER U WITH DIAERESIS AND GRAVE Ǜ + 0x01DE, # LATIN CAPITAL LETTER A WITH DIAERESIS AND MACRON Ǟ + 0x01E0, # LATIN CAPITAL LETTER A WITH DOT ABOVE AND MACRON Ǡ + 0x01E2, # LATIN CAPITAL LETTER AE WITH MACRON Ǣ + 0x01E4, # LATIN CAPITAL LETTER G WITH STROKE Ǥ + 0x01E6, # LATIN CAPITAL LETTER G WITH CARON Ǧ + 0x01E8, # LATIN CAPITAL LETTER K WITH CARON Ǩ + 0x01EA, # LATIN CAPITAL LETTER O WITH OGONEK Ǫ + 0x01EC, # LATIN CAPITAL LETTER O WITH OGONEK AND MACRON Ǭ + 0x01EE, # LATIN CAPITAL LETTER EZH WITH CARON Ǯ + 0x01F1, # LATIN CAPITAL LETTER DZ DZ + 0x01F2, # LATIN CAPITAL LETTER D WITH SMALL LETTER Z Dz + 0x01F4, # LATIN CAPITAL LETTER G WITH ACUTE Ǵ + 0x01F6, # LATIN CAPITAL LETTER HWAIR Ƕ + 0x01F7, # LATIN CAPITAL LETTER WYNN Ƿ + 0x01F8, # LATIN CAPITAL LETTER N WITH GRAVE Ǹ + 0x01FA, # LATIN CAPITAL LETTER A WITH RING ABOVE AND ACUTE Ǻ + 0x01FC, # LATIN CAPITAL LETTER AE WITH ACUTE Ǽ + 0x01FE, # LATIN CAPITAL LETTER O WITH STROKE AND ACUTE Ǿ + 0x0200, # LATIN CAPITAL LETTER A WITH DOUBLE GRAVE Ȁ + 0x0202, # LATIN CAPITAL LETTER A WITH INVERTED BREVE Ȃ + 0x0204, # LATIN CAPITAL LETTER E WITH DOUBLE GRAVE Ȅ + 0x0206, # LATIN CAPITAL LETTER E WITH INVERTED BREVE Ȇ + 0x0208, # LATIN CAPITAL LETTER I WITH DOUBLE GRAVE Ȉ + 0x020A, # LATIN CAPITAL LETTER I WITH INVERTED BREVE Ȋ + 0x020C, # LATIN CAPITAL LETTER O WITH DOUBLE GRAVE Ȍ + 0x020E, # LATIN CAPITAL LETTER O WITH INVERTED BREVE Ȏ + 0x0210, # LATIN CAPITAL LETTER R WITH DOUBLE GRAVE Ȑ + 0x0212, # LATIN CAPITAL LETTER R WITH INVERTED BREVE Ȓ + 0x0214, # LATIN CAPITAL LETTER U WITH DOUBLE GRAVE Ȕ + 0x0216, # LATIN CAPITAL LETTER U WITH INVERTED BREVE Ȗ + 0x0218, # LATIN CAPITAL LETTER S WITH COMMA BELOW Ș + 0x021A, # LATIN CAPITAL LETTER T WITH COMMA BELOW Ț + 0x021C, # LATIN CAPITAL LETTER YOGH Ȝ + 0x021E, # LATIN CAPITAL LETTER H WITH CARON Ȟ + 0x0220, # LATIN CAPITAL LETTER N WITH LONG RIGHT LEG Ƞ + 0x0222, # LATIN CAPITAL LETTER OU Ȣ + 0x0224, # LATIN CAPITAL LETTER Z WITH HOOK Ȥ + 0x0226, # LATIN CAPITAL LETTER A WITH DOT ABOVE Ȧ + 0x0228, # LATIN CAPITAL LETTER E WITH CEDILLA Ȩ + 0x022A, # LATIN CAPITAL LETTER O WITH DIAERESIS AND MACRON Ȫ + 0x022C, # LATIN CAPITAL LETTER O WITH TILDE AND MACRON Ȭ + 0x022E, # LATIN CAPITAL LETTER O WITH DOT ABOVE Ȯ + 0x0230, # LATIN CAPITAL LETTER O WITH DOT ABOVE AND MACRON Ȱ + 0x0232, # LATIN CAPITAL LETTER Y WITH MACRON Ȳ + 0x023A, # LATIN CAPITAL LETTER A WITH STROKE Ⱥ + 0x023B, # LATIN CAPITAL LETTER C WITH STROKE Ȼ + 0x023D, # LATIN CAPITAL LETTER L WITH BAR Ƚ + 0x023E, # LATIN CAPITAL LETTER T WITH DIAGONAL STROKE Ⱦ + 0x0241, # LATIN CAPITAL LETTER GLOTTAL STOP Ɂ + 0x0243, # LATIN CAPITAL LETTER B WITH STROKE Ƀ + 0x0244, # LATIN CAPITAL LETTER U BAR Ʉ + 0x0245, # LATIN CAPITAL LETTER TURNED V Ʌ + 0x0246, # LATIN CAPITAL LETTER E WITH STROKE Ɇ + 0x0248, # LATIN CAPITAL LETTER J WITH STROKE Ɉ + 0x024A, # LATIN CAPITAL LETTER SMALL Q WITH HOOK TAIL Ɋ + 0x024C, # LATIN CAPITAL LETTER R WITH STROKE Ɍ + 0x024E, # LATIN CAPITAL LETTER Y WITH STROKE Ɏ + 0x0370, # GREEK CAPITAL LETTER HETA Ͱ + 0x0372, # GREEK CAPITAL LETTER ARCHAIC SAMPI Ͳ + 0x0376, # GREEK CAPITAL LETTER PAMPHYLIAN DIGAMMA Ͷ + 0x037F, # GREEK CAPITAL LETTER YOT Ϳ + 0x0386, # GREEK CAPITAL LETTER ALPHA WITH TONOS Ά + 0x0388, # GREEK CAPITAL LETTER EPSILON WITH TONOS Έ + 0x0389, # GREEK CAPITAL LETTER ETA WITH TONOS Ή + 0x038A, # GREEK CAPITAL LETTER IOTA WITH TONOS Ί + 0x038C, # GREEK CAPITAL LETTER OMICRON WITH TONOS Ό + 0x038E, # GREEK CAPITAL LETTER UPSILON WITH TONOS Ύ + 0x038F, # GREEK CAPITAL LETTER OMEGA WITH TONOS Ώ + 0x0391, # GREEK CAPITAL LETTER ALPHA Α + 0x0392, # GREEK CAPITAL LETTER BETA Β + 0x0393, # GREEK CAPITAL LETTER GAMMA Γ + 0x0394, # GREEK CAPITAL LETTER DELTA Δ + 0x0395, # GREEK CAPITAL LETTER EPSILON Ε + 0x0396, # GREEK CAPITAL LETTER ZETA Ζ + 0x0397, # GREEK CAPITAL LETTER ETA Η + 0x0398, # GREEK CAPITAL LETTER THETA Θ + 0x0399, # GREEK CAPITAL LETTER IOTA Ι + 0x039A, # GREEK CAPITAL LETTER KAPPA Κ + 0x039B, # GREEK CAPITAL LETTER LAMDA Λ + 0x039C, # GREEK CAPITAL LETTER MU Μ + 0x039D, # GREEK CAPITAL LETTER NU Ν + 0x039E, # GREEK CAPITAL LETTER XI Ξ + 0x039F, # GREEK CAPITAL LETTER OMICRON Ο + 0x03A0, # GREEK CAPITAL LETTER PI Π + 0x03A1, # GREEK CAPITAL LETTER RHO Ρ + 0x03A3, # GREEK CAPITAL LETTER SIGMA Σ + 0x03A4, # GREEK CAPITAL LETTER TAU Τ + 0x03A5, # GREEK CAPITAL LETTER UPSILON Υ + 0x03A6, # GREEK CAPITAL LETTER PHI Φ + 0x03A7, # GREEK CAPITAL LETTER CHI Χ + 0x03A8, # GREEK CAPITAL LETTER PSI Ψ + 0x03A9, # GREEK CAPITAL LETTER OMEGA Ω + 0x03AA, # GREEK CAPITAL LETTER IOTA WITH DIALYTIKA Ϊ + 0x03AB, # GREEK CAPITAL LETTER UPSILON WITH DIALYTIKA Ϋ + 0x03CF, # GREEK CAPITAL KAI SYMBOL Ϗ + 0x03D8, # GREEK LETTER ARCHAIC KOPPA Ϙ + 0x03DA, # GREEK LETTER STIGMA Ϛ + 0x03DC, # GREEK LETTER DIGAMMA Ϝ + 0x03DE, # GREEK LETTER KOPPA Ϟ + 0x03E0, # GREEK LETTER SAMPI Ϡ + 0x03E2, # COPTIC CAPITAL LETTER SHEI Ϣ + 0x03E4, # COPTIC CAPITAL LETTER FEI Ϥ + 0x03E6, # COPTIC CAPITAL LETTER KHEI Ϧ + 0x03E8, # COPTIC CAPITAL LETTER HORI Ϩ + 0x03EA, # COPTIC CAPITAL LETTER GANGIA Ϫ + 0x03EC, # COPTIC CAPITAL LETTER SHIMA Ϭ + 0x03EE, # COPTIC CAPITAL LETTER DEI Ϯ + 0x03F4, # GREEK CAPITAL THETA SYMBOL ϴ + 0x03F7, # GREEK CAPITAL LETTER SHO Ϸ + 0x03F9, # GREEK CAPITAL LUNATE SIGMA SYMBOL Ϲ + 0x03FA, # GREEK CAPITAL LETTER SAN Ϻ + 0x03FD, # GREEK CAPITAL REVERSED LUNATE SIGMA SYMBOL Ͻ + 0x03FE, # GREEK CAPITAL DOTTED LUNATE SIGMA SYMBOL Ͼ + 0x03FF, # GREEK CAPITAL REVERSED DOTTED LUNATE SIGMA SYMBOL Ͽ + 0x0400, # CYRILLIC CAPITAL LETTER IE WITH GRAVE Ѐ + 0x0401, # CYRILLIC CAPITAL LETTER IO Ё + 0x0402, # CYRILLIC CAPITAL LETTER DJE Ђ + 0x0403, # CYRILLIC CAPITAL LETTER GJE Ѓ + 0x0404, # CYRILLIC CAPITAL LETTER UKRAINIAN IE Є + 0x0405, # CYRILLIC CAPITAL LETTER DZE Ѕ + 0x0406, # CYRILLIC CAPITAL LETTER BYELORUSSIAN-UKRAINIAN I І + 0x0407, # CYRILLIC CAPITAL LETTER YI Ї + 0x0408, # CYRILLIC CAPITAL LETTER JE Ј + 0x0409, # CYRILLIC CAPITAL LETTER LJE Љ + 0x040A, # CYRILLIC CAPITAL LETTER NJE Њ + 0x040B, # CYRILLIC CAPITAL LETTER TSHE Ћ + 0x040C, # CYRILLIC CAPITAL LETTER KJE Ќ + 0x040D, # CYRILLIC CAPITAL LETTER I WITH GRAVE Ѝ + 0x040E, # CYRILLIC CAPITAL LETTER SHORT U Ў + 0x040F, # CYRILLIC CAPITAL LETTER DZHE Џ + 0x0410, # CYRILLIC CAPITAL LETTER A А + 0x0411, # CYRILLIC CAPITAL LETTER BE Б + 0x0412, # CYRILLIC CAPITAL LETTER VE В + 0x0413, # CYRILLIC CAPITAL LETTER GHE Г + 0x0414, # CYRILLIC CAPITAL LETTER DE Д + 0x0415, # CYRILLIC CAPITAL LETTER IE Е + 0x0416, # CYRILLIC CAPITAL LETTER ZHE Ж + 0x0417, # CYRILLIC CAPITAL LETTER ZE З + 0x0418, # CYRILLIC CAPITAL LETTER I И + 0x0419, # CYRILLIC CAPITAL LETTER SHORT I Й + 0x041A, # CYRILLIC CAPITAL LETTER KA К + 0x041B, # CYRILLIC CAPITAL LETTER EL Л + 0x041C, # CYRILLIC CAPITAL LETTER EM М + 0x041D, # CYRILLIC CAPITAL LETTER EN Н + 0x041E, # CYRILLIC CAPITAL LETTER O О + 0x041F, # CYRILLIC CAPITAL LETTER PE П + 0x0420, # CYRILLIC CAPITAL LETTER ER Р + 0x0421, # CYRILLIC CAPITAL LETTER ES С + 0x0422, # CYRILLIC CAPITAL LETTER TE Т + 0x0423, # CYRILLIC CAPITAL LETTER U У + 0x0424, # CYRILLIC CAPITAL LETTER EF Ф + 0x0425, # CYRILLIC CAPITAL LETTER HA Х + 0x0426, # CYRILLIC CAPITAL LETTER TSE Ц + 0x0427, # CYRILLIC CAPITAL LETTER CHE Ч + 0x0428, # CYRILLIC CAPITAL LETTER SHA Ш + 0x0429, # CYRILLIC CAPITAL LETTER SHCHA Щ + 0x042A, # CYRILLIC CAPITAL LETTER HARD SIGN Ъ + 0x042B, # CYRILLIC CAPITAL LETTER YERU Ы + 0x042C, # CYRILLIC CAPITAL LETTER SOFT SIGN Ь + 0x042D, # CYRILLIC CAPITAL LETTER E Э + 0x042E, # CYRILLIC CAPITAL LETTER YU Ю + 0x042F, # CYRILLIC CAPITAL LETTER YA Я + 0x0460, # CYRILLIC CAPITAL LETTER OMEGA Ѡ + 0x0462, # CYRILLIC CAPITAL LETTER YAT Ѣ + 0x0464, # CYRILLIC CAPITAL LETTER IOTIFIED E Ѥ + 0x0466, # CYRILLIC CAPITAL LETTER LITTLE YUS Ѧ + 0x0468, # CYRILLIC CAPITAL LETTER IOTIFIED LITTLE YUS Ѩ + 0x046A, # CYRILLIC CAPITAL LETTER BIG YUS Ѫ + 0x046C, # CYRILLIC CAPITAL LETTER IOTIFIED BIG YUS Ѭ + 0x046E, # CYRILLIC CAPITAL LETTER KSI Ѯ + 0x0470, # CYRILLIC CAPITAL LETTER PSI Ѱ + 0x0472, # CYRILLIC CAPITAL LETTER FITA Ѳ + 0x0474, # CYRILLIC CAPITAL LETTER IZHITSA Ѵ + 0x0476, # CYRILLIC CAPITAL LETTER IZHITSA WITH DOUBLE GRAVE ACCENT Ѷ + 0x0478, # CYRILLIC CAPITAL LETTER UK Ѹ + 0x047A, # CYRILLIC CAPITAL LETTER ROUND OMEGA Ѻ + 0x047C, # CYRILLIC CAPITAL LETTER OMEGA WITH TITLO Ѽ + 0x047E, # CYRILLIC CAPITAL LETTER OT Ѿ + 0x0480, # CYRILLIC CAPITAL LETTER KOPPA Ҁ + 0x048A, # CYRILLIC CAPITAL LETTER SHORT I WITH TAIL Ҋ + 0x048C, # CYRILLIC CAPITAL LETTER SEMISOFT SIGN Ҍ + 0x048E, # CYRILLIC CAPITAL LETTER ER WITH TICK Ҏ + 0x0490, # CYRILLIC CAPITAL LETTER GHE WITH UPTURN Ґ + 0x0492, # CYRILLIC CAPITAL LETTER GHE WITH STROKE Ғ + 0x0494, # CYRILLIC CAPITAL LETTER GHE WITH MIDDLE HOOK Ҕ + 0x0496, # CYRILLIC CAPITAL LETTER ZHE WITH DESCENDER Җ + 0x0498, # CYRILLIC CAPITAL LETTER ZE WITH DESCENDER Ҙ + 0x049A, # CYRILLIC CAPITAL LETTER KA WITH DESCENDER Қ + 0x049C, # CYRILLIC CAPITAL LETTER KA WITH VERTICAL STROKE Ҝ + 0x049E, # CYRILLIC CAPITAL LETTER KA WITH STROKE Ҟ + 0x04A0, # CYRILLIC CAPITAL LETTER BASHKIR KA Ҡ + 0x04A2, # CYRILLIC CAPITAL LETTER EN WITH DESCENDER Ң + 0x04A4, # CYRILLIC CAPITAL LIGATURE EN GHE Ҥ + 0x04A6, # CYRILLIC CAPITAL LETTER PE WITH MIDDLE HOOK Ҧ + 0x04A8, # CYRILLIC CAPITAL LETTER ABKHASIAN HA Ҩ + 0x04AA, # CYRILLIC CAPITAL LETTER ES WITH DESCENDER Ҫ + 0x04AC, # CYRILLIC CAPITAL LETTER TE WITH DESCENDER Ҭ + 0x04AE, # CYRILLIC CAPITAL LETTER STRAIGHT U Ү + 0x04B0, # CYRILLIC CAPITAL LETTER STRAIGHT U WITH STROKE Ұ + 0x04B2, # CYRILLIC CAPITAL LETTER HA WITH DESCENDER Ҳ + 0x04B4, # CYRILLIC CAPITAL LIGATURE TE TSE Ҵ + 0x04B6, # CYRILLIC CAPITAL LETTER CHE WITH DESCENDER Ҷ + 0x04B8, # CYRILLIC CAPITAL LETTER CHE WITH VERTICAL STROKE Ҹ + 0x04BA, # CYRILLIC CAPITAL LETTER SHHA Һ + 0x04BC, # CYRILLIC CAPITAL LETTER ABKHASIAN CHE Ҽ + 0x04BE, # CYRILLIC CAPITAL LETTER ABKHASIAN CHE WITH DESCENDER Ҿ + 0x04C0, # CYRILLIC LETTER PALOCHKA Ӏ + 0x04C1, # CYRILLIC CAPITAL LETTER ZHE WITH BREVE Ӂ + 0x04C3, # CYRILLIC CAPITAL LETTER KA WITH HOOK Ӄ + 0x04C5, # CYRILLIC CAPITAL LETTER EL WITH TAIL Ӆ + 0x04C7, # CYRILLIC CAPITAL LETTER EN WITH HOOK Ӈ + 0x04C9, # CYRILLIC CAPITAL LETTER EN WITH TAIL Ӊ + 0x04CB, # CYRILLIC CAPITAL LETTER KHAKASSIAN CHE Ӌ + 0x04CD, # CYRILLIC CAPITAL LETTER EM WITH TAIL Ӎ + 0x04D0, # CYRILLIC CAPITAL LETTER A WITH BREVE Ӑ + 0x04D2, # CYRILLIC CAPITAL LETTER A WITH DIAERESIS Ӓ + 0x04D4, # CYRILLIC CAPITAL LIGATURE A IE Ӕ + 0x04D6, # CYRILLIC CAPITAL LETTER IE WITH BREVE Ӗ + 0x04D8, # CYRILLIC CAPITAL LETTER SCHWA Ә + 0x04DA, # CYRILLIC CAPITAL LETTER SCHWA WITH DIAERESIS Ӛ + 0x04DC, # CYRILLIC CAPITAL LETTER ZHE WITH DIAERESIS Ӝ + 0x04DE, # CYRILLIC CAPITAL LETTER ZE WITH DIAERESIS Ӟ + 0x04E0, # CYRILLIC CAPITAL LETTER ABKHASIAN DZE Ӡ + 0x04E2, # CYRILLIC CAPITAL LETTER I WITH MACRON Ӣ + 0x04E4, # CYRILLIC CAPITAL LETTER I WITH DIAERESIS Ӥ + 0x04E6, # CYRILLIC CAPITAL LETTER O WITH DIAERESIS Ӧ + 0x04E8, # CYRILLIC CAPITAL LETTER BARRED O Ө + 0x04EA, # CYRILLIC CAPITAL LETTER BARRED O WITH DIAERESIS Ӫ + 0x04EC, # CYRILLIC CAPITAL LETTER E WITH DIAERESIS Ӭ + 0x04EE, # CYRILLIC CAPITAL LETTER U WITH MACRON Ӯ + 0x04F0, # CYRILLIC CAPITAL LETTER U WITH DIAERESIS Ӱ + 0x04F2, # CYRILLIC CAPITAL LETTER U WITH DOUBLE ACUTE Ӳ + 0x04F4, # CYRILLIC CAPITAL LETTER CHE WITH DIAERESIS Ӵ + 0x04F6, # CYRILLIC CAPITAL LETTER GHE WITH DESCENDER Ӷ + 0x04F8, # CYRILLIC CAPITAL LETTER YERU WITH DIAERESIS Ӹ + 0x04FA, # CYRILLIC CAPITAL LETTER GHE WITH STROKE AND HOOK Ӻ + 0x04FC, # CYRILLIC CAPITAL LETTER HA WITH HOOK Ӽ + 0x04FE, # CYRILLIC CAPITAL LETTER HA WITH STROKE Ӿ + 0x0500, # CYRILLIC CAPITAL LETTER KOMI DE Ԁ + 0x0502, # CYRILLIC CAPITAL LETTER KOMI DJE Ԃ + 0x0504, # CYRILLIC CAPITAL LETTER KOMI ZJE Ԅ + 0x0506, # CYRILLIC CAPITAL LETTER KOMI DZJE Ԇ + 0x0508, # CYRILLIC CAPITAL LETTER KOMI LJE Ԉ + 0x050A, # CYRILLIC CAPITAL LETTER KOMI NJE Ԋ + 0x050C, # CYRILLIC CAPITAL LETTER KOMI SJE Ԍ + 0x050E, # CYRILLIC CAPITAL LETTER KOMI TJE Ԏ + 0x0510, # CYRILLIC CAPITAL LETTER REVERSED ZE Ԑ + 0x0512, # CYRILLIC CAPITAL LETTER EL WITH HOOK Ԓ + 0x0514, # CYRILLIC CAPITAL LETTER LHA Ԕ + 0x0516, # CYRILLIC CAPITAL LETTER RHA Ԗ + 0x0518, # CYRILLIC CAPITAL LETTER YAE Ԙ + 0x051A, # CYRILLIC CAPITAL LETTER QA Ԛ + 0x051C, # CYRILLIC CAPITAL LETTER WE Ԝ + 0x051E, # CYRILLIC CAPITAL LETTER ALEUT KA Ԟ + 0x0520, # CYRILLIC CAPITAL LETTER EL WITH MIDDLE HOOK Ԡ + 0x0522, # CYRILLIC CAPITAL LETTER EN WITH MIDDLE HOOK Ԣ + 0x0524, # CYRILLIC CAPITAL LETTER PE WITH DESCENDER Ԥ + 0x0526, # CYRILLIC CAPITAL LETTER SHHA WITH DESCENDER Ԧ + 0x0528, # CYRILLIC CAPITAL LETTER EN WITH LEFT HOOK Ԩ + 0x052A, # CYRILLIC CAPITAL LETTER DZZHE Ԫ + 0x052C, # CYRILLIC CAPITAL LETTER DCHE Ԭ + 0x052E, # CYRILLIC CAPITAL LETTER EL WITH DESCENDER Ԯ + 0x0531, # ARMENIAN CAPITAL LETTER AYB Ա + 0x0532, # ARMENIAN CAPITAL LETTER BEN Բ + 0x0533, # ARMENIAN CAPITAL LETTER GIM Գ + 0x0534, # ARMENIAN CAPITAL LETTER DA Դ + 0x0535, # ARMENIAN CAPITAL LETTER ECH Ե + 0x0536, # ARMENIAN CAPITAL LETTER ZA Զ + 0x0537, # ARMENIAN CAPITAL LETTER EH Է + 0x0538, # ARMENIAN CAPITAL LETTER ET Ը + 0x0539, # ARMENIAN CAPITAL LETTER TO Թ + 0x053A, # ARMENIAN CAPITAL LETTER ZHE Ժ + 0x053B, # ARMENIAN CAPITAL LETTER INI Ի + 0x053C, # ARMENIAN CAPITAL LETTER LIWN Լ + 0x053D, # ARMENIAN CAPITAL LETTER XEH Խ + 0x053E, # ARMENIAN CAPITAL LETTER CA Ծ + 0x053F, # ARMENIAN CAPITAL LETTER KEN Կ + 0x0540, # ARMENIAN CAPITAL LETTER HO Հ + 0x0541, # ARMENIAN CAPITAL LETTER JA Ձ + 0x0542, # ARMENIAN CAPITAL LETTER GHAD Ղ + 0x0543, # ARMENIAN CAPITAL LETTER CHEH Ճ + 0x0544, # ARMENIAN CAPITAL LETTER MEN Մ + 0x0545, # ARMENIAN CAPITAL LETTER YI Յ + 0x0546, # ARMENIAN CAPITAL LETTER NOW Ն + 0x0547, # ARMENIAN CAPITAL LETTER SHA Շ + 0x0548, # ARMENIAN CAPITAL LETTER VO Ո + 0x0549, # ARMENIAN CAPITAL LETTER CHA Չ + 0x054A, # ARMENIAN CAPITAL LETTER PEH Պ + 0x054B, # ARMENIAN CAPITAL LETTER JHEH Ջ + 0x054C, # ARMENIAN CAPITAL LETTER RA Ռ + 0x054D, # ARMENIAN CAPITAL LETTER SEH Ս + 0x054E, # ARMENIAN CAPITAL LETTER VEW Վ + 0x054F, # ARMENIAN CAPITAL LETTER TIWN Տ + 0x0550, # ARMENIAN CAPITAL LETTER REH Ր + 0x0551, # ARMENIAN CAPITAL LETTER CO Ց + 0x0552, # ARMENIAN CAPITAL LETTER YIWN Ւ + 0x0553, # ARMENIAN CAPITAL LETTER PIWR Փ + 0x0554, # ARMENIAN CAPITAL LETTER KEH Ք + 0x0555, # ARMENIAN CAPITAL LETTER OH Օ + 0x0556, # ARMENIAN CAPITAL LETTER FEH Ֆ + 0x10A0, # GEORGIAN CAPITAL LETTER AN Ⴀ + 0x10A1, # GEORGIAN CAPITAL LETTER BAN Ⴁ + 0x10A2, # GEORGIAN CAPITAL LETTER GAN Ⴂ + 0x10A3, # GEORGIAN CAPITAL LETTER DON Ⴃ + 0x10A4, # GEORGIAN CAPITAL LETTER EN Ⴄ + 0x10A5, # GEORGIAN CAPITAL LETTER VIN Ⴅ + 0x10A6, # GEORGIAN CAPITAL LETTER ZEN Ⴆ + 0x10A7, # GEORGIAN CAPITAL LETTER TAN Ⴇ + 0x10A8, # GEORGIAN CAPITAL LETTER IN Ⴈ + 0x10A9, # GEORGIAN CAPITAL LETTER KAN Ⴉ + 0x10AA, # GEORGIAN CAPITAL LETTER LAS Ⴊ + 0x10AB, # GEORGIAN CAPITAL LETTER MAN Ⴋ + 0x10AC, # GEORGIAN CAPITAL LETTER NAR Ⴌ + 0x10AD, # GEORGIAN CAPITAL LETTER ON Ⴍ + 0x10AE, # GEORGIAN CAPITAL LETTER PAR Ⴎ + 0x10AF, # GEORGIAN CAPITAL LETTER ZHAR Ⴏ + 0x10B0, # GEORGIAN CAPITAL LETTER RAE Ⴐ + 0x10B1, # GEORGIAN CAPITAL LETTER SAN Ⴑ + 0x10B2, # GEORGIAN CAPITAL LETTER TAR Ⴒ + 0x10B3, # GEORGIAN CAPITAL LETTER UN Ⴓ + 0x10B4, # GEORGIAN CAPITAL LETTER PHAR Ⴔ + 0x10B5, # GEORGIAN CAPITAL LETTER KHAR Ⴕ + 0x10B6, # GEORGIAN CAPITAL LETTER GHAN Ⴖ + 0x10B7, # GEORGIAN CAPITAL LETTER QAR Ⴗ + 0x10B8, # GEORGIAN CAPITAL LETTER SHIN Ⴘ + 0x10B9, # GEORGIAN CAPITAL LETTER CHIN Ⴙ + 0x10BA, # GEORGIAN CAPITAL LETTER CAN Ⴚ + 0x10BB, # GEORGIAN CAPITAL LETTER JIL Ⴛ + 0x10BC, # GEORGIAN CAPITAL LETTER CIL Ⴜ + 0x10BD, # GEORGIAN CAPITAL LETTER CHAR Ⴝ + 0x10BE, # GEORGIAN CAPITAL LETTER XAN Ⴞ + 0x10BF, # GEORGIAN CAPITAL LETTER JHAN Ⴟ + 0x10C0, # GEORGIAN CAPITAL LETTER HAE Ⴠ + 0x10C1, # GEORGIAN CAPITAL LETTER HE Ⴡ + 0x10C2, # GEORGIAN CAPITAL LETTER HIE Ⴢ + 0x10C3, # GEORGIAN CAPITAL LETTER WE Ⴣ + 0x10C4, # GEORGIAN CAPITAL LETTER HAR Ⴤ + 0x10C5, # GEORGIAN CAPITAL LETTER HOE Ⴥ + 0x10C7, # GEORGIAN CAPITAL LETTER YN Ⴧ + 0x10CD, # GEORGIAN CAPITAL LETTER AEN Ⴭ + 0x13A0, # CHEROKEE LETTER A Ꭰ + 0x13A1, # CHEROKEE LETTER E Ꭱ + 0x13A2, # CHEROKEE LETTER I Ꭲ + 0x13A3, # CHEROKEE LETTER O Ꭳ + 0x13A4, # CHEROKEE LETTER U Ꭴ + 0x13A5, # CHEROKEE LETTER V Ꭵ + 0x13A6, # CHEROKEE LETTER GA Ꭶ + 0x13A7, # CHEROKEE LETTER KA Ꭷ + 0x13A8, # CHEROKEE LETTER GE Ꭸ + 0x13A9, # CHEROKEE LETTER GI Ꭹ + 0x13AA, # CHEROKEE LETTER GO Ꭺ + 0x13AB, # CHEROKEE LETTER GU Ꭻ + 0x13AC, # CHEROKEE LETTER GV Ꭼ + 0x13AD, # CHEROKEE LETTER HA Ꭽ + 0x13AE, # CHEROKEE LETTER HE Ꭾ + 0x13AF, # CHEROKEE LETTER HI Ꭿ + 0x13B0, # CHEROKEE LETTER HO Ꮀ + 0x13B1, # CHEROKEE LETTER HU Ꮁ + 0x13B2, # CHEROKEE LETTER HV Ꮂ + 0x13B3, # CHEROKEE LETTER LA Ꮃ + 0x13B4, # CHEROKEE LETTER LE Ꮄ + 0x13B5, # CHEROKEE LETTER LI Ꮅ + 0x13B6, # CHEROKEE LETTER LO Ꮆ + 0x13B7, # CHEROKEE LETTER LU Ꮇ + 0x13B8, # CHEROKEE LETTER LV Ꮈ + 0x13B9, # CHEROKEE LETTER MA Ꮉ + 0x13BA, # CHEROKEE LETTER ME Ꮊ + 0x13BB, # CHEROKEE LETTER MI Ꮋ + 0x13BC, # CHEROKEE LETTER MO Ꮌ + 0x13BD, # CHEROKEE LETTER MU Ꮍ + 0x13BE, # CHEROKEE LETTER NA Ꮎ + 0x13BF, # CHEROKEE LETTER HNA Ꮏ + 0x13C0, # CHEROKEE LETTER NAH Ꮐ + 0x13C1, # CHEROKEE LETTER NE Ꮑ + 0x13C2, # CHEROKEE LETTER NI Ꮒ + 0x13C3, # CHEROKEE LETTER NO Ꮓ + 0x13C4, # CHEROKEE LETTER NU Ꮔ + 0x13C5, # CHEROKEE LETTER NV Ꮕ + 0x13C6, # CHEROKEE LETTER QUA Ꮖ + 0x13C7, # CHEROKEE LETTER QUE Ꮗ + 0x13C8, # CHEROKEE LETTER QUI Ꮘ + 0x13C9, # CHEROKEE LETTER QUO Ꮙ + 0x13CA, # CHEROKEE LETTER QUU Ꮚ + 0x13CB, # CHEROKEE LETTER QUV Ꮛ + 0x13CC, # CHEROKEE LETTER SA Ꮜ + 0x13CD, # CHEROKEE LETTER S Ꮝ + 0x13CE, # CHEROKEE LETTER SE Ꮞ + 0x13CF, # CHEROKEE LETTER SI Ꮟ + 0x13D0, # CHEROKEE LETTER SO Ꮠ + 0x13D1, # CHEROKEE LETTER SU Ꮡ + 0x13D2, # CHEROKEE LETTER SV Ꮢ + 0x13D3, # CHEROKEE LETTER DA Ꮣ + 0x13D4, # CHEROKEE LETTER TA Ꮤ + 0x13D5, # CHEROKEE LETTER DE Ꮥ + 0x13D6, # CHEROKEE LETTER TE Ꮦ + 0x13D7, # CHEROKEE LETTER DI Ꮧ + 0x13D8, # CHEROKEE LETTER TI Ꮨ + 0x13D9, # CHEROKEE LETTER DO Ꮩ + 0x13DA, # CHEROKEE LETTER DU Ꮪ + 0x13DB, # CHEROKEE LETTER DV Ꮫ + 0x13DC, # CHEROKEE LETTER DLA Ꮬ + 0x13DD, # CHEROKEE LETTER TLA Ꮭ + 0x13DE, # CHEROKEE LETTER TLE Ꮮ + 0x13DF, # CHEROKEE LETTER TLI Ꮯ + 0x13E0, # CHEROKEE LETTER TLO Ꮰ + 0x13E1, # CHEROKEE LETTER TLU Ꮱ + 0x13E2, # CHEROKEE LETTER TLV Ꮲ + 0x13E3, # CHEROKEE LETTER TSA Ꮳ + 0x13E4, # CHEROKEE LETTER TSE Ꮴ + 0x13E5, # CHEROKEE LETTER TSI Ꮵ + 0x13E6, # CHEROKEE LETTER TSO Ꮶ + 0x13E7, # CHEROKEE LETTER TSU Ꮷ + 0x13E8, # CHEROKEE LETTER TSV Ꮸ + 0x13E9, # CHEROKEE LETTER WA Ꮹ + 0x13EA, # CHEROKEE LETTER WE Ꮺ + 0x13EB, # CHEROKEE LETTER WI Ꮻ + 0x13EC, # CHEROKEE LETTER WO Ꮼ + 0x13ED, # CHEROKEE LETTER WU Ꮽ + 0x13EE, # CHEROKEE LETTER WV Ꮾ + 0x13EF, # CHEROKEE LETTER YA Ꮿ + 0x13F0, # CHEROKEE LETTER YE Ᏸ + 0x13F1, # CHEROKEE LETTER YI Ᏹ + 0x13F2, # CHEROKEE LETTER YO Ᏺ + 0x13F3, # CHEROKEE LETTER YU Ᏻ + 0x13F4, # CHEROKEE LETTER YV Ᏼ + 0x13F5, # CHEROKEE LETTER MV Ᏽ + 0x1C90, # GEORGIAN MTAVRULI CAPITAL LETTER AN Ა + 0x1C91, # GEORGIAN MTAVRULI CAPITAL LETTER BAN Ბ + 0x1C92, # GEORGIAN MTAVRULI CAPITAL LETTER GAN Გ + 0x1C93, # GEORGIAN MTAVRULI CAPITAL LETTER DON Დ + 0x1C94, # GEORGIAN MTAVRULI CAPITAL LETTER EN Ე + 0x1C95, # GEORGIAN MTAVRULI CAPITAL LETTER VIN Ვ + 0x1C96, # GEORGIAN MTAVRULI CAPITAL LETTER ZEN Ზ + 0x1C97, # GEORGIAN MTAVRULI CAPITAL LETTER TAN Თ + 0x1C98, # GEORGIAN MTAVRULI CAPITAL LETTER IN Ი + 0x1C99, # GEORGIAN MTAVRULI CAPITAL LETTER KAN Კ + 0x1C9A, # GEORGIAN MTAVRULI CAPITAL LETTER LAS Ლ + 0x1C9B, # GEORGIAN MTAVRULI CAPITAL LETTER MAN Მ + 0x1C9C, # GEORGIAN MTAVRULI CAPITAL LETTER NAR Ნ + 0x1C9D, # GEORGIAN MTAVRULI CAPITAL LETTER ON Ო + 0x1C9E, # GEORGIAN MTAVRULI CAPITAL LETTER PAR Პ + 0x1C9F, # GEORGIAN MTAVRULI CAPITAL LETTER ZHAR Ჟ + 0x1CA0, # GEORGIAN MTAVRULI CAPITAL LETTER RAE Რ + 0x1CA1, # GEORGIAN MTAVRULI CAPITAL LETTER SAN Ს + 0x1CA2, # GEORGIAN MTAVRULI CAPITAL LETTER TAR Ტ + 0x1CA3, # GEORGIAN MTAVRULI CAPITAL LETTER UN Უ + 0x1CA4, # GEORGIAN MTAVRULI CAPITAL LETTER PHAR Ფ + 0x1CA5, # GEORGIAN MTAVRULI CAPITAL LETTER KHAR Ქ + 0x1CA6, # GEORGIAN MTAVRULI CAPITAL LETTER GHAN Ღ + 0x1CA7, # GEORGIAN MTAVRULI CAPITAL LETTER QAR Ყ + 0x1CA8, # GEORGIAN MTAVRULI CAPITAL LETTER SHIN Შ + 0x1CA9, # GEORGIAN MTAVRULI CAPITAL LETTER CHIN Ჩ + 0x1CAA, # GEORGIAN MTAVRULI CAPITAL LETTER CAN Ც + 0x1CAB, # GEORGIAN MTAVRULI CAPITAL LETTER JIL Ძ + 0x1CAC, # GEORGIAN MTAVRULI CAPITAL LETTER CIL Წ + 0x1CAD, # GEORGIAN MTAVRULI CAPITAL LETTER CHAR Ჭ + 0x1CAE, # GEORGIAN MTAVRULI CAPITAL LETTER XAN Ხ + 0x1CAF, # GEORGIAN MTAVRULI CAPITAL LETTER JHAN Ჯ + 0x1CB0, # GEORGIAN MTAVRULI CAPITAL LETTER HAE Ჰ + 0x1CB1, # GEORGIAN MTAVRULI CAPITAL LETTER HE Ჱ + 0x1CB2, # GEORGIAN MTAVRULI CAPITAL LETTER HIE Ჲ + 0x1CB3, # GEORGIAN MTAVRULI CAPITAL LETTER WE Ჳ + 0x1CB4, # GEORGIAN MTAVRULI CAPITAL LETTER HAR Ჴ + 0x1CB5, # GEORGIAN MTAVRULI CAPITAL LETTER HOE Ჵ + 0x1CB6, # GEORGIAN MTAVRULI CAPITAL LETTER FI Ჶ + 0x1CB7, # GEORGIAN MTAVRULI CAPITAL LETTER YN Ჷ + 0x1CB8, # GEORGIAN MTAVRULI CAPITAL LETTER ELIFI Ჸ + 0x1CB9, # GEORGIAN MTAVRULI CAPITAL LETTER TURNED GAN Ჹ + 0x1CBA, # GEORGIAN MTAVRULI CAPITAL LETTER AIN Ჺ + 0x1CBD, # GEORGIAN MTAVRULI CAPITAL LETTER AEN Ჽ + 0x1CBE, # GEORGIAN MTAVRULI CAPITAL LETTER HARD SIGN Ჾ + 0x1CBF, # GEORGIAN MTAVRULI CAPITAL LETTER LABIAL SIGN Ჿ + 0x1E00, # LATIN CAPITAL LETTER A WITH RING BELOW Ḁ + 0x1E02, # LATIN CAPITAL LETTER B WITH DOT ABOVE Ḃ + 0x1E04, # LATIN CAPITAL LETTER B WITH DOT BELOW Ḅ + 0x1E06, # LATIN CAPITAL LETTER B WITH LINE BELOW Ḇ + 0x1E08, # LATIN CAPITAL LETTER C WITH CEDILLA AND ACUTE Ḉ + 0x1E0A, # LATIN CAPITAL LETTER D WITH DOT ABOVE Ḋ + 0x1E0C, # LATIN CAPITAL LETTER D WITH DOT BELOW Ḍ + 0x1E0E, # LATIN CAPITAL LETTER D WITH LINE BELOW Ḏ + 0x1E10, # LATIN CAPITAL LETTER D WITH CEDILLA Ḑ + 0x1E12, # LATIN CAPITAL LETTER D WITH CIRCUMFLEX BELOW Ḓ + 0x1E14, # LATIN CAPITAL LETTER E WITH MACRON AND GRAVE Ḕ + 0x1E16, # LATIN CAPITAL LETTER E WITH MACRON AND ACUTE Ḗ + 0x1E18, # LATIN CAPITAL LETTER E WITH CIRCUMFLEX BELOW Ḙ + 0x1E1A, # LATIN CAPITAL LETTER E WITH TILDE BELOW Ḛ + 0x1E1C, # LATIN CAPITAL LETTER E WITH CEDILLA AND BREVE Ḝ + 0x1E1E, # LATIN CAPITAL LETTER F WITH DOT ABOVE Ḟ + 0x1E20, # LATIN CAPITAL LETTER G WITH MACRON Ḡ + 0x1E22, # LATIN CAPITAL LETTER H WITH DOT ABOVE Ḣ + 0x1E24, # LATIN CAPITAL LETTER H WITH DOT BELOW Ḥ + 0x1E26, # LATIN CAPITAL LETTER H WITH DIAERESIS Ḧ + 0x1E28, # LATIN CAPITAL LETTER H WITH CEDILLA Ḩ + 0x1E2A, # LATIN CAPITAL LETTER H WITH BREVE BELOW Ḫ + 0x1E2C, # LATIN CAPITAL LETTER I WITH TILDE BELOW Ḭ + 0x1E2E, # LATIN CAPITAL LETTER I WITH DIAERESIS AND ACUTE Ḯ + 0x1E30, # LATIN CAPITAL LETTER K WITH ACUTE Ḱ + 0x1E32, # LATIN CAPITAL LETTER K WITH DOT BELOW Ḳ + 0x1E34, # LATIN CAPITAL LETTER K WITH LINE BELOW Ḵ + 0x1E36, # LATIN CAPITAL LETTER L WITH DOT BELOW Ḷ + 0x1E38, # LATIN CAPITAL LETTER L WITH DOT BELOW AND MACRON Ḹ + 0x1E3A, # LATIN CAPITAL LETTER L WITH LINE BELOW Ḻ + 0x1E3C, # LATIN CAPITAL LETTER L WITH CIRCUMFLEX BELOW Ḽ + 0x1E3E, # LATIN CAPITAL LETTER M WITH ACUTE Ḿ + 0x1E40, # LATIN CAPITAL LETTER M WITH DOT ABOVE Ṁ + 0x1E42, # LATIN CAPITAL LETTER M WITH DOT BELOW Ṃ + 0x1E44, # LATIN CAPITAL LETTER N WITH DOT ABOVE Ṅ + 0x1E46, # LATIN CAPITAL LETTER N WITH DOT BELOW Ṇ + 0x1E48, # LATIN CAPITAL LETTER N WITH LINE BELOW Ṉ + 0x1E4A, # LATIN CAPITAL LETTER N WITH CIRCUMFLEX BELOW Ṋ + 0x1E4C, # LATIN CAPITAL LETTER O WITH TILDE AND ACUTE Ṍ + 0x1E4E, # LATIN CAPITAL LETTER O WITH TILDE AND DIAERESIS Ṏ + 0x1E50, # LATIN CAPITAL LETTER O WITH MACRON AND GRAVE Ṑ + 0x1E52, # LATIN CAPITAL LETTER O WITH MACRON AND ACUTE Ṓ + 0x1E54, # LATIN CAPITAL LETTER P WITH ACUTE Ṕ + 0x1E56, # LATIN CAPITAL LETTER P WITH DOT ABOVE Ṗ + 0x1E58, # LATIN CAPITAL LETTER R WITH DOT ABOVE Ṙ + 0x1E5A, # LATIN CAPITAL LETTER R WITH DOT BELOW Ṛ + 0x1E5C, # LATIN CAPITAL LETTER R WITH DOT BELOW AND MACRON Ṝ + 0x1E5E, # LATIN CAPITAL LETTER R WITH LINE BELOW Ṟ + 0x1E60, # LATIN CAPITAL LETTER S WITH DOT ABOVE Ṡ + 0x1E62, # LATIN CAPITAL LETTER S WITH DOT BELOW Ṣ + 0x1E64, # LATIN CAPITAL LETTER S WITH ACUTE AND DOT ABOVE Ṥ + 0x1E66, # LATIN CAPITAL LETTER S WITH CARON AND DOT ABOVE Ṧ + 0x1E68, # LATIN CAPITAL LETTER S WITH DOT BELOW AND DOT ABOVE Ṩ + 0x1E6A, # LATIN CAPITAL LETTER T WITH DOT ABOVE Ṫ + 0x1E6C, # LATIN CAPITAL LETTER T WITH DOT BELOW Ṭ + 0x1E6E, # LATIN CAPITAL LETTER T WITH LINE BELOW Ṯ + 0x1E70, # LATIN CAPITAL LETTER T WITH CIRCUMFLEX BELOW Ṱ + 0x1E72, # LATIN CAPITAL LETTER U WITH DIAERESIS BELOW Ṳ + 0x1E74, # LATIN CAPITAL LETTER U WITH TILDE BELOW Ṵ + 0x1E76, # LATIN CAPITAL LETTER U WITH CIRCUMFLEX BELOW Ṷ + 0x1E78, # LATIN CAPITAL LETTER U WITH TILDE AND ACUTE Ṹ + 0x1E7A, # LATIN CAPITAL LETTER U WITH MACRON AND DIAERESIS Ṻ + 0x1E7C, # LATIN CAPITAL LETTER V WITH TILDE Ṽ + 0x1E7E, # LATIN CAPITAL LETTER V WITH DOT BELOW Ṿ + 0x1E80, # LATIN CAPITAL LETTER W WITH GRAVE Ẁ + 0x1E82, # LATIN CAPITAL LETTER W WITH ACUTE Ẃ + 0x1E84, # LATIN CAPITAL LETTER W WITH DIAERESIS Ẅ + 0x1E86, # LATIN CAPITAL LETTER W WITH DOT ABOVE Ẇ + 0x1E88, # LATIN CAPITAL LETTER W WITH DOT BELOW Ẉ + 0x1E8A, # LATIN CAPITAL LETTER X WITH DOT ABOVE Ẋ + 0x1E8C, # LATIN CAPITAL LETTER X WITH DIAERESIS Ẍ + 0x1E8E, # LATIN CAPITAL LETTER Y WITH DOT ABOVE Ẏ + 0x1E90, # LATIN CAPITAL LETTER Z WITH CIRCUMFLEX Ẑ + 0x1E92, # LATIN CAPITAL LETTER Z WITH DOT BELOW Ẓ + 0x1E94, # LATIN CAPITAL LETTER Z WITH LINE BELOW Ẕ + 0x1E9E, # LATIN CAPITAL LETTER SHARP S ẞ + 0x1EA0, # LATIN CAPITAL LETTER A WITH DOT BELOW Ạ + 0x1EA2, # LATIN CAPITAL LETTER A WITH HOOK ABOVE Ả + 0x1EA4, # LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND ACUTE Ấ + 0x1EA6, # LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND GRAVE Ầ + 0x1EA8, # LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND HOOK ABOVE Ẩ + 0x1EAA, # LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND TILDE Ẫ + 0x1EAC, # LATIN CAPITAL LETTER A WITH CIRCUMFLEX AND DOT BELOW Ậ + 0x1EAE, # LATIN CAPITAL LETTER A WITH BREVE AND ACUTE Ắ + 0x1EB0, # LATIN CAPITAL LETTER A WITH BREVE AND GRAVE Ằ + 0x1EB2, # LATIN CAPITAL LETTER A WITH BREVE AND HOOK ABOVE Ẳ + 0x1EB4, # LATIN CAPITAL LETTER A WITH BREVE AND TILDE Ẵ + 0x1EB6, # LATIN CAPITAL LETTER A WITH BREVE AND DOT BELOW Ặ + 0x1EB8, # LATIN CAPITAL LETTER E WITH DOT BELOW Ẹ + 0x1EBA, # LATIN CAPITAL LETTER E WITH HOOK ABOVE Ẻ + 0x1EBC, # LATIN CAPITAL LETTER E WITH TILDE Ẽ + 0x1EBE, # LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND ACUTE Ế + 0x1EC0, # LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND GRAVE Ề + 0x1EC2, # LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND HOOK ABOVE Ể + 0x1EC4, # LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND TILDE Ễ + 0x1EC6, # LATIN CAPITAL LETTER E WITH CIRCUMFLEX AND DOT BELOW Ệ + 0x1EC8, # LATIN CAPITAL LETTER I WITH HOOK ABOVE Ỉ + 0x1ECA, # LATIN CAPITAL LETTER I WITH DOT BELOW Ị + 0x1ECC, # LATIN CAPITAL LETTER O WITH DOT BELOW Ọ + 0x1ECE, # LATIN CAPITAL LETTER O WITH HOOK ABOVE Ỏ + 0x1ED0, # LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND ACUTE Ố + 0x1ED2, # LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND GRAVE Ồ + 0x1ED4, # LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND HOOK ABOVE Ổ + 0x1ED6, # LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND TILDE Ỗ + 0x1ED8, # LATIN CAPITAL LETTER O WITH CIRCUMFLEX AND DOT BELOW Ộ + 0x1EDA, # LATIN CAPITAL LETTER O WITH HORN AND ACUTE Ớ + 0x1EDC, # LATIN CAPITAL LETTER O WITH HORN AND GRAVE Ờ + 0x1EDE, # LATIN CAPITAL LETTER O WITH HORN AND HOOK ABOVE Ở + 0x1EE0, # LATIN CAPITAL LETTER O WITH HORN AND TILDE Ỡ + 0x1EE2, # LATIN CAPITAL LETTER O WITH HORN AND DOT BELOW Ợ + 0x1EE4, # LATIN CAPITAL LETTER U WITH DOT BELOW Ụ + 0x1EE6, # LATIN CAPITAL LETTER U WITH HOOK ABOVE Ủ + 0x1EE8, # LATIN CAPITAL LETTER U WITH HORN AND ACUTE Ứ + 0x1EEA, # LATIN CAPITAL LETTER U WITH HORN AND GRAVE Ừ + 0x1EEC, # LATIN CAPITAL LETTER U WITH HORN AND HOOK ABOVE Ử + 0x1EEE, # LATIN CAPITAL LETTER U WITH HORN AND TILDE Ữ + 0x1EF0, # LATIN CAPITAL LETTER U WITH HORN AND DOT BELOW Ự + 0x1EF2, # LATIN CAPITAL LETTER Y WITH GRAVE Ỳ + 0x1EF4, # LATIN CAPITAL LETTER Y WITH DOT BELOW Ỵ + 0x1EF6, # LATIN CAPITAL LETTER Y WITH HOOK ABOVE Ỷ + 0x1EF8, # LATIN CAPITAL LETTER Y WITH TILDE Ỹ + 0x1EFA, # LATIN CAPITAL LETTER MIDDLE-WELSH LL Ỻ + 0x1EFC, # LATIN CAPITAL LETTER MIDDLE-WELSH V Ỽ + 0x1EFE, # LATIN CAPITAL LETTER Y WITH LOOP Ỿ + 0x1F08, # GREEK CAPITAL LETTER ALPHA WITH PSILI Ἀ + 0x1F09, # GREEK CAPITAL LETTER ALPHA WITH DASIA Ἁ + 0x1F0A, # GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA Ἂ + 0x1F0B, # GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA Ἃ + 0x1F0C, # GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA Ἄ + 0x1F0D, # GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA Ἅ + 0x1F0E, # GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI Ἆ + 0x1F0F, # GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI Ἇ + 0x1F18, # GREEK CAPITAL LETTER EPSILON WITH PSILI Ἐ + 0x1F19, # GREEK CAPITAL LETTER EPSILON WITH DASIA Ἑ + 0x1F1A, # GREEK CAPITAL LETTER EPSILON WITH PSILI AND VARIA Ἒ + 0x1F1B, # GREEK CAPITAL LETTER EPSILON WITH DASIA AND VARIA Ἓ + 0x1F1C, # GREEK CAPITAL LETTER EPSILON WITH PSILI AND OXIA Ἔ + 0x1F1D, # GREEK CAPITAL LETTER EPSILON WITH DASIA AND OXIA Ἕ + 0x1F28, # GREEK CAPITAL LETTER ETA WITH PSILI Ἠ + 0x1F29, # GREEK CAPITAL LETTER ETA WITH DASIA Ἡ + 0x1F2A, # GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA Ἢ + 0x1F2B, # GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA Ἣ + 0x1F2C, # GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA Ἤ + 0x1F2D, # GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA Ἥ + 0x1F2E, # GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI Ἦ + 0x1F2F, # GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI Ἧ + 0x1F38, # GREEK CAPITAL LETTER IOTA WITH PSILI Ἰ + 0x1F39, # GREEK CAPITAL LETTER IOTA WITH DASIA Ἱ + 0x1F3A, # GREEK CAPITAL LETTER IOTA WITH PSILI AND VARIA Ἲ + 0x1F3B, # GREEK CAPITAL LETTER IOTA WITH DASIA AND VARIA Ἳ + 0x1F3C, # GREEK CAPITAL LETTER IOTA WITH PSILI AND OXIA Ἴ + 0x1F3D, # GREEK CAPITAL LETTER IOTA WITH DASIA AND OXIA Ἵ + 0x1F3E, # GREEK CAPITAL LETTER IOTA WITH PSILI AND PERISPOMENI Ἶ + 0x1F3F, # GREEK CAPITAL LETTER IOTA WITH DASIA AND PERISPOMENI Ἷ + 0x1F48, # GREEK CAPITAL LETTER OMICRON WITH PSILI Ὀ + 0x1F49, # GREEK CAPITAL LETTER OMICRON WITH DASIA Ὁ + 0x1F4A, # GREEK CAPITAL LETTER OMICRON WITH PSILI AND VARIA Ὂ + 0x1F4B, # GREEK CAPITAL LETTER OMICRON WITH DASIA AND VARIA Ὃ + 0x1F4C, # GREEK CAPITAL LETTER OMICRON WITH PSILI AND OXIA Ὄ + 0x1F4D, # GREEK CAPITAL LETTER OMICRON WITH DASIA AND OXIA Ὅ + 0x1F59, # GREEK CAPITAL LETTER UPSILON WITH DASIA Ὑ + 0x1F5B, # GREEK CAPITAL LETTER UPSILON WITH DASIA AND VARIA Ὓ + 0x1F5D, # GREEK CAPITAL LETTER UPSILON WITH DASIA AND OXIA Ὕ + 0x1F5F, # GREEK CAPITAL LETTER UPSILON WITH DASIA AND PERISPOMENI Ὗ + 0x1F68, # GREEK CAPITAL LETTER OMEGA WITH PSILI Ὠ + 0x1F69, # GREEK CAPITAL LETTER OMEGA WITH DASIA Ὡ + 0x1F6A, # GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA Ὢ + 0x1F6B, # GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA Ὣ + 0x1F6C, # GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA Ὤ + 0x1F6D, # GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA Ὥ + 0x1F6E, # GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI Ὦ + 0x1F6F, # GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI Ὧ + 0x1F88, # GREEK CAPITAL LETTER ALPHA WITH PSILI AND PROSGEGRAMMENI ᾈ + 0x1F89, # GREEK CAPITAL LETTER ALPHA WITH DASIA AND PROSGEGRAMMENI ᾉ + 0x1F8A, # GREEK CAPITAL LETTER ALPHA WITH PSILI AND VARIA AND PROSGEGRAMMENI ᾊ + 0x1F8B, # GREEK CAPITAL LETTER ALPHA WITH DASIA AND VARIA AND PROSGEGRAMMENI ᾋ + 0x1F8C, # GREEK CAPITAL LETTER ALPHA WITH PSILI AND OXIA AND PROSGEGRAMMENI ᾌ + 0x1F8D, # GREEK CAPITAL LETTER ALPHA WITH DASIA AND OXIA AND PROSGEGRAMMENI ᾍ + 0x1F8E, # GREEK CAPITAL LETTER ALPHA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI ᾎ + 0x1F8F, # GREEK CAPITAL LETTER ALPHA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI ᾏ + 0x1F98, # GREEK CAPITAL LETTER ETA WITH PSILI AND PROSGEGRAMMENI ᾘ + 0x1F99, # GREEK CAPITAL LETTER ETA WITH DASIA AND PROSGEGRAMMENI ᾙ + 0x1F9A, # GREEK CAPITAL LETTER ETA WITH PSILI AND VARIA AND PROSGEGRAMMENI ᾚ + 0x1F9B, # GREEK CAPITAL LETTER ETA WITH DASIA AND VARIA AND PROSGEGRAMMENI ᾛ + 0x1F9C, # GREEK CAPITAL LETTER ETA WITH PSILI AND OXIA AND PROSGEGRAMMENI ᾜ + 0x1F9D, # GREEK CAPITAL LETTER ETA WITH DASIA AND OXIA AND PROSGEGRAMMENI ᾝ + 0x1F9E, # GREEK CAPITAL LETTER ETA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI ᾞ + 0x1F9F, # GREEK CAPITAL LETTER ETA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI ᾟ + 0x1FA8, # GREEK CAPITAL LETTER OMEGA WITH PSILI AND PROSGEGRAMMENI ᾨ + 0x1FA9, # GREEK CAPITAL LETTER OMEGA WITH DASIA AND PROSGEGRAMMENI ᾩ + 0x1FAA, # GREEK CAPITAL LETTER OMEGA WITH PSILI AND VARIA AND PROSGEGRAMMENI ᾪ + 0x1FAB, # GREEK CAPITAL LETTER OMEGA WITH DASIA AND VARIA AND PROSGEGRAMMENI ᾫ + 0x1FAC, # GREEK CAPITAL LETTER OMEGA WITH PSILI AND OXIA AND PROSGEGRAMMENI ᾬ + 0x1FAD, # GREEK CAPITAL LETTER OMEGA WITH DASIA AND OXIA AND PROSGEGRAMMENI ᾭ + 0x1FAE, # GREEK CAPITAL LETTER OMEGA WITH PSILI AND PERISPOMENI AND PROSGEGRAMMENI ᾮ + 0x1FAF, # GREEK CAPITAL LETTER OMEGA WITH DASIA AND PERISPOMENI AND PROSGEGRAMMENI ᾯ + 0x1FB8, # GREEK CAPITAL LETTER ALPHA WITH VRACHY Ᾰ + 0x1FB9, # GREEK CAPITAL LETTER ALPHA WITH MACRON Ᾱ + 0x1FBA, # GREEK CAPITAL LETTER ALPHA WITH VARIA Ὰ + 0x1FBB, # GREEK CAPITAL LETTER ALPHA WITH OXIA Ά + 0x1FBC, # GREEK CAPITAL LETTER ALPHA WITH PROSGEGRAMMENI ᾼ + 0x1FC8, # GREEK CAPITAL LETTER EPSILON WITH VARIA Ὲ + 0x1FC9, # GREEK CAPITAL LETTER EPSILON WITH OXIA Έ + 0x1FCA, # GREEK CAPITAL LETTER ETA WITH VARIA Ὴ + 0x1FCB, # GREEK CAPITAL LETTER ETA WITH OXIA Ή + 0x1FCC, # GREEK CAPITAL LETTER ETA WITH PROSGEGRAMMENI ῌ + 0x1FD8, # GREEK CAPITAL LETTER IOTA WITH VRACHY Ῐ + 0x1FD9, # GREEK CAPITAL LETTER IOTA WITH MACRON Ῑ + 0x1FDA, # GREEK CAPITAL LETTER IOTA WITH VARIA Ὶ + 0x1FDB, # GREEK CAPITAL LETTER IOTA WITH OXIA Ί + 0x1FE8, # GREEK CAPITAL LETTER UPSILON WITH VRACHY Ῠ + 0x1FE9, # GREEK CAPITAL LETTER UPSILON WITH MACRON Ῡ + 0x1FEA, # GREEK CAPITAL LETTER UPSILON WITH VARIA Ὺ + 0x1FEB, # GREEK CAPITAL LETTER UPSILON WITH OXIA Ύ + 0x1FEC, # GREEK CAPITAL LETTER RHO WITH DASIA Ῥ + 0x1FF8, # GREEK CAPITAL LETTER OMICRON WITH VARIA Ὸ + 0x1FF9, # GREEK CAPITAL LETTER OMICRON WITH OXIA Ό + 0x1FFA, # GREEK CAPITAL LETTER OMEGA WITH VARIA Ὼ + 0x1FFB, # GREEK CAPITAL LETTER OMEGA WITH OXIA Ώ + 0x1FFC, # GREEK CAPITAL LETTER OMEGA WITH PROSGEGRAMMENI ῼ + 0x2126, # OHM SIGN Ω + 0x212A, # KELVIN SIGN K + 0x212B, # ANGSTROM SIGN Å + 0x2132, # TURNED CAPITAL F Ⅎ + 0x2160, # ROMAN NUMERAL ONE Ⅰ + 0x2161, # ROMAN NUMERAL TWO Ⅱ + 0x2162, # ROMAN NUMERAL THREE Ⅲ + 0x2163, # ROMAN NUMERAL FOUR Ⅳ + 0x2164, # ROMAN NUMERAL FIVE Ⅴ + 0x2165, # ROMAN NUMERAL SIX Ⅵ + 0x2166, # ROMAN NUMERAL SEVEN Ⅶ + 0x2167, # ROMAN NUMERAL EIGHT Ⅷ + 0x2168, # ROMAN NUMERAL NINE Ⅸ + 0x2169, # ROMAN NUMERAL TEN Ⅹ + 0x216A, # ROMAN NUMERAL ELEVEN Ⅺ + 0x216B, # ROMAN NUMERAL TWELVE Ⅻ + 0x216C, # ROMAN NUMERAL FIFTY Ⅼ + 0x216D, # ROMAN NUMERAL ONE HUNDRED Ⅽ + 0x216E, # ROMAN NUMERAL FIVE HUNDRED Ⅾ + 0x216F, # ROMAN NUMERAL ONE THOUSAND Ⅿ + 0x2183, # ROMAN NUMERAL REVERSED ONE HUNDRED Ↄ + 0x24B6, # CIRCLED LATIN CAPITAL LETTER A Ⓐ + 0x24B7, # CIRCLED LATIN CAPITAL LETTER B Ⓑ + 0x24B8, # CIRCLED LATIN CAPITAL LETTER C Ⓒ + 0x24B9, # CIRCLED LATIN CAPITAL LETTER D Ⓓ + 0x24BA, # CIRCLED LATIN CAPITAL LETTER E Ⓔ + 0x24BB, # CIRCLED LATIN CAPITAL LETTER F Ⓕ + 0x24BC, # CIRCLED LATIN CAPITAL LETTER G Ⓖ + 0x24BD, # CIRCLED LATIN CAPITAL LETTER H Ⓗ + 0x24BE, # CIRCLED LATIN CAPITAL LETTER I Ⓘ + 0x24BF, # CIRCLED LATIN CAPITAL LETTER J Ⓙ + 0x24C0, # CIRCLED LATIN CAPITAL LETTER K Ⓚ + 0x24C1, # CIRCLED LATIN CAPITAL LETTER L Ⓛ + 0x24C2, # CIRCLED LATIN CAPITAL LETTER M Ⓜ + 0x24C3, # CIRCLED LATIN CAPITAL LETTER N Ⓝ + 0x24C4, # CIRCLED LATIN CAPITAL LETTER O Ⓞ + 0x24C5, # CIRCLED LATIN CAPITAL LETTER P Ⓟ + 0x24C6, # CIRCLED LATIN CAPITAL LETTER Q Ⓠ + 0x24C7, # CIRCLED LATIN CAPITAL LETTER R Ⓡ + 0x24C8, # CIRCLED LATIN CAPITAL LETTER S Ⓢ + 0x24C9, # CIRCLED LATIN CAPITAL LETTER T Ⓣ + 0x24CA, # CIRCLED LATIN CAPITAL LETTER U Ⓤ + 0x24CB, # CIRCLED LATIN CAPITAL LETTER V Ⓥ + 0x24CC, # CIRCLED LATIN CAPITAL LETTER W Ⓦ + 0x24CD, # CIRCLED LATIN CAPITAL LETTER X Ⓧ + 0x24CE, # CIRCLED LATIN CAPITAL LETTER Y Ⓨ + 0x24CF, # CIRCLED LATIN CAPITAL LETTER Z Ⓩ + 0x2C00, # GLAGOLITIC CAPITAL LETTER AZU Ⰰ + 0x2C01, # GLAGOLITIC CAPITAL LETTER BUKY Ⰱ + 0x2C02, # GLAGOLITIC CAPITAL LETTER VEDE Ⰲ + 0x2C03, # GLAGOLITIC CAPITAL LETTER GLAGOLI Ⰳ + 0x2C04, # GLAGOLITIC CAPITAL LETTER DOBRO Ⰴ + 0x2C05, # GLAGOLITIC CAPITAL LETTER YESTU Ⰵ + 0x2C06, # GLAGOLITIC CAPITAL LETTER ZHIVETE Ⰶ + 0x2C07, # GLAGOLITIC CAPITAL LETTER DZELO Ⰷ + 0x2C08, # GLAGOLITIC CAPITAL LETTER ZEMLJA Ⰸ + 0x2C09, # GLAGOLITIC CAPITAL LETTER IZHE Ⰹ + 0x2C0A, # GLAGOLITIC CAPITAL LETTER INITIAL IZHE Ⰺ + 0x2C0B, # GLAGOLITIC CAPITAL LETTER I Ⰻ + 0x2C0C, # GLAGOLITIC CAPITAL LETTER DJERVI Ⰼ + 0x2C0D, # GLAGOLITIC CAPITAL LETTER KAKO Ⰽ + 0x2C0E, # GLAGOLITIC CAPITAL LETTER LJUDIJE Ⰾ + 0x2C0F, # GLAGOLITIC CAPITAL LETTER MYSLITE Ⰿ + 0x2C10, # GLAGOLITIC CAPITAL LETTER NASHI Ⱀ + 0x2C11, # GLAGOLITIC CAPITAL LETTER ONU Ⱁ + 0x2C12, # GLAGOLITIC CAPITAL LETTER POKOJI Ⱂ + 0x2C13, # GLAGOLITIC CAPITAL LETTER RITSI Ⱃ + 0x2C14, # GLAGOLITIC CAPITAL LETTER SLOVO Ⱄ + 0x2C15, # GLAGOLITIC CAPITAL LETTER TVRIDO Ⱅ + 0x2C16, # GLAGOLITIC CAPITAL LETTER UKU Ⱆ + 0x2C17, # GLAGOLITIC CAPITAL LETTER FRITU Ⱇ + 0x2C18, # GLAGOLITIC CAPITAL LETTER HERU Ⱈ + 0x2C19, # GLAGOLITIC CAPITAL LETTER OTU Ⱉ + 0x2C1A, # GLAGOLITIC CAPITAL LETTER PE Ⱊ + 0x2C1B, # GLAGOLITIC CAPITAL LETTER SHTA Ⱋ + 0x2C1C, # GLAGOLITIC CAPITAL LETTER TSI Ⱌ + 0x2C1D, # GLAGOLITIC CAPITAL LETTER CHRIVI Ⱍ + 0x2C1E, # GLAGOLITIC CAPITAL LETTER SHA Ⱎ + 0x2C1F, # GLAGOLITIC CAPITAL LETTER YERU Ⱏ + 0x2C20, # GLAGOLITIC CAPITAL LETTER YERI Ⱐ + 0x2C21, # GLAGOLITIC CAPITAL LETTER YATI Ⱑ + 0x2C22, # GLAGOLITIC CAPITAL LETTER SPIDERY HA Ⱒ + 0x2C23, # GLAGOLITIC CAPITAL LETTER YU Ⱓ + 0x2C24, # GLAGOLITIC CAPITAL LETTER SMALL YUS Ⱔ + 0x2C25, # GLAGOLITIC CAPITAL LETTER SMALL YUS WITH TAIL Ⱕ + 0x2C26, # GLAGOLITIC CAPITAL LETTER YO Ⱖ + 0x2C27, # GLAGOLITIC CAPITAL LETTER IOTATED SMALL YUS Ⱗ + 0x2C28, # GLAGOLITIC CAPITAL LETTER BIG YUS Ⱘ + 0x2C29, # GLAGOLITIC CAPITAL LETTER IOTATED BIG YUS Ⱙ + 0x2C2A, # GLAGOLITIC CAPITAL LETTER FITA Ⱚ + 0x2C2B, # GLAGOLITIC CAPITAL LETTER IZHITSA Ⱛ + 0x2C2C, # GLAGOLITIC CAPITAL LETTER SHTAPIC Ⱜ + 0x2C2D, # GLAGOLITIC CAPITAL LETTER TROKUTASTI A Ⱝ + 0x2C2E, # GLAGOLITIC CAPITAL LETTER LATINATE MYSLITE Ⱞ + 0x2C2F, # GLAGOLITIC CAPITAL LETTER CAUDATE CHRIVI Ⱟ + 0x2C60, # LATIN CAPITAL LETTER L WITH DOUBLE BAR Ⱡ + 0x2C62, # LATIN CAPITAL LETTER L WITH MIDDLE TILDE Ɫ + 0x2C63, # LATIN CAPITAL LETTER P WITH STROKE Ᵽ + 0x2C64, # LATIN CAPITAL LETTER R WITH TAIL Ɽ + 0x2C67, # LATIN CAPITAL LETTER H WITH DESCENDER Ⱨ + 0x2C69, # LATIN CAPITAL LETTER K WITH DESCENDER Ⱪ + 0x2C6B, # LATIN CAPITAL LETTER Z WITH DESCENDER Ⱬ + 0x2C6D, # LATIN CAPITAL LETTER ALPHA Ɑ + 0x2C6E, # LATIN CAPITAL LETTER M WITH HOOK Ɱ + 0x2C6F, # LATIN CAPITAL LETTER TURNED A Ɐ + 0x2C70, # LATIN CAPITAL LETTER TURNED ALPHA Ɒ + 0x2C72, # LATIN CAPITAL LETTER W WITH HOOK Ⱳ + 0x2C75, # LATIN CAPITAL LETTER HALF H Ⱶ + 0x2C7E, # LATIN CAPITAL LETTER S WITH SWASH TAIL Ȿ + 0x2C7F, # LATIN CAPITAL LETTER Z WITH SWASH TAIL Ɀ + 0x2C80, # COPTIC CAPITAL LETTER ALFA Ⲁ + 0x2C82, # COPTIC CAPITAL LETTER VIDA Ⲃ + 0x2C84, # COPTIC CAPITAL LETTER GAMMA Ⲅ + 0x2C86, # COPTIC CAPITAL LETTER DALDA Ⲇ + 0x2C88, # COPTIC CAPITAL LETTER EIE Ⲉ + 0x2C8A, # COPTIC CAPITAL LETTER SOU Ⲋ + 0x2C8C, # COPTIC CAPITAL LETTER ZATA Ⲍ + 0x2C8E, # COPTIC CAPITAL LETTER HATE Ⲏ + 0x2C90, # COPTIC CAPITAL LETTER THETHE Ⲑ + 0x2C92, # COPTIC CAPITAL LETTER IAUDA Ⲓ + 0x2C94, # COPTIC CAPITAL LETTER KAPA Ⲕ + 0x2C96, # COPTIC CAPITAL LETTER LAULA Ⲗ + 0x2C98, # COPTIC CAPITAL LETTER MI Ⲙ + 0x2C9A, # COPTIC CAPITAL LETTER NI Ⲛ + 0x2C9C, # COPTIC CAPITAL LETTER KSI Ⲝ + 0x2C9E, # COPTIC CAPITAL LETTER O Ⲟ + 0x2CA0, # COPTIC CAPITAL LETTER PI Ⲡ + 0x2CA2, # COPTIC CAPITAL LETTER RO Ⲣ + 0x2CA4, # COPTIC CAPITAL LETTER SIMA Ⲥ + 0x2CA6, # COPTIC CAPITAL LETTER TAU Ⲧ + 0x2CA8, # COPTIC CAPITAL LETTER UA Ⲩ + 0x2CAA, # COPTIC CAPITAL LETTER FI Ⲫ + 0x2CAC, # COPTIC CAPITAL LETTER KHI Ⲭ + 0x2CAE, # COPTIC CAPITAL LETTER PSI Ⲯ + 0x2CB0, # COPTIC CAPITAL LETTER OOU Ⲱ + 0x2CB2, # COPTIC CAPITAL LETTER DIALECT-P ALEF Ⲳ + 0x2CB4, # COPTIC CAPITAL LETTER OLD COPTIC AIN Ⲵ + 0x2CB6, # COPTIC CAPITAL LETTER CRYPTOGRAMMIC EIE Ⲷ + 0x2CB8, # COPTIC CAPITAL LETTER DIALECT-P KAPA Ⲹ + 0x2CBA, # COPTIC CAPITAL LETTER DIALECT-P NI Ⲻ + 0x2CBC, # COPTIC CAPITAL LETTER CRYPTOGRAMMIC NI Ⲽ + 0x2CBE, # COPTIC CAPITAL LETTER OLD COPTIC OOU Ⲿ + 0x2CC0, # COPTIC CAPITAL LETTER SAMPI Ⳁ + 0x2CC2, # COPTIC CAPITAL LETTER CROSSED SHEI Ⳃ + 0x2CC4, # COPTIC CAPITAL LETTER OLD COPTIC SHEI Ⳅ + 0x2CC6, # COPTIC CAPITAL LETTER OLD COPTIC ESH Ⳇ + 0x2CC8, # COPTIC CAPITAL LETTER AKHMIMIC KHEI Ⳉ + 0x2CCA, # COPTIC CAPITAL LETTER DIALECT-P HORI Ⳋ + 0x2CCC, # COPTIC CAPITAL LETTER OLD COPTIC HORI Ⳍ + 0x2CCE, # COPTIC CAPITAL LETTER OLD COPTIC HA Ⳏ + 0x2CD0, # COPTIC CAPITAL LETTER L-SHAPED HA Ⳑ + 0x2CD2, # COPTIC CAPITAL LETTER OLD COPTIC HEI Ⳓ + 0x2CD4, # COPTIC CAPITAL LETTER OLD COPTIC HAT Ⳕ + 0x2CD6, # COPTIC CAPITAL LETTER OLD COPTIC GANGIA Ⳗ + 0x2CD8, # COPTIC CAPITAL LETTER OLD COPTIC DJA Ⳙ + 0x2CDA, # COPTIC CAPITAL LETTER OLD COPTIC SHIMA Ⳛ + 0x2CDC, # COPTIC CAPITAL LETTER OLD NUBIAN SHIMA Ⳝ + 0x2CDE, # COPTIC CAPITAL LETTER OLD NUBIAN NGI Ⳟ + 0x2CE0, # COPTIC CAPITAL LETTER OLD NUBIAN NYI Ⳡ + 0x2CE2, # COPTIC CAPITAL LETTER OLD NUBIAN WAU Ⳣ + 0x2CEB, # COPTIC CAPITAL LETTER CRYPTOGRAMMIC SHEI Ⳬ + 0x2CED, # COPTIC CAPITAL LETTER CRYPTOGRAMMIC GANGIA Ⳮ + 0x2CF2, # COPTIC CAPITAL LETTER BOHAIRIC KHEI Ⳳ + 0xA640, # CYRILLIC CAPITAL LETTER ZEMLYA Ꙁ + 0xA642, # CYRILLIC CAPITAL LETTER DZELO Ꙃ + 0xA644, # CYRILLIC CAPITAL LETTER REVERSED DZE Ꙅ + 0xA646, # CYRILLIC CAPITAL LETTER IOTA Ꙇ + 0xA648, # CYRILLIC CAPITAL LETTER DJERV Ꙉ + 0xA64A, # CYRILLIC CAPITAL LETTER MONOGRAPH UK Ꙋ + 0xA64C, # CYRILLIC CAPITAL LETTER BROAD OMEGA Ꙍ + 0xA64E, # CYRILLIC CAPITAL LETTER NEUTRAL YER Ꙏ + 0xA650, # CYRILLIC CAPITAL LETTER YERU WITH BACK YER Ꙑ + 0xA652, # CYRILLIC CAPITAL LETTER IOTIFIED YAT Ꙓ + 0xA654, # CYRILLIC CAPITAL LETTER REVERSED YU Ꙕ + 0xA656, # CYRILLIC CAPITAL LETTER IOTIFIED A Ꙗ + 0xA658, # CYRILLIC CAPITAL LETTER CLOSED LITTLE YUS Ꙙ + 0xA65A, # CYRILLIC CAPITAL LETTER BLENDED YUS Ꙛ + 0xA65C, # CYRILLIC CAPITAL LETTER IOTIFIED CLOSED LITTLE YUS Ꙝ + 0xA65E, # CYRILLIC CAPITAL LETTER YN Ꙟ + 0xA660, # CYRILLIC CAPITAL LETTER REVERSED TSE Ꙡ + 0xA662, # CYRILLIC CAPITAL LETTER SOFT DE Ꙣ + 0xA664, # CYRILLIC CAPITAL LETTER SOFT EL Ꙥ + 0xA666, # CYRILLIC CAPITAL LETTER SOFT EM Ꙧ + 0xA668, # CYRILLIC CAPITAL LETTER MONOCULAR O Ꙩ + 0xA66A, # CYRILLIC CAPITAL LETTER BINOCULAR O Ꙫ + 0xA66C, # CYRILLIC CAPITAL LETTER DOUBLE MONOCULAR O Ꙭ + 0xA680, # CYRILLIC CAPITAL LETTER DWE Ꚁ + 0xA682, # CYRILLIC CAPITAL LETTER DZWE Ꚃ + 0xA684, # CYRILLIC CAPITAL LETTER ZHWE Ꚅ + 0xA686, # CYRILLIC CAPITAL LETTER CCHE Ꚇ + 0xA688, # CYRILLIC CAPITAL LETTER DZZE Ꚉ + 0xA68A, # CYRILLIC CAPITAL LETTER TE WITH MIDDLE HOOK Ꚋ + 0xA68C, # CYRILLIC CAPITAL LETTER TWE Ꚍ + 0xA68E, # CYRILLIC CAPITAL LETTER TSWE Ꚏ + 0xA690, # CYRILLIC CAPITAL LETTER TSSE Ꚑ + 0xA692, # CYRILLIC CAPITAL LETTER TCHE Ꚓ + 0xA694, # CYRILLIC CAPITAL LETTER HWE Ꚕ + 0xA696, # CYRILLIC CAPITAL LETTER SHWE Ꚗ + 0xA698, # CYRILLIC CAPITAL LETTER DOUBLE O Ꚙ + 0xA69A, # CYRILLIC CAPITAL LETTER CROSSED O Ꚛ + 0xA722, # LATIN CAPITAL LETTER EGYPTOLOGICAL ALEF Ꜣ + 0xA724, # LATIN CAPITAL LETTER EGYPTOLOGICAL AIN Ꜥ + 0xA726, # LATIN CAPITAL LETTER HENG Ꜧ + 0xA728, # LATIN CAPITAL LETTER TZ Ꜩ + 0xA72A, # LATIN CAPITAL LETTER TRESILLO Ꜫ + 0xA72C, # LATIN CAPITAL LETTER CUATRILLO Ꜭ + 0xA72E, # LATIN CAPITAL LETTER CUATRILLO WITH COMMA Ꜯ + 0xA732, # LATIN CAPITAL LETTER AA Ꜳ + 0xA734, # LATIN CAPITAL LETTER AO Ꜵ + 0xA736, # LATIN CAPITAL LETTER AU Ꜷ + 0xA738, # LATIN CAPITAL LETTER AV Ꜹ + 0xA73A, # LATIN CAPITAL LETTER AV WITH HORIZONTAL BAR Ꜻ + 0xA73C, # LATIN CAPITAL LETTER AY Ꜽ + 0xA73E, # LATIN CAPITAL LETTER REVERSED C WITH DOT Ꜿ + 0xA740, # LATIN CAPITAL LETTER K WITH STROKE Ꝁ + 0xA742, # LATIN CAPITAL LETTER K WITH DIAGONAL STROKE Ꝃ + 0xA744, # LATIN CAPITAL LETTER K WITH STROKE AND DIAGONAL STROKE Ꝅ + 0xA746, # LATIN CAPITAL LETTER BROKEN L Ꝇ + 0xA748, # LATIN CAPITAL LETTER L WITH HIGH STROKE Ꝉ + 0xA74A, # LATIN CAPITAL LETTER O WITH LONG STROKE OVERLAY Ꝋ + 0xA74C, # LATIN CAPITAL LETTER O WITH LOOP Ꝍ + 0xA74E, # LATIN CAPITAL LETTER OO Ꝏ + 0xA750, # LATIN CAPITAL LETTER P WITH STROKE THROUGH DESCENDER Ꝑ + 0xA752, # LATIN CAPITAL LETTER P WITH FLOURISH Ꝓ + 0xA754, # LATIN CAPITAL LETTER P WITH SQUIRREL TAIL Ꝕ + 0xA756, # LATIN CAPITAL LETTER Q WITH STROKE THROUGH DESCENDER Ꝗ + 0xA758, # LATIN CAPITAL LETTER Q WITH DIAGONAL STROKE Ꝙ + 0xA75A, # LATIN CAPITAL LETTER R ROTUNDA Ꝛ + 0xA75C, # LATIN CAPITAL LETTER RUM ROTUNDA Ꝝ + 0xA75E, # LATIN CAPITAL LETTER V WITH DIAGONAL STROKE Ꝟ + 0xA760, # LATIN CAPITAL LETTER VY Ꝡ + 0xA762, # LATIN CAPITAL LETTER VISIGOTHIC Z Ꝣ + 0xA764, # LATIN CAPITAL LETTER THORN WITH STROKE Ꝥ + 0xA766, # LATIN CAPITAL LETTER THORN WITH STROKE THROUGH DESCENDER Ꝧ + 0xA768, # LATIN CAPITAL LETTER VEND Ꝩ + 0xA76A, # LATIN CAPITAL LETTER ET Ꝫ + 0xA76C, # LATIN CAPITAL LETTER IS Ꝭ + 0xA76E, # LATIN CAPITAL LETTER CON Ꝯ + 0xA779, # LATIN CAPITAL LETTER INSULAR D Ꝺ + 0xA77B, # LATIN CAPITAL LETTER INSULAR F Ꝼ + 0xA77D, # LATIN CAPITAL LETTER INSULAR G Ᵹ + 0xA77E, # LATIN CAPITAL LETTER TURNED INSULAR G Ꝿ + 0xA780, # LATIN CAPITAL LETTER TURNED L Ꞁ + 0xA782, # LATIN CAPITAL LETTER INSULAR R Ꞃ + 0xA784, # LATIN CAPITAL LETTER INSULAR S Ꞅ + 0xA786, # LATIN CAPITAL LETTER INSULAR T Ꞇ + 0xA78B, # LATIN CAPITAL LETTER SALTILLO Ꞌ + 0xA78D, # LATIN CAPITAL LETTER TURNED H Ɥ + 0xA790, # LATIN CAPITAL LETTER N WITH DESCENDER Ꞑ + 0xA792, # LATIN CAPITAL LETTER C WITH BAR Ꞓ + 0xA796, # LATIN CAPITAL LETTER B WITH FLOURISH Ꞗ + 0xA798, # LATIN CAPITAL LETTER F WITH STROKE Ꞙ + 0xA79A, # LATIN CAPITAL LETTER VOLAPUK AE Ꞛ + 0xA79C, # LATIN CAPITAL LETTER VOLAPUK OE Ꞝ + 0xA79E, # LATIN CAPITAL LETTER VOLAPUK UE Ꞟ + 0xA7A0, # LATIN CAPITAL LETTER G WITH OBLIQUE STROKE Ꞡ + 0xA7A2, # LATIN CAPITAL LETTER K WITH OBLIQUE STROKE Ꞣ + 0xA7A4, # LATIN CAPITAL LETTER N WITH OBLIQUE STROKE Ꞥ + 0xA7A6, # LATIN CAPITAL LETTER R WITH OBLIQUE STROKE Ꞧ + 0xA7A8, # LATIN CAPITAL LETTER S WITH OBLIQUE STROKE Ꞩ + 0xA7AA, # LATIN CAPITAL LETTER H WITH HOOK Ɦ + 0xA7AB, # LATIN CAPITAL LETTER REVERSED OPEN E Ɜ + 0xA7AC, # LATIN CAPITAL LETTER SCRIPT G Ɡ + 0xA7AD, # LATIN CAPITAL LETTER L WITH BELT Ɬ + 0xA7AE, # LATIN CAPITAL LETTER SMALL CAPITAL I Ɪ + 0xA7B0, # LATIN CAPITAL LETTER TURNED K Ʞ + 0xA7B1, # LATIN CAPITAL LETTER TURNED T Ʇ + 0xA7B2, # LATIN CAPITAL LETTER J WITH CROSSED-TAIL Ʝ + 0xA7B3, # LATIN CAPITAL LETTER CHI Ꭓ + 0xA7B4, # LATIN CAPITAL LETTER BETA Ꞵ + 0xA7B6, # LATIN CAPITAL LETTER OMEGA Ꞷ + 0xA7B8, # LATIN CAPITAL LETTER U WITH STROKE Ꞹ + 0xA7BA, # LATIN CAPITAL LETTER GLOTTAL A Ꞻ + 0xA7BC, # LATIN CAPITAL LETTER GLOTTAL I Ꞽ + 0xA7BE, # LATIN CAPITAL LETTER GLOTTAL U Ꞿ + 0xA7C0, # LATIN CAPITAL LETTER OLD POLISH O Ꟁ + 0xA7C2, # LATIN CAPITAL LETTER ANGLICANA W Ꟃ + 0xA7C4, # LATIN CAPITAL LETTER C WITH PALATAL HOOK Ꞔ + 0xA7C5, # LATIN CAPITAL LETTER S WITH HOOK Ʂ + 0xA7C6, # LATIN CAPITAL LETTER Z WITH PALATAL HOOK Ᶎ + 0xA7C7, # LATIN CAPITAL LETTER D WITH SHORT STROKE OVERLAY Ꟈ + 0xA7C9, # LATIN CAPITAL LETTER S WITH SHORT STROKE OVERLAY Ꟊ + 0xA7D0, # LATIN CAPITAL LETTER CLOSED INSULAR G Ꟑ + 0xA7D6, # LATIN CAPITAL LETTER MIDDLE SCOTS S Ꟗ + 0xA7D8, # LATIN CAPITAL LETTER SIGMOID S Ꟙ + 0xA7F5, # LATIN CAPITAL LETTER REVERSED HALF H Ꟶ + 0xFF21, # FULLWIDTH LATIN CAPITAL LETTER A A + 0xFF22, # FULLWIDTH LATIN CAPITAL LETTER B B + 0xFF23, # FULLWIDTH LATIN CAPITAL LETTER C C + 0xFF24, # FULLWIDTH LATIN CAPITAL LETTER D D + 0xFF25, # FULLWIDTH LATIN CAPITAL LETTER E E + 0xFF26, # FULLWIDTH LATIN CAPITAL LETTER F F + 0xFF27, # FULLWIDTH LATIN CAPITAL LETTER G G + 0xFF28, # FULLWIDTH LATIN CAPITAL LETTER H H + 0xFF29, # FULLWIDTH LATIN CAPITAL LETTER I I + 0xFF2A, # FULLWIDTH LATIN CAPITAL LETTER J J + 0xFF2B, # FULLWIDTH LATIN CAPITAL LETTER K K + 0xFF2C, # FULLWIDTH LATIN CAPITAL LETTER L L + 0xFF2D, # FULLWIDTH LATIN CAPITAL LETTER M M + 0xFF2E, # FULLWIDTH LATIN CAPITAL LETTER N N + 0xFF2F, # FULLWIDTH LATIN CAPITAL LETTER O O + 0xFF30, # FULLWIDTH LATIN CAPITAL LETTER P P + 0xFF31, # FULLWIDTH LATIN CAPITAL LETTER Q Q + 0xFF32, # FULLWIDTH LATIN CAPITAL LETTER R R + 0xFF33, # FULLWIDTH LATIN CAPITAL LETTER S S + 0xFF34, # FULLWIDTH LATIN CAPITAL LETTER T T + 0xFF35, # FULLWIDTH LATIN CAPITAL LETTER U U + 0xFF36, # FULLWIDTH LATIN CAPITAL LETTER V V + 0xFF37, # FULLWIDTH LATIN CAPITAL LETTER W W + 0xFF38, # FULLWIDTH LATIN CAPITAL LETTER X X + 0xFF39, # FULLWIDTH LATIN CAPITAL LETTER Y Y + 0xFF3A, # FULLWIDTH LATIN CAPITAL LETTER Z Z + 0x10400, # DESERET CAPITAL LETTER LONG I 𐐀 + 0x10401, # DESERET CAPITAL LETTER LONG E 𐐁 + 0x10402, # DESERET CAPITAL LETTER LONG A 𐐂 + 0x10403, # DESERET CAPITAL LETTER LONG AH 𐐃 + 0x10404, # DESERET CAPITAL LETTER LONG O 𐐄 + 0x10405, # DESERET CAPITAL LETTER LONG OO 𐐅 + 0x10406, # DESERET CAPITAL LETTER SHORT I 𐐆 + 0x10407, # DESERET CAPITAL LETTER SHORT E 𐐇 + 0x10408, # DESERET CAPITAL LETTER SHORT A 𐐈 + 0x10409, # DESERET CAPITAL LETTER SHORT AH 𐐉 + 0x1040A, # DESERET CAPITAL LETTER SHORT O 𐐊 + 0x1040B, # DESERET CAPITAL LETTER SHORT OO 𐐋 + 0x1040C, # DESERET CAPITAL LETTER AY 𐐌 + 0x1040D, # DESERET CAPITAL LETTER OW 𐐍 + 0x1040E, # DESERET CAPITAL LETTER WU 𐐎 + 0x1040F, # DESERET CAPITAL LETTER YEE 𐐏 + 0x10410, # DESERET CAPITAL LETTER H 𐐐 + 0x10411, # DESERET CAPITAL LETTER PEE 𐐑 + 0x10412, # DESERET CAPITAL LETTER BEE 𐐒 + 0x10413, # DESERET CAPITAL LETTER TEE 𐐓 + 0x10414, # DESERET CAPITAL LETTER DEE 𐐔 + 0x10415, # DESERET CAPITAL LETTER CHEE 𐐕 + 0x10416, # DESERET CAPITAL LETTER JEE 𐐖 + 0x10417, # DESERET CAPITAL LETTER KAY 𐐗 + 0x10418, # DESERET CAPITAL LETTER GAY 𐐘 + 0x10419, # DESERET CAPITAL LETTER EF 𐐙 + 0x1041A, # DESERET CAPITAL LETTER VEE 𐐚 + 0x1041B, # DESERET CAPITAL LETTER ETH 𐐛 + 0x1041C, # DESERET CAPITAL LETTER THEE 𐐜 + 0x1041D, # DESERET CAPITAL LETTER ES 𐐝 + 0x1041E, # DESERET CAPITAL LETTER ZEE 𐐞 + 0x1041F, # DESERET CAPITAL LETTER ESH 𐐟 + 0x10420, # DESERET CAPITAL LETTER ZHEE 𐐠 + 0x10421, # DESERET CAPITAL LETTER ER 𐐡 + 0x10422, # DESERET CAPITAL LETTER EL 𐐢 + 0x10423, # DESERET CAPITAL LETTER EM 𐐣 + 0x10424, # DESERET CAPITAL LETTER EN 𐐤 + 0x10425, # DESERET CAPITAL LETTER ENG 𐐥 + 0x10426, # DESERET CAPITAL LETTER OI 𐐦 + 0x10427, # DESERET CAPITAL LETTER EW 𐐧 + 0x104B0, # OSAGE CAPITAL LETTER A 𐒰 + 0x104B1, # OSAGE CAPITAL LETTER AI 𐒱 + 0x104B2, # OSAGE CAPITAL LETTER AIN 𐒲 + 0x104B3, # OSAGE CAPITAL LETTER AH 𐒳 + 0x104B4, # OSAGE CAPITAL LETTER BRA 𐒴 + 0x104B5, # OSAGE CAPITAL LETTER CHA 𐒵 + 0x104B6, # OSAGE CAPITAL LETTER EHCHA 𐒶 + 0x104B7, # OSAGE CAPITAL LETTER E 𐒷 + 0x104B8, # OSAGE CAPITAL LETTER EIN 𐒸 + 0x104B9, # OSAGE CAPITAL LETTER HA 𐒹 + 0x104BA, # OSAGE CAPITAL LETTER HYA 𐒺 + 0x104BB, # OSAGE CAPITAL LETTER I 𐒻 + 0x104BC, # OSAGE CAPITAL LETTER KA 𐒼 + 0x104BD, # OSAGE CAPITAL LETTER EHKA 𐒽 + 0x104BE, # OSAGE CAPITAL LETTER KYA 𐒾 + 0x104BF, # OSAGE CAPITAL LETTER LA 𐒿 + 0x104C0, # OSAGE CAPITAL LETTER MA 𐓀 + 0x104C1, # OSAGE CAPITAL LETTER NA 𐓁 + 0x104C2, # OSAGE CAPITAL LETTER O 𐓂 + 0x104C3, # OSAGE CAPITAL LETTER OIN 𐓃 + 0x104C4, # OSAGE CAPITAL LETTER PA 𐓄 + 0x104C5, # OSAGE CAPITAL LETTER EHPA 𐓅 + 0x104C6, # OSAGE CAPITAL LETTER SA 𐓆 + 0x104C7, # OSAGE CAPITAL LETTER SHA 𐓇 + 0x104C8, # OSAGE CAPITAL LETTER TA 𐓈 + 0x104C9, # OSAGE CAPITAL LETTER EHTA 𐓉 + 0x104CA, # OSAGE CAPITAL LETTER TSA 𐓊 + 0x104CB, # OSAGE CAPITAL LETTER EHTSA 𐓋 + 0x104CC, # OSAGE CAPITAL LETTER TSHA 𐓌 + 0x104CD, # OSAGE CAPITAL LETTER DHA 𐓍 + 0x104CE, # OSAGE CAPITAL LETTER U 𐓎 + 0x104CF, # OSAGE CAPITAL LETTER WA 𐓏 + 0x104D0, # OSAGE CAPITAL LETTER KHA 𐓐 + 0x104D1, # OSAGE CAPITAL LETTER GHA 𐓑 + 0x104D2, # OSAGE CAPITAL LETTER ZA 𐓒 + 0x104D3, # OSAGE CAPITAL LETTER ZHA 𐓓 + 0x10570, # VITHKUQI CAPITAL LETTER A 𐕰 + 0x10571, # VITHKUQI CAPITAL LETTER BBE 𐕱 + 0x10572, # VITHKUQI CAPITAL LETTER BE 𐕲 + 0x10573, # VITHKUQI CAPITAL LETTER CE 𐕳 + 0x10574, # VITHKUQI CAPITAL LETTER CHE 𐕴 + 0x10575, # VITHKUQI CAPITAL LETTER DE 𐕵 + 0x10576, # VITHKUQI CAPITAL LETTER DHE 𐕶 + 0x10577, # VITHKUQI CAPITAL LETTER EI 𐕷 + 0x10578, # VITHKUQI CAPITAL LETTER E 𐕸 + 0x10579, # VITHKUQI CAPITAL LETTER FE 𐕹 + 0x1057A, # VITHKUQI CAPITAL LETTER GA 𐕺 + 0x1057C, # VITHKUQI CAPITAL LETTER HA 𐕼 + 0x1057D, # VITHKUQI CAPITAL LETTER HHA 𐕽 + 0x1057E, # VITHKUQI CAPITAL LETTER I 𐕾 + 0x1057F, # VITHKUQI CAPITAL LETTER IJE 𐕿 + 0x10580, # VITHKUQI CAPITAL LETTER JE 𐖀 + 0x10581, # VITHKUQI CAPITAL LETTER KA 𐖁 + 0x10582, # VITHKUQI CAPITAL LETTER LA 𐖂 + 0x10583, # VITHKUQI CAPITAL LETTER LLA 𐖃 + 0x10584, # VITHKUQI CAPITAL LETTER ME 𐖄 + 0x10585, # VITHKUQI CAPITAL LETTER NE 𐖅 + 0x10586, # VITHKUQI CAPITAL LETTER NJE 𐖆 + 0x10587, # VITHKUQI CAPITAL LETTER O 𐖇 + 0x10588, # VITHKUQI CAPITAL LETTER PE 𐖈 + 0x10589, # VITHKUQI CAPITAL LETTER QA 𐖉 + 0x1058A, # VITHKUQI CAPITAL LETTER RE 𐖊 + 0x1058C, # VITHKUQI CAPITAL LETTER SE 𐖌 + 0x1058D, # VITHKUQI CAPITAL LETTER SHE 𐖍 + 0x1058E, # VITHKUQI CAPITAL LETTER TE 𐖎 + 0x1058F, # VITHKUQI CAPITAL LETTER THE 𐖏 + 0x10590, # VITHKUQI CAPITAL LETTER U 𐖐 + 0x10591, # VITHKUQI CAPITAL LETTER VE 𐖑 + 0x10592, # VITHKUQI CAPITAL LETTER XE 𐖒 + 0x10594, # VITHKUQI CAPITAL LETTER Y 𐖔 + 0x10595, # VITHKUQI CAPITAL LETTER ZE 𐖕 + 0x10C80, # OLD HUNGARIAN CAPITAL LETTER A 𐲀 + 0x10C81, # OLD HUNGARIAN CAPITAL LETTER AA 𐲁 + 0x10C82, # OLD HUNGARIAN CAPITAL LETTER EB 𐲂 + 0x10C83, # OLD HUNGARIAN CAPITAL LETTER AMB 𐲃 + 0x10C84, # OLD HUNGARIAN CAPITAL LETTER EC 𐲄 + 0x10C85, # OLD HUNGARIAN CAPITAL LETTER ENC 𐲅 + 0x10C86, # OLD HUNGARIAN CAPITAL LETTER ECS 𐲆 + 0x10C87, # OLD HUNGARIAN CAPITAL LETTER ED 𐲇 + 0x10C88, # OLD HUNGARIAN CAPITAL LETTER AND 𐲈 + 0x10C89, # OLD HUNGARIAN CAPITAL LETTER E 𐲉 + 0x10C8A, # OLD HUNGARIAN CAPITAL LETTER CLOSE E 𐲊 + 0x10C8B, # OLD HUNGARIAN CAPITAL LETTER EE 𐲋 + 0x10C8C, # OLD HUNGARIAN CAPITAL LETTER EF 𐲌 + 0x10C8D, # OLD HUNGARIAN CAPITAL LETTER EG 𐲍 + 0x10C8E, # OLD HUNGARIAN CAPITAL LETTER EGY 𐲎 + 0x10C8F, # OLD HUNGARIAN CAPITAL LETTER EH 𐲏 + 0x10C90, # OLD HUNGARIAN CAPITAL LETTER I 𐲐 + 0x10C91, # OLD HUNGARIAN CAPITAL LETTER II 𐲑 + 0x10C92, # OLD HUNGARIAN CAPITAL LETTER EJ 𐲒 + 0x10C93, # OLD HUNGARIAN CAPITAL LETTER EK 𐲓 + 0x10C94, # OLD HUNGARIAN CAPITAL LETTER AK 𐲔 + 0x10C95, # OLD HUNGARIAN CAPITAL LETTER UNK 𐲕 + 0x10C96, # OLD HUNGARIAN CAPITAL LETTER EL 𐲖 + 0x10C97, # OLD HUNGARIAN CAPITAL LETTER ELY 𐲗 + 0x10C98, # OLD HUNGARIAN CAPITAL LETTER EM 𐲘 + 0x10C99, # OLD HUNGARIAN CAPITAL LETTER EN 𐲙 + 0x10C9A, # OLD HUNGARIAN CAPITAL LETTER ENY 𐲚 + 0x10C9B, # OLD HUNGARIAN CAPITAL LETTER O 𐲛 + 0x10C9C, # OLD HUNGARIAN CAPITAL LETTER OO 𐲜 + 0x10C9D, # OLD HUNGARIAN CAPITAL LETTER NIKOLSBURG OE 𐲝 + 0x10C9E, # OLD HUNGARIAN CAPITAL LETTER RUDIMENTA OE 𐲞 + 0x10C9F, # OLD HUNGARIAN CAPITAL LETTER OEE 𐲟 + 0x10CA0, # OLD HUNGARIAN CAPITAL LETTER EP 𐲠 + 0x10CA1, # OLD HUNGARIAN CAPITAL LETTER EMP 𐲡 + 0x10CA2, # OLD HUNGARIAN CAPITAL LETTER ER 𐲢 + 0x10CA3, # OLD HUNGARIAN CAPITAL LETTER SHORT ER 𐲣 + 0x10CA4, # OLD HUNGARIAN CAPITAL LETTER ES 𐲤 + 0x10CA5, # OLD HUNGARIAN CAPITAL LETTER ESZ 𐲥 + 0x10CA6, # OLD HUNGARIAN CAPITAL LETTER ET 𐲦 + 0x10CA7, # OLD HUNGARIAN CAPITAL LETTER ENT 𐲧 + 0x10CA8, # OLD HUNGARIAN CAPITAL LETTER ETY 𐲨 + 0x10CA9, # OLD HUNGARIAN CAPITAL LETTER ECH 𐲩 + 0x10CAA, # OLD HUNGARIAN CAPITAL LETTER U 𐲪 + 0x10CAB, # OLD HUNGARIAN CAPITAL LETTER UU 𐲫 + 0x10CAC, # OLD HUNGARIAN CAPITAL LETTER NIKOLSBURG UE 𐲬 + 0x10CAD, # OLD HUNGARIAN CAPITAL LETTER RUDIMENTA UE 𐲭 + 0x10CAE, # OLD HUNGARIAN CAPITAL LETTER EV 𐲮 + 0x10CAF, # OLD HUNGARIAN CAPITAL LETTER EZ 𐲯 + 0x10CB0, # OLD HUNGARIAN CAPITAL LETTER EZS 𐲰 + 0x10CB1, # OLD HUNGARIAN CAPITAL LETTER ENT-SHAPED SIGN 𐲱 + 0x10CB2, # OLD HUNGARIAN CAPITAL LETTER US 𐲲 + 0x118A0, # WARANG CITI CAPITAL LETTER NGAA 𑢠 + 0x118A1, # WARANG CITI CAPITAL LETTER A 𑢡 + 0x118A2, # WARANG CITI CAPITAL LETTER WI 𑢢 + 0x118A3, # WARANG CITI CAPITAL LETTER YU 𑢣 + 0x118A4, # WARANG CITI CAPITAL LETTER YA 𑢤 + 0x118A5, # WARANG CITI CAPITAL LETTER YO 𑢥 + 0x118A6, # WARANG CITI CAPITAL LETTER II 𑢦 + 0x118A7, # WARANG CITI CAPITAL LETTER UU 𑢧 + 0x118A8, # WARANG CITI CAPITAL LETTER E 𑢨 + 0x118A9, # WARANG CITI CAPITAL LETTER O 𑢩 + 0x118AA, # WARANG CITI CAPITAL LETTER ANG 𑢪 + 0x118AB, # WARANG CITI CAPITAL LETTER GA 𑢫 + 0x118AC, # WARANG CITI CAPITAL LETTER KO 𑢬 + 0x118AD, # WARANG CITI CAPITAL LETTER ENY 𑢭 + 0x118AE, # WARANG CITI CAPITAL LETTER YUJ 𑢮 + 0x118AF, # WARANG CITI CAPITAL LETTER UC 𑢯 + 0x118B0, # WARANG CITI CAPITAL LETTER ENN 𑢰 + 0x118B1, # WARANG CITI CAPITAL LETTER ODD 𑢱 + 0x118B2, # WARANG CITI CAPITAL LETTER TTE 𑢲 + 0x118B3, # WARANG CITI CAPITAL LETTER NUNG 𑢳 + 0x118B4, # WARANG CITI CAPITAL LETTER DA 𑢴 + 0x118B5, # WARANG CITI CAPITAL LETTER AT 𑢵 + 0x118B6, # WARANG CITI CAPITAL LETTER AM 𑢶 + 0x118B7, # WARANG CITI CAPITAL LETTER BU 𑢷 + 0x118B8, # WARANG CITI CAPITAL LETTER PU 𑢸 + 0x118B9, # WARANG CITI CAPITAL LETTER HIYO 𑢹 + 0x118BA, # WARANG CITI CAPITAL LETTER HOLO 𑢺 + 0x118BB, # WARANG CITI CAPITAL LETTER HORR 𑢻 + 0x118BC, # WARANG CITI CAPITAL LETTER HAR 𑢼 + 0x118BD, # WARANG CITI CAPITAL LETTER SSUU 𑢽 + 0x118BE, # WARANG CITI CAPITAL LETTER SII 𑢾 + 0x118BF, # WARANG CITI CAPITAL LETTER VIYO 𑢿 + 0x16E40, # MEDEFAIDRIN CAPITAL LETTER M 𖹀 + 0x16E41, # MEDEFAIDRIN CAPITAL LETTER S 𖹁 + 0x16E42, # MEDEFAIDRIN CAPITAL LETTER V 𖹂 + 0x16E43, # MEDEFAIDRIN CAPITAL LETTER W 𖹃 + 0x16E44, # MEDEFAIDRIN CAPITAL LETTER ATIU 𖹄 + 0x16E45, # MEDEFAIDRIN CAPITAL LETTER Z 𖹅 + 0x16E46, # MEDEFAIDRIN CAPITAL LETTER KP 𖹆 + 0x16E47, # MEDEFAIDRIN CAPITAL LETTER P 𖹇 + 0x16E48, # MEDEFAIDRIN CAPITAL LETTER T 𖹈 + 0x16E49, # MEDEFAIDRIN CAPITAL LETTER G 𖹉 + 0x16E4A, # MEDEFAIDRIN CAPITAL LETTER F 𖹊 + 0x16E4B, # MEDEFAIDRIN CAPITAL LETTER I 𖹋 + 0x16E4C, # MEDEFAIDRIN CAPITAL LETTER K 𖹌 + 0x16E4D, # MEDEFAIDRIN CAPITAL LETTER A 𖹍 + 0x16E4E, # MEDEFAIDRIN CAPITAL LETTER J 𖹎 + 0x16E4F, # MEDEFAIDRIN CAPITAL LETTER E 𖹏 + 0x16E50, # MEDEFAIDRIN CAPITAL LETTER B 𖹐 + 0x16E51, # MEDEFAIDRIN CAPITAL LETTER C 𖹑 + 0x16E52, # MEDEFAIDRIN CAPITAL LETTER U 𖹒 + 0x16E53, # MEDEFAIDRIN CAPITAL LETTER YU 𖹓 + 0x16E54, # MEDEFAIDRIN CAPITAL LETTER L 𖹔 + 0x16E55, # MEDEFAIDRIN CAPITAL LETTER Q 𖹕 + 0x16E56, # MEDEFAIDRIN CAPITAL LETTER HP 𖹖 + 0x16E57, # MEDEFAIDRIN CAPITAL LETTER NY 𖹗 + 0x16E58, # MEDEFAIDRIN CAPITAL LETTER X 𖹘 + 0x16E59, # MEDEFAIDRIN CAPITAL LETTER D 𖹙 + 0x16E5A, # MEDEFAIDRIN CAPITAL LETTER OE 𖹚 + 0x16E5B, # MEDEFAIDRIN CAPITAL LETTER N 𖹛 + 0x16E5C, # MEDEFAIDRIN CAPITAL LETTER R 𖹜 + 0x16E5D, # MEDEFAIDRIN CAPITAL LETTER O 𖹝 + 0x16E5E, # MEDEFAIDRIN CAPITAL LETTER AI 𖹞 + 0x16E5F, # MEDEFAIDRIN CAPITAL LETTER Y 𖹟 + 0x1E900, # ADLAM CAPITAL LETTER ALIF 𞤀 + 0x1E901, # ADLAM CAPITAL LETTER DAALI 𞤁 + 0x1E902, # ADLAM CAPITAL LETTER LAAM 𞤂 + 0x1E903, # ADLAM CAPITAL LETTER MIIM 𞤃 + 0x1E904, # ADLAM CAPITAL LETTER BA 𞤄 + 0x1E905, # ADLAM CAPITAL LETTER SINNYIIYHE 𞤅 + 0x1E906, # ADLAM CAPITAL LETTER PE 𞤆 + 0x1E907, # ADLAM CAPITAL LETTER BHE 𞤇 + 0x1E908, # ADLAM CAPITAL LETTER RA 𞤈 + 0x1E909, # ADLAM CAPITAL LETTER E 𞤉 + 0x1E90A, # ADLAM CAPITAL LETTER FA 𞤊 + 0x1E90B, # ADLAM CAPITAL LETTER I 𞤋 + 0x1E90C, # ADLAM CAPITAL LETTER O 𞤌 + 0x1E90D, # ADLAM CAPITAL LETTER DHA 𞤍 + 0x1E90E, # ADLAM CAPITAL LETTER YHE 𞤎 + 0x1E90F, # ADLAM CAPITAL LETTER WAW 𞤏 + 0x1E910, # ADLAM CAPITAL LETTER NUN 𞤐 + 0x1E911, # ADLAM CAPITAL LETTER KAF 𞤑 + 0x1E912, # ADLAM CAPITAL LETTER YA 𞤒 + 0x1E913, # ADLAM CAPITAL LETTER U 𞤓 + 0x1E914, # ADLAM CAPITAL LETTER JIIM 𞤔 + 0x1E915, # ADLAM CAPITAL LETTER CHI 𞤕 + 0x1E916, # ADLAM CAPITAL LETTER HA 𞤖 + 0x1E917, # ADLAM CAPITAL LETTER QAAF 𞤗 + 0x1E918, # ADLAM CAPITAL LETTER GA 𞤘 + 0x1E919, # ADLAM CAPITAL LETTER NYA 𞤙 + 0x1E91A, # ADLAM CAPITAL LETTER TU 𞤚 + 0x1E91B, # ADLAM CAPITAL LETTER NHA 𞤛 + 0x1E91C, # ADLAM CAPITAL LETTER VA 𞤜 + 0x1E91D, # ADLAM CAPITAL LETTER KHA 𞤝 + 0x1E91E, # ADLAM CAPITAL LETTER GBE 𞤞 + 0x1E91F, # ADLAM CAPITAL LETTER ZAL 𞤟 + 0x1E920, # ADLAM CAPITAL LETTER KPO 𞤠 + 0x1E921, # ADLAM CAPITAL LETTER SHA 𞤡 +) +alias uppercase_mapping = List[UInt32, hint_trivial_type=True]( + 0x0041, # a -> A + 0x0042, # b -> B + 0x0043, # c -> C + 0x0044, # d -> D + 0x0045, # e -> E + 0x0046, # f -> F + 0x0047, # g -> G + 0x0048, # h -> H + 0x0049, # i -> I + 0x004A, # j -> J + 0x004B, # k -> K + 0x004C, # l -> L + 0x004D, # m -> M + 0x004E, # n -> N + 0x004F, # o -> O + 0x0050, # p -> P + 0x0051, # q -> Q + 0x0052, # r -> R + 0x0053, # s -> S + 0x0054, # t -> T + 0x0055, # u -> U + 0x0056, # v -> V + 0x0057, # w -> W + 0x0058, # x -> X + 0x0059, # y -> Y + 0x005A, # z -> Z + 0x039C, # µ -> Μ + 0x00C0, # à -> À + 0x00C1, # á -> Á + 0x00C2, # â ->  + 0x00C3, # ã -> à + 0x00C4, # ä -> Ä + 0x00C5, # å -> Å + 0x00C6, # æ -> Æ + 0x00C7, # ç -> Ç + 0x00C8, # è -> È + 0x00C9, # é -> É + 0x00CA, # ê -> Ê + 0x00CB, # ë -> Ë + 0x00CC, # ì -> Ì + 0x00CD, # í -> Í + 0x00CE, # î -> Î + 0x00CF, # ï -> Ï + 0x00D0, # ð -> Ð + 0x00D1, # ñ -> Ñ + 0x00D2, # ò -> Ò + 0x00D3, # ó -> Ó + 0x00D4, # ô -> Ô + 0x00D5, # õ -> Õ + 0x00D6, # ö -> Ö + 0x00D8, # ø -> Ø + 0x00D9, # ù -> Ù + 0x00DA, # ú -> Ú + 0x00DB, # û -> Û + 0x00DC, # ü -> Ü + 0x00DD, # ý -> Ý + 0x00DE, # þ -> Þ + 0x0178, # ÿ -> Ÿ + 0x0100, # ā -> Ā + 0x0102, # ă -> Ă + 0x0104, # ą -> Ą + 0x0106, # ć -> Ć + 0x0108, # ĉ -> Ĉ + 0x010A, # ċ -> Ċ + 0x010C, # č -> Č + 0x010E, # ď -> Ď + 0x0110, # đ -> Đ + 0x0112, # ē -> Ē + 0x0114, # ĕ -> Ĕ + 0x0116, # ė -> Ė + 0x0118, # ę -> Ę + 0x011A, # ě -> Ě + 0x011C, # ĝ -> Ĝ + 0x011E, # ğ -> Ğ + 0x0120, # ġ -> Ġ + 0x0122, # ģ -> Ģ + 0x0124, # ĥ -> Ĥ + 0x0126, # ħ -> Ħ + 0x0128, # ĩ -> Ĩ + 0x012A, # ī -> Ī + 0x012C, # ĭ -> Ĭ + 0x012E, # į -> Į + 0x0049, # ı -> I + 0x0132, # ij -> IJ + 0x0134, # ĵ -> Ĵ + 0x0136, # ķ -> Ķ + 0x0139, # ĺ -> Ĺ + 0x013B, # ļ -> Ļ + 0x013D, # ľ -> Ľ + 0x013F, # ŀ -> Ŀ + 0x0141, # ł -> Ł + 0x0143, # ń -> Ń + 0x0145, # ņ -> Ņ + 0x0147, # ň -> Ň + 0x014A, # ŋ -> Ŋ + 0x014C, # ō -> Ō + 0x014E, # ŏ -> Ŏ + 0x0150, # ő -> Ő + 0x0152, # œ -> Œ + 0x0154, # ŕ -> Ŕ + 0x0156, # ŗ -> Ŗ + 0x0158, # ř -> Ř + 0x015A, # ś -> Ś + 0x015C, # ŝ -> Ŝ + 0x015E, # ş -> Ş + 0x0160, # š -> Š + 0x0162, # ţ -> Ţ + 0x0164, # ť -> Ť + 0x0166, # ŧ -> Ŧ + 0x0168, # ũ -> Ũ + 0x016A, # ū -> Ū + 0x016C, # ŭ -> Ŭ + 0x016E, # ů -> Ů + 0x0170, # ű -> Ű + 0x0172, # ų -> Ų + 0x0174, # ŵ -> Ŵ + 0x0176, # ŷ -> Ŷ + 0x0179, # ź -> Ź + 0x017B, # ż -> Ż + 0x017D, # ž -> Ž + 0x0053, # ſ -> S + 0x0243, # ƀ -> Ƀ + 0x0182, # ƃ -> Ƃ + 0x0184, # ƅ -> Ƅ + 0x0187, # ƈ -> Ƈ + 0x018B, # ƌ -> Ƌ + 0x0191, # ƒ -> Ƒ + 0x01F6, # ƕ -> Ƕ + 0x0198, # ƙ -> Ƙ + 0x023D, # ƚ -> Ƚ + 0x0220, # ƞ -> Ƞ + 0x01A0, # ơ -> Ơ + 0x01A2, # ƣ -> Ƣ + 0x01A4, # ƥ -> Ƥ + 0x01A7, # ƨ -> Ƨ + 0x01AC, # ƭ -> Ƭ + 0x01AF, # ư -> Ư + 0x01B3, # ƴ -> Ƴ + 0x01B5, # ƶ -> Ƶ + 0x01B8, # ƹ -> Ƹ + 0x01BC, # ƽ -> Ƽ + 0x01F7, # ƿ -> Ƿ + 0x01C4, # Dž -> DŽ + 0x01C4, # dž -> DŽ + 0x01C7, # Lj -> LJ + 0x01C7, # lj -> LJ + 0x01CA, # Nj -> NJ + 0x01CA, # nj -> NJ + 0x01CD, # ǎ -> Ǎ + 0x01CF, # ǐ -> Ǐ + 0x01D1, # ǒ -> Ǒ + 0x01D3, # ǔ -> Ǔ + 0x01D5, # ǖ -> Ǖ + 0x01D7, # ǘ -> Ǘ + 0x01D9, # ǚ -> Ǚ + 0x01DB, # ǜ -> Ǜ + 0x018E, # ǝ -> Ǝ + 0x01DE, # ǟ -> Ǟ + 0x01E0, # ǡ -> Ǡ + 0x01E2, # ǣ -> Ǣ + 0x01E4, # ǥ -> Ǥ + 0x01E6, # ǧ -> Ǧ + 0x01E8, # ǩ -> Ǩ + 0x01EA, # ǫ -> Ǫ + 0x01EC, # ǭ -> Ǭ + 0x01EE, # ǯ -> Ǯ + 0x01F1, # Dz -> DZ + 0x01F1, # dz -> DZ + 0x01F4, # ǵ -> Ǵ + 0x01F8, # ǹ -> Ǹ + 0x01FA, # ǻ -> Ǻ + 0x01FC, # ǽ -> Ǽ + 0x01FE, # ǿ -> Ǿ + 0x0200, # ȁ -> Ȁ + 0x0202, # ȃ -> Ȃ + 0x0204, # ȅ -> Ȅ + 0x0206, # ȇ -> Ȇ + 0x0208, # ȉ -> Ȉ + 0x020A, # ȋ -> Ȋ + 0x020C, # ȍ -> Ȍ + 0x020E, # ȏ -> Ȏ + 0x0210, # ȑ -> Ȑ + 0x0212, # ȓ -> Ȓ + 0x0214, # ȕ -> Ȕ + 0x0216, # ȗ -> Ȗ + 0x0218, # ș -> Ș + 0x021A, # ț -> Ț + 0x021C, # ȝ -> Ȝ + 0x021E, # ȟ -> Ȟ + 0x0222, # ȣ -> Ȣ + 0x0224, # ȥ -> Ȥ + 0x0226, # ȧ -> Ȧ + 0x0228, # ȩ -> Ȩ + 0x022A, # ȫ -> Ȫ + 0x022C, # ȭ -> Ȭ + 0x022E, # ȯ -> Ȯ + 0x0230, # ȱ -> Ȱ + 0x0232, # ȳ -> Ȳ + 0x023B, # ȼ -> Ȼ + 0x2C7E, # ȿ -> Ȿ + 0x2C7F, # ɀ -> Ɀ + 0x0241, # ɂ -> Ɂ + 0x0246, # ɇ -> Ɇ + 0x0248, # ɉ -> Ɉ + 0x024A, # ɋ -> Ɋ + 0x024C, # ɍ -> Ɍ + 0x024E, # ɏ -> Ɏ + 0x2C6F, # ɐ -> Ɐ + 0x2C6D, # ɑ -> Ɑ + 0x2C70, # ɒ -> Ɒ + 0x0181, # ɓ -> Ɓ + 0x0186, # ɔ -> Ɔ + 0x0189, # ɖ -> Ɖ + 0x018A, # ɗ -> Ɗ + 0x018F, # ə -> Ə + 0x0190, # ɛ -> Ɛ + 0xA7AB, # ɜ -> Ɜ + 0x0193, # ɠ -> Ɠ + 0xA7AC, # ɡ -> Ɡ + 0x0194, # ɣ -> Ɣ + 0xA78D, # ɥ -> Ɥ + 0xA7AA, # ɦ -> Ɦ + 0x0197, # ɨ -> Ɨ + 0x0196, # ɩ -> Ɩ + 0xA7AE, # ɪ -> Ɪ + 0x2C62, # ɫ -> Ɫ + 0xA7AD, # ɬ -> Ɬ + 0x019C, # ɯ -> Ɯ + 0x2C6E, # ɱ -> Ɱ + 0x019D, # ɲ -> Ɲ + 0x019F, # ɵ -> Ɵ + 0x2C64, # ɽ -> Ɽ + 0x01A6, # ʀ -> Ʀ + 0xA7C5, # ʂ -> Ʂ + 0x01A9, # ʃ -> Ʃ + 0xA7B1, # ʇ -> Ʇ + 0x01AE, # ʈ -> Ʈ + 0x0244, # ʉ -> Ʉ + 0x01B1, # ʊ -> Ʊ + 0x01B2, # ʋ -> Ʋ + 0x0245, # ʌ -> Ʌ + 0x01B7, # ʒ -> Ʒ + 0xA7B2, # ʝ -> Ʝ + 0xA7B0, # ʞ -> Ʞ + 0x0399, # ͅ -> Ι + 0x0370, # ͱ -> Ͱ + 0x0372, # ͳ -> Ͳ + 0x0376, # ͷ -> Ͷ + 0x03FD, # ͻ -> Ͻ + 0x03FE, # ͼ -> Ͼ + 0x03FF, # ͽ -> Ͽ + 0x0386, # ά -> Ά + 0x0388, # έ -> Έ + 0x0389, # ή -> Ή + 0x038A, # ί -> Ί + 0x0391, # α -> Α + 0x0392, # β -> Β + 0x0393, # γ -> Γ + 0x0394, # δ -> Δ + 0x0395, # ε -> Ε + 0x0396, # ζ -> Ζ + 0x0397, # η -> Η + 0x0398, # θ -> Θ + 0x0399, # ι -> Ι + 0x039A, # κ -> Κ + 0x039B, # λ -> Λ + 0x039C, # μ -> Μ + 0x039D, # ν -> Ν + 0x039E, # ξ -> Ξ + 0x039F, # ο -> Ο + 0x03A0, # π -> Π + 0x03A1, # ρ -> Ρ + 0x03A3, # ς -> Σ + 0x03A3, # σ -> Σ + 0x03A4, # τ -> Τ + 0x03A5, # υ -> Υ + 0x03A6, # φ -> Φ + 0x03A7, # χ -> Χ + 0x03A8, # ψ -> Ψ + 0x03A9, # ω -> Ω + 0x03AA, # ϊ -> Ϊ + 0x03AB, # ϋ -> Ϋ + 0x038C, # ό -> Ό + 0x038E, # ύ -> Ύ + 0x038F, # ώ -> Ώ + 0x0392, # ϐ -> Β + 0x0398, # ϑ -> Θ + 0x03A6, # ϕ -> Φ + 0x03A0, # ϖ -> Π + 0x03CF, # ϗ -> Ϗ + 0x03D8, # ϙ -> Ϙ + 0x03DA, # ϛ -> Ϛ + 0x03DC, # ϝ -> Ϝ + 0x03DE, # ϟ -> Ϟ + 0x03E0, # ϡ -> Ϡ + 0x03E2, # ϣ -> Ϣ + 0x03E4, # ϥ -> Ϥ + 0x03E6, # ϧ -> Ϧ + 0x03E8, # ϩ -> Ϩ + 0x03EA, # ϫ -> Ϫ + 0x03EC, # ϭ -> Ϭ + 0x03EE, # ϯ -> Ϯ + 0x039A, # ϰ -> Κ + 0x03A1, # ϱ -> Ρ + 0x03F9, # ϲ -> Ϲ + 0x037F, # ϳ -> Ϳ + 0x0395, # ϵ -> Ε + 0x03F7, # ϸ -> Ϸ + 0x03FA, # ϻ -> Ϻ + 0x0410, # а -> А + 0x0411, # б -> Б + 0x0412, # в -> В + 0x0413, # г -> Г + 0x0414, # д -> Д + 0x0415, # е -> Е + 0x0416, # ж -> Ж + 0x0417, # з -> З + 0x0418, # и -> И + 0x0419, # й -> Й + 0x041A, # к -> К + 0x041B, # л -> Л + 0x041C, # м -> М + 0x041D, # н -> Н + 0x041E, # о -> О + 0x041F, # п -> П + 0x0420, # р -> Р + 0x0421, # с -> С + 0x0422, # т -> Т + 0x0423, # у -> У + 0x0424, # ф -> Ф + 0x0425, # х -> Х + 0x0426, # ц -> Ц + 0x0427, # ч -> Ч + 0x0428, # ш -> Ш + 0x0429, # щ -> Щ + 0x042A, # ъ -> Ъ + 0x042B, # ы -> Ы + 0x042C, # ь -> Ь + 0x042D, # э -> Э + 0x042E, # ю -> Ю + 0x042F, # я -> Я + 0x0400, # ѐ -> Ѐ + 0x0401, # ё -> Ё + 0x0402, # ђ -> Ђ + 0x0403, # ѓ -> Ѓ + 0x0404, # є -> Є + 0x0405, # ѕ -> Ѕ + 0x0406, # і -> І + 0x0407, # ї -> Ї + 0x0408, # ј -> Ј + 0x0409, # љ -> Љ + 0x040A, # њ -> Њ + 0x040B, # ћ -> Ћ + 0x040C, # ќ -> Ќ + 0x040D, # ѝ -> Ѝ + 0x040E, # ў -> Ў + 0x040F, # џ -> Џ + 0x0460, # ѡ -> Ѡ + 0x0462, # ѣ -> Ѣ + 0x0464, # ѥ -> Ѥ + 0x0466, # ѧ -> Ѧ + 0x0468, # ѩ -> Ѩ + 0x046A, # ѫ -> Ѫ + 0x046C, # ѭ -> Ѭ + 0x046E, # ѯ -> Ѯ + 0x0470, # ѱ -> Ѱ + 0x0472, # ѳ -> Ѳ + 0x0474, # ѵ -> Ѵ + 0x0476, # ѷ -> Ѷ + 0x0478, # ѹ -> Ѹ + 0x047A, # ѻ -> Ѻ + 0x047C, # ѽ -> Ѽ + 0x047E, # ѿ -> Ѿ + 0x0480, # ҁ -> Ҁ + 0x048A, # ҋ -> Ҋ + 0x048C, # ҍ -> Ҍ + 0x048E, # ҏ -> Ҏ + 0x0490, # ґ -> Ґ + 0x0492, # ғ -> Ғ + 0x0494, # ҕ -> Ҕ + 0x0496, # җ -> Җ + 0x0498, # ҙ -> Ҙ + 0x049A, # қ -> Қ + 0x049C, # ҝ -> Ҝ + 0x049E, # ҟ -> Ҟ + 0x04A0, # ҡ -> Ҡ + 0x04A2, # ң -> Ң + 0x04A4, # ҥ -> Ҥ + 0x04A6, # ҧ -> Ҧ + 0x04A8, # ҩ -> Ҩ + 0x04AA, # ҫ -> Ҫ + 0x04AC, # ҭ -> Ҭ + 0x04AE, # ү -> Ү + 0x04B0, # ұ -> Ұ + 0x04B2, # ҳ -> Ҳ + 0x04B4, # ҵ -> Ҵ + 0x04B6, # ҷ -> Ҷ + 0x04B8, # ҹ -> Ҹ + 0x04BA, # һ -> Һ + 0x04BC, # ҽ -> Ҽ + 0x04BE, # ҿ -> Ҿ + 0x04C1, # ӂ -> Ӂ + 0x04C3, # ӄ -> Ӄ + 0x04C5, # ӆ -> Ӆ + 0x04C7, # ӈ -> Ӈ + 0x04C9, # ӊ -> Ӊ + 0x04CB, # ӌ -> Ӌ + 0x04CD, # ӎ -> Ӎ + 0x04C0, # ӏ -> Ӏ + 0x04D0, # ӑ -> Ӑ + 0x04D2, # ӓ -> Ӓ + 0x04D4, # ӕ -> Ӕ + 0x04D6, # ӗ -> Ӗ + 0x04D8, # ә -> Ә + 0x04DA, # ӛ -> Ӛ + 0x04DC, # ӝ -> Ӝ + 0x04DE, # ӟ -> Ӟ + 0x04E0, # ӡ -> Ӡ + 0x04E2, # ӣ -> Ӣ + 0x04E4, # ӥ -> Ӥ + 0x04E6, # ӧ -> Ӧ + 0x04E8, # ө -> Ө + 0x04EA, # ӫ -> Ӫ + 0x04EC, # ӭ -> Ӭ + 0x04EE, # ӯ -> Ӯ + 0x04F0, # ӱ -> Ӱ + 0x04F2, # ӳ -> Ӳ + 0x04F4, # ӵ -> Ӵ + 0x04F6, # ӷ -> Ӷ + 0x04F8, # ӹ -> Ӹ + 0x04FA, # ӻ -> Ӻ + 0x04FC, # ӽ -> Ӽ + 0x04FE, # ӿ -> Ӿ + 0x0500, # ԁ -> Ԁ + 0x0502, # ԃ -> Ԃ + 0x0504, # ԅ -> Ԅ + 0x0506, # ԇ -> Ԇ + 0x0508, # ԉ -> Ԉ + 0x050A, # ԋ -> Ԋ + 0x050C, # ԍ -> Ԍ + 0x050E, # ԏ -> Ԏ + 0x0510, # ԑ -> Ԑ + 0x0512, # ԓ -> Ԓ + 0x0514, # ԕ -> Ԕ + 0x0516, # ԗ -> Ԗ + 0x0518, # ԙ -> Ԙ + 0x051A, # ԛ -> Ԛ + 0x051C, # ԝ -> Ԝ + 0x051E, # ԟ -> Ԟ + 0x0520, # ԡ -> Ԡ + 0x0522, # ԣ -> Ԣ + 0x0524, # ԥ -> Ԥ + 0x0526, # ԧ -> Ԧ + 0x0528, # ԩ -> Ԩ + 0x052A, # ԫ -> Ԫ + 0x052C, # ԭ -> Ԭ + 0x052E, # ԯ -> Ԯ + 0x0531, # ա -> Ա + 0x0532, # բ -> Բ + 0x0533, # գ -> Գ + 0x0534, # դ -> Դ + 0x0535, # ե -> Ե + 0x0536, # զ -> Զ + 0x0537, # է -> Է + 0x0538, # ը -> Ը + 0x0539, # թ -> Թ + 0x053A, # ժ -> Ժ + 0x053B, # ի -> Ի + 0x053C, # լ -> Լ + 0x053D, # խ -> Խ + 0x053E, # ծ -> Ծ + 0x053F, # կ -> Կ + 0x0540, # հ -> Հ + 0x0541, # ձ -> Ձ + 0x0542, # ղ -> Ղ + 0x0543, # ճ -> Ճ + 0x0544, # մ -> Մ + 0x0545, # յ -> Յ + 0x0546, # ն -> Ն + 0x0547, # շ -> Շ + 0x0548, # ո -> Ո + 0x0549, # չ -> Չ + 0x054A, # պ -> Պ + 0x054B, # ջ -> Ջ + 0x054C, # ռ -> Ռ + 0x054D, # ս -> Ս + 0x054E, # վ -> Վ + 0x054F, # տ -> Տ + 0x0550, # ր -> Ր + 0x0551, # ց -> Ց + 0x0552, # ւ -> Ւ + 0x0553, # փ -> Փ + 0x0554, # ք -> Ք + 0x0555, # օ -> Օ + 0x0556, # ֆ -> Ֆ + 0x1C90, # ა -> Ა + 0x1C91, # ბ -> Ბ + 0x1C92, # გ -> Გ + 0x1C93, # დ -> Დ + 0x1C94, # ე -> Ე + 0x1C95, # ვ -> Ვ + 0x1C96, # ზ -> Ზ + 0x1C97, # თ -> Თ + 0x1C98, # ი -> Ი + 0x1C99, # კ -> Კ + 0x1C9A, # ლ -> Ლ + 0x1C9B, # მ -> Მ + 0x1C9C, # ნ -> Ნ + 0x1C9D, # ო -> Ო + 0x1C9E, # პ -> Პ + 0x1C9F, # ჟ -> Ჟ + 0x1CA0, # რ -> Რ + 0x1CA1, # ს -> Ს + 0x1CA2, # ტ -> Ტ + 0x1CA3, # უ -> Უ + 0x1CA4, # ფ -> Ფ + 0x1CA5, # ქ -> Ქ + 0x1CA6, # ღ -> Ღ + 0x1CA7, # ყ -> Ყ + 0x1CA8, # შ -> Შ + 0x1CA9, # ჩ -> Ჩ + 0x1CAA, # ც -> Ც + 0x1CAB, # ძ -> Ძ + 0x1CAC, # წ -> Წ + 0x1CAD, # ჭ -> Ჭ + 0x1CAE, # ხ -> Ხ + 0x1CAF, # ჯ -> Ჯ + 0x1CB0, # ჰ -> Ჰ + 0x1CB1, # ჱ -> Ჱ + 0x1CB2, # ჲ -> Ჲ + 0x1CB3, # ჳ -> Ჳ + 0x1CB4, # ჴ -> Ჴ + 0x1CB5, # ჵ -> Ჵ + 0x1CB6, # ჶ -> Ჶ + 0x1CB7, # ჷ -> Ჷ + 0x1CB8, # ჸ -> Ჸ + 0x1CB9, # ჹ -> Ჹ + 0x1CBA, # ჺ -> Ჺ + 0x1CBD, # ჽ -> Ჽ + 0x1CBE, # ჾ -> Ჾ + 0x1CBF, # ჿ -> Ჿ + 0x13F0, # ᏸ -> Ᏸ + 0x13F1, # ᏹ -> Ᏹ + 0x13F2, # ᏺ -> Ᏺ + 0x13F3, # ᏻ -> Ᏻ + 0x13F4, # ᏼ -> Ᏼ + 0x13F5, # ᏽ -> Ᏽ + 0x0412, # ᲀ -> В + 0x0414, # ᲁ -> Д + 0x041E, # ᲂ -> О + 0x0421, # ᲃ -> С + 0x0422, # ᲄ -> Т + 0x0422, # ᲅ -> Т + 0x042A, # ᲆ -> Ъ + 0x0462, # ᲇ -> Ѣ + 0xA64A, # ᲈ -> Ꙋ + 0xA77D, # ᵹ -> Ᵹ + 0x2C63, # ᵽ -> Ᵽ + 0xA7C6, # ᶎ -> Ᶎ + 0x1E00, # ḁ -> Ḁ + 0x1E02, # ḃ -> Ḃ + 0x1E04, # ḅ -> Ḅ + 0x1E06, # ḇ -> Ḇ + 0x1E08, # ḉ -> Ḉ + 0x1E0A, # ḋ -> Ḋ + 0x1E0C, # ḍ -> Ḍ + 0x1E0E, # ḏ -> Ḏ + 0x1E10, # ḑ -> Ḑ + 0x1E12, # ḓ -> Ḓ + 0x1E14, # ḕ -> Ḕ + 0x1E16, # ḗ -> Ḗ + 0x1E18, # ḙ -> Ḙ + 0x1E1A, # ḛ -> Ḛ + 0x1E1C, # ḝ -> Ḝ + 0x1E1E, # ḟ -> Ḟ + 0x1E20, # ḡ -> Ḡ + 0x1E22, # ḣ -> Ḣ + 0x1E24, # ḥ -> Ḥ + 0x1E26, # ḧ -> Ḧ + 0x1E28, # ḩ -> Ḩ + 0x1E2A, # ḫ -> Ḫ + 0x1E2C, # ḭ -> Ḭ + 0x1E2E, # ḯ -> Ḯ + 0x1E30, # ḱ -> Ḱ + 0x1E32, # ḳ -> Ḳ + 0x1E34, # ḵ -> Ḵ + 0x1E36, # ḷ -> Ḷ + 0x1E38, # ḹ -> Ḹ + 0x1E3A, # ḻ -> Ḻ + 0x1E3C, # ḽ -> Ḽ + 0x1E3E, # ḿ -> Ḿ + 0x1E40, # ṁ -> Ṁ + 0x1E42, # ṃ -> Ṃ + 0x1E44, # ṅ -> Ṅ + 0x1E46, # ṇ -> Ṇ + 0x1E48, # ṉ -> Ṉ + 0x1E4A, # ṋ -> Ṋ + 0x1E4C, # ṍ -> Ṍ + 0x1E4E, # ṏ -> Ṏ + 0x1E50, # ṑ -> Ṑ + 0x1E52, # ṓ -> Ṓ + 0x1E54, # ṕ -> Ṕ + 0x1E56, # ṗ -> Ṗ + 0x1E58, # ṙ -> Ṙ + 0x1E5A, # ṛ -> Ṛ + 0x1E5C, # ṝ -> Ṝ + 0x1E5E, # ṟ -> Ṟ + 0x1E60, # ṡ -> Ṡ + 0x1E62, # ṣ -> Ṣ + 0x1E64, # ṥ -> Ṥ + 0x1E66, # ṧ -> Ṧ + 0x1E68, # ṩ -> Ṩ + 0x1E6A, # ṫ -> Ṫ + 0x1E6C, # ṭ -> Ṭ + 0x1E6E, # ṯ -> Ṯ + 0x1E70, # ṱ -> Ṱ + 0x1E72, # ṳ -> Ṳ + 0x1E74, # ṵ -> Ṵ + 0x1E76, # ṷ -> Ṷ + 0x1E78, # ṹ -> Ṹ + 0x1E7A, # ṻ -> Ṻ + 0x1E7C, # ṽ -> Ṽ + 0x1E7E, # ṿ -> Ṿ + 0x1E80, # ẁ -> Ẁ + 0x1E82, # ẃ -> Ẃ + 0x1E84, # ẅ -> Ẅ + 0x1E86, # ẇ -> Ẇ + 0x1E88, # ẉ -> Ẉ + 0x1E8A, # ẋ -> Ẋ + 0x1E8C, # ẍ -> Ẍ + 0x1E8E, # ẏ -> Ẏ + 0x1E90, # ẑ -> Ẑ + 0x1E92, # ẓ -> Ẓ + 0x1E94, # ẕ -> Ẕ + 0x1E60, # ẛ -> Ṡ + 0x1EA0, # ạ -> Ạ + 0x1EA2, # ả -> Ả + 0x1EA4, # ấ -> Ấ + 0x1EA6, # ầ -> Ầ + 0x1EA8, # ẩ -> Ẩ + 0x1EAA, # ẫ -> Ẫ + 0x1EAC, # ậ -> Ậ + 0x1EAE, # ắ -> Ắ + 0x1EB0, # ằ -> Ằ + 0x1EB2, # ẳ -> Ẳ + 0x1EB4, # ẵ -> Ẵ + 0x1EB6, # ặ -> Ặ + 0x1EB8, # ẹ -> Ẹ + 0x1EBA, # ẻ -> Ẻ + 0x1EBC, # ẽ -> Ẽ + 0x1EBE, # ế -> Ế + 0x1EC0, # ề -> Ề + 0x1EC2, # ể -> Ể + 0x1EC4, # ễ -> Ễ + 0x1EC6, # ệ -> Ệ + 0x1EC8, # ỉ -> Ỉ + 0x1ECA, # ị -> Ị + 0x1ECC, # ọ -> Ọ + 0x1ECE, # ỏ -> Ỏ + 0x1ED0, # ố -> Ố + 0x1ED2, # ồ -> Ồ + 0x1ED4, # ổ -> Ổ + 0x1ED6, # ỗ -> Ỗ + 0x1ED8, # ộ -> Ộ + 0x1EDA, # ớ -> Ớ + 0x1EDC, # ờ -> Ờ + 0x1EDE, # ở -> Ở + 0x1EE0, # ỡ -> Ỡ + 0x1EE2, # ợ -> Ợ + 0x1EE4, # ụ -> Ụ + 0x1EE6, # ủ -> Ủ + 0x1EE8, # ứ -> Ứ + 0x1EEA, # ừ -> Ừ + 0x1EEC, # ử -> Ử + 0x1EEE, # ữ -> Ữ + 0x1EF0, # ự -> Ự + 0x1EF2, # ỳ -> Ỳ + 0x1EF4, # ỵ -> Ỵ + 0x1EF6, # ỷ -> Ỷ + 0x1EF8, # ỹ -> Ỹ + 0x1EFA, # ỻ -> Ỻ + 0x1EFC, # ỽ -> Ỽ + 0x1EFE, # ỿ -> Ỿ + 0x1F08, # ἀ -> Ἀ + 0x1F09, # ἁ -> Ἁ + 0x1F0A, # ἂ -> Ἂ + 0x1F0B, # ἃ -> Ἃ + 0x1F0C, # ἄ -> Ἄ + 0x1F0D, # ἅ -> Ἅ + 0x1F0E, # ἆ -> Ἆ + 0x1F0F, # ἇ -> Ἇ + 0x1F18, # ἐ -> Ἐ + 0x1F19, # ἑ -> Ἑ + 0x1F1A, # ἒ -> Ἒ + 0x1F1B, # ἓ -> Ἓ + 0x1F1C, # ἔ -> Ἔ + 0x1F1D, # ἕ -> Ἕ + 0x1F28, # ἠ -> Ἠ + 0x1F29, # ἡ -> Ἡ + 0x1F2A, # ἢ -> Ἢ + 0x1F2B, # ἣ -> Ἣ + 0x1F2C, # ἤ -> Ἤ + 0x1F2D, # ἥ -> Ἥ + 0x1F2E, # ἦ -> Ἦ + 0x1F2F, # ἧ -> Ἧ + 0x1F38, # ἰ -> Ἰ + 0x1F39, # ἱ -> Ἱ + 0x1F3A, # ἲ -> Ἲ + 0x1F3B, # ἳ -> Ἳ + 0x1F3C, # ἴ -> Ἴ + 0x1F3D, # ἵ -> Ἵ + 0x1F3E, # ἶ -> Ἶ + 0x1F3F, # ἷ -> Ἷ + 0x1F48, # ὀ -> Ὀ + 0x1F49, # ὁ -> Ὁ + 0x1F4A, # ὂ -> Ὂ + 0x1F4B, # ὃ -> Ὃ + 0x1F4C, # ὄ -> Ὄ + 0x1F4D, # ὅ -> Ὅ + 0x1F59, # ὑ -> Ὑ + 0x1F5B, # ὓ -> Ὓ + 0x1F5D, # ὕ -> Ὕ + 0x1F5F, # ὗ -> Ὗ + 0x1F68, # ὠ -> Ὠ + 0x1F69, # ὡ -> Ὡ + 0x1F6A, # ὢ -> Ὢ + 0x1F6B, # ὣ -> Ὣ + 0x1F6C, # ὤ -> Ὤ + 0x1F6D, # ὥ -> Ὥ + 0x1F6E, # ὦ -> Ὦ + 0x1F6F, # ὧ -> Ὧ + 0x1FBA, # ὰ -> Ὰ + 0x1FBB, # ά -> Ά + 0x1FC8, # ὲ -> Ὲ + 0x1FC9, # έ -> Έ + 0x1FCA, # ὴ -> Ὴ + 0x1FCB, # ή -> Ή + 0x1FDA, # ὶ -> Ὶ + 0x1FDB, # ί -> Ί + 0x1FF8, # ὸ -> Ὸ + 0x1FF9, # ό -> Ό + 0x1FEA, # ὺ -> Ὺ + 0x1FEB, # ύ -> Ύ + 0x1FFA, # ὼ -> Ὼ + 0x1FFB, # ώ -> Ώ + 0x1F88, # ᾀ -> ᾈ + 0x1F89, # ᾁ -> ᾉ + 0x1F8A, # ᾂ -> ᾊ + 0x1F8B, # ᾃ -> ᾋ + 0x1F8C, # ᾄ -> ᾌ + 0x1F8D, # ᾅ -> ᾍ + 0x1F8E, # ᾆ -> ᾎ + 0x1F8F, # ᾇ -> ᾏ + 0x1F98, # ᾐ -> ᾘ + 0x1F99, # ᾑ -> ᾙ + 0x1F9A, # ᾒ -> ᾚ + 0x1F9B, # ᾓ -> ᾛ + 0x1F9C, # ᾔ -> ᾜ + 0x1F9D, # ᾕ -> ᾝ + 0x1F9E, # ᾖ -> ᾞ + 0x1F9F, # ᾗ -> ᾟ + 0x1FA8, # ᾠ -> ᾨ + 0x1FA9, # ᾡ -> ᾩ + 0x1FAA, # ᾢ -> ᾪ + 0x1FAB, # ᾣ -> ᾫ + 0x1FAC, # ᾤ -> ᾬ + 0x1FAD, # ᾥ -> ᾭ + 0x1FAE, # ᾦ -> ᾮ + 0x1FAF, # ᾧ -> ᾯ + 0x1FB8, # ᾰ -> Ᾰ + 0x1FB9, # ᾱ -> Ᾱ + 0x1FBC, # ᾳ -> ᾼ + 0x0399, # ι -> Ι + 0x1FCC, # ῃ -> ῌ + 0x1FD8, # ῐ -> Ῐ + 0x1FD9, # ῑ -> Ῑ + 0x1FE8, # ῠ -> Ῠ + 0x1FE9, # ῡ -> Ῡ + 0x1FEC, # ῥ -> Ῥ + 0x1FFC, # ῳ -> ῼ + 0x2132, # ⅎ -> Ⅎ + 0x2160, # ⅰ -> Ⅰ + 0x2161, # ⅱ -> Ⅱ + 0x2162, # ⅲ -> Ⅲ + 0x2163, # ⅳ -> Ⅳ + 0x2164, # ⅴ -> Ⅴ + 0x2165, # ⅵ -> Ⅵ + 0x2166, # ⅶ -> Ⅶ + 0x2167, # ⅷ -> Ⅷ + 0x2168, # ⅸ -> Ⅸ + 0x2169, # ⅹ -> Ⅹ + 0x216A, # ⅺ -> Ⅺ + 0x216B, # ⅻ -> Ⅻ + 0x216C, # ⅼ -> Ⅼ + 0x216D, # ⅽ -> Ⅽ + 0x216E, # ⅾ -> Ⅾ + 0x216F, # ⅿ -> Ⅿ + 0x2183, # ↄ -> Ↄ + 0x24B6, # ⓐ -> Ⓐ + 0x24B7, # ⓑ -> Ⓑ + 0x24B8, # ⓒ -> Ⓒ + 0x24B9, # ⓓ -> Ⓓ + 0x24BA, # ⓔ -> Ⓔ + 0x24BB, # ⓕ -> Ⓕ + 0x24BC, # ⓖ -> Ⓖ + 0x24BD, # ⓗ -> Ⓗ + 0x24BE, # ⓘ -> Ⓘ + 0x24BF, # ⓙ -> Ⓙ + 0x24C0, # ⓚ -> Ⓚ + 0x24C1, # ⓛ -> Ⓛ + 0x24C2, # ⓜ -> Ⓜ + 0x24C3, # ⓝ -> Ⓝ + 0x24C4, # ⓞ -> Ⓞ + 0x24C5, # ⓟ -> Ⓟ + 0x24C6, # ⓠ -> Ⓠ + 0x24C7, # ⓡ -> Ⓡ + 0x24C8, # ⓢ -> Ⓢ + 0x24C9, # ⓣ -> Ⓣ + 0x24CA, # ⓤ -> Ⓤ + 0x24CB, # ⓥ -> Ⓥ + 0x24CC, # ⓦ -> Ⓦ + 0x24CD, # ⓧ -> Ⓧ + 0x24CE, # ⓨ -> Ⓨ + 0x24CF, # ⓩ -> Ⓩ + 0x2C00, # ⰰ -> Ⰰ + 0x2C01, # ⰱ -> Ⰱ + 0x2C02, # ⰲ -> Ⰲ + 0x2C03, # ⰳ -> Ⰳ + 0x2C04, # ⰴ -> Ⰴ + 0x2C05, # ⰵ -> Ⰵ + 0x2C06, # ⰶ -> Ⰶ + 0x2C07, # ⰷ -> Ⰷ + 0x2C08, # ⰸ -> Ⰸ + 0x2C09, # ⰹ -> Ⰹ + 0x2C0A, # ⰺ -> Ⰺ + 0x2C0B, # ⰻ -> Ⰻ + 0x2C0C, # ⰼ -> Ⰼ + 0x2C0D, # ⰽ -> Ⰽ + 0x2C0E, # ⰾ -> Ⰾ + 0x2C0F, # ⰿ -> Ⰿ + 0x2C10, # ⱀ -> Ⱀ + 0x2C11, # ⱁ -> Ⱁ + 0x2C12, # ⱂ -> Ⱂ + 0x2C13, # ⱃ -> Ⱃ + 0x2C14, # ⱄ -> Ⱄ + 0x2C15, # ⱅ -> Ⱅ + 0x2C16, # ⱆ -> Ⱆ + 0x2C17, # ⱇ -> Ⱇ + 0x2C18, # ⱈ -> Ⱈ + 0x2C19, # ⱉ -> Ⱉ + 0x2C1A, # ⱊ -> Ⱊ + 0x2C1B, # ⱋ -> Ⱋ + 0x2C1C, # ⱌ -> Ⱌ + 0x2C1D, # ⱍ -> Ⱍ + 0x2C1E, # ⱎ -> Ⱎ + 0x2C1F, # ⱏ -> Ⱏ + 0x2C20, # ⱐ -> Ⱐ + 0x2C21, # ⱑ -> Ⱑ + 0x2C22, # ⱒ -> Ⱒ + 0x2C23, # ⱓ -> Ⱓ + 0x2C24, # ⱔ -> Ⱔ + 0x2C25, # ⱕ -> Ⱕ + 0x2C26, # ⱖ -> Ⱖ + 0x2C27, # ⱗ -> Ⱗ + 0x2C28, # ⱘ -> Ⱘ + 0x2C29, # ⱙ -> Ⱙ + 0x2C2A, # ⱚ -> Ⱚ + 0x2C2B, # ⱛ -> Ⱛ + 0x2C2C, # ⱜ -> Ⱜ + 0x2C2D, # ⱝ -> Ⱝ + 0x2C2E, # ⱞ -> Ⱞ + 0x2C2F, # ⱟ -> Ⱟ + 0x2C60, # ⱡ -> Ⱡ + 0x023A, # ⱥ -> Ⱥ + 0x023E, # ⱦ -> Ⱦ + 0x2C67, # ⱨ -> Ⱨ + 0x2C69, # ⱪ -> Ⱪ + 0x2C6B, # ⱬ -> Ⱬ + 0x2C72, # ⱳ -> Ⱳ + 0x2C75, # ⱶ -> Ⱶ + 0x2C80, # ⲁ -> Ⲁ + 0x2C82, # ⲃ -> Ⲃ + 0x2C84, # ⲅ -> Ⲅ + 0x2C86, # ⲇ -> Ⲇ + 0x2C88, # ⲉ -> Ⲉ + 0x2C8A, # ⲋ -> Ⲋ + 0x2C8C, # ⲍ -> Ⲍ + 0x2C8E, # ⲏ -> Ⲏ + 0x2C90, # ⲑ -> Ⲑ + 0x2C92, # ⲓ -> Ⲓ + 0x2C94, # ⲕ -> Ⲕ + 0x2C96, # ⲗ -> Ⲗ + 0x2C98, # ⲙ -> Ⲙ + 0x2C9A, # ⲛ -> Ⲛ + 0x2C9C, # ⲝ -> Ⲝ + 0x2C9E, # ⲟ -> Ⲟ + 0x2CA0, # ⲡ -> Ⲡ + 0x2CA2, # ⲣ -> Ⲣ + 0x2CA4, # ⲥ -> Ⲥ + 0x2CA6, # ⲧ -> Ⲧ + 0x2CA8, # ⲩ -> Ⲩ + 0x2CAA, # ⲫ -> Ⲫ + 0x2CAC, # ⲭ -> Ⲭ + 0x2CAE, # ⲯ -> Ⲯ + 0x2CB0, # ⲱ -> Ⲱ + 0x2CB2, # ⲳ -> Ⲳ + 0x2CB4, # ⲵ -> Ⲵ + 0x2CB6, # ⲷ -> Ⲷ + 0x2CB8, # ⲹ -> Ⲹ + 0x2CBA, # ⲻ -> Ⲻ + 0x2CBC, # ⲽ -> Ⲽ + 0x2CBE, # ⲿ -> Ⲿ + 0x2CC0, # ⳁ -> Ⳁ + 0x2CC2, # ⳃ -> Ⳃ + 0x2CC4, # ⳅ -> Ⳅ + 0x2CC6, # ⳇ -> Ⳇ + 0x2CC8, # ⳉ -> Ⳉ + 0x2CCA, # ⳋ -> Ⳋ + 0x2CCC, # ⳍ -> Ⳍ + 0x2CCE, # ⳏ -> Ⳏ + 0x2CD0, # ⳑ -> Ⳑ + 0x2CD2, # ⳓ -> Ⳓ + 0x2CD4, # ⳕ -> Ⳕ + 0x2CD6, # ⳗ -> Ⳗ + 0x2CD8, # ⳙ -> Ⳙ + 0x2CDA, # ⳛ -> Ⳛ + 0x2CDC, # ⳝ -> Ⳝ + 0x2CDE, # ⳟ -> Ⳟ + 0x2CE0, # ⳡ -> Ⳡ + 0x2CE2, # ⳣ -> Ⳣ + 0x2CEB, # ⳬ -> Ⳬ + 0x2CED, # ⳮ -> Ⳮ + 0x2CF2, # ⳳ -> Ⳳ + 0x10A0, # ⴀ -> Ⴀ + 0x10A1, # ⴁ -> Ⴁ + 0x10A2, # ⴂ -> Ⴂ + 0x10A3, # ⴃ -> Ⴃ + 0x10A4, # ⴄ -> Ⴄ + 0x10A5, # ⴅ -> Ⴅ + 0x10A6, # ⴆ -> Ⴆ + 0x10A7, # ⴇ -> Ⴇ + 0x10A8, # ⴈ -> Ⴈ + 0x10A9, # ⴉ -> Ⴉ + 0x10AA, # ⴊ -> Ⴊ + 0x10AB, # ⴋ -> Ⴋ + 0x10AC, # ⴌ -> Ⴌ + 0x10AD, # ⴍ -> Ⴍ + 0x10AE, # ⴎ -> Ⴎ + 0x10AF, # ⴏ -> Ⴏ + 0x10B0, # ⴐ -> Ⴐ + 0x10B1, # ⴑ -> Ⴑ + 0x10B2, # ⴒ -> Ⴒ + 0x10B3, # ⴓ -> Ⴓ + 0x10B4, # ⴔ -> Ⴔ + 0x10B5, # ⴕ -> Ⴕ + 0x10B6, # ⴖ -> Ⴖ + 0x10B7, # ⴗ -> Ⴗ + 0x10B8, # ⴘ -> Ⴘ + 0x10B9, # ⴙ -> Ⴙ + 0x10BA, # ⴚ -> Ⴚ + 0x10BB, # ⴛ -> Ⴛ + 0x10BC, # ⴜ -> Ⴜ + 0x10BD, # ⴝ -> Ⴝ + 0x10BE, # ⴞ -> Ⴞ + 0x10BF, # ⴟ -> Ⴟ + 0x10C0, # ⴠ -> Ⴠ + 0x10C1, # ⴡ -> Ⴡ + 0x10C2, # ⴢ -> Ⴢ + 0x10C3, # ⴣ -> Ⴣ + 0x10C4, # ⴤ -> Ⴤ + 0x10C5, # ⴥ -> Ⴥ + 0x10C7, # ⴧ -> Ⴧ + 0x10CD, # ⴭ -> Ⴭ + 0xA640, # ꙁ -> Ꙁ + 0xA642, # ꙃ -> Ꙃ + 0xA644, # ꙅ -> Ꙅ + 0xA646, # ꙇ -> Ꙇ + 0xA648, # ꙉ -> Ꙉ + 0xA64A, # ꙋ -> Ꙋ + 0xA64C, # ꙍ -> Ꙍ + 0xA64E, # ꙏ -> Ꙏ + 0xA650, # ꙑ -> Ꙑ + 0xA652, # ꙓ -> Ꙓ + 0xA654, # ꙕ -> Ꙕ + 0xA656, # ꙗ -> Ꙗ + 0xA658, # ꙙ -> Ꙙ + 0xA65A, # ꙛ -> Ꙛ + 0xA65C, # ꙝ -> Ꙝ + 0xA65E, # ꙟ -> Ꙟ + 0xA660, # ꙡ -> Ꙡ + 0xA662, # ꙣ -> Ꙣ + 0xA664, # ꙥ -> Ꙥ + 0xA666, # ꙧ -> Ꙧ + 0xA668, # ꙩ -> Ꙩ + 0xA66A, # ꙫ -> Ꙫ + 0xA66C, # ꙭ -> Ꙭ + 0xA680, # ꚁ -> Ꚁ + 0xA682, # ꚃ -> Ꚃ + 0xA684, # ꚅ -> Ꚅ + 0xA686, # ꚇ -> Ꚇ + 0xA688, # ꚉ -> Ꚉ + 0xA68A, # ꚋ -> Ꚋ + 0xA68C, # ꚍ -> Ꚍ + 0xA68E, # ꚏ -> Ꚏ + 0xA690, # ꚑ -> Ꚑ + 0xA692, # ꚓ -> Ꚓ + 0xA694, # ꚕ -> Ꚕ + 0xA696, # ꚗ -> Ꚗ + 0xA698, # ꚙ -> Ꚙ + 0xA69A, # ꚛ -> Ꚛ + 0xA722, # ꜣ -> Ꜣ + 0xA724, # ꜥ -> Ꜥ + 0xA726, # ꜧ -> Ꜧ + 0xA728, # ꜩ -> Ꜩ + 0xA72A, # ꜫ -> Ꜫ + 0xA72C, # ꜭ -> Ꜭ + 0xA72E, # ꜯ -> Ꜯ + 0xA732, # ꜳ -> Ꜳ + 0xA734, # ꜵ -> Ꜵ + 0xA736, # ꜷ -> Ꜷ + 0xA738, # ꜹ -> Ꜹ + 0xA73A, # ꜻ -> Ꜻ + 0xA73C, # ꜽ -> Ꜽ + 0xA73E, # ꜿ -> Ꜿ + 0xA740, # ꝁ -> Ꝁ + 0xA742, # ꝃ -> Ꝃ + 0xA744, # ꝅ -> Ꝅ + 0xA746, # ꝇ -> Ꝇ + 0xA748, # ꝉ -> Ꝉ + 0xA74A, # ꝋ -> Ꝋ + 0xA74C, # ꝍ -> Ꝍ + 0xA74E, # ꝏ -> Ꝏ + 0xA750, # ꝑ -> Ꝑ + 0xA752, # ꝓ -> Ꝓ + 0xA754, # ꝕ -> Ꝕ + 0xA756, # ꝗ -> Ꝗ + 0xA758, # ꝙ -> Ꝙ + 0xA75A, # ꝛ -> Ꝛ + 0xA75C, # ꝝ -> Ꝝ + 0xA75E, # ꝟ -> Ꝟ + 0xA760, # ꝡ -> Ꝡ + 0xA762, # ꝣ -> Ꝣ + 0xA764, # ꝥ -> Ꝥ + 0xA766, # ꝧ -> Ꝧ + 0xA768, # ꝩ -> Ꝩ + 0xA76A, # ꝫ -> Ꝫ + 0xA76C, # ꝭ -> Ꝭ + 0xA76E, # ꝯ -> Ꝯ + 0xA779, # ꝺ -> Ꝺ + 0xA77B, # ꝼ -> Ꝼ + 0xA77E, # ꝿ -> Ꝿ + 0xA780, # ꞁ -> Ꞁ + 0xA782, # ꞃ -> Ꞃ + 0xA784, # ꞅ -> Ꞅ + 0xA786, # ꞇ -> Ꞇ + 0xA78B, # ꞌ -> Ꞌ + 0xA790, # ꞑ -> Ꞑ + 0xA792, # ꞓ -> Ꞓ + 0xA7C4, # ꞔ -> Ꞔ + 0xA796, # ꞗ -> Ꞗ + 0xA798, # ꞙ -> Ꞙ + 0xA79A, # ꞛ -> Ꞛ + 0xA79C, # ꞝ -> Ꞝ + 0xA79E, # ꞟ -> Ꞟ + 0xA7A0, # ꞡ -> Ꞡ + 0xA7A2, # ꞣ -> Ꞣ + 0xA7A4, # ꞥ -> Ꞥ + 0xA7A6, # ꞧ -> Ꞧ + 0xA7A8, # ꞩ -> Ꞩ + 0xA7B4, # ꞵ -> Ꞵ + 0xA7B6, # ꞷ -> Ꞷ + 0xA7B8, # ꞹ -> Ꞹ + 0xA7BA, # ꞻ -> Ꞻ + 0xA7BC, # ꞽ -> Ꞽ + 0xA7BE, # ꞿ -> Ꞿ + 0xA7C0, # ꟁ -> Ꟁ + 0xA7C2, # ꟃ -> Ꟃ + 0xA7C7, # ꟈ -> Ꟈ + 0xA7C9, # ꟊ -> Ꟊ + 0xA7D0, # ꟑ -> Ꟑ + 0xA7D6, # ꟗ -> Ꟗ + 0xA7D8, # ꟙ -> Ꟙ + 0xA7F5, # ꟶ -> Ꟶ + 0xA7B3, # ꭓ -> Ꭓ + 0x13A0, # ꭰ -> Ꭰ + 0x13A1, # ꭱ -> Ꭱ + 0x13A2, # ꭲ -> Ꭲ + 0x13A3, # ꭳ -> Ꭳ + 0x13A4, # ꭴ -> Ꭴ + 0x13A5, # ꭵ -> Ꭵ + 0x13A6, # ꭶ -> Ꭶ + 0x13A7, # ꭷ -> Ꭷ + 0x13A8, # ꭸ -> Ꭸ + 0x13A9, # ꭹ -> Ꭹ + 0x13AA, # ꭺ -> Ꭺ + 0x13AB, # ꭻ -> Ꭻ + 0x13AC, # ꭼ -> Ꭼ + 0x13AD, # ꭽ -> Ꭽ + 0x13AE, # ꭾ -> Ꭾ + 0x13AF, # ꭿ -> Ꭿ + 0x13B0, # ꮀ -> Ꮀ + 0x13B1, # ꮁ -> Ꮁ + 0x13B2, # ꮂ -> Ꮂ + 0x13B3, # ꮃ -> Ꮃ + 0x13B4, # ꮄ -> Ꮄ + 0x13B5, # ꮅ -> Ꮅ + 0x13B6, # ꮆ -> Ꮆ + 0x13B7, # ꮇ -> Ꮇ + 0x13B8, # ꮈ -> Ꮈ + 0x13B9, # ꮉ -> Ꮉ + 0x13BA, # ꮊ -> Ꮊ + 0x13BB, # ꮋ -> Ꮋ + 0x13BC, # ꮌ -> Ꮌ + 0x13BD, # ꮍ -> Ꮍ + 0x13BE, # ꮎ -> Ꮎ + 0x13BF, # ꮏ -> Ꮏ + 0x13C0, # ꮐ -> Ꮐ + 0x13C1, # ꮑ -> Ꮑ + 0x13C2, # ꮒ -> Ꮒ + 0x13C3, # ꮓ -> Ꮓ + 0x13C4, # ꮔ -> Ꮔ + 0x13C5, # ꮕ -> Ꮕ + 0x13C6, # ꮖ -> Ꮖ + 0x13C7, # ꮗ -> Ꮗ + 0x13C8, # ꮘ -> Ꮘ + 0x13C9, # ꮙ -> Ꮙ + 0x13CA, # ꮚ -> Ꮚ + 0x13CB, # ꮛ -> Ꮛ + 0x13CC, # ꮜ -> Ꮜ + 0x13CD, # ꮝ -> Ꮝ + 0x13CE, # ꮞ -> Ꮞ + 0x13CF, # ꮟ -> Ꮟ + 0x13D0, # ꮠ -> Ꮠ + 0x13D1, # ꮡ -> Ꮡ + 0x13D2, # ꮢ -> Ꮢ + 0x13D3, # ꮣ -> Ꮣ + 0x13D4, # ꮤ -> Ꮤ + 0x13D5, # ꮥ -> Ꮥ + 0x13D6, # ꮦ -> Ꮦ + 0x13D7, # ꮧ -> Ꮧ + 0x13D8, # ꮨ -> Ꮨ + 0x13D9, # ꮩ -> Ꮩ + 0x13DA, # ꮪ -> Ꮪ + 0x13DB, # ꮫ -> Ꮫ + 0x13DC, # ꮬ -> Ꮬ + 0x13DD, # ꮭ -> Ꮭ + 0x13DE, # ꮮ -> Ꮮ + 0x13DF, # ꮯ -> Ꮯ + 0x13E0, # ꮰ -> Ꮰ + 0x13E1, # ꮱ -> Ꮱ + 0x13E2, # ꮲ -> Ꮲ + 0x13E3, # ꮳ -> Ꮳ + 0x13E4, # ꮴ -> Ꮴ + 0x13E5, # ꮵ -> Ꮵ + 0x13E6, # ꮶ -> Ꮶ + 0x13E7, # ꮷ -> Ꮷ + 0x13E8, # ꮸ -> Ꮸ + 0x13E9, # ꮹ -> Ꮹ + 0x13EA, # ꮺ -> Ꮺ + 0x13EB, # ꮻ -> Ꮻ + 0x13EC, # ꮼ -> Ꮼ + 0x13ED, # ꮽ -> Ꮽ + 0x13EE, # ꮾ -> Ꮾ + 0x13EF, # ꮿ -> Ꮿ + 0xFF21, # a -> A + 0xFF22, # b -> B + 0xFF23, # c -> C + 0xFF24, # d -> D + 0xFF25, # e -> E + 0xFF26, # f -> F + 0xFF27, # g -> G + 0xFF28, # h -> H + 0xFF29, # i -> I + 0xFF2A, # j -> J + 0xFF2B, # k -> K + 0xFF2C, # l -> L + 0xFF2D, # m -> M + 0xFF2E, # n -> N + 0xFF2F, # o -> O + 0xFF30, # p -> P + 0xFF31, # q -> Q + 0xFF32, # r -> R + 0xFF33, # s -> S + 0xFF34, # t -> T + 0xFF35, # u -> U + 0xFF36, # v -> V + 0xFF37, # w -> W + 0xFF38, # x -> X + 0xFF39, # y -> Y + 0xFF3A, # z -> Z + 0x10400, # 𐐨 -> 𐐀 + 0x10401, # 𐐩 -> 𐐁 + 0x10402, # 𐐪 -> 𐐂 + 0x10403, # 𐐫 -> 𐐃 + 0x10404, # 𐐬 -> 𐐄 + 0x10405, # 𐐭 -> 𐐅 + 0x10406, # 𐐮 -> 𐐆 + 0x10407, # 𐐯 -> 𐐇 + 0x10408, # 𐐰 -> 𐐈 + 0x10409, # 𐐱 -> 𐐉 + 0x1040A, # 𐐲 -> 𐐊 + 0x1040B, # 𐐳 -> 𐐋 + 0x1040C, # 𐐴 -> 𐐌 + 0x1040D, # 𐐵 -> 𐐍 + 0x1040E, # 𐐶 -> 𐐎 + 0x1040F, # 𐐷 -> 𐐏 + 0x10410, # 𐐸 -> 𐐐 + 0x10411, # 𐐹 -> 𐐑 + 0x10412, # 𐐺 -> 𐐒 + 0x10413, # 𐐻 -> 𐐓 + 0x10414, # 𐐼 -> 𐐔 + 0x10415, # 𐐽 -> 𐐕 + 0x10416, # 𐐾 -> 𐐖 + 0x10417, # 𐐿 -> 𐐗 + 0x10418, # 𐑀 -> 𐐘 + 0x10419, # 𐑁 -> 𐐙 + 0x1041A, # 𐑂 -> 𐐚 + 0x1041B, # 𐑃 -> 𐐛 + 0x1041C, # 𐑄 -> 𐐜 + 0x1041D, # 𐑅 -> 𐐝 + 0x1041E, # 𐑆 -> 𐐞 + 0x1041F, # 𐑇 -> 𐐟 + 0x10420, # 𐑈 -> 𐐠 + 0x10421, # 𐑉 -> 𐐡 + 0x10422, # 𐑊 -> 𐐢 + 0x10423, # 𐑋 -> 𐐣 + 0x10424, # 𐑌 -> 𐐤 + 0x10425, # 𐑍 -> 𐐥 + 0x10426, # 𐑎 -> 𐐦 + 0x10427, # 𐑏 -> 𐐧 + 0x104B0, # 𐓘 -> 𐒰 + 0x104B1, # 𐓙 -> 𐒱 + 0x104B2, # 𐓚 -> 𐒲 + 0x104B3, # 𐓛 -> 𐒳 + 0x104B4, # 𐓜 -> 𐒴 + 0x104B5, # 𐓝 -> 𐒵 + 0x104B6, # 𐓞 -> 𐒶 + 0x104B7, # 𐓟 -> 𐒷 + 0x104B8, # 𐓠 -> 𐒸 + 0x104B9, # 𐓡 -> 𐒹 + 0x104BA, # 𐓢 -> 𐒺 + 0x104BB, # 𐓣 -> 𐒻 + 0x104BC, # 𐓤 -> 𐒼 + 0x104BD, # 𐓥 -> 𐒽 + 0x104BE, # 𐓦 -> 𐒾 + 0x104BF, # 𐓧 -> 𐒿 + 0x104C0, # 𐓨 -> 𐓀 + 0x104C1, # 𐓩 -> 𐓁 + 0x104C2, # 𐓪 -> 𐓂 + 0x104C3, # 𐓫 -> 𐓃 + 0x104C4, # 𐓬 -> 𐓄 + 0x104C5, # 𐓭 -> 𐓅 + 0x104C6, # 𐓮 -> 𐓆 + 0x104C7, # 𐓯 -> 𐓇 + 0x104C8, # 𐓰 -> 𐓈 + 0x104C9, # 𐓱 -> 𐓉 + 0x104CA, # 𐓲 -> 𐓊 + 0x104CB, # 𐓳 -> 𐓋 + 0x104CC, # 𐓴 -> 𐓌 + 0x104CD, # 𐓵 -> 𐓍 + 0x104CE, # 𐓶 -> 𐓎 + 0x104CF, # 𐓷 -> 𐓏 + 0x104D0, # 𐓸 -> 𐓐 + 0x104D1, # 𐓹 -> 𐓑 + 0x104D2, # 𐓺 -> 𐓒 + 0x104D3, # 𐓻 -> 𐓓 + 0x10570, # 𐖗 -> 𐕰 + 0x10571, # 𐖘 -> 𐕱 + 0x10572, # 𐖙 -> 𐕲 + 0x10573, # 𐖚 -> 𐕳 + 0x10574, # 𐖛 -> 𐕴 + 0x10575, # 𐖜 -> 𐕵 + 0x10576, # 𐖝 -> 𐕶 + 0x10577, # 𐖞 -> 𐕷 + 0x10578, # 𐖟 -> 𐕸 + 0x10579, # 𐖠 -> 𐕹 + 0x1057A, # 𐖡 -> 𐕺 + 0x1057C, # 𐖣 -> 𐕼 + 0x1057D, # 𐖤 -> 𐕽 + 0x1057E, # 𐖥 -> 𐕾 + 0x1057F, # 𐖦 -> 𐕿 + 0x10580, # 𐖧 -> 𐖀 + 0x10581, # 𐖨 -> 𐖁 + 0x10582, # 𐖩 -> 𐖂 + 0x10583, # 𐖪 -> 𐖃 + 0x10584, # 𐖫 -> 𐖄 + 0x10585, # 𐖬 -> 𐖅 + 0x10586, # 𐖭 -> 𐖆 + 0x10587, # 𐖮 -> 𐖇 + 0x10588, # 𐖯 -> 𐖈 + 0x10589, # 𐖰 -> 𐖉 + 0x1058A, # 𐖱 -> 𐖊 + 0x1058C, # 𐖳 -> 𐖌 + 0x1058D, # 𐖴 -> 𐖍 + 0x1058E, # 𐖵 -> 𐖎 + 0x1058F, # 𐖶 -> 𐖏 + 0x10590, # 𐖷 -> 𐖐 + 0x10591, # 𐖸 -> 𐖑 + 0x10592, # 𐖹 -> 𐖒 + 0x10594, # 𐖻 -> 𐖔 + 0x10595, # 𐖼 -> 𐖕 + 0x10C80, # 𐳀 -> 𐲀 + 0x10C81, # 𐳁 -> 𐲁 + 0x10C82, # 𐳂 -> 𐲂 + 0x10C83, # 𐳃 -> 𐲃 + 0x10C84, # 𐳄 -> 𐲄 + 0x10C85, # 𐳅 -> 𐲅 + 0x10C86, # 𐳆 -> 𐲆 + 0x10C87, # 𐳇 -> 𐲇 + 0x10C88, # 𐳈 -> 𐲈 + 0x10C89, # 𐳉 -> 𐲉 + 0x10C8A, # 𐳊 -> 𐲊 + 0x10C8B, # 𐳋 -> 𐲋 + 0x10C8C, # 𐳌 -> 𐲌 + 0x10C8D, # 𐳍 -> 𐲍 + 0x10C8E, # 𐳎 -> 𐲎 + 0x10C8F, # 𐳏 -> 𐲏 + 0x10C90, # 𐳐 -> 𐲐 + 0x10C91, # 𐳑 -> 𐲑 + 0x10C92, # 𐳒 -> 𐲒 + 0x10C93, # 𐳓 -> 𐲓 + 0x10C94, # 𐳔 -> 𐲔 + 0x10C95, # 𐳕 -> 𐲕 + 0x10C96, # 𐳖 -> 𐲖 + 0x10C97, # 𐳗 -> 𐲗 + 0x10C98, # 𐳘 -> 𐲘 + 0x10C99, # 𐳙 -> 𐲙 + 0x10C9A, # 𐳚 -> 𐲚 + 0x10C9B, # 𐳛 -> 𐲛 + 0x10C9C, # 𐳜 -> 𐲜 + 0x10C9D, # 𐳝 -> 𐲝 + 0x10C9E, # 𐳞 -> 𐲞 + 0x10C9F, # 𐳟 -> 𐲟 + 0x10CA0, # 𐳠 -> 𐲠 + 0x10CA1, # 𐳡 -> 𐲡 + 0x10CA2, # 𐳢 -> 𐲢 + 0x10CA3, # 𐳣 -> 𐲣 + 0x10CA4, # 𐳤 -> 𐲤 + 0x10CA5, # 𐳥 -> 𐲥 + 0x10CA6, # 𐳦 -> 𐲦 + 0x10CA7, # 𐳧 -> 𐲧 + 0x10CA8, # 𐳨 -> 𐲨 + 0x10CA9, # 𐳩 -> 𐲩 + 0x10CAA, # 𐳪 -> 𐲪 + 0x10CAB, # 𐳫 -> 𐲫 + 0x10CAC, # 𐳬 -> 𐲬 + 0x10CAD, # 𐳭 -> 𐲭 + 0x10CAE, # 𐳮 -> 𐲮 + 0x10CAF, # 𐳯 -> 𐲯 + 0x10CB0, # 𐳰 -> 𐲰 + 0x10CB1, # 𐳱 -> 𐲱 + 0x10CB2, # 𐳲 -> 𐲲 + 0x118A0, # 𑣀 -> 𑢠 + 0x118A1, # 𑣁 -> 𑢡 + 0x118A2, # 𑣂 -> 𑢢 + 0x118A3, # 𑣃 -> 𑢣 + 0x118A4, # 𑣄 -> 𑢤 + 0x118A5, # 𑣅 -> 𑢥 + 0x118A6, # 𑣆 -> 𑢦 + 0x118A7, # 𑣇 -> 𑢧 + 0x118A8, # 𑣈 -> 𑢨 + 0x118A9, # 𑣉 -> 𑢩 + 0x118AA, # 𑣊 -> 𑢪 + 0x118AB, # 𑣋 -> 𑢫 + 0x118AC, # 𑣌 -> 𑢬 + 0x118AD, # 𑣍 -> 𑢭 + 0x118AE, # 𑣎 -> 𑢮 + 0x118AF, # 𑣏 -> 𑢯 + 0x118B0, # 𑣐 -> 𑢰 + 0x118B1, # 𑣑 -> 𑢱 + 0x118B2, # 𑣒 -> 𑢲 + 0x118B3, # 𑣓 -> 𑢳 + 0x118B4, # 𑣔 -> 𑢴 + 0x118B5, # 𑣕 -> 𑢵 + 0x118B6, # 𑣖 -> 𑢶 + 0x118B7, # 𑣗 -> 𑢷 + 0x118B8, # 𑣘 -> 𑢸 + 0x118B9, # 𑣙 -> 𑢹 + 0x118BA, # 𑣚 -> 𑢺 + 0x118BB, # 𑣛 -> 𑢻 + 0x118BC, # 𑣜 -> 𑢼 + 0x118BD, # 𑣝 -> 𑢽 + 0x118BE, # 𑣞 -> 𑢾 + 0x118BF, # 𑣟 -> 𑢿 + 0x16E40, # 𖹠 -> 𖹀 + 0x16E41, # 𖹡 -> 𖹁 + 0x16E42, # 𖹢 -> 𖹂 + 0x16E43, # 𖹣 -> 𖹃 + 0x16E44, # 𖹤 -> 𖹄 + 0x16E45, # 𖹥 -> 𖹅 + 0x16E46, # 𖹦 -> 𖹆 + 0x16E47, # 𖹧 -> 𖹇 + 0x16E48, # 𖹨 -> 𖹈 + 0x16E49, # 𖹩 -> 𖹉 + 0x16E4A, # 𖹪 -> 𖹊 + 0x16E4B, # 𖹫 -> 𖹋 + 0x16E4C, # 𖹬 -> 𖹌 + 0x16E4D, # 𖹭 -> 𖹍 + 0x16E4E, # 𖹮 -> 𖹎 + 0x16E4F, # 𖹯 -> 𖹏 + 0x16E50, # 𖹰 -> 𖹐 + 0x16E51, # 𖹱 -> 𖹑 + 0x16E52, # 𖹲 -> 𖹒 + 0x16E53, # 𖹳 -> 𖹓 + 0x16E54, # 𖹴 -> 𖹔 + 0x16E55, # 𖹵 -> 𖹕 + 0x16E56, # 𖹶 -> 𖹖 + 0x16E57, # 𖹷 -> 𖹗 + 0x16E58, # 𖹸 -> 𖹘 + 0x16E59, # 𖹹 -> 𖹙 + 0x16E5A, # 𖹺 -> 𖹚 + 0x16E5B, # 𖹻 -> 𖹛 + 0x16E5C, # 𖹼 -> 𖹜 + 0x16E5D, # 𖹽 -> 𖹝 + 0x16E5E, # 𖹾 -> 𖹞 + 0x16E5F, # 𖹿 -> 𖹟 + 0x1E900, # 𞤢 -> 𞤀 + 0x1E901, # 𞤣 -> 𞤁 + 0x1E902, # 𞤤 -> 𞤂 + 0x1E903, # 𞤥 -> 𞤃 + 0x1E904, # 𞤦 -> 𞤄 + 0x1E905, # 𞤧 -> 𞤅 + 0x1E906, # 𞤨 -> 𞤆 + 0x1E907, # 𞤩 -> 𞤇 + 0x1E908, # 𞤪 -> 𞤈 + 0x1E909, # 𞤫 -> 𞤉 + 0x1E90A, # 𞤬 -> 𞤊 + 0x1E90B, # 𞤭 -> 𞤋 + 0x1E90C, # 𞤮 -> 𞤌 + 0x1E90D, # 𞤯 -> 𞤍 + 0x1E90E, # 𞤰 -> 𞤎 + 0x1E90F, # 𞤱 -> 𞤏 + 0x1E910, # 𞤲 -> 𞤐 + 0x1E911, # 𞤳 -> 𞤑 + 0x1E912, # 𞤴 -> 𞤒 + 0x1E913, # 𞤵 -> 𞤓 + 0x1E914, # 𞤶 -> 𞤔 + 0x1E915, # 𞤷 -> 𞤕 + 0x1E916, # 𞤸 -> 𞤖 + 0x1E917, # 𞤹 -> 𞤗 + 0x1E918, # 𞤺 -> 𞤘 + 0x1E919, # 𞤻 -> 𞤙 + 0x1E91A, # 𞤼 -> 𞤚 + 0x1E91B, # 𞤽 -> 𞤛 + 0x1E91C, # 𞤾 -> 𞤜 + 0x1E91D, # 𞤿 -> 𞤝 + 0x1E91E, # 𞥀 -> 𞤞 + 0x1E91F, # 𞥁 -> 𞤟 + 0x1E920, # 𞥂 -> 𞤠 + 0x1E921, # 𞥃 -> 𞤡 +) +alias lowercase_mapping = List[UInt32, hint_trivial_type=True]( + 0x0061, # A -> a + 0x0062, # B -> b + 0x0063, # C -> c + 0x0064, # D -> d + 0x0065, # E -> e + 0x0066, # F -> f + 0x0067, # G -> g + 0x0068, # H -> h + 0x0069, # I -> i + 0x006A, # J -> j + 0x006B, # K -> k + 0x006C, # L -> l + 0x006D, # M -> m + 0x006E, # N -> n + 0x006F, # O -> o + 0x0070, # P -> p + 0x0071, # Q -> q + 0x0072, # R -> r + 0x0073, # S -> s + 0x0074, # T -> t + 0x0075, # U -> u + 0x0076, # V -> v + 0x0077, # W -> w + 0x0078, # X -> x + 0x0079, # Y -> y + 0x007A, # Z -> z + 0x00E0, # À -> à + 0x00E1, # Á -> á + 0x00E2, #  -> â + 0x00E3, # à -> ã + 0x00E4, # Ä -> ä + 0x00E5, # Å -> å + 0x00E6, # Æ -> æ + 0x00E7, # Ç -> ç + 0x00E8, # È -> è + 0x00E9, # É -> é + 0x00EA, # Ê -> ê + 0x00EB, # Ë -> ë + 0x00EC, # Ì -> ì + 0x00ED, # Í -> í + 0x00EE, # Î -> î + 0x00EF, # Ï -> ï + 0x00F0, # Ð -> ð + 0x00F1, # Ñ -> ñ + 0x00F2, # Ò -> ò + 0x00F3, # Ó -> ó + 0x00F4, # Ô -> ô + 0x00F5, # Õ -> õ + 0x00F6, # Ö -> ö + 0x00F8, # Ø -> ø + 0x00F9, # Ù -> ù + 0x00FA, # Ú -> ú + 0x00FB, # Û -> û + 0x00FC, # Ü -> ü + 0x00FD, # Ý -> ý + 0x00FE, # Þ -> þ + 0x0101, # Ā -> ā + 0x0103, # Ă -> ă + 0x0105, # Ą -> ą + 0x0107, # Ć -> ć + 0x0109, # Ĉ -> ĉ + 0x010B, # Ċ -> ċ + 0x010D, # Č -> č + 0x010F, # Ď -> ď + 0x0111, # Đ -> đ + 0x0113, # Ē -> ē + 0x0115, # Ĕ -> ĕ + 0x0117, # Ė -> ė + 0x0119, # Ę -> ę + 0x011B, # Ě -> ě + 0x011D, # Ĝ -> ĝ + 0x011F, # Ğ -> ğ + 0x0121, # Ġ -> ġ + 0x0123, # Ģ -> ģ + 0x0125, # Ĥ -> ĥ + 0x0127, # Ħ -> ħ + 0x0129, # Ĩ -> ĩ + 0x012B, # Ī -> ī + 0x012D, # Ĭ -> ĭ + 0x012F, # Į -> į + 0x0069, # İ -> i + 0x0133, # IJ -> ij + 0x0135, # Ĵ -> ĵ + 0x0137, # Ķ -> ķ + 0x013A, # Ĺ -> ĺ + 0x013C, # Ļ -> ļ + 0x013E, # Ľ -> ľ + 0x0140, # Ŀ -> ŀ + 0x0142, # Ł -> ł + 0x0144, # Ń -> ń + 0x0146, # Ņ -> ņ + 0x0148, # Ň -> ň + 0x014B, # Ŋ -> ŋ + 0x014D, # Ō -> ō + 0x014F, # Ŏ -> ŏ + 0x0151, # Ő -> ő + 0x0153, # Œ -> œ + 0x0155, # Ŕ -> ŕ + 0x0157, # Ŗ -> ŗ + 0x0159, # Ř -> ř + 0x015B, # Ś -> ś + 0x015D, # Ŝ -> ŝ + 0x015F, # Ş -> ş + 0x0161, # Š -> š + 0x0163, # Ţ -> ţ + 0x0165, # Ť -> ť + 0x0167, # Ŧ -> ŧ + 0x0169, # Ũ -> ũ + 0x016B, # Ū -> ū + 0x016D, # Ŭ -> ŭ + 0x016F, # Ů -> ů + 0x0171, # Ű -> ű + 0x0173, # Ų -> ų + 0x0175, # Ŵ -> ŵ + 0x0177, # Ŷ -> ŷ + 0x00FF, # Ÿ -> ÿ + 0x017A, # Ź -> ź + 0x017C, # Ż -> ż + 0x017E, # Ž -> ž + 0x0253, # Ɓ -> ɓ + 0x0183, # Ƃ -> ƃ + 0x0185, # Ƅ -> ƅ + 0x0254, # Ɔ -> ɔ + 0x0188, # Ƈ -> ƈ + 0x0256, # Ɖ -> ɖ + 0x0257, # Ɗ -> ɗ + 0x018C, # Ƌ -> ƌ + 0x01DD, # Ǝ -> ǝ + 0x0259, # Ə -> ə + 0x025B, # Ɛ -> ɛ + 0x0192, # Ƒ -> ƒ + 0x0260, # Ɠ -> ɠ + 0x0263, # Ɣ -> ɣ + 0x0269, # Ɩ -> ɩ + 0x0268, # Ɨ -> ɨ + 0x0199, # Ƙ -> ƙ + 0x026F, # Ɯ -> ɯ + 0x0272, # Ɲ -> ɲ + 0x0275, # Ɵ -> ɵ + 0x01A1, # Ơ -> ơ + 0x01A3, # Ƣ -> ƣ + 0x01A5, # Ƥ -> ƥ + 0x0280, # Ʀ -> ʀ + 0x01A8, # Ƨ -> ƨ + 0x0283, # Ʃ -> ʃ + 0x01AD, # Ƭ -> ƭ + 0x0288, # Ʈ -> ʈ + 0x01B0, # Ư -> ư + 0x028A, # Ʊ -> ʊ + 0x028B, # Ʋ -> ʋ + 0x01B4, # Ƴ -> ƴ + 0x01B6, # Ƶ -> ƶ + 0x0292, # Ʒ -> ʒ + 0x01B9, # Ƹ -> ƹ + 0x01BD, # Ƽ -> ƽ + 0x01C6, # DŽ -> dž + 0x01C6, # Dž -> dž + 0x01C9, # LJ -> lj + 0x01C9, # Lj -> lj + 0x01CC, # NJ -> nj + 0x01CC, # Nj -> nj + 0x01CE, # Ǎ -> ǎ + 0x01D0, # Ǐ -> ǐ + 0x01D2, # Ǒ -> ǒ + 0x01D4, # Ǔ -> ǔ + 0x01D6, # Ǖ -> ǖ + 0x01D8, # Ǘ -> ǘ + 0x01DA, # Ǚ -> ǚ + 0x01DC, # Ǜ -> ǜ + 0x01DF, # Ǟ -> ǟ + 0x01E1, # Ǡ -> ǡ + 0x01E3, # Ǣ -> ǣ + 0x01E5, # Ǥ -> ǥ + 0x01E7, # Ǧ -> ǧ + 0x01E9, # Ǩ -> ǩ + 0x01EB, # Ǫ -> ǫ + 0x01ED, # Ǭ -> ǭ + 0x01EF, # Ǯ -> ǯ + 0x01F3, # DZ -> dz + 0x01F3, # Dz -> dz + 0x01F5, # Ǵ -> ǵ + 0x0195, # Ƕ -> ƕ + 0x01BF, # Ƿ -> ƿ + 0x01F9, # Ǹ -> ǹ + 0x01FB, # Ǻ -> ǻ + 0x01FD, # Ǽ -> ǽ + 0x01FF, # Ǿ -> ǿ + 0x0201, # Ȁ -> ȁ + 0x0203, # Ȃ -> ȃ + 0x0205, # Ȅ -> ȅ + 0x0207, # Ȇ -> ȇ + 0x0209, # Ȉ -> ȉ + 0x020B, # Ȋ -> ȋ + 0x020D, # Ȍ -> ȍ + 0x020F, # Ȏ -> ȏ + 0x0211, # Ȑ -> ȑ + 0x0213, # Ȓ -> ȓ + 0x0215, # Ȕ -> ȕ + 0x0217, # Ȗ -> ȗ + 0x0219, # Ș -> ș + 0x021B, # Ț -> ț + 0x021D, # Ȝ -> ȝ + 0x021F, # Ȟ -> ȟ + 0x019E, # Ƞ -> ƞ + 0x0223, # Ȣ -> ȣ + 0x0225, # Ȥ -> ȥ + 0x0227, # Ȧ -> ȧ + 0x0229, # Ȩ -> ȩ + 0x022B, # Ȫ -> ȫ + 0x022D, # Ȭ -> ȭ + 0x022F, # Ȯ -> ȯ + 0x0231, # Ȱ -> ȱ + 0x0233, # Ȳ -> ȳ + 0x2C65, # Ⱥ -> ⱥ + 0x023C, # Ȼ -> ȼ + 0x019A, # Ƚ -> ƚ + 0x2C66, # Ⱦ -> ⱦ + 0x0242, # Ɂ -> ɂ + 0x0180, # Ƀ -> ƀ + 0x0289, # Ʉ -> ʉ + 0x028C, # Ʌ -> ʌ + 0x0247, # Ɇ -> ɇ + 0x0249, # Ɉ -> ɉ + 0x024B, # Ɋ -> ɋ + 0x024D, # Ɍ -> ɍ + 0x024F, # Ɏ -> ɏ + 0x0371, # Ͱ -> ͱ + 0x0373, # Ͳ -> ͳ + 0x0377, # Ͷ -> ͷ + 0x03F3, # Ϳ -> ϳ + 0x03AC, # Ά -> ά + 0x03AD, # Έ -> έ + 0x03AE, # Ή -> ή + 0x03AF, # Ί -> ί + 0x03CC, # Ό -> ό + 0x03CD, # Ύ -> ύ + 0x03CE, # Ώ -> ώ + 0x03B1, # Α -> α + 0x03B2, # Β -> β + 0x03B3, # Γ -> γ + 0x03B4, # Δ -> δ + 0x03B5, # Ε -> ε + 0x03B6, # Ζ -> ζ + 0x03B7, # Η -> η + 0x03B8, # Θ -> θ + 0x03B9, # Ι -> ι + 0x03BA, # Κ -> κ + 0x03BB, # Λ -> λ + 0x03BC, # Μ -> μ + 0x03BD, # Ν -> ν + 0x03BE, # Ξ -> ξ + 0x03BF, # Ο -> ο + 0x03C0, # Π -> π + 0x03C1, # Ρ -> ρ + 0x03C3, # Σ -> σ + 0x03C4, # Τ -> τ + 0x03C5, # Υ -> υ + 0x03C6, # Φ -> φ + 0x03C7, # Χ -> χ + 0x03C8, # Ψ -> ψ + 0x03C9, # Ω -> ω + 0x03CA, # Ϊ -> ϊ + 0x03CB, # Ϋ -> ϋ + 0x03D7, # Ϗ -> ϗ + 0x03D9, # Ϙ -> ϙ + 0x03DB, # Ϛ -> ϛ + 0x03DD, # Ϝ -> ϝ + 0x03DF, # Ϟ -> ϟ + 0x03E1, # Ϡ -> ϡ + 0x03E3, # Ϣ -> ϣ + 0x03E5, # Ϥ -> ϥ + 0x03E7, # Ϧ -> ϧ + 0x03E9, # Ϩ -> ϩ + 0x03EB, # Ϫ -> ϫ + 0x03ED, # Ϭ -> ϭ + 0x03EF, # Ϯ -> ϯ + 0x03B8, # ϴ -> θ + 0x03F8, # Ϸ -> ϸ + 0x03F2, # Ϲ -> ϲ + 0x03FB, # Ϻ -> ϻ + 0x037B, # Ͻ -> ͻ + 0x037C, # Ͼ -> ͼ + 0x037D, # Ͽ -> ͽ + 0x0450, # Ѐ -> ѐ + 0x0451, # Ё -> ё + 0x0452, # Ђ -> ђ + 0x0453, # Ѓ -> ѓ + 0x0454, # Є -> є + 0x0455, # Ѕ -> ѕ + 0x0456, # І -> і + 0x0457, # Ї -> ї + 0x0458, # Ј -> ј + 0x0459, # Љ -> љ + 0x045A, # Њ -> њ + 0x045B, # Ћ -> ћ + 0x045C, # Ќ -> ќ + 0x045D, # Ѝ -> ѝ + 0x045E, # Ў -> ў + 0x045F, # Џ -> џ + 0x0430, # А -> а + 0x0431, # Б -> б + 0x0432, # В -> в + 0x0433, # Г -> г + 0x0434, # Д -> д + 0x0435, # Е -> е + 0x0436, # Ж -> ж + 0x0437, # З -> з + 0x0438, # И -> и + 0x0439, # Й -> й + 0x043A, # К -> к + 0x043B, # Л -> л + 0x043C, # М -> м + 0x043D, # Н -> н + 0x043E, # О -> о + 0x043F, # П -> п + 0x0440, # Р -> р + 0x0441, # С -> с + 0x0442, # Т -> т + 0x0443, # У -> у + 0x0444, # Ф -> ф + 0x0445, # Х -> х + 0x0446, # Ц -> ц + 0x0447, # Ч -> ч + 0x0448, # Ш -> ш + 0x0449, # Щ -> щ + 0x044A, # Ъ -> ъ + 0x044B, # Ы -> ы + 0x044C, # Ь -> ь + 0x044D, # Э -> э + 0x044E, # Ю -> ю + 0x044F, # Я -> я + 0x0461, # Ѡ -> ѡ + 0x0463, # Ѣ -> ѣ + 0x0465, # Ѥ -> ѥ + 0x0467, # Ѧ -> ѧ + 0x0469, # Ѩ -> ѩ + 0x046B, # Ѫ -> ѫ + 0x046D, # Ѭ -> ѭ + 0x046F, # Ѯ -> ѯ + 0x0471, # Ѱ -> ѱ + 0x0473, # Ѳ -> ѳ + 0x0475, # Ѵ -> ѵ + 0x0477, # Ѷ -> ѷ + 0x0479, # Ѹ -> ѹ + 0x047B, # Ѻ -> ѻ + 0x047D, # Ѽ -> ѽ + 0x047F, # Ѿ -> ѿ + 0x0481, # Ҁ -> ҁ + 0x048B, # Ҋ -> ҋ + 0x048D, # Ҍ -> ҍ + 0x048F, # Ҏ -> ҏ + 0x0491, # Ґ -> ґ + 0x0493, # Ғ -> ғ + 0x0495, # Ҕ -> ҕ + 0x0497, # Җ -> җ + 0x0499, # Ҙ -> ҙ + 0x049B, # Қ -> қ + 0x049D, # Ҝ -> ҝ + 0x049F, # Ҟ -> ҟ + 0x04A1, # Ҡ -> ҡ + 0x04A3, # Ң -> ң + 0x04A5, # Ҥ -> ҥ + 0x04A7, # Ҧ -> ҧ + 0x04A9, # Ҩ -> ҩ + 0x04AB, # Ҫ -> ҫ + 0x04AD, # Ҭ -> ҭ + 0x04AF, # Ү -> ү + 0x04B1, # Ұ -> ұ + 0x04B3, # Ҳ -> ҳ + 0x04B5, # Ҵ -> ҵ + 0x04B7, # Ҷ -> ҷ + 0x04B9, # Ҹ -> ҹ + 0x04BB, # Һ -> һ + 0x04BD, # Ҽ -> ҽ + 0x04BF, # Ҿ -> ҿ + 0x04CF, # Ӏ -> ӏ + 0x04C2, # Ӂ -> ӂ + 0x04C4, # Ӄ -> ӄ + 0x04C6, # Ӆ -> ӆ + 0x04C8, # Ӈ -> ӈ + 0x04CA, # Ӊ -> ӊ + 0x04CC, # Ӌ -> ӌ + 0x04CE, # Ӎ -> ӎ + 0x04D1, # Ӑ -> ӑ + 0x04D3, # Ӓ -> ӓ + 0x04D5, # Ӕ -> ӕ + 0x04D7, # Ӗ -> ӗ + 0x04D9, # Ә -> ә + 0x04DB, # Ӛ -> ӛ + 0x04DD, # Ӝ -> ӝ + 0x04DF, # Ӟ -> ӟ + 0x04E1, # Ӡ -> ӡ + 0x04E3, # Ӣ -> ӣ + 0x04E5, # Ӥ -> ӥ + 0x04E7, # Ӧ -> ӧ + 0x04E9, # Ө -> ө + 0x04EB, # Ӫ -> ӫ + 0x04ED, # Ӭ -> ӭ + 0x04EF, # Ӯ -> ӯ + 0x04F1, # Ӱ -> ӱ + 0x04F3, # Ӳ -> ӳ + 0x04F5, # Ӵ -> ӵ + 0x04F7, # Ӷ -> ӷ + 0x04F9, # Ӹ -> ӹ + 0x04FB, # Ӻ -> ӻ + 0x04FD, # Ӽ -> ӽ + 0x04FF, # Ӿ -> ӿ + 0x0501, # Ԁ -> ԁ + 0x0503, # Ԃ -> ԃ + 0x0505, # Ԅ -> ԅ + 0x0507, # Ԇ -> ԇ + 0x0509, # Ԉ -> ԉ + 0x050B, # Ԋ -> ԋ + 0x050D, # Ԍ -> ԍ + 0x050F, # Ԏ -> ԏ + 0x0511, # Ԑ -> ԑ + 0x0513, # Ԓ -> ԓ + 0x0515, # Ԕ -> ԕ + 0x0517, # Ԗ -> ԗ + 0x0519, # Ԙ -> ԙ + 0x051B, # Ԛ -> ԛ + 0x051D, # Ԝ -> ԝ + 0x051F, # Ԟ -> ԟ + 0x0521, # Ԡ -> ԡ + 0x0523, # Ԣ -> ԣ + 0x0525, # Ԥ -> ԥ + 0x0527, # Ԧ -> ԧ + 0x0529, # Ԩ -> ԩ + 0x052B, # Ԫ -> ԫ + 0x052D, # Ԭ -> ԭ + 0x052F, # Ԯ -> ԯ + 0x0561, # Ա -> ա + 0x0562, # Բ -> բ + 0x0563, # Գ -> գ + 0x0564, # Դ -> դ + 0x0565, # Ե -> ե + 0x0566, # Զ -> զ + 0x0567, # Է -> է + 0x0568, # Ը -> ը + 0x0569, # Թ -> թ + 0x056A, # Ժ -> ժ + 0x056B, # Ի -> ի + 0x056C, # Լ -> լ + 0x056D, # Խ -> խ + 0x056E, # Ծ -> ծ + 0x056F, # Կ -> կ + 0x0570, # Հ -> հ + 0x0571, # Ձ -> ձ + 0x0572, # Ղ -> ղ + 0x0573, # Ճ -> ճ + 0x0574, # Մ -> մ + 0x0575, # Յ -> յ + 0x0576, # Ն -> ն + 0x0577, # Շ -> շ + 0x0578, # Ո -> ո + 0x0579, # Չ -> չ + 0x057A, # Պ -> պ + 0x057B, # Ջ -> ջ + 0x057C, # Ռ -> ռ + 0x057D, # Ս -> ս + 0x057E, # Վ -> վ + 0x057F, # Տ -> տ + 0x0580, # Ր -> ր + 0x0581, # Ց -> ց + 0x0582, # Ւ -> ւ + 0x0583, # Փ -> փ + 0x0584, # Ք -> ք + 0x0585, # Օ -> օ + 0x0586, # Ֆ -> ֆ + 0x2D00, # Ⴀ -> ⴀ + 0x2D01, # Ⴁ -> ⴁ + 0x2D02, # Ⴂ -> ⴂ + 0x2D03, # Ⴃ -> ⴃ + 0x2D04, # Ⴄ -> ⴄ + 0x2D05, # Ⴅ -> ⴅ + 0x2D06, # Ⴆ -> ⴆ + 0x2D07, # Ⴇ -> ⴇ + 0x2D08, # Ⴈ -> ⴈ + 0x2D09, # Ⴉ -> ⴉ + 0x2D0A, # Ⴊ -> ⴊ + 0x2D0B, # Ⴋ -> ⴋ + 0x2D0C, # Ⴌ -> ⴌ + 0x2D0D, # Ⴍ -> ⴍ + 0x2D0E, # Ⴎ -> ⴎ + 0x2D0F, # Ⴏ -> ⴏ + 0x2D10, # Ⴐ -> ⴐ + 0x2D11, # Ⴑ -> ⴑ + 0x2D12, # Ⴒ -> ⴒ + 0x2D13, # Ⴓ -> ⴓ + 0x2D14, # Ⴔ -> ⴔ + 0x2D15, # Ⴕ -> ⴕ + 0x2D16, # Ⴖ -> ⴖ + 0x2D17, # Ⴗ -> ⴗ + 0x2D18, # Ⴘ -> ⴘ + 0x2D19, # Ⴙ -> ⴙ + 0x2D1A, # Ⴚ -> ⴚ + 0x2D1B, # Ⴛ -> ⴛ + 0x2D1C, # Ⴜ -> ⴜ + 0x2D1D, # Ⴝ -> ⴝ + 0x2D1E, # Ⴞ -> ⴞ + 0x2D1F, # Ⴟ -> ⴟ + 0x2D20, # Ⴠ -> ⴠ + 0x2D21, # Ⴡ -> ⴡ + 0x2D22, # Ⴢ -> ⴢ + 0x2D23, # Ⴣ -> ⴣ + 0x2D24, # Ⴤ -> ⴤ + 0x2D25, # Ⴥ -> ⴥ + 0x2D27, # Ⴧ -> ⴧ + 0x2D2D, # Ⴭ -> ⴭ + 0xAB70, # Ꭰ -> ꭰ + 0xAB71, # Ꭱ -> ꭱ + 0xAB72, # Ꭲ -> ꭲ + 0xAB73, # Ꭳ -> ꭳ + 0xAB74, # Ꭴ -> ꭴ + 0xAB75, # Ꭵ -> ꭵ + 0xAB76, # Ꭶ -> ꭶ + 0xAB77, # Ꭷ -> ꭷ + 0xAB78, # Ꭸ -> ꭸ + 0xAB79, # Ꭹ -> ꭹ + 0xAB7A, # Ꭺ -> ꭺ + 0xAB7B, # Ꭻ -> ꭻ + 0xAB7C, # Ꭼ -> ꭼ + 0xAB7D, # Ꭽ -> ꭽ + 0xAB7E, # Ꭾ -> ꭾ + 0xAB7F, # Ꭿ -> ꭿ + 0xAB80, # Ꮀ -> ꮀ + 0xAB81, # Ꮁ -> ꮁ + 0xAB82, # Ꮂ -> ꮂ + 0xAB83, # Ꮃ -> ꮃ + 0xAB84, # Ꮄ -> ꮄ + 0xAB85, # Ꮅ -> ꮅ + 0xAB86, # Ꮆ -> ꮆ + 0xAB87, # Ꮇ -> ꮇ + 0xAB88, # Ꮈ -> ꮈ + 0xAB89, # Ꮉ -> ꮉ + 0xAB8A, # Ꮊ -> ꮊ + 0xAB8B, # Ꮋ -> ꮋ + 0xAB8C, # Ꮌ -> ꮌ + 0xAB8D, # Ꮍ -> ꮍ + 0xAB8E, # Ꮎ -> ꮎ + 0xAB8F, # Ꮏ -> ꮏ + 0xAB90, # Ꮐ -> ꮐ + 0xAB91, # Ꮑ -> ꮑ + 0xAB92, # Ꮒ -> ꮒ + 0xAB93, # Ꮓ -> ꮓ + 0xAB94, # Ꮔ -> ꮔ + 0xAB95, # Ꮕ -> ꮕ + 0xAB96, # Ꮖ -> ꮖ + 0xAB97, # Ꮗ -> ꮗ + 0xAB98, # Ꮘ -> ꮘ + 0xAB99, # Ꮙ -> ꮙ + 0xAB9A, # Ꮚ -> ꮚ + 0xAB9B, # Ꮛ -> ꮛ + 0xAB9C, # Ꮜ -> ꮜ + 0xAB9D, # Ꮝ -> ꮝ + 0xAB9E, # Ꮞ -> ꮞ + 0xAB9F, # Ꮟ -> ꮟ + 0xABA0, # Ꮠ -> ꮠ + 0xABA1, # Ꮡ -> ꮡ + 0xABA2, # Ꮢ -> ꮢ + 0xABA3, # Ꮣ -> ꮣ + 0xABA4, # Ꮤ -> ꮤ + 0xABA5, # Ꮥ -> ꮥ + 0xABA6, # Ꮦ -> ꮦ + 0xABA7, # Ꮧ -> ꮧ + 0xABA8, # Ꮨ -> ꮨ + 0xABA9, # Ꮩ -> ꮩ + 0xABAA, # Ꮪ -> ꮪ + 0xABAB, # Ꮫ -> ꮫ + 0xABAC, # Ꮬ -> ꮬ + 0xABAD, # Ꮭ -> ꮭ + 0xABAE, # Ꮮ -> ꮮ + 0xABAF, # Ꮯ -> ꮯ + 0xABB0, # Ꮰ -> ꮰ + 0xABB1, # Ꮱ -> ꮱ + 0xABB2, # Ꮲ -> ꮲ + 0xABB3, # Ꮳ -> ꮳ + 0xABB4, # Ꮴ -> ꮴ + 0xABB5, # Ꮵ -> ꮵ + 0xABB6, # Ꮶ -> ꮶ + 0xABB7, # Ꮷ -> ꮷ + 0xABB8, # Ꮸ -> ꮸ + 0xABB9, # Ꮹ -> ꮹ + 0xABBA, # Ꮺ -> ꮺ + 0xABBB, # Ꮻ -> ꮻ + 0xABBC, # Ꮼ -> ꮼ + 0xABBD, # Ꮽ -> ꮽ + 0xABBE, # Ꮾ -> ꮾ + 0xABBF, # Ꮿ -> ꮿ + 0x13F8, # Ᏸ -> ᏸ + 0x13F9, # Ᏹ -> ᏹ + 0x13FA, # Ᏺ -> ᏺ + 0x13FB, # Ᏻ -> ᏻ + 0x13FC, # Ᏼ -> ᏼ + 0x13FD, # Ᏽ -> ᏽ + 0x10D0, # Ა -> ა + 0x10D1, # Ბ -> ბ + 0x10D2, # Გ -> გ + 0x10D3, # Დ -> დ + 0x10D4, # Ე -> ე + 0x10D5, # Ვ -> ვ + 0x10D6, # Ზ -> ზ + 0x10D7, # Თ -> თ + 0x10D8, # Ი -> ი + 0x10D9, # Კ -> კ + 0x10DA, # Ლ -> ლ + 0x10DB, # Მ -> მ + 0x10DC, # Ნ -> ნ + 0x10DD, # Ო -> ო + 0x10DE, # Პ -> პ + 0x10DF, # Ჟ -> ჟ + 0x10E0, # Რ -> რ + 0x10E1, # Ს -> ს + 0x10E2, # Ტ -> ტ + 0x10E3, # Უ -> უ + 0x10E4, # Ფ -> ფ + 0x10E5, # Ქ -> ქ + 0x10E6, # Ღ -> ღ + 0x10E7, # Ყ -> ყ + 0x10E8, # Შ -> შ + 0x10E9, # Ჩ -> ჩ + 0x10EA, # Ც -> ც + 0x10EB, # Ძ -> ძ + 0x10EC, # Წ -> წ + 0x10ED, # Ჭ -> ჭ + 0x10EE, # Ხ -> ხ + 0x10EF, # Ჯ -> ჯ + 0x10F0, # Ჰ -> ჰ + 0x10F1, # Ჱ -> ჱ + 0x10F2, # Ჲ -> ჲ + 0x10F3, # Ჳ -> ჳ + 0x10F4, # Ჴ -> ჴ + 0x10F5, # Ჵ -> ჵ + 0x10F6, # Ჶ -> ჶ + 0x10F7, # Ჷ -> ჷ + 0x10F8, # Ჸ -> ჸ + 0x10F9, # Ჹ -> ჹ + 0x10FA, # Ჺ -> ჺ + 0x10FD, # Ჽ -> ჽ + 0x10FE, # Ჾ -> ჾ + 0x10FF, # Ჿ -> ჿ + 0x1E01, # Ḁ -> ḁ + 0x1E03, # Ḃ -> ḃ + 0x1E05, # Ḅ -> ḅ + 0x1E07, # Ḇ -> ḇ + 0x1E09, # Ḉ -> ḉ + 0x1E0B, # Ḋ -> ḋ + 0x1E0D, # Ḍ -> ḍ + 0x1E0F, # Ḏ -> ḏ + 0x1E11, # Ḑ -> ḑ + 0x1E13, # Ḓ -> ḓ + 0x1E15, # Ḕ -> ḕ + 0x1E17, # Ḗ -> ḗ + 0x1E19, # Ḙ -> ḙ + 0x1E1B, # Ḛ -> ḛ + 0x1E1D, # Ḝ -> ḝ + 0x1E1F, # Ḟ -> ḟ + 0x1E21, # Ḡ -> ḡ + 0x1E23, # Ḣ -> ḣ + 0x1E25, # Ḥ -> ḥ + 0x1E27, # Ḧ -> ḧ + 0x1E29, # Ḩ -> ḩ + 0x1E2B, # Ḫ -> ḫ + 0x1E2D, # Ḭ -> ḭ + 0x1E2F, # Ḯ -> ḯ + 0x1E31, # Ḱ -> ḱ + 0x1E33, # Ḳ -> ḳ + 0x1E35, # Ḵ -> ḵ + 0x1E37, # Ḷ -> ḷ + 0x1E39, # Ḹ -> ḹ + 0x1E3B, # Ḻ -> ḻ + 0x1E3D, # Ḽ -> ḽ + 0x1E3F, # Ḿ -> ḿ + 0x1E41, # Ṁ -> ṁ + 0x1E43, # Ṃ -> ṃ + 0x1E45, # Ṅ -> ṅ + 0x1E47, # Ṇ -> ṇ + 0x1E49, # Ṉ -> ṉ + 0x1E4B, # Ṋ -> ṋ + 0x1E4D, # Ṍ -> ṍ + 0x1E4F, # Ṏ -> ṏ + 0x1E51, # Ṑ -> ṑ + 0x1E53, # Ṓ -> ṓ + 0x1E55, # Ṕ -> ṕ + 0x1E57, # Ṗ -> ṗ + 0x1E59, # Ṙ -> ṙ + 0x1E5B, # Ṛ -> ṛ + 0x1E5D, # Ṝ -> ṝ + 0x1E5F, # Ṟ -> ṟ + 0x1E61, # Ṡ -> ṡ + 0x1E63, # Ṣ -> ṣ + 0x1E65, # Ṥ -> ṥ + 0x1E67, # Ṧ -> ṧ + 0x1E69, # Ṩ -> ṩ + 0x1E6B, # Ṫ -> ṫ + 0x1E6D, # Ṭ -> ṭ + 0x1E6F, # Ṯ -> ṯ + 0x1E71, # Ṱ -> ṱ + 0x1E73, # Ṳ -> ṳ + 0x1E75, # Ṵ -> ṵ + 0x1E77, # Ṷ -> ṷ + 0x1E79, # Ṹ -> ṹ + 0x1E7B, # Ṻ -> ṻ + 0x1E7D, # Ṽ -> ṽ + 0x1E7F, # Ṿ -> ṿ + 0x1E81, # Ẁ -> ẁ + 0x1E83, # Ẃ -> ẃ + 0x1E85, # Ẅ -> ẅ + 0x1E87, # Ẇ -> ẇ + 0x1E89, # Ẉ -> ẉ + 0x1E8B, # Ẋ -> ẋ + 0x1E8D, # Ẍ -> ẍ + 0x1E8F, # Ẏ -> ẏ + 0x1E91, # Ẑ -> ẑ + 0x1E93, # Ẓ -> ẓ + 0x1E95, # Ẕ -> ẕ + 0x00DF, # ẞ -> ß + 0x1EA1, # Ạ -> ạ + 0x1EA3, # Ả -> ả + 0x1EA5, # Ấ -> ấ + 0x1EA7, # Ầ -> ầ + 0x1EA9, # Ẩ -> ẩ + 0x1EAB, # Ẫ -> ẫ + 0x1EAD, # Ậ -> ậ + 0x1EAF, # Ắ -> ắ + 0x1EB1, # Ằ -> ằ + 0x1EB3, # Ẳ -> ẳ + 0x1EB5, # Ẵ -> ẵ + 0x1EB7, # Ặ -> ặ + 0x1EB9, # Ẹ -> ẹ + 0x1EBB, # Ẻ -> ẻ + 0x1EBD, # Ẽ -> ẽ + 0x1EBF, # Ế -> ế + 0x1EC1, # Ề -> ề + 0x1EC3, # Ể -> ể + 0x1EC5, # Ễ -> ễ + 0x1EC7, # Ệ -> ệ + 0x1EC9, # Ỉ -> ỉ + 0x1ECB, # Ị -> ị + 0x1ECD, # Ọ -> ọ + 0x1ECF, # Ỏ -> ỏ + 0x1ED1, # Ố -> ố + 0x1ED3, # Ồ -> ồ + 0x1ED5, # Ổ -> ổ + 0x1ED7, # Ỗ -> ỗ + 0x1ED9, # Ộ -> ộ + 0x1EDB, # Ớ -> ớ + 0x1EDD, # Ờ -> ờ + 0x1EDF, # Ở -> ở + 0x1EE1, # Ỡ -> ỡ + 0x1EE3, # Ợ -> ợ + 0x1EE5, # Ụ -> ụ + 0x1EE7, # Ủ -> ủ + 0x1EE9, # Ứ -> ứ + 0x1EEB, # Ừ -> ừ + 0x1EED, # Ử -> ử + 0x1EEF, # Ữ -> ữ + 0x1EF1, # Ự -> ự + 0x1EF3, # Ỳ -> ỳ + 0x1EF5, # Ỵ -> ỵ + 0x1EF7, # Ỷ -> ỷ + 0x1EF9, # Ỹ -> ỹ + 0x1EFB, # Ỻ -> ỻ + 0x1EFD, # Ỽ -> ỽ + 0x1EFF, # Ỿ -> ỿ + 0x1F00, # Ἀ -> ἀ + 0x1F01, # Ἁ -> ἁ + 0x1F02, # Ἂ -> ἂ + 0x1F03, # Ἃ -> ἃ + 0x1F04, # Ἄ -> ἄ + 0x1F05, # Ἅ -> ἅ + 0x1F06, # Ἆ -> ἆ + 0x1F07, # Ἇ -> ἇ + 0x1F10, # Ἐ -> ἐ + 0x1F11, # Ἑ -> ἑ + 0x1F12, # Ἒ -> ἒ + 0x1F13, # Ἓ -> ἓ + 0x1F14, # Ἔ -> ἔ + 0x1F15, # Ἕ -> ἕ + 0x1F20, # Ἠ -> ἠ + 0x1F21, # Ἡ -> ἡ + 0x1F22, # Ἢ -> ἢ + 0x1F23, # Ἣ -> ἣ + 0x1F24, # Ἤ -> ἤ + 0x1F25, # Ἥ -> ἥ + 0x1F26, # Ἦ -> ἦ + 0x1F27, # Ἧ -> ἧ + 0x1F30, # Ἰ -> ἰ + 0x1F31, # Ἱ -> ἱ + 0x1F32, # Ἲ -> ἲ + 0x1F33, # Ἳ -> ἳ + 0x1F34, # Ἴ -> ἴ + 0x1F35, # Ἵ -> ἵ + 0x1F36, # Ἶ -> ἶ + 0x1F37, # Ἷ -> ἷ + 0x1F40, # Ὀ -> ὀ + 0x1F41, # Ὁ -> ὁ + 0x1F42, # Ὂ -> ὂ + 0x1F43, # Ὃ -> ὃ + 0x1F44, # Ὄ -> ὄ + 0x1F45, # Ὅ -> ὅ + 0x1F51, # Ὑ -> ὑ + 0x1F53, # Ὓ -> ὓ + 0x1F55, # Ὕ -> ὕ + 0x1F57, # Ὗ -> ὗ + 0x1F60, # Ὠ -> ὠ + 0x1F61, # Ὡ -> ὡ + 0x1F62, # Ὢ -> ὢ + 0x1F63, # Ὣ -> ὣ + 0x1F64, # Ὤ -> ὤ + 0x1F65, # Ὥ -> ὥ + 0x1F66, # Ὦ -> ὦ + 0x1F67, # Ὧ -> ὧ + 0x1F80, # ᾈ -> ᾀ + 0x1F81, # ᾉ -> ᾁ + 0x1F82, # ᾊ -> ᾂ + 0x1F83, # ᾋ -> ᾃ + 0x1F84, # ᾌ -> ᾄ + 0x1F85, # ᾍ -> ᾅ + 0x1F86, # ᾎ -> ᾆ + 0x1F87, # ᾏ -> ᾇ + 0x1F90, # ᾘ -> ᾐ + 0x1F91, # ᾙ -> ᾑ + 0x1F92, # ᾚ -> ᾒ + 0x1F93, # ᾛ -> ᾓ + 0x1F94, # ᾜ -> ᾔ + 0x1F95, # ᾝ -> ᾕ + 0x1F96, # ᾞ -> ᾖ + 0x1F97, # ᾟ -> ᾗ + 0x1FA0, # ᾨ -> ᾠ + 0x1FA1, # ᾩ -> ᾡ + 0x1FA2, # ᾪ -> ᾢ + 0x1FA3, # ᾫ -> ᾣ + 0x1FA4, # ᾬ -> ᾤ + 0x1FA5, # ᾭ -> ᾥ + 0x1FA6, # ᾮ -> ᾦ + 0x1FA7, # ᾯ -> ᾧ + 0x1FB0, # Ᾰ -> ᾰ + 0x1FB1, # Ᾱ -> ᾱ + 0x1F70, # Ὰ -> ὰ + 0x1F71, # Ά -> ά + 0x1FB3, # ᾼ -> ᾳ + 0x1F72, # Ὲ -> ὲ + 0x1F73, # Έ -> έ + 0x1F74, # Ὴ -> ὴ + 0x1F75, # Ή -> ή + 0x1FC3, # ῌ -> ῃ + 0x1FD0, # Ῐ -> ῐ + 0x1FD1, # Ῑ -> ῑ + 0x1F76, # Ὶ -> ὶ + 0x1F77, # Ί -> ί + 0x1FE0, # Ῠ -> ῠ + 0x1FE1, # Ῡ -> ῡ + 0x1F7A, # Ὺ -> ὺ + 0x1F7B, # Ύ -> ύ + 0x1FE5, # Ῥ -> ῥ + 0x1F78, # Ὸ -> ὸ + 0x1F79, # Ό -> ό + 0x1F7C, # Ὼ -> ὼ + 0x1F7D, # Ώ -> ώ + 0x1FF3, # ῼ -> ῳ + 0x03C9, # Ω -> ω + 0x006B, # K -> k + 0x00E5, # Å -> å + 0x214E, # Ⅎ -> ⅎ + 0x2170, # Ⅰ -> ⅰ + 0x2171, # Ⅱ -> ⅱ + 0x2172, # Ⅲ -> ⅲ + 0x2173, # Ⅳ -> ⅳ + 0x2174, # Ⅴ -> ⅴ + 0x2175, # Ⅵ -> ⅵ + 0x2176, # Ⅶ -> ⅶ + 0x2177, # Ⅷ -> ⅷ + 0x2178, # Ⅸ -> ⅸ + 0x2179, # Ⅹ -> ⅹ + 0x217A, # Ⅺ -> ⅺ + 0x217B, # Ⅻ -> ⅻ + 0x217C, # Ⅼ -> ⅼ + 0x217D, # Ⅽ -> ⅽ + 0x217E, # Ⅾ -> ⅾ + 0x217F, # Ⅿ -> ⅿ + 0x2184, # Ↄ -> ↄ + 0x24D0, # Ⓐ -> ⓐ + 0x24D1, # Ⓑ -> ⓑ + 0x24D2, # Ⓒ -> ⓒ + 0x24D3, # Ⓓ -> ⓓ + 0x24D4, # Ⓔ -> ⓔ + 0x24D5, # Ⓕ -> ⓕ + 0x24D6, # Ⓖ -> ⓖ + 0x24D7, # Ⓗ -> ⓗ + 0x24D8, # Ⓘ -> ⓘ + 0x24D9, # Ⓙ -> ⓙ + 0x24DA, # Ⓚ -> ⓚ + 0x24DB, # Ⓛ -> ⓛ + 0x24DC, # Ⓜ -> ⓜ + 0x24DD, # Ⓝ -> ⓝ + 0x24DE, # Ⓞ -> ⓞ + 0x24DF, # Ⓟ -> ⓟ + 0x24E0, # Ⓠ -> ⓠ + 0x24E1, # Ⓡ -> ⓡ + 0x24E2, # Ⓢ -> ⓢ + 0x24E3, # Ⓣ -> ⓣ + 0x24E4, # Ⓤ -> ⓤ + 0x24E5, # Ⓥ -> ⓥ + 0x24E6, # Ⓦ -> ⓦ + 0x24E7, # Ⓧ -> ⓧ + 0x24E8, # Ⓨ -> ⓨ + 0x24E9, # Ⓩ -> ⓩ + 0x2C30, # Ⰰ -> ⰰ + 0x2C31, # Ⰱ -> ⰱ + 0x2C32, # Ⰲ -> ⰲ + 0x2C33, # Ⰳ -> ⰳ + 0x2C34, # Ⰴ -> ⰴ + 0x2C35, # Ⰵ -> ⰵ + 0x2C36, # Ⰶ -> ⰶ + 0x2C37, # Ⰷ -> ⰷ + 0x2C38, # Ⰸ -> ⰸ + 0x2C39, # Ⰹ -> ⰹ + 0x2C3A, # Ⰺ -> ⰺ + 0x2C3B, # Ⰻ -> ⰻ + 0x2C3C, # Ⰼ -> ⰼ + 0x2C3D, # Ⰽ -> ⰽ + 0x2C3E, # Ⰾ -> ⰾ + 0x2C3F, # Ⰿ -> ⰿ + 0x2C40, # Ⱀ -> ⱀ + 0x2C41, # Ⱁ -> ⱁ + 0x2C42, # Ⱂ -> ⱂ + 0x2C43, # Ⱃ -> ⱃ + 0x2C44, # Ⱄ -> ⱄ + 0x2C45, # Ⱅ -> ⱅ + 0x2C46, # Ⱆ -> ⱆ + 0x2C47, # Ⱇ -> ⱇ + 0x2C48, # Ⱈ -> ⱈ + 0x2C49, # Ⱉ -> ⱉ + 0x2C4A, # Ⱊ -> ⱊ + 0x2C4B, # Ⱋ -> ⱋ + 0x2C4C, # Ⱌ -> ⱌ + 0x2C4D, # Ⱍ -> ⱍ + 0x2C4E, # Ⱎ -> ⱎ + 0x2C4F, # Ⱏ -> ⱏ + 0x2C50, # Ⱐ -> ⱐ + 0x2C51, # Ⱑ -> ⱑ + 0x2C52, # Ⱒ -> ⱒ + 0x2C53, # Ⱓ -> ⱓ + 0x2C54, # Ⱔ -> ⱔ + 0x2C55, # Ⱕ -> ⱕ + 0x2C56, # Ⱖ -> ⱖ + 0x2C57, # Ⱗ -> ⱗ + 0x2C58, # Ⱘ -> ⱘ + 0x2C59, # Ⱙ -> ⱙ + 0x2C5A, # Ⱚ -> ⱚ + 0x2C5B, # Ⱛ -> ⱛ + 0x2C5C, # Ⱜ -> ⱜ + 0x2C5D, # Ⱝ -> ⱝ + 0x2C5E, # Ⱞ -> ⱞ + 0x2C5F, # Ⱟ -> ⱟ + 0x2C61, # Ⱡ -> ⱡ + 0x026B, # Ɫ -> ɫ + 0x1D7D, # Ᵽ -> ᵽ + 0x027D, # Ɽ -> ɽ + 0x2C68, # Ⱨ -> ⱨ + 0x2C6A, # Ⱪ -> ⱪ + 0x2C6C, # Ⱬ -> ⱬ + 0x0251, # Ɑ -> ɑ + 0x0271, # Ɱ -> ɱ + 0x0250, # Ɐ -> ɐ + 0x0252, # Ɒ -> ɒ + 0x2C73, # Ⱳ -> ⱳ + 0x2C76, # Ⱶ -> ⱶ + 0x023F, # Ȿ -> ȿ + 0x0240, # Ɀ -> ɀ + 0x2C81, # Ⲁ -> ⲁ + 0x2C83, # Ⲃ -> ⲃ + 0x2C85, # Ⲅ -> ⲅ + 0x2C87, # Ⲇ -> ⲇ + 0x2C89, # Ⲉ -> ⲉ + 0x2C8B, # Ⲋ -> ⲋ + 0x2C8D, # Ⲍ -> ⲍ + 0x2C8F, # Ⲏ -> ⲏ + 0x2C91, # Ⲑ -> ⲑ + 0x2C93, # Ⲓ -> ⲓ + 0x2C95, # Ⲕ -> ⲕ + 0x2C97, # Ⲗ -> ⲗ + 0x2C99, # Ⲙ -> ⲙ + 0x2C9B, # Ⲛ -> ⲛ + 0x2C9D, # Ⲝ -> ⲝ + 0x2C9F, # Ⲟ -> ⲟ + 0x2CA1, # Ⲡ -> ⲡ + 0x2CA3, # Ⲣ -> ⲣ + 0x2CA5, # Ⲥ -> ⲥ + 0x2CA7, # Ⲧ -> ⲧ + 0x2CA9, # Ⲩ -> ⲩ + 0x2CAB, # Ⲫ -> ⲫ + 0x2CAD, # Ⲭ -> ⲭ + 0x2CAF, # Ⲯ -> ⲯ + 0x2CB1, # Ⲱ -> ⲱ + 0x2CB3, # Ⲳ -> ⲳ + 0x2CB5, # Ⲵ -> ⲵ + 0x2CB7, # Ⲷ -> ⲷ + 0x2CB9, # Ⲹ -> ⲹ + 0x2CBB, # Ⲻ -> ⲻ + 0x2CBD, # Ⲽ -> ⲽ + 0x2CBF, # Ⲿ -> ⲿ + 0x2CC1, # Ⳁ -> ⳁ + 0x2CC3, # Ⳃ -> ⳃ + 0x2CC5, # Ⳅ -> ⳅ + 0x2CC7, # Ⳇ -> ⳇ + 0x2CC9, # Ⳉ -> ⳉ + 0x2CCB, # Ⳋ -> ⳋ + 0x2CCD, # Ⳍ -> ⳍ + 0x2CCF, # Ⳏ -> ⳏ + 0x2CD1, # Ⳑ -> ⳑ + 0x2CD3, # Ⳓ -> ⳓ + 0x2CD5, # Ⳕ -> ⳕ + 0x2CD7, # Ⳗ -> ⳗ + 0x2CD9, # Ⳙ -> ⳙ + 0x2CDB, # Ⳛ -> ⳛ + 0x2CDD, # Ⳝ -> ⳝ + 0x2CDF, # Ⳟ -> ⳟ + 0x2CE1, # Ⳡ -> ⳡ + 0x2CE3, # Ⳣ -> ⳣ + 0x2CEC, # Ⳬ -> ⳬ + 0x2CEE, # Ⳮ -> ⳮ + 0x2CF3, # Ⳳ -> ⳳ + 0xA641, # Ꙁ -> ꙁ + 0xA643, # Ꙃ -> ꙃ + 0xA645, # Ꙅ -> ꙅ + 0xA647, # Ꙇ -> ꙇ + 0xA649, # Ꙉ -> ꙉ + 0xA64B, # Ꙋ -> ꙋ + 0xA64D, # Ꙍ -> ꙍ + 0xA64F, # Ꙏ -> ꙏ + 0xA651, # Ꙑ -> ꙑ + 0xA653, # Ꙓ -> ꙓ + 0xA655, # Ꙕ -> ꙕ + 0xA657, # Ꙗ -> ꙗ + 0xA659, # Ꙙ -> ꙙ + 0xA65B, # Ꙛ -> ꙛ + 0xA65D, # Ꙝ -> ꙝ + 0xA65F, # Ꙟ -> ꙟ + 0xA661, # Ꙡ -> ꙡ + 0xA663, # Ꙣ -> ꙣ + 0xA665, # Ꙥ -> ꙥ + 0xA667, # Ꙧ -> ꙧ + 0xA669, # Ꙩ -> ꙩ + 0xA66B, # Ꙫ -> ꙫ + 0xA66D, # Ꙭ -> ꙭ + 0xA681, # Ꚁ -> ꚁ + 0xA683, # Ꚃ -> ꚃ + 0xA685, # Ꚅ -> ꚅ + 0xA687, # Ꚇ -> ꚇ + 0xA689, # Ꚉ -> ꚉ + 0xA68B, # Ꚋ -> ꚋ + 0xA68D, # Ꚍ -> ꚍ + 0xA68F, # Ꚏ -> ꚏ + 0xA691, # Ꚑ -> ꚑ + 0xA693, # Ꚓ -> ꚓ + 0xA695, # Ꚕ -> ꚕ + 0xA697, # Ꚗ -> ꚗ + 0xA699, # Ꚙ -> ꚙ + 0xA69B, # Ꚛ -> ꚛ + 0xA723, # Ꜣ -> ꜣ + 0xA725, # Ꜥ -> ꜥ + 0xA727, # Ꜧ -> ꜧ + 0xA729, # Ꜩ -> ꜩ + 0xA72B, # Ꜫ -> ꜫ + 0xA72D, # Ꜭ -> ꜭ + 0xA72F, # Ꜯ -> ꜯ + 0xA733, # Ꜳ -> ꜳ + 0xA735, # Ꜵ -> ꜵ + 0xA737, # Ꜷ -> ꜷ + 0xA739, # Ꜹ -> ꜹ + 0xA73B, # Ꜻ -> ꜻ + 0xA73D, # Ꜽ -> ꜽ + 0xA73F, # Ꜿ -> ꜿ + 0xA741, # Ꝁ -> ꝁ + 0xA743, # Ꝃ -> ꝃ + 0xA745, # Ꝅ -> ꝅ + 0xA747, # Ꝇ -> ꝇ + 0xA749, # Ꝉ -> ꝉ + 0xA74B, # Ꝋ -> ꝋ + 0xA74D, # Ꝍ -> ꝍ + 0xA74F, # Ꝏ -> ꝏ + 0xA751, # Ꝑ -> ꝑ + 0xA753, # Ꝓ -> ꝓ + 0xA755, # Ꝕ -> ꝕ + 0xA757, # Ꝗ -> ꝗ + 0xA759, # Ꝙ -> ꝙ + 0xA75B, # Ꝛ -> ꝛ + 0xA75D, # Ꝝ -> ꝝ + 0xA75F, # Ꝟ -> ꝟ + 0xA761, # Ꝡ -> ꝡ + 0xA763, # Ꝣ -> ꝣ + 0xA765, # Ꝥ -> ꝥ + 0xA767, # Ꝧ -> ꝧ + 0xA769, # Ꝩ -> ꝩ + 0xA76B, # Ꝫ -> ꝫ + 0xA76D, # Ꝭ -> ꝭ + 0xA76F, # Ꝯ -> ꝯ + 0xA77A, # Ꝺ -> ꝺ + 0xA77C, # Ꝼ -> ꝼ + 0x1D79, # Ᵹ -> ᵹ + 0xA77F, # Ꝿ -> ꝿ + 0xA781, # Ꞁ -> ꞁ + 0xA783, # Ꞃ -> ꞃ + 0xA785, # Ꞅ -> ꞅ + 0xA787, # Ꞇ -> ꞇ + 0xA78C, # Ꞌ -> ꞌ + 0x0265, # Ɥ -> ɥ + 0xA791, # Ꞑ -> ꞑ + 0xA793, # Ꞓ -> ꞓ + 0xA797, # Ꞗ -> ꞗ + 0xA799, # Ꞙ -> ꞙ + 0xA79B, # Ꞛ -> ꞛ + 0xA79D, # Ꞝ -> ꞝ + 0xA79F, # Ꞟ -> ꞟ + 0xA7A1, # Ꞡ -> ꞡ + 0xA7A3, # Ꞣ -> ꞣ + 0xA7A5, # Ꞥ -> ꞥ + 0xA7A7, # Ꞧ -> ꞧ + 0xA7A9, # Ꞩ -> ꞩ + 0x0266, # Ɦ -> ɦ + 0x025C, # Ɜ -> ɜ + 0x0261, # Ɡ -> ɡ + 0x026C, # Ɬ -> ɬ + 0x026A, # Ɪ -> ɪ + 0x029E, # Ʞ -> ʞ + 0x0287, # Ʇ -> ʇ + 0x029D, # Ʝ -> ʝ + 0xAB53, # Ꭓ -> ꭓ + 0xA7B5, # Ꞵ -> ꞵ + 0xA7B7, # Ꞷ -> ꞷ + 0xA7B9, # Ꞹ -> ꞹ + 0xA7BB, # Ꞻ -> ꞻ + 0xA7BD, # Ꞽ -> ꞽ + 0xA7BF, # Ꞿ -> ꞿ + 0xA7C1, # Ꟁ -> ꟁ + 0xA7C3, # Ꟃ -> ꟃ + 0xA794, # Ꞔ -> ꞔ + 0x0282, # Ʂ -> ʂ + 0x1D8E, # Ᶎ -> ᶎ + 0xA7C8, # Ꟈ -> ꟈ + 0xA7CA, # Ꟊ -> ꟊ + 0xA7D1, # Ꟑ -> ꟑ + 0xA7D7, # Ꟗ -> ꟗ + 0xA7D9, # Ꟙ -> ꟙ + 0xA7F6, # Ꟶ -> ꟶ + 0xFF41, # A -> a + 0xFF42, # B -> b + 0xFF43, # C -> c + 0xFF44, # D -> d + 0xFF45, # E -> e + 0xFF46, # F -> f + 0xFF47, # G -> g + 0xFF48, # H -> h + 0xFF49, # I -> i + 0xFF4A, # J -> j + 0xFF4B, # K -> k + 0xFF4C, # L -> l + 0xFF4D, # M -> m + 0xFF4E, # N -> n + 0xFF4F, # O -> o + 0xFF50, # P -> p + 0xFF51, # Q -> q + 0xFF52, # R -> r + 0xFF53, # S -> s + 0xFF54, # T -> t + 0xFF55, # U -> u + 0xFF56, # V -> v + 0xFF57, # W -> w + 0xFF58, # X -> x + 0xFF59, # Y -> y + 0xFF5A, # Z -> z + 0x10428, # 𐐀 -> 𐐨 + 0x10429, # 𐐁 -> 𐐩 + 0x1042A, # 𐐂 -> 𐐪 + 0x1042B, # 𐐃 -> 𐐫 + 0x1042C, # 𐐄 -> 𐐬 + 0x1042D, # 𐐅 -> 𐐭 + 0x1042E, # 𐐆 -> 𐐮 + 0x1042F, # 𐐇 -> 𐐯 + 0x10430, # 𐐈 -> 𐐰 + 0x10431, # 𐐉 -> 𐐱 + 0x10432, # 𐐊 -> 𐐲 + 0x10433, # 𐐋 -> 𐐳 + 0x10434, # 𐐌 -> 𐐴 + 0x10435, # 𐐍 -> 𐐵 + 0x10436, # 𐐎 -> 𐐶 + 0x10437, # 𐐏 -> 𐐷 + 0x10438, # 𐐐 -> 𐐸 + 0x10439, # 𐐑 -> 𐐹 + 0x1043A, # 𐐒 -> 𐐺 + 0x1043B, # 𐐓 -> 𐐻 + 0x1043C, # 𐐔 -> 𐐼 + 0x1043D, # 𐐕 -> 𐐽 + 0x1043E, # 𐐖 -> 𐐾 + 0x1043F, # 𐐗 -> 𐐿 + 0x10440, # 𐐘 -> 𐑀 + 0x10441, # 𐐙 -> 𐑁 + 0x10442, # 𐐚 -> 𐑂 + 0x10443, # 𐐛 -> 𐑃 + 0x10444, # 𐐜 -> 𐑄 + 0x10445, # 𐐝 -> 𐑅 + 0x10446, # 𐐞 -> 𐑆 + 0x10447, # 𐐟 -> 𐑇 + 0x10448, # 𐐠 -> 𐑈 + 0x10449, # 𐐡 -> 𐑉 + 0x1044A, # 𐐢 -> 𐑊 + 0x1044B, # 𐐣 -> 𐑋 + 0x1044C, # 𐐤 -> 𐑌 + 0x1044D, # 𐐥 -> 𐑍 + 0x1044E, # 𐐦 -> 𐑎 + 0x1044F, # 𐐧 -> 𐑏 + 0x104D8, # 𐒰 -> 𐓘 + 0x104D9, # 𐒱 -> 𐓙 + 0x104DA, # 𐒲 -> 𐓚 + 0x104DB, # 𐒳 -> 𐓛 + 0x104DC, # 𐒴 -> 𐓜 + 0x104DD, # 𐒵 -> 𐓝 + 0x104DE, # 𐒶 -> 𐓞 + 0x104DF, # 𐒷 -> 𐓟 + 0x104E0, # 𐒸 -> 𐓠 + 0x104E1, # 𐒹 -> 𐓡 + 0x104E2, # 𐒺 -> 𐓢 + 0x104E3, # 𐒻 -> 𐓣 + 0x104E4, # 𐒼 -> 𐓤 + 0x104E5, # 𐒽 -> 𐓥 + 0x104E6, # 𐒾 -> 𐓦 + 0x104E7, # 𐒿 -> 𐓧 + 0x104E8, # 𐓀 -> 𐓨 + 0x104E9, # 𐓁 -> 𐓩 + 0x104EA, # 𐓂 -> 𐓪 + 0x104EB, # 𐓃 -> 𐓫 + 0x104EC, # 𐓄 -> 𐓬 + 0x104ED, # 𐓅 -> 𐓭 + 0x104EE, # 𐓆 -> 𐓮 + 0x104EF, # 𐓇 -> 𐓯 + 0x104F0, # 𐓈 -> 𐓰 + 0x104F1, # 𐓉 -> 𐓱 + 0x104F2, # 𐓊 -> 𐓲 + 0x104F3, # 𐓋 -> 𐓳 + 0x104F4, # 𐓌 -> 𐓴 + 0x104F5, # 𐓍 -> 𐓵 + 0x104F6, # 𐓎 -> 𐓶 + 0x104F7, # 𐓏 -> 𐓷 + 0x104F8, # 𐓐 -> 𐓸 + 0x104F9, # 𐓑 -> 𐓹 + 0x104FA, # 𐓒 -> 𐓺 + 0x104FB, # 𐓓 -> 𐓻 + 0x10597, # 𐕰 -> 𐖗 + 0x10598, # 𐕱 -> 𐖘 + 0x10599, # 𐕲 -> 𐖙 + 0x1059A, # 𐕳 -> 𐖚 + 0x1059B, # 𐕴 -> 𐖛 + 0x1059C, # 𐕵 -> 𐖜 + 0x1059D, # 𐕶 -> 𐖝 + 0x1059E, # 𐕷 -> 𐖞 + 0x1059F, # 𐕸 -> 𐖟 + 0x105A0, # 𐕹 -> 𐖠 + 0x105A1, # 𐕺 -> 𐖡 + 0x105A3, # 𐕼 -> 𐖣 + 0x105A4, # 𐕽 -> 𐖤 + 0x105A5, # 𐕾 -> 𐖥 + 0x105A6, # 𐕿 -> 𐖦 + 0x105A7, # 𐖀 -> 𐖧 + 0x105A8, # 𐖁 -> 𐖨 + 0x105A9, # 𐖂 -> 𐖩 + 0x105AA, # 𐖃 -> 𐖪 + 0x105AB, # 𐖄 -> 𐖫 + 0x105AC, # 𐖅 -> 𐖬 + 0x105AD, # 𐖆 -> 𐖭 + 0x105AE, # 𐖇 -> 𐖮 + 0x105AF, # 𐖈 -> 𐖯 + 0x105B0, # 𐖉 -> 𐖰 + 0x105B1, # 𐖊 -> 𐖱 + 0x105B3, # 𐖌 -> 𐖳 + 0x105B4, # 𐖍 -> 𐖴 + 0x105B5, # 𐖎 -> 𐖵 + 0x105B6, # 𐖏 -> 𐖶 + 0x105B7, # 𐖐 -> 𐖷 + 0x105B8, # 𐖑 -> 𐖸 + 0x105B9, # 𐖒 -> 𐖹 + 0x105BB, # 𐖔 -> 𐖻 + 0x105BC, # 𐖕 -> 𐖼 + 0x10CC0, # 𐲀 -> 𐳀 + 0x10CC1, # 𐲁 -> 𐳁 + 0x10CC2, # 𐲂 -> 𐳂 + 0x10CC3, # 𐲃 -> 𐳃 + 0x10CC4, # 𐲄 -> 𐳄 + 0x10CC5, # 𐲅 -> 𐳅 + 0x10CC6, # 𐲆 -> 𐳆 + 0x10CC7, # 𐲇 -> 𐳇 + 0x10CC8, # 𐲈 -> 𐳈 + 0x10CC9, # 𐲉 -> 𐳉 + 0x10CCA, # 𐲊 -> 𐳊 + 0x10CCB, # 𐲋 -> 𐳋 + 0x10CCC, # 𐲌 -> 𐳌 + 0x10CCD, # 𐲍 -> 𐳍 + 0x10CCE, # 𐲎 -> 𐳎 + 0x10CCF, # 𐲏 -> 𐳏 + 0x10CD0, # 𐲐 -> 𐳐 + 0x10CD1, # 𐲑 -> 𐳑 + 0x10CD2, # 𐲒 -> 𐳒 + 0x10CD3, # 𐲓 -> 𐳓 + 0x10CD4, # 𐲔 -> 𐳔 + 0x10CD5, # 𐲕 -> 𐳕 + 0x10CD6, # 𐲖 -> 𐳖 + 0x10CD7, # 𐲗 -> 𐳗 + 0x10CD8, # 𐲘 -> 𐳘 + 0x10CD9, # 𐲙 -> 𐳙 + 0x10CDA, # 𐲚 -> 𐳚 + 0x10CDB, # 𐲛 -> 𐳛 + 0x10CDC, # 𐲜 -> 𐳜 + 0x10CDD, # 𐲝 -> 𐳝 + 0x10CDE, # 𐲞 -> 𐳞 + 0x10CDF, # 𐲟 -> 𐳟 + 0x10CE0, # 𐲠 -> 𐳠 + 0x10CE1, # 𐲡 -> 𐳡 + 0x10CE2, # 𐲢 -> 𐳢 + 0x10CE3, # 𐲣 -> 𐳣 + 0x10CE4, # 𐲤 -> 𐳤 + 0x10CE5, # 𐲥 -> 𐳥 + 0x10CE6, # 𐲦 -> 𐳦 + 0x10CE7, # 𐲧 -> 𐳧 + 0x10CE8, # 𐲨 -> 𐳨 + 0x10CE9, # 𐲩 -> 𐳩 + 0x10CEA, # 𐲪 -> 𐳪 + 0x10CEB, # 𐲫 -> 𐳫 + 0x10CEC, # 𐲬 -> 𐳬 + 0x10CED, # 𐲭 -> 𐳭 + 0x10CEE, # 𐲮 -> 𐳮 + 0x10CEF, # 𐲯 -> 𐳯 + 0x10CF0, # 𐲰 -> 𐳰 + 0x10CF1, # 𐲱 -> 𐳱 + 0x10CF2, # 𐲲 -> 𐳲 + 0x118C0, # 𑢠 -> 𑣀 + 0x118C1, # 𑢡 -> 𑣁 + 0x118C2, # 𑢢 -> 𑣂 + 0x118C3, # 𑢣 -> 𑣃 + 0x118C4, # 𑢤 -> 𑣄 + 0x118C5, # 𑢥 -> 𑣅 + 0x118C6, # 𑢦 -> 𑣆 + 0x118C7, # 𑢧 -> 𑣇 + 0x118C8, # 𑢨 -> 𑣈 + 0x118C9, # 𑢩 -> 𑣉 + 0x118CA, # 𑢪 -> 𑣊 + 0x118CB, # 𑢫 -> 𑣋 + 0x118CC, # 𑢬 -> 𑣌 + 0x118CD, # 𑢭 -> 𑣍 + 0x118CE, # 𑢮 -> 𑣎 + 0x118CF, # 𑢯 -> 𑣏 + 0x118D0, # 𑢰 -> 𑣐 + 0x118D1, # 𑢱 -> 𑣑 + 0x118D2, # 𑢲 -> 𑣒 + 0x118D3, # 𑢳 -> 𑣓 + 0x118D4, # 𑢴 -> 𑣔 + 0x118D5, # 𑢵 -> 𑣕 + 0x118D6, # 𑢶 -> 𑣖 + 0x118D7, # 𑢷 -> 𑣗 + 0x118D8, # 𑢸 -> 𑣘 + 0x118D9, # 𑢹 -> 𑣙 + 0x118DA, # 𑢺 -> 𑣚 + 0x118DB, # 𑢻 -> 𑣛 + 0x118DC, # 𑢼 -> 𑣜 + 0x118DD, # 𑢽 -> 𑣝 + 0x118DE, # 𑢾 -> 𑣞 + 0x118DF, # 𑢿 -> 𑣟 + 0x16E60, # 𖹀 -> 𖹠 + 0x16E61, # 𖹁 -> 𖹡 + 0x16E62, # 𖹂 -> 𖹢 + 0x16E63, # 𖹃 -> 𖹣 + 0x16E64, # 𖹄 -> 𖹤 + 0x16E65, # 𖹅 -> 𖹥 + 0x16E66, # 𖹆 -> 𖹦 + 0x16E67, # 𖹇 -> 𖹧 + 0x16E68, # 𖹈 -> 𖹨 + 0x16E69, # 𖹉 -> 𖹩 + 0x16E6A, # 𖹊 -> 𖹪 + 0x16E6B, # 𖹋 -> 𖹫 + 0x16E6C, # 𖹌 -> 𖹬 + 0x16E6D, # 𖹍 -> 𖹭 + 0x16E6E, # 𖹎 -> 𖹮 + 0x16E6F, # 𖹏 -> 𖹯 + 0x16E70, # 𖹐 -> 𖹰 + 0x16E71, # 𖹑 -> 𖹱 + 0x16E72, # 𖹒 -> 𖹲 + 0x16E73, # 𖹓 -> 𖹳 + 0x16E74, # 𖹔 -> 𖹴 + 0x16E75, # 𖹕 -> 𖹵 + 0x16E76, # 𖹖 -> 𖹶 + 0x16E77, # 𖹗 -> 𖹷 + 0x16E78, # 𖹘 -> 𖹸 + 0x16E79, # 𖹙 -> 𖹹 + 0x16E7A, # 𖹚 -> 𖹺 + 0x16E7B, # 𖹛 -> 𖹻 + 0x16E7C, # 𖹜 -> 𖹼 + 0x16E7D, # 𖹝 -> 𖹽 + 0x16E7E, # 𖹞 -> 𖹾 + 0x16E7F, # 𖹟 -> 𖹿 + 0x1E922, # 𞤀 -> 𞤢 + 0x1E923, # 𞤁 -> 𞤣 + 0x1E924, # 𞤂 -> 𞤤 + 0x1E925, # 𞤃 -> 𞤥 + 0x1E926, # 𞤄 -> 𞤦 + 0x1E927, # 𞤅 -> 𞤧 + 0x1E928, # 𞤆 -> 𞤨 + 0x1E929, # 𞤇 -> 𞤩 + 0x1E92A, # 𞤈 -> 𞤪 + 0x1E92B, # 𞤉 -> 𞤫 + 0x1E92C, # 𞤊 -> 𞤬 + 0x1E92D, # 𞤋 -> 𞤭 + 0x1E92E, # 𞤌 -> 𞤮 + 0x1E92F, # 𞤍 -> 𞤯 + 0x1E930, # 𞤎 -> 𞤰 + 0x1E931, # 𞤏 -> 𞤱 + 0x1E932, # 𞤐 -> 𞤲 + 0x1E933, # 𞤑 -> 𞤳 + 0x1E934, # 𞤒 -> 𞤴 + 0x1E935, # 𞤓 -> 𞤵 + 0x1E936, # 𞤔 -> 𞤶 + 0x1E937, # 𞤕 -> 𞤷 + 0x1E938, # 𞤖 -> 𞤸 + 0x1E939, # 𞤗 -> 𞤹 + 0x1E93A, # 𞤘 -> 𞤺 + 0x1E93B, # 𞤙 -> 𞤻 + 0x1E93C, # 𞤚 -> 𞤼 + 0x1E93D, # 𞤛 -> 𞤽 + 0x1E93E, # 𞤜 -> 𞤾 + 0x1E93F, # 𞤝 -> 𞤿 + 0x1E940, # 𞤞 -> 𞥀 + 0x1E941, # 𞤟 -> 𞥁 + 0x1E942, # 𞤠 -> 𞥂 + 0x1E943, # 𞤡 -> 𞥃 +) +alias has_uppercase_mapping2 = List[UInt32, hint_trivial_type=True]( + 0xDF, # # LATIN SMALL LETTER SHARP S ß + 0x149, # # LATIN SMALL LETTER N PRECEDED BY APOSTROPHE ʼn + 0x1F0, # # LATIN SMALL LETTER J WITH CARON ǰ + 0x587, # # ARMENIAN SMALL LIGATURE ECH YIWN և + 0x1E96, # # LATIN SMALL LETTER H WITH LINE BELOW ẖ + 0x1E97, # # LATIN SMALL LETTER T WITH DIAERESIS ẗ + 0x1E98, # # LATIN SMALL LETTER W WITH RING ABOVE ẘ + 0x1E99, # # LATIN SMALL LETTER Y WITH RING ABOVE ẙ + 0x1E9A, # # LATIN SMALL LETTER A WITH RIGHT HALF RING ẚ + 0x1F50, # # GREEK SMALL LETTER UPSILON WITH PSILI ὐ + 0x1FB6, # # GREEK SMALL LETTER ALPHA WITH PERISPOMENI ᾶ + 0x1FC6, # # GREEK SMALL LETTER ETA WITH PERISPOMENI ῆ + 0x1FD6, # # GREEK SMALL LETTER IOTA WITH PERISPOMENI ῖ + 0x1FE4, # # GREEK SMALL LETTER RHO WITH PSILI ῤ + 0x1FE6, # # GREEK SMALL LETTER UPSILON WITH PERISPOMENI ῦ + 0x1FF6, # # GREEK SMALL LETTER OMEGA WITH PERISPOMENI ῶ + 0xFB00, # # LATIN SMALL LIGATURE FF ff + 0xFB01, # # LATIN SMALL LIGATURE FI fi + 0xFB02, # # LATIN SMALL LIGATURE FL fl + 0xFB05, # # LATIN SMALL LIGATURE LONG S T ſt + 0xFB06, # # LATIN SMALL LIGATURE ST st + 0xFB13, # # ARMENIAN SMALL LIGATURE MEN NOW ﬓ + 0xFB14, # # ARMENIAN SMALL LIGATURE MEN ECH ﬔ + 0xFB15, # # ARMENIAN SMALL LIGATURE MEN INI ﬕ + 0xFB16, # # ARMENIAN SMALL LIGATURE VEW NOW ﬖ + 0xFB17, # # ARMENIAN SMALL LIGATURE MEN XEH ﬗ +) +alias uppercase_mapping2 = List[SIMD[DType.uint32, 2], hint_trivial_type=True]( + SIMD[DType.uint32, 2](0x0053, 0x0053), # ß -> SS + SIMD[DType.uint32, 2](0x02BC, 0x004E), # ʼn -> ʼN + SIMD[DType.uint32, 2](0x004A, 0x030C), # ǰ -> J̌ + SIMD[DType.uint32, 2](0x0535, 0x0552), # և -> ԵՒ + SIMD[DType.uint32, 2](0x0048, 0x0331), # ẖ -> H̱ + SIMD[DType.uint32, 2](0x0054, 0x0308), # ẗ -> T̈ + SIMD[DType.uint32, 2](0x0057, 0x030A), # ẘ -> W̊ + SIMD[DType.uint32, 2](0x0059, 0x030A), # ẙ -> Y̊ + SIMD[DType.uint32, 2](0x0041, 0x02BE), # ẚ -> Aʾ + SIMD[DType.uint32, 2](0x03A5, 0x0313), # ὐ -> Υ̓ + SIMD[DType.uint32, 2](0x0391, 0x0342), # ᾶ -> Α͂ + SIMD[DType.uint32, 2](0x0397, 0x0342), # ῆ -> Η͂ + SIMD[DType.uint32, 2](0x0399, 0x0342), # ῖ -> Ι͂ + SIMD[DType.uint32, 2](0x03A1, 0x0313), # ῤ -> Ρ̓ + SIMD[DType.uint32, 2](0x03A5, 0x0342), # ῦ -> Υ͂ + SIMD[DType.uint32, 2](0x03A9, 0x0342), # ῶ -> Ω͂ + SIMD[DType.uint32, 2](0x0046, 0x0046), # ff -> FF + SIMD[DType.uint32, 2](0x0046, 0x0049), # fi -> FI + SIMD[DType.uint32, 2](0x0046, 0x004C), # fl -> FL + SIMD[DType.uint32, 2](0x0053, 0x0054), # ſt -> ST + SIMD[DType.uint32, 2](0x0053, 0x0054), # st -> ST + SIMD[DType.uint32, 2](0x0544, 0x0546), # ﬓ -> ՄՆ + SIMD[DType.uint32, 2](0x0544, 0x0535), # ﬔ -> ՄԵ + SIMD[DType.uint32, 2](0x0544, 0x053B), # ﬕ -> ՄԻ + SIMD[DType.uint32, 2](0x054E, 0x0546), # ﬖ -> ՎՆ + SIMD[DType.uint32, 2](0x0544, 0x053D), # ﬗ -> ՄԽ +) +alias has_uppercase_mapping3 = List[UInt32, hint_trivial_type=True]( + 0x390, # # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND TONOS ΐ + 0x3B0, # # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND TONOS ΰ + 0x1F52, # # GREEK SMALL LETTER UPSILON WITH PSILI AND VARIA ὒ + 0x1F54, # # GREEK SMALL LETTER UPSILON WITH PSILI AND OXIA ὔ + 0x1F56, # # GREEK SMALL LETTER UPSILON WITH PSILI AND PERISPOMENI ὖ + 0x1FD2, # # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND VARIA ῒ + 0x1FD3, # # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND OXIA ΐ + 0x1FD7, # # GREEK SMALL LETTER IOTA WITH DIALYTIKA AND PERISPOMENI ῗ + 0x1FE2, # # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND VARIA ῢ + 0x1FE3, # # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND OXIA ΰ + 0x1FE7, # # GREEK SMALL LETTER UPSILON WITH DIALYTIKA AND PERISPOMENI ῧ + 0xFB03, # # LATIN SMALL LIGATURE FFI ffi + 0xFB04, # # LATIN SMALL LIGATURE FFL ffl +) +alias uppercase_mapping3 = List[SIMD[DType.uint32, 4], hint_trivial_type=True]( + SIMD[DType.uint32, 4](0x0399, 0x0308, 0x0301, 0), # ΐ -> Ϊ́ + SIMD[DType.uint32, 4](0x03A5, 0x0308, 0x0301, 0), # ΰ -> Ϋ́ + SIMD[DType.uint32, 4](0x03A5, 0x0313, 0x0300, 0), # ὒ -> Υ̓̀ + SIMD[DType.uint32, 4](0x03A5, 0x0313, 0x0301, 0), # ὔ -> Υ̓́ + SIMD[DType.uint32, 4](0x03A5, 0x0313, 0x0342, 0), # ὖ -> Υ̓͂ + SIMD[DType.uint32, 4](0x0399, 0x0308, 0x0300, 0), # ῒ -> Ϊ̀ + SIMD[DType.uint32, 4](0x0399, 0x0308, 0x0301, 0), # ΐ -> Ϊ́ + SIMD[DType.uint32, 4](0x0399, 0x0308, 0x0342, 0), # ῗ -> Ϊ͂ + SIMD[DType.uint32, 4](0x03A5, 0x0308, 0x0300, 0), # ῢ -> Ϋ̀ + SIMD[DType.uint32, 4](0x03A5, 0x0308, 0x0301, 0), # ΰ -> Ϋ́ + SIMD[DType.uint32, 4](0x03A5, 0x0308, 0x0342, 0), # ῧ -> Ϋ͂ + SIMD[DType.uint32, 4](0x0046, 0x0046, 0x0049, 0), # ffi -> FFI + SIMD[DType.uint32, 4](0x0046, 0x0046, 0x004C, 0), # ffl -> FFL +) diff --git a/stdlib/test/collections/test_string.mojo b/stdlib/test/collections/test_string.mojo index 9f81629b8a..d02ad51563 100644 --- a/stdlib/test/collections/test_string.mojo +++ b/stdlib/test/collections/test_string.mojo @@ -918,6 +918,8 @@ def test_isupper(): assert_false(String("AsDG").isupper()) assert_true(String("ABC123").isupper()) assert_false(String("1!").isupper()) + assert_true(String("É").isupper()) + assert_false(String("é").isupper()) def test_islower(): @@ -936,6 +938,8 @@ def test_islower(): assert_false(String("asdFDg").islower()) assert_true(String("abc123").islower()) assert_false(String("1!").islower()) + assert_true(String("é").islower()) + assert_false(String("É").islower()) def test_lower(): @@ -945,8 +949,8 @@ def test_lower(): assert_equal(String("MOJO🔥").lower(), "mojo🔥") - # TODO(#26444): Non-ASCII not supported yet - assert_equal(String("É").lower(), "É") + assert_equal(String("É").lower(), "é") + assert_equal(String("é").lower(), "é") def test_upper(): @@ -956,8 +960,8 @@ def test_upper(): assert_equal(String("mojo🔥").upper(), "MOJO🔥") - # TODO(#26444): Non-ASCII not supported yet assert_equal(String("É").upper(), "É") + assert_equal(String("é").upper(), "É") def test_isspace(): From 643eaea9010e45f666e89c120837d3c82f7d66a1 Mon Sep 17 00:00:00 2001 From: Lukas Hermann <1734032+lsh@users.noreply.github.com> Date: Mon, 18 Nov 2024 14:24:30 -0800 Subject: [PATCH 22/28] [stdlib] Mark `Span` and `StringSlice` as register_passable trivial Since `Span` is just a pointer and length, it's a trivial type, and `StringSlice` is just a wrapper around `Span`. This should provide a small speedup. MODULAR_ORIG_COMMIT_REV_ID: 6ce887ad907e0851f353a9ee9f3cb84eaa53c2cb --- stdlib/src/utils/span.mojo | 1 + stdlib/src/utils/string_slice.mojo | 17 +++++++++-------- 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/stdlib/src/utils/span.mojo b/stdlib/src/utils/span.mojo index 40098ecafc..3ebb316f2d 100644 --- a/stdlib/src/utils/span.mojo +++ b/stdlib/src/utils/span.mojo @@ -92,6 +92,7 @@ struct _SpanIter[ @value +@register_passable("trivial") struct Span[ is_mutable: Bool, //, T: CollectionElement, diff --git a/stdlib/src/utils/string_slice.mojo b/stdlib/src/utils/string_slice.mojo index 50619e7978..b7fe463728 100644 --- a/stdlib/src/utils/string_slice.mojo +++ b/stdlib/src/utils/string_slice.mojo @@ -241,6 +241,7 @@ struct _StringSliceIter[ @value +@register_passable("trivial") struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable].type,]( Stringable, Sized, @@ -299,7 +300,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable].type,]( `unsafe_from_utf8` MUST be valid UTF-8 encoded data. """ - self._slice = unsafe_from_utf8^ + self._slice = unsafe_from_utf8 fn __init__(out self, *, unsafe_from_utf8_strref: StringRef): """Construct a new StringSlice from a `StringRef` pointing to UTF-8 @@ -692,7 +693,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable].type,]( """ if end == -1: return self.find(prefix, start) == start - return StringSlice[__origin_of(self)]( + return StringSlice[origin]( ptr=self.unsafe_ptr() + start, length=end - start ).startswith(prefix) @@ -714,7 +715,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable].type,]( return False if end == -1: return self.rfind(suffix, start) + len(suffix) == len(self) - return StringSlice[__origin_of(self)]( + return StringSlice[origin]( ptr=self.unsafe_ptr() + start, length=end - start ).endswith(suffix) @@ -1010,7 +1011,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable].type,]( str_len = eol_start - offset + int(keepends) * eol_length s = StringSlice[O](ptr=ptr + offset, length=str_len) - output.append(s^) + output.append(s) offset = eol_start + eol_length return output^ @@ -1046,7 +1047,7 @@ trait Stringlike: fn _to_string_list[ - T: CollectionElement, //, + T: CollectionElement, # TODO(MOCO-1446): Make `T` parameter inferred len_fn: fn (T) -> Int, unsafe_ptr_fn: fn (T) -> UnsafePointer[Byte], ](items: List[T]) -> List[String]: @@ -1088,7 +1089,7 @@ fn _to_string_list[ fn len_fn(v: StringSlice[O]) -> Int: return v.byte_length() - return _to_string_list[len_fn, unsafe_ptr_fn](items) + return _to_string_list[items.T, len_fn, unsafe_ptr_fn](items) @always_inline @@ -1113,7 +1114,7 @@ fn _to_string_list[ fn len_fn(v: Span[Byte, O]) -> Int: return len(v) - return _to_string_list[len_fn, unsafe_ptr_fn](items) + return _to_string_list[items.T, len_fn, unsafe_ptr_fn](items) # ===----------------------------------------------------------------------===# @@ -1356,7 +1357,7 @@ struct _FormatCurlyEntry(CollectionElement, CollectionElementNew): conversion_flag not in Self.supported_conversion_flags ): var f = String(_build_slice(field_ptr, new_idx, field_len)) - _ = field^ + _ = field raise Error('Conversion flag "' + f + '" not recognised.') self.conversion_flag = conversion_flag field = _build_slice(field_ptr, 0, exclamation_index) From c180f16b79fafcc706cc8847ef2d4cb851928edd Mon Sep 17 00:00:00 2001 From: Rasool Sharifi Date: Tue, 19 Nov 2024 15:16:51 -0800 Subject: [PATCH 23/28] [stdlib] Public title Added conversion from float8 to float32 MODULAR_ORIG_COMMIT_REV_ID: 441ab0aaac7dbf2235f26dc14f0c38bc60f12c64 --- stdlib/src/builtin/simd.mojo | 153 +++++++++++++++++++++++++++++++++++ 1 file changed, 153 insertions(+) diff --git a/stdlib/src/builtin/simd.mojo b/stdlib/src/builtin/simd.mojo index a299140a57..c2429c5309 100644 --- a/stdlib/src/builtin/simd.mojo +++ b/stdlib/src/builtin/simd.mojo @@ -1625,6 +1625,29 @@ struct SIMD[type: DType, size: Int]( # use the optimizations defined above. return self.cast[DType.float32]().cast[target]() + @parameter + if type in (DType.float8e4m3, DType.float8e5m2): + constrained[ + target in (DType.float32, DType.float16, DType.bfloat16), + ( + "Only FP8->F32, FP8->F16, and FP8->BF16 castings are" + " implemented." + ), + ]() + + @parameter + if target is DType.float32: + return _convert_float8_to_f32( + rebind[SIMD[type, size]](self) + ).cast[target]() + elif target is DType.float16: + return _convert_float8_to_f16( + rebind[SIMD[type, size]](self) + ).cast[target]() + return rebind[SIMD[target, size]]( + self.cast[DType.float32]().cast[DType.bfloat16]() + ) + @parameter if has_neon() and (type is DType.bfloat16 or target is DType.bfloat16): # TODO(KERN-228): support BF16 on neon systems. @@ -2931,6 +2954,136 @@ fn _powi[type: DType](base: Scalar[type], exp: Int32) -> __type_of(base): return res +# ===----------------------------------------------------------------------=== # +# float8 +# ===----------------------------------------------------------------------=== # + + +@always_inline +fn _convert_float8_to_f32_scaler[ + type: DType, +](x: Scalar[type]) -> Scalar[DType.float32]: + var kF32_NaN: UInt32 = 0x7FFFFFFF + var FP8_NUM_BITS = 8 + var IS_E4M3 = type is DType.float8e4m3 + var FP8_NUM_MANTISSA_BITS = FPUtils[type].mantissa_width() + var FP8_NUM_EXPONENT_BITS = FPUtils[type].exponent_width() + var FP32_NUM_BITS = 32 + var FP8_EXPONENT_MASK: UInt8 = (1 << FP8_NUM_EXPONENT_BITS) - 1 + var FP8_MANTISSA_MASK: UInt8 = (1 << FP8_NUM_MANTISSA_BITS) - 1 + var FP8_MAX_EXPONENT = 7 if IS_E4M3 else 15 + var FP8_EXPONENT_BIAS = 7 if IS_E4M3 else 15 + var FP32_EXPONENT_BIAS = 127 + var FP32_NUM_MANTISSA_BITS = 23 + + var f8: UInt8 = bitcast[DType.uint8](x) + + var sign: UInt32 = (f8.cast[DType.uint32]() >> (FP8_NUM_BITS - 1)) & 1 + var exp: UInt32 = ((f8 >> FP8_NUM_MANTISSA_BITS) & FP8_EXPONENT_MASK).cast[ + DType.uint32 + ]() + var mantissa: UInt32 = (f8 & FP8_MANTISSA_MASK).cast[DType.uint32]() + + var f: UInt32 = (sign << (FP32_NUM_BITS - 1)) + + if IS_E4M3 and exp == 15 and mantissa == 0x7: + f = kF32_NaN + elif exp > 0 and ( + IS_E4M3 or exp < (FP8_MAX_EXPONENT + FP8_EXPONENT_BIAS + 1) + ): + # normal + exp += FP32_EXPONENT_BIAS - FP8_EXPONENT_BIAS + f |= exp << FP32_NUM_MANTISSA_BITS + f |= mantissa << (FP32_NUM_MANTISSA_BITS - FP8_NUM_MANTISSA_BITS) + elif exp == 0: + if mantissa: + # subnormal + exp += (FP32_EXPONENT_BIAS - FP8_EXPONENT_BIAS) + 1 + while (mantissa & (1 << FP8_NUM_MANTISSA_BITS)) == 0: + mantissa <<= 1 + exp -= 1 + mantissa = mantissa & FP8_MANTISSA_MASK.cast[DType.uint32]() + f |= exp << FP32_NUM_MANTISSA_BITS + f |= mantissa << (FP32_NUM_MANTISSA_BITS - FP8_NUM_MANTISSA_BITS) + else: + # sign-preserving zero + pass + else: + if mantissa == 0: + # Sign-preserving infinity + f |= 0x7F800000 + else: + # Canonical NaN + f = kF32_NaN + + return bitcast[DType.float32](f) + + +@always_inline +fn _convert_float8_to_f32[ + type: DType, + size: Int, +](val: SIMD[type, size]) -> SIMD[DType.float32, size]: + @parameter + if is_nvidia_gpu() and _is_sm_9x(): + return _convert_float8_to_f16(rebind[SIMD[type, size]](val)).cast[ + DType.float32 + ]() + else: + + @always_inline + @parameter + fn wrapper_fn[ + input_type: DType, result_type: DType + ](val: Scalar[input_type]) capturing -> Scalar[result_type]: + return rebind[Scalar[result_type]]( + _convert_float8_to_f32_scaler(rebind[Scalar[type]](val)) + ) + + return _simd_apply[wrapper_fn, DType.float32, size](val) + + +@always_inline +fn _convert_float8_to_f16[ + type: DType, + size: Int, +](val: SIMD[type, size],) -> SIMD[DType.float16, size]: + @parameter + if is_nvidia_gpu() and _is_sm_9x(): + alias asm_prefix = "cvt.rn.f16x2.e4m3x2" if type is DType.float8e4m3 else "cvt.rn.f16x2.e5m2x2" + var val_uint8 = bitcast[DType.uint8](val) + + @parameter + if size > 1: + var res = SIMD[DType.uint16, size]() + + @parameter + for i in range(0, size, 2): + var f8x2 = val_uint8.slice[2, offset=i]() + var f16x2_f8x2 = inlined_assembly[ + asm_prefix + " $0, $1;", + Scalar[DType.uint32], + constraints="=r,h", + has_side_effect=False, + ](bitcast[DType.uint16, 1](f8x2)) + var ui16x2 = bitcast[DType.uint16, 2](f16x2_f8x2) + res = res.insert[offset=i](ui16x2) + return bitcast[DType.float16](res) + else: + var f16x2_f8x2 = inlined_assembly[ + asm_prefix + " $0, $1;", + Scalar[DType.uint32], + constraints="=r,h", + has_side_effect=False, + ](val_uint8.cast[DType.uint16]()) + var ui16x2 = bitcast[DType.uint16, 2](f16x2_f8x2) + return bitcast[DType.float16](ui16x2[0]) + else: + return _convert_float8_to_f32(rebind[SIMD[type, size]](val)).cast[ + DType.float16 + ]() + + # ===----------------------------------------------------------------------=== # # bfloat16 # ===----------------------------------------------------------------------=== # From a49cc1a6c3d95b3b62d1b5857c44049357cbcff7 Mon Sep 17 00:00:00 2001 From: Konstantinos Krommydas Date: Tue, 19 Nov 2024 20:06:54 -0500 Subject: [PATCH 24/28] [stdlib] Fixes memory.mojo Makes mem-ops in memory.mojo more generic. MODULAR_ORIG_COMMIT_REV_ID: 9ac40b0fb895905026ff386e194954bfb130d498 --- stdlib/src/memory/memory.mojo | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/stdlib/src/memory/memory.mojo b/stdlib/src/memory/memory.mojo index 8384279c65..ab215ab5b0 100644 --- a/stdlib/src/memory/memory.mojo +++ b/stdlib/src/memory/memory.mojo @@ -24,7 +24,7 @@ from sys import ( alignof, llvm_intrinsic, sizeof, - is_nvidia_gpu, + is_gpu, external_call, simdwidthof, simdbitwidth, @@ -155,7 +155,7 @@ fn _memcpy_impl( """ @parameter - if is_nvidia_gpu(): + if is_gpu(): alias chunk_size = simdbitwidth() var vector_end = _align_down(n, chunk_size) for i in range(0, vector_end, chunk_size): @@ -349,7 +349,7 @@ fn stack_allocation[ count: Int, type: DType, /, - alignment: Int = alignof[type]() if is_nvidia_gpu() else 1, + alignment: Int = alignof[type]() if is_gpu() else 1, address_space: AddressSpace = AddressSpace.GENERIC, ]() -> UnsafePointer[Scalar[type], address_space]: """Allocates data buffer space on the stack given a data type and number of @@ -376,7 +376,7 @@ fn stack_allocation[ type: AnyType, /, name: Optional[StringLiteral] = None, - alignment: Int = alignof[type]() if is_nvidia_gpu() else 1, + alignment: Int = alignof[type]() if is_gpu() else 1, address_space: AddressSpace = AddressSpace.GENERIC, ]() -> UnsafePointer[type, address_space]: """Allocates data buffer space on the stack given a data type and number of @@ -394,7 +394,7 @@ fn stack_allocation[ """ @parameter - if is_nvidia_gpu(): + if is_gpu(): # On NVGPU, SHARED and PARAM address spaces lower to global memory. @parameter if address_space in (_GPUAddressSpace.SHARED, _GPUAddressSpace.PARAM): @@ -436,12 +436,12 @@ fn _malloc[ type: AnyType, /, *, - alignment: Int = alignof[type]() if is_nvidia_gpu() else 1, + alignment: Int = alignof[type]() if is_gpu() else 1, ](size: Int, /) -> UnsafePointer[ type, AddressSpace.GENERIC, alignment=alignment ]: @parameter - if is_nvidia_gpu(): + if is_gpu(): return external_call[ "malloc", UnsafePointer[NoneType, AddressSpace.GENERIC] ](size).bitcast[type]() @@ -459,7 +459,7 @@ fn _malloc[ @always_inline fn _free(ptr: UnsafePointer[_, AddressSpace.GENERIC, *_]): @parameter - if is_nvidia_gpu(): + if is_gpu(): libc.free(ptr.bitcast[NoneType]()) else: __mlir_op.`pop.aligned_free`(ptr.address) From 0dd702a2f2910fb37f0ebe99193a201a2f336cc7 Mon Sep 17 00:00:00 2001 From: Fabio Riccardi Date: Tue, 19 Nov 2024 17:27:06 -0800 Subject: [PATCH 25/28] [stdlib] Added support for sin and cos on AMD GPUs. using llvm_intrinsic instead of _call_libm on AMD GPUs MODULAR_ORIG_COMMIT_REV_ID: bbd8e506d72f335a62425dbfb62f94b72ec339f9 --- stdlib/src/math/math.mojo | 7 +++++++ stdlib/src/sys/__init__.mojo | 1 + 2 files changed, 8 insertions(+) diff --git a/stdlib/src/math/math.mojo b/stdlib/src/math/math.mojo index 6b3876a989..e8cc3c1899 100644 --- a/stdlib/src/math/math.mojo +++ b/stdlib/src/math/math.mojo @@ -28,6 +28,7 @@ from sys import ( has_avx512f, simdwidthof, is_nvidia_gpu, + is_amd_gpu, sizeof, ) @@ -1412,6 +1413,8 @@ fn cos[ return _call_ptx_intrinsic[ instruction="cos.approx.ftz.f32", constraints="=f,f" ](x) + elif is_amd_gpu(): + return llvm_intrinsic["llvm.cos", __type_of(x)](x) else: return _call_libm["cos"](x) @@ -1445,6 +1448,8 @@ fn sin[ return _call_ptx_intrinsic[ instruction="sin.approx.ftz.f32", constraints="=f,f" ](x) + elif is_amd_gpu(): + return llvm_intrinsic["llvm.sin", __type_of(x)](x) else: return _call_libm["sin"](x) @@ -1622,6 +1627,8 @@ fn log10(x: SIMD) -> __type_of(x): ](x) * log10_2 ) + elif is_amd_gpu(): + return llvm_intrinsic["llvm.log10", __type_of(x)](x) return _call_libm["log10"](x) diff --git a/stdlib/src/sys/__init__.mojo b/stdlib/src/sys/__init__.mojo index 099f406f06..632dde283e 100644 --- a/stdlib/src/sys/__init__.mojo +++ b/stdlib/src/sys/__init__.mojo @@ -48,6 +48,7 @@ from .info import ( simdwidthof, sizeof, is_nvidia_gpu, + is_amd_gpu, is_gpu, ) from .intrinsics import ( From 8d764ebbea87a3e7f9803bf8d5fc702ea411729a Mon Sep 17 00:00:00 2001 From: Lukas Hermann <1734032+lsh@users.noreply.github.com> Date: Wed, 20 Nov 2024 09:46:11 -0800 Subject: [PATCH 26/28] [stdlib] Change `CeilDivable` and `CeilDivableRaises` to just require `__ceildiv__`. The traits currently require `__floordiv__`, `__rfloordiv__`, and `__neg__`. Modelling `CieldDivable{Raising}` using those traits ignores unsigned numeric types where `__neg__` doesn't make sense. Having the types implement `__ceildiv__` directly reduces the change of implementing it wrong. MODULAR_ORIG_COMMIT_REV_ID: f043dc093244082d03eb643c8080341c009b8855 --- stdlib/src/builtin/float_literal.mojo | 12 ++++ stdlib/src/builtin/int.mojo | 13 ++++ stdlib/src/builtin/int_literal.mojo | 13 ++++ stdlib/src/builtin/simd.mojo | 17 ++++++ stdlib/src/builtin/uint.mojo | 13 ++++ stdlib/src/math/math.mojo | 87 +++++++++------------------ 6 files changed, 96 insertions(+), 59 deletions(-) diff --git a/stdlib/src/builtin/float_literal.mojo b/stdlib/src/builtin/float_literal.mojo index b454ba6d94..81308401b5 100644 --- a/stdlib/src/builtin/float_literal.mojo +++ b/stdlib/src/builtin/float_literal.mojo @@ -447,6 +447,18 @@ struct FloatLiteral( """ return rhs // self + @always_inline + fn __ceildiv__(self, denominator: Self) -> Self: + """Return the rounded-up result of dividing self by denominator. + + Args: + denominator: The denominator. + + Returns: + The ceiling of dividing numerator by denominator. + """ + return -(self // -denominator) + # TODO - maybe __pow__? # ===------------------------------------------------------------------===# diff --git a/stdlib/src/builtin/int.mojo b/stdlib/src/builtin/int.mojo index f68e1d0c0d..960ac5e00b 100644 --- a/stdlib/src/builtin/int.mojo +++ b/stdlib/src/builtin/int.mojo @@ -1145,6 +1145,19 @@ struct Int( result = Python.py_long_as_ssize_t(obj) + @always_inline + fn __ceildiv__(self, denominator: Self) -> Self: + """Return the rounded-up result of dividing self by denominator. + + + Args: + denominator: The denominator. + + Returns: + The ceiling of dividing numerator by denominator. + """ + return -(self // -denominator) + # ===-------------------------------------------------------------------===# # Methods # ===-------------------------------------------------------------------===# diff --git a/stdlib/src/builtin/int_literal.mojo b/stdlib/src/builtin/int_literal.mojo index 1b17508a3b..0432c933d3 100644 --- a/stdlib/src/builtin/int_literal.mojo +++ b/stdlib/src/builtin/int_literal.mojo @@ -704,6 +704,19 @@ struct IntLiteral( """ return str(Int(self)) + @always_inline + fn __ceildiv__(self, denominator: Self) -> Self: + """Return the rounded-up result of dividing self by denominator. + + + Args: + denominator: The denominator. + + Returns: + The ceiling of dividing numerator by denominator. + """ + return -(self // -denominator) + # ===----------------------------------------------------------------------===# # Methods # ===----------------------------------------------------------------------===# diff --git a/stdlib/src/builtin/simd.mojo b/stdlib/src/builtin/simd.mojo index c2429c5309..9d9fe69a00 100644 --- a/stdlib/src/builtin/simd.mojo +++ b/stdlib/src/builtin/simd.mojo @@ -1573,6 +1573,23 @@ struct SIMD[type: DType, size: Int]( """ hasher._update_with_simd(self) + @always_inline + fn __ceildiv__(self, denominator: Self) -> Self: + """Return the rounded-up result of dividing self by denominator. + + + Args: + denominator: The denominator. + + Returns: + The ceiling of dividing numerator by denominator. + """ + + @parameter + if type.is_signed(): + return -(self // -denominator) + return (self + denominator - 1) // denominator + # ===------------------------------------------------------------------=== # # Methods # ===------------------------------------------------------------------=== # diff --git a/stdlib/src/builtin/uint.mojo b/stdlib/src/builtin/uint.mojo index 5a914e8da1..2c0f3f7de9 100644 --- a/stdlib/src/builtin/uint.mojo +++ b/stdlib/src/builtin/uint.mojo @@ -383,6 +383,19 @@ struct UInt(IntLike, _HashableWithHasher): """ return __mlir_op.`index.or`(self.value, rhs.value) + @always_inline + fn __ceildiv__(self, denominator: Self) -> Self: + """Return the rounded-up result of dividing self by denominator. + + + Args: + denominator: The denominator. + + Returns: + The ceiling of dividing numerator by denominator. + """ + return __mlir_op.`index.ceildivu`(self.value, denominator.value) + # ===----------------------------------------------------------------------===# # In place operations. # ===----------------------------------------------------------------------===# diff --git a/stdlib/src/math/math.mojo b/stdlib/src/math/math.mojo index e8cc3c1899..7371d2a3df 100644 --- a/stdlib/src/math/math.mojo +++ b/stdlib/src/math/math.mojo @@ -95,7 +95,7 @@ fn ceil[T: Ceilable, //](value: T) -> T: @always_inline fn ceildiv[T: CeilDivable, //](numerator: T, denominator: T) -> T: - """Return the rounded-up result of dividing x by y. + """Return the rounded-up result of dividing numerator by denominator. Parameters: T: A type that support floor division. @@ -105,14 +105,15 @@ fn ceildiv[T: CeilDivable, //](numerator: T, denominator: T) -> T: denominator: The denominator. Returns: - The ceiling of dividing x by y. + The ceiling of dividing numerator by denominator. """ - return -(numerator // -denominator) + # return -(numerator // -denominator) + return numerator.__ceildiv__(denominator) @always_inline fn ceildiv[T: CeilDivableRaising, //](numerator: T, denominator: T) raises -> T: - """Return the rounded-up result of dividing x by y, potentially raising. + """Return the rounded-up result of dividing numerator by denominator, potentially raising. Parameters: T: A type that support floor division. @@ -122,39 +123,25 @@ fn ceildiv[T: CeilDivableRaising, //](numerator: T, denominator: T) raises -> T: denominator: The denominator. Returns: - The ceiling of dividing x by y. + The ceiling of dividing numerator by denominator. """ - return -(numerator // -denominator) + return numerator.__ceildiv__(denominator) # NOTE: this overload is needed because of overload precedence; without it the # Int overload would be preferred, and ceildiv wouldn't work on IntLiteral. @always_inline fn ceildiv(numerator: IntLiteral, denominator: IntLiteral) -> IntLiteral: - """Return the rounded-up result of dividing x by y. + """Return the rounded-up result of dividing numerator by denominator. Args: numerator: The numerator. denominator: The denominator. Returns: - The ceiling of dividing x by y. + The ceiling of dividing numerator by denominator. """ - return -(numerator // -denominator) - - -@always_inline("nodebug") -fn ceildiv(numerator: UInt, denominator: UInt) -> UInt: - """Return the rounded-up result of dividing x by y. - - Args: - numerator: The numerator. - denominator: The denominator. - - Returns: - The ceiling of dividing x by y. - """ - return __mlir_op.`index.ceildivu`(numerator.value, denominator.value) + return numerator.__ceildiv__(denominator) # ===----------------------------------------------------------------------=== # @@ -2577,29 +2564,20 @@ trait CeilDivable: struct Foo(CeilDivable): var x: Float64 - fn __floordiv__(self, other: Self) -> Self: - return self.x // other.x - - fn __rfloordiv__(self, other: Self) -> Self: - return other // self - - fn __neg__(self) -> Self: - return -self.x + fn __ceildiv__(self, denominator: Self) -> Self: + return -(self.x // -denominator.x) ``` """ - # TODO(MOCO-333): Reconsider these signatures when we have parametric traits - # or associated types. - @doc_private - fn __floordiv__(self, other: Self) -> Self: - ... + fn __ceildiv__(self, denominator: Self) -> Self: + """Return the rounded-up result of dividing self by denominator. - @doc_private - fn __rfloordiv__(self, other: Self) -> Self: - ... + Args: + denominator: The denominator. - @doc_private - fn __neg__(self) -> Self: + Returns: + The ceiling of dividing numerator by denominator. + """ ... @@ -2619,29 +2597,20 @@ trait CeilDivableRaising: struct Foo(CeilDivableRaising): var x: object - fn __floordiv__(self, other: Self) raises -> Self: - return self.x // other.x - - fn __rfloordiv__(self, other: Self) raises -> Self: - return other // self - - fn __neg__(self) raises -> Self: - return -self.x + fn __ceildiv__(self, denominator: Self) raises -> Self: + return -(self.x // -denominator.x) ``` """ - # TODO(MOCO-333): Reconsider these signatures when we have parametric traits - # or associated types. - @doc_private - fn __floordiv__(self, other: Self) raises -> Self: - ... + fn __ceildiv__(self, denominator: Self) raises -> Self: + """Return the rounded-up result of dividing self by denominator. - @doc_private - fn __rfloordiv__(self, other: Self) raises -> Self: - ... + Args: + denominator: The denominator. - @doc_private - fn __neg__(self) raises -> Self: + Returns: + The ceiling of dividing numerator by denominator. + """ ... From 9dd28e81d7ea05b3906e35c9eed083e7fa7286bf Mon Sep 17 00:00:00 2001 From: Konstantinos Krommydas Date: Wed, 20 Nov 2024 12:26:54 -0800 Subject: [PATCH 27/28] [stdlib] Makes sleep function more generic for GPUs. Adds support for more GPUs to the sleep function. MODULAR_ORIG_COMMIT_REV_ID: c1e1f113c7f51e1386f3bbce5860c4e778e8cdf5 --- stdlib/src/time/time.mojo | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/stdlib/src/time/time.mojo b/stdlib/src/time/time.mojo index 4002648a9a..a8a38b5841 100644 --- a/stdlib/src/time/time.mojo +++ b/stdlib/src/time/time.mojo @@ -24,6 +24,7 @@ from sys import ( external_call, os_is_linux, os_is_windows, + is_amd_gpu, is_nvidia_gpu, llvm_intrinsic, ) @@ -353,6 +354,12 @@ fn sleep(sec: Float64): nsec.cast[DType.int32]() ) return + elif is_amd_gpu(): + var nsec = sec * 1.0e9 + llvm_intrinsic["llvm.amdgcn.s.sleep", NoneType]( + nsec.cast[DType.int32]() + ) + return alias NANOSECONDS_IN_SECOND = 1_000_000_000 var total_secs = floor(sec) @@ -376,7 +383,7 @@ fn sleep(sec: Int): """ @parameter - if is_nvidia_gpu(): + if is_nvidia_gpu() or is_amd_gpu(): return sleep(Float64(sec)) @parameter From 4cd0762171881a16cfeb109a13620660af1b5846 Mon Sep 17 00:00:00 2001 From: modularbot Date: Wed, 20 Nov 2024 22:30:23 +0000 Subject: [PATCH 28/28] Update lockfiles to point to latest nightly version: 24.6.0.dev2024112020 --- examples/magic.lock | 3420 ++++++++++++++++----------------- examples/notebooks/magic.lock | 3392 ++++++++++++++++---------------- examples/operators/magic.lock | 3394 ++++++++++++++++---------------- magic.lock | 3412 ++++++++++++++++---------------- 4 files changed, 6773 insertions(+), 6845 deletions(-) diff --git a/examples/magic.lock b/examples/magic.lock index a539b55040..3bdbb1c07e 100644 --- a/examples/magic.lock +++ b/examples/magic.lock @@ -9,30 +9,30 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py311h2dc5d0c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.6-py311h2dc5d0c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/asgiref-3.8.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.31-he1a10d6_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.7.4-hae4d56a_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.29-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.19-h2bff981_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.3-h19b0707_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.10-h14a7884_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.19-hc9e6898_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.7-hb8d5873_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.6.7-h666547d_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.19-h2bff981_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.20-h2bff981_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.28.3-hbe26082_8.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.407-h25d6d5c_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.13.0-h935415a_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.8.0-hd126650_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.12.0-hd2e3451_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.7.0-h10ac4d7_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.11.0-h325d260_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb88c0a9_10.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.0-hecf86a2_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.3-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-hf42f96a_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h1ffe551_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.1-hab05fe4_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.2-hdeadb07_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h7bd072d_8.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.1-h3a84f74_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-hf42f96a_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-hf42f96a_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.4-h21d7256_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.449-h1a02111_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.14.0-h5cfcd09_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.10.0-h113e628_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.13.0-h3cf044e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.8.0-h736e048_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.12.0-ha633028_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hfdbb021_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda @@ -74,11 +74,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-17.0.0-had3b6fe_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-17.0.0-h5888daf_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-17.0.0-h5888daf_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-17.0.0-hf54134d_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.0.0-h3b997a5_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.0.0-h5888daf_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.0.0-h5888daf_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.0.0-h5c8f2c3_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda @@ -96,23 +96,23 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.29.0-h435de7b_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.29.0-h0121fbd_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.2-h15f2491_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.31.0-h804f50b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.31.0-h0121fbd_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-17.0.0-h39682fd_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-hd5b35b9_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.0.0-h6bd9018_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.20.0-h0e7cc3e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.49.2-hb9d3cd8_0.conda @@ -122,39 +122,39 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024112020-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py311h2dc5d0c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py311h9ecbd09_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-he039a57_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py311h7db5c69_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.0-py311h9ecbd09_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.25.3-py311hbffca5d_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-17.0.0-py311hbd00459_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-17.0.0-py311h4854187_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py311hfdbb021_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.0.0-py311h38be061_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.0.0-py311h4854187_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.23.4-py311h9e33e62_0.conda @@ -173,12 +173,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py311h9ecbd09_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py311h7deb3e3_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/regex-2024.11.6-py311h9ecbd09_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.9-h0fd0ee4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py311h9e33e62_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda @@ -186,16 +186,16 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tokenizers-0.20.3-py311h182c674_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.1-py311h9ecbd09_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda @@ -217,30 +217,30 @@ environments: linux-aarch64: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py311h58d527c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.6-py311h58d527c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/asgiref-3.8.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.31-h8fa6c3f_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.7.4-h3a42a84_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.29-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.19-ha24d3e7_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.4.3-h34ad692_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.8.10-h1e1d171_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.14.19-h9f8f545_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.10.7-had41049_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.6.7-h598b0a5_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.19-ha24d3e7_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.20-ha24d3e7_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.28.3-hcc2993b_8.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.407-hf265f57_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.13.0-h60f91e5_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.8.0-hf0f394c_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.12.0-h17ca4bd_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.7.0-h68dbd84_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.11.0-h36e5eb4_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hac900a4_10.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.0-h35473ba_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.3-h86ecc28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h4c7db1d_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-h9bacb8c_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.1-hf4e072c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.2-h10eb1bc_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h28a5e6a_8.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.1-h29aef15_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h4c7db1d_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h4c7db1d_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.4-h8cc6612_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.449-hf48a0a1_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.14.0-h1887c18_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.10.0-h47b0b28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.13.0-h185ecfd_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.8.0-h1b94036_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.12.0-h37d6d07_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-python-1.1.0-py311h89d996e_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda @@ -283,11 +283,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.2-cxx17_h0a1ffab_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-17.0.0-hccffc7f_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-17.0.0-h5ad3122_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-17.0.0-h5ad3122_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-17.0.0-h08b7278_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.0.0-hf19f309_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.0.0-h5ad3122_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.0.0-h5ad3122_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.0.0-h14ec2bd_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda @@ -305,23 +305,23 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.29.0-hbb89541_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.29.0-hb9b2b65_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.62.2-h98a9317_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.31.0-h3888205_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.31.0-hb9b2b65_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.28-pthreads_h9d3fd7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-17.0.0-h501616e_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-hea2c3fa_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2023.09.01-h9d008c2_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.0.0-h23a96eb_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.47.0-hc4a20ef_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.0-h492db2e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-14.2.0-h3f4de04_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-14.2.0-hf1166c9_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.20.0-h154c74f_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.21.0-h154c74f_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.8.0-h4e544f5_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.49.2-h86ecc28_0.conda @@ -331,39 +331,39 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py311ha09ea12_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024112020-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py311h58d527c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py311ha879c10_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py311h69ead2a_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h90de224_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.3-py311h848c333_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/propcache-0.2.0-py311ha879c10_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-4.25.3-py311h943de5f_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-17.0.0-py311h58b41f2_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-17.0.0-py311ha6d2531_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py311h89d996e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.0.0-py311hfecb2dc_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.0.0-py311ha6d2531_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.23.4-py311h0ca61a2_0.conda @@ -382,12 +382,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.2-py311ha879c10_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-26.2.0-py311h826da9f_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.09.01-h9caee61_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/regex-2024.11.6-py311ha879c10_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.9-h636ded1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py311h0ca61a2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda @@ -395,16 +395,16 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-h1088aeb_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tokenizers-0.20.3-py311h5e37e04_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4.1-py311h5487e9b_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda @@ -425,30 +425,30 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda osx-arm64: - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py311h4921393_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.6-py311h4921393_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/asgiref-3.8.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.31-h14f56dd_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.7.4-hd45b2be_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.29-h7ab814d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.19-hd45b2be_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.3-hdf5079d_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.10-h4588aaf_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.19-h5ad5fc2_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.7-hbe077eb_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.6.7-h86d2b7d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.19-hd45b2be_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.20-hd45b2be_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.28.3-h4f9f7e0_8.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.407-h880863c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.13.0-hd01fc5c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.8.0-h13ea094_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.12.0-hfde595f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.7.0-hcf3b6fd_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.11.0-h082e32e_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h9b725a8_10.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.0-h5d7ee29_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.3-h5505292_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h5d7ee29_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h13ead76_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.1-hf483d09_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.2-h39f8ad8_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h68a0d7e_8.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.1-h840aca7_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h5d7ee29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h5d7ee29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.4-h6832833_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.449-h8f08b23_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.14.0-hd50102c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.10.0-hc602bab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.13.0-h7585a09_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.8.0-h9ca1f76_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.12.0-hcdd55da_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py311h3f08180_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda @@ -488,11 +488,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.2-cxx17_h00cdb27_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-17.0.0-hc6a7651_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-17.0.0-hf9b8971_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-17.0.0-hf9b8971_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-17.0.0-hbf8b706_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.0.0-h2409f62_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.0.0-h286801f_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.0.0-h286801f_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.0.0-h6a6e5c5_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda @@ -500,7 +500,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.3-ha82da77_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.4-ha82da77_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda @@ -508,61 +508,61 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.29.0-hfa33a2f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.29.0-h90fd6fa_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.2-h9c18a4f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.31.0-h8d8be31_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.31.0-h7081f7f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.28-openmp_hf332438_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-17.0.0-hf0ba9ef_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hc39d83c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.0.0-hda0ea68_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.47.0-hbaaea75_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.20.0-h64651cc_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.21.0-h64651cc_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.49.2-h7ab814d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-h376fa9f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.3-hb52a8e5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.4-hdb05f8b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py311h56c23cb_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024112020-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py311h30e7462_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py311h460d6c5_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py311h7125741_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h121fd32_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py311h9cb3ce9_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.0-py311h460d6c5_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.25.3-py311hd7a3543_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-17.0.0-py311h35c05fe_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-17.0.0-py311he04fa90_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py311h6885ffc_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.0.0-py311ha1ab1f8_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.0.0-py311he04fa90_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.23.4-py311h481aa64_0.conda @@ -581,7 +581,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py311h460d6c5_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.2.0-py311h730b646_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/regex-2024.11.6-py311h917b07b_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda @@ -593,16 +593,16 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-hd02b534_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tokenizers-0.20.3-py311h82b0fb8_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.1-py311h460d6c5_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda @@ -685,12 +685,12 @@ packages: timestamp: 1727779893392 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py311h2dc5d0c_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py311h2dc5d0c_0.conda - sha256: f5c9f060394a8af6b3d46754d056cf72df7968e296a71138b69a64367688880d - md5: 3911c41f7d01402fd1b54c2a32d9cd1c + url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.6-py311h2dc5d0c_0.conda + sha256: 0efe583d525124b23b7a0a337c568b1aeea5bc74c6979891f940d5cadd0d757a + md5: 77ddf78fa8be87f8881b3475854cfaeb depends: - __glibc >=2.17,<3.0.a0 - aiohappyeyeballs >=2.3.0 @@ -705,16 +705,16 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 910812 - timestamp: 1731703417329 + size: 917497 + timestamp: 1732088503491 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py311h4921393_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py311h4921393_0.conda - sha256: 1a2f4de6149ecd1eafdb168c368202ccb3225c2b422f21ce49afbd6fb96908e2 - md5: d911e422e883f61315e9ed08b7506cbe + url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.6-py311h4921393_0.conda + sha256: 293880cd214829d6f8682d054252278aeb05d9a41818412a28a9531d06cad9b1 + md5: 0a7e2e8dfc4e240fb7a63ea9130840af depends: - __osx >=11.0 - aiohappyeyeballs >=2.3.0 @@ -729,16 +729,16 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 870301 - timestamp: 1731703770556 + size: 875034 + timestamp: 1732088602971 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py311h58d527c_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py311h58d527c_0.conda - sha256: 04fd04852300366eee992945cc70bc7ac8c3f62c1c9dd81583ca28c39963e1af - md5: 02c939cac7961d315442bac92774f1de + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.6-py311h58d527c_0.conda + sha256: c17fd83d67f1a44ec87cb2f0c319132d2f4e69ed5c95d3000bafee08f4c629f7 + md5: 78b0ebe69ae38fc31ef77972d829b149 depends: - aiohappyeyeballs >=2.3.0 - aiosignal >=1.1.2 @@ -753,8 +753,8 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 902485 - timestamp: 1731703556701 + size: 909847 + timestamp: 1732088559603 - kind: conda name: aiosignal version: 1.3.1 @@ -842,1016 +842,1019 @@ packages: timestamp: 1722977241383 - kind: conda name: aws-c-auth - version: 0.7.31 - build: h14f56dd_2 - build_number: 2 + version: 0.8.0 + build: h9b725a8_10 + build_number: 10 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.31-h14f56dd_2.conda - sha256: 7ec650c52962f62e141d5c8ac018befd9a0c50eef1c951cba11089cadd90e703 - md5: 85a9125cf9705e4c7a829a829af6744b + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h9b725a8_10.conda + sha256: 63cb8c25e0a26be4261d4271de525e7e33aefe9d9b001b8abfa5c9ac69c3dab3 + md5: 17c90d9eb8c6842fd739dc5445ce9962 depends: - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 license: Apache-2.0 license_family: Apache - size: 92624 - timestamp: 1728796392911 + size: 92355 + timestamp: 1731733738919 - kind: conda name: aws-c-auth - version: 0.7.31 - build: h8fa6c3f_2 - build_number: 2 + version: 0.8.0 + build: hac900a4_10 + build_number: 10 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.31-h8fa6c3f_2.conda - sha256: 1420263c333ed29b89f37d0b9f9665eb02f3a23a50f9fe3ef787a30726168711 - md5: a7549b69ce1339ab4702c10cc213c01d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hac900a4_10.conda + sha256: 85c8500ae0570f0d39e6661a120c653e43f0f5f984e2954c44fd358a87776892 + md5: 9ecaef75ebd666dda7caa79154183b02 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 112059 - timestamp: 1728796399534 + size: 111853 + timestamp: 1731733547677 - kind: conda name: aws-c-auth - version: 0.7.31 - build: he1a10d6_2 - build_number: 2 + version: 0.8.0 + build: hb88c0a9_10 + build_number: 10 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.31-he1a10d6_2.conda - sha256: 83fa4b24101cd85da825dcbb7611390c2a6e31a3fc17abb4d1ee5b8c40bdaa5a - md5: 76550a294cc78aaccfca7824bb4814ce + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb88c0a9_10.conda + sha256: d2837a84e6bd7d993a83e79f9e240e1465e375f3d57149ea5b1927c6a4133bcc + md5: 409b7ee6d3473cc62bda7280f6ac20d0 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 107301 - timestamp: 1728796325782 + size: 107163 + timestamp: 1731733534767 - kind: conda name: aws-c-cal - version: 0.7.4 - build: h3a42a84_2 + version: 0.8.0 + build: h35473ba_2 build_number: 2 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.7.4-h3a42a84_2.conda - sha256: 5a0825bf3f2e89458088eb83f2e6e3eed0f3b9711963f6bf45cea9ed699a5611 - md5: 4c4096ea8a644e837e3d8576bf6d2ba9 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.0-h35473ba_2.conda + sha256: 3327a9e65ec531b0c55d17bbcdc436b4e641af1f293d1c2f50e0f16aa79fde60 + md5: 48dc0b3576513622673d3f5f3d163b62 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 49479 - timestamp: 1728755609823 + size: 49714 + timestamp: 1731678553709 - kind: conda name: aws-c-cal - version: 0.7.4 - build: hae4d56a_2 + version: 0.8.0 + build: h5d7ee29_2 build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.7.4-hae4d56a_2.conda - sha256: 4bfed63898a1697364ce9621e1fc09c98f143777b0ca60655eb812efa5bf246d - md5: cdc628e4ffb4ffcd476e3847267e1689 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.0-h5d7ee29_2.conda + sha256: 2a8c09b33400cf2b7d658e63fd5a6f9b6e9626458f6213b904592fc15220bc92 + md5: 92734dad83d22314205ba73b679710d2 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 47181 - timestamp: 1728755555430 + size: 39966 + timestamp: 1731678721786 - kind: conda name: aws-c-cal - version: 0.7.4 - build: hd45b2be_2 + version: 0.8.0 + build: hecf86a2_2 build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.7.4-hd45b2be_2.conda - sha256: d701872d79184dbb759aa033e6a6e4ec5c6f1b58e3255e53b756d0246d19986a - md5: de4bf687ac70a2b861a94b87164669c9 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.0-hecf86a2_2.conda + sha256: 220a37955c120bf2f565fbd5320a82fc4c8b550b2449294bc0509c296cfcb9fa + md5: c54459d686ad9d0502823cacff7e8423 depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 39794 - timestamp: 1728755626145 + size: 47477 + timestamp: 1731678510949 - kind: conda name: aws-c-common - version: 0.9.29 - build: h7ab814d_0 + version: 0.10.3 + build: h5505292_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.29-h7ab814d_0.conda - sha256: 8d2c330f0de571f1bf6f2db7650a1aa8c4060a2ccd25b48f392a4d3ea8222daa - md5: d4a90d217342b08daa7e80049fdaa6c9 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.3-h5505292_0.conda + sha256: bb2c1038726d31ffd2d35a5764f80bcd670b6a1c753aadfd261aecb9f88db6d8 + md5: 4150339e3b08db33fe4c436340b1d7f6 depends: - __osx >=11.0 license: Apache-2.0 license_family: Apache - size: 220687 - timestamp: 1728706817796 + size: 221524 + timestamp: 1731567512057 - kind: conda name: aws-c-common - version: 0.9.29 + version: 0.10.3 build: h86ecc28_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.29-h86ecc28_0.conda - sha256: f79b28d046aa448016ef4ddade430cfbfa3802813b6be04c97abb531edef05a2 - md5: f1fef7581dd3389ca7a3545e50bfcc7f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.3-h86ecc28_0.conda + sha256: 95ca372a0e1bb8dad421751de6aa44d37d87dd69c33a48faca1ae6efa30f2af0 + md5: 64f523ba00b75fdcb33a4eea827d3d19 depends: - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 258186 - timestamp: 1728706827519 + size: 257859 + timestamp: 1731567310573 - kind: conda name: aws-c-common - version: 0.9.29 + version: 0.10.3 build: hb9d3cd8_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.29-hb9d3cd8_0.conda - sha256: b3b50f518e9afad383f6851bf7000cf8b343d7d3ca71558df233ee7b4bfc2919 - md5: acc51b49fd7467c8dfe4343001b812b4 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.3-hb9d3cd8_0.conda + sha256: 90bd2ff40b65acb62f11e2500ee7b7e85ac77d2e332429002f4c1da949bec27f + md5: ff3653946d34a6a6ba10babb139d96ef depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 237231 - timestamp: 1728706773555 + size: 237137 + timestamp: 1731567278052 - kind: conda name: aws-c-compression - version: 0.2.19 - build: h2bff981_2 + version: 0.3.0 + build: h4c7db1d_2 build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.19-h2bff981_2.conda - sha256: 908a416ff3f62b09bed436e1f77418f54115412244734d3960b11d586dd0749f - md5: 87a059d4d2ab89409496416119dd7152 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h4c7db1d_2.conda + sha256: 8dba3d48a7230ccd2a6ea8d88c0e1b6caf0a39b14a2b2f0255a413fcfce8ad0a + md5: ee074857cec335bb83692771b06160a4 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 18983 - timestamp: 1728750679322 + size: 19696 + timestamp: 1731678729046 - kind: conda name: aws-c-compression - version: 0.2.19 - build: ha24d3e7_2 + version: 0.3.0 + build: h5d7ee29_2 build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.19-ha24d3e7_2.conda - sha256: 5c8abfbe725f7b646223a64b9446fc3305f66da75d27f199a3347ca1d9ea5671 - md5: a8162788a62f2568587b20646f2eacea + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h5d7ee29_2.conda + sha256: a52ea62bf08aed3af079e16d1738f3d2a7fcdd1d260289ae27ae96298e15d12a + md5: 15566c36b0cf5f314e3bee7f7cc796b5 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 19862 - timestamp: 1728750729312 + size: 18204 + timestamp: 1731678916439 - kind: conda name: aws-c-compression - version: 0.2.19 - build: hd45b2be_2 + version: 0.3.0 + build: hf42f96a_2 build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-hf42f96a_2.conda + sha256: 210ba4fff1c9500fe02de1dae311ce723bfa313a2d21b72accd745f736f56fce + md5: 257f4ae92fe11bd8436315c86468c39b + depends: + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 + license: Apache-2.0 + license_family: Apache + size: 19034 + timestamp: 1731678703956 +- kind: conda + name: aws-c-event-stream + version: 0.5.0 + build: h13ead76_7 + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.19-hd45b2be_2.conda - sha256: 86900c68f95a2ca79cb9bcb8a3e8fd0a7912cfa3754a6a1e6b78d35c0b8db58b - md5: 9c634af661f50e923419e0df92633d31 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h13ead76_7.conda + sha256: 386965fab5f0bed4a6109cdba32579f16bee1b0f76ce1db840ce6f7070188f9f + md5: 55a901b6d4fb9ce1bc8328925b229f0b depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 18065 - timestamp: 1728750721405 + size: 47528 + timestamp: 1731714690911 - kind: conda name: aws-c-event-stream - version: 0.4.3 - build: h19b0707_4 - build_number: 4 + version: 0.5.0 + build: h1ffe551_7 + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.3-h19b0707_4.conda - sha256: 951f96eb45a439a36935dc2099e10c902518ec511a287c1685ca65a88a9accaa - md5: df38f56123f30d61de24474e600e7d41 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h1ffe551_7.conda + sha256: 3b780d6483baa889e8df5aa66ab3c439a9c81331cf2a4799e373f4174768ddd9 + md5: 7cce4dfab184f4bbdfc160789251b3c5 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 53821 - timestamp: 1728792746255 + size: 53500 + timestamp: 1731714597524 - kind: conda name: aws-c-event-stream - version: 0.4.3 - build: h34ad692_4 - build_number: 4 + version: 0.5.0 + build: h9bacb8c_7 + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.4.3-h34ad692_4.conda - sha256: 20fb76e0740a403ef8e7bbf655482699612b9a6a25df15ff9f14caad511e79c9 - md5: 8d66cac131dd88ef8b81299e8b5818f8 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-h9bacb8c_7.conda + sha256: 2b7bb475330942d94bc359171df19d0cf8b326f15c0c7903a59da54a8add621e + md5: 694020125b66632d6577456d2d9d3c74 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 55018 - timestamp: 1728792897824 -- kind: conda - name: aws-c-event-stream - version: 0.4.3 - build: hdf5079d_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.3-hdf5079d_4.conda - sha256: 6976ea97bf8c79114da3026a9d46b717131e2445be01f244718a426ad4b587f2 - md5: d89057a51d66d9c0c907c3dfebf845eb - depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - libcxx >=17 - license: Apache-2.0 - license_family: Apache - size: 46737 - timestamp: 1728792823021 + size: 55054 + timestamp: 1731714599360 - kind: conda name: aws-c-http - version: 0.8.10 - build: h14a7884_2 + version: 0.9.1 + build: hab05fe4_2 build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.10-h14a7884_2.conda - sha256: 0561267292739a451d7d389f100330fefafb97859962f617cd5268c96400e3aa - md5: 6147c6b6cef67adcb85516f5cf775be7 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.1-hab05fe4_2.conda + sha256: 90a325b6f5371dd2203b643de646967fe57a4bcbbee8c91086abbf9dd733d59a + md5: fb409f7053fa3dbbdf6eb41045a87795 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 197562 - timestamp: 1728792795954 + size: 196945 + timestamp: 1731714483279 - kind: conda name: aws-c-http - version: 0.8.10 - build: h1e1d171_2 + version: 0.9.1 + build: hf483d09_2 build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.8.10-h1e1d171_2.conda - sha256: bb6426db42f1804b52b83a736f6ad4c407e260a7da5b0fe586cbe18e71101dfb - md5: 20f29e7210c170cbc810f10d65f692aa + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.1-hf483d09_2.conda + sha256: fca9ed0f0895bab9bf737c8d8a3314556cb893d45c40f0656f21a93502db3089 + md5: d880c40b8fc7d07374c036f93f1359d2 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 license: Apache-2.0 license_family: Apache - size: 190604 - timestamp: 1728792811917 + size: 153315 + timestamp: 1731714621306 - kind: conda name: aws-c-http - version: 0.8.10 - build: h4588aaf_2 + version: 0.9.1 + build: hf4e072c_2 build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.10-h4588aaf_2.conda - sha256: 0f422e1cb3ebfa4fbf316e0ee576ed8e8f96cd9890783a0d319366e7ad9ebca6 - md5: fd850cc4bc7af65f3b7e98324bda96fa + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.1-hf4e072c_2.conda + sha256: b9a262451fc91d2fd4ccfcb6dc11ac61d0152c0db765bfe8d089e3e1b70c2150 + md5: fddc197912c16cb95276077f6c7917c5 depends: - - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 152421 - timestamp: 1728792977955 + size: 190363 + timestamp: 1731714613945 - kind: conda name: aws-c-io - version: 0.14.19 - build: h5ad5fc2_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.19-h5ad5fc2_1.conda - sha256: 0fcfbd9b46474b543d59183bedee08bf46d0f5167c95406b3b06ce922d6626c4 - md5: 463fae93275ddd0a6e2afb327b4d87e5 + version: 0.15.2 + build: h10eb1bc_2 + build_number: 2 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.2-h10eb1bc_2.conda + sha256: b8e4206ee1fa58453535c1c08c6aca5bdc92cde026bf7ec20d038786f813239b + md5: 7cdf478bb4feae1a93319f6e3381b8a9 depends: - - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 137474 - timestamp: 1728770995104 + size: 162624 + timestamp: 1731702570075 - kind: conda name: aws-c-io - version: 0.14.19 - build: h9f8f545_1 - build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.14.19-h9f8f545_1.conda - sha256: dea9075bd1fac65a0bbaacf038f8196892004da9c44c34d061b0d1eec81b9644 - md5: 46958359610629e7eea043a83f64540c + version: 0.15.2 + build: h39f8ad8_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.2-h39f8ad8_2.conda + sha256: b14e32f024f6be1610dccfdb6371e101cba204d24f37c2a63d9b6380ac74ac17 + md5: 3b49f1dd8f20bead8b222828cfdad585 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 - - s2n >=1.5.5,<1.5.6.0a0 + - __osx >=11.0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 163350 - timestamp: 1728771046323 + size: 137610 + timestamp: 1731702839896 - kind: conda name: aws-c-io - version: 0.14.19 - build: hc9e6898_1 - build_number: 1 + version: 0.15.2 + build: hdeadb07_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.19-hc9e6898_1.conda - sha256: 35f9719fb9d5ddf4955a432d73d910261d60754d20b58de2be2701a2e68a9cfb - md5: ec84785f7ae14ed43156a54aec33bb14 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.2-hdeadb07_2.conda + sha256: 1636136a5d882b4aaa13ea8b7de8cf07038a6878872e3c434df9daf478cee594 + md5: 461a1eaa075fd391add91bcffc9de0c1 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 - - s2n >=1.5.5,<1.5.6.0a0 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 158806 - timestamp: 1728770974012 + size: 159368 + timestamp: 1731702542973 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: had41049_2 - build_number: 2 + version: 0.11.0 + build: h28a5e6a_8 + build_number: 8 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.10.7-had41049_2.conda - sha256: 2c4065737a77f80fd475ea1979db046ca7d46dd35548d7c20be1521c7ac17eef - md5: 4f489845a24aa7d2c556b0fedfb7e0a3 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h28a5e6a_8.conda + sha256: aad8c9a5c24953cdebf17efa7ec06b5639e14072d4fa70c5c0607d7ad913ba88 + md5: 5250ce3b5154c0347b7576015a7c6cef depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 169126 - timestamp: 1728797232432 + size: 169040 + timestamp: 1731734203264 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: hb8d5873_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.7-hb8d5873_2.conda - sha256: b30a3d8ba9352760c30f696b65486fe0e1d3cfe771f114b008a70ad440eb00c0 - md5: 8dc25ca24c1a50b8295a848c384ede99 + version: 0.11.0 + build: h68a0d7e_8 + build_number: 8 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h68a0d7e_8.conda + sha256: 837c24c105624e16ace94b4b566ffe45231ff275339c523571ebd45946926156 + md5: 9e3ac70d27e7591b1310a690768cfe27 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 license: Apache-2.0 license_family: Apache - size: 195951 - timestamp: 1728797647791 + size: 134573 + timestamp: 1731734281038 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: hbe077eb_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.7-hbe077eb_2.conda - sha256: 376f757b460fc936da6b8159ef80ed5a51a23d2ba02e7834055a99616004d3bc - md5: 5013eaa8a8242355199a31e8973ff3f0 + version: 0.11.0 + build: h7bd072d_8 + build_number: 8 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h7bd072d_8.conda + sha256: 51d3d87a47c642096e2ce389a169aec2e26958042e9130857552a12d65a19045 + md5: 0e9d67838114c0dbd267a9311268b331 depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 135058 - timestamp: 1728797199832 + size: 194447 + timestamp: 1731734668760 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h598b0a5_0 + version: 0.7.1 + build: h29aef15_3 + build_number: 3 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.6.7-h598b0a5_0.conda - sha256: 93c43c3cee726280deaf44d52cc936f51b1c614bfaf600ffd5f002a6a6bb4bd7 - md5: 46860887427f76d0ff0824d987a7aee1 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.1-h29aef15_3.conda + sha256: b8c67e279f8efa833fc92b066dc6d0cef3aff7f06144f738adfbd95cdab52865 + md5: bd7d7b664176b5d164d369f12615b75a depends: - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 117032 - timestamp: 1728967110055 + size: 117581 + timestamp: 1731745139268 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h666547d_0 + version: 0.7.1 + build: h3a84f74_3 + build_number: 3 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.6.7-h666547d_0.conda - sha256: fe006f58bd9349ab7cd4cd864dd4e83409e89764b10d9d7eb7ec148e2f964465 - md5: 7f59dcbbd4eab14ca9256f20b43849eb + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.1-h3a84f74_3.conda + sha256: 274c9ec3c173a2979b949ccc10a6013673c4391502a4a71e07070d6c50eabc60 + md5: e7a54821aaa774cfd64efcd45114a4d7 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 113457 - timestamp: 1728967087200 + size: 113837 + timestamp: 1731745115080 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h86d2b7d_0 + version: 0.7.1 + build: h840aca7_3 + build_number: 3 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.6.7-h86d2b7d_0.conda - sha256: 4691154b75d85039da165b01bd25a2dce99f40b8a635fa9537a36a45dcc3e236 - md5: 851d2b927ba01ac963ffbc1868e971a3 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.1-h840aca7_3.conda + sha256: a75dce44667327d365abdcd68c525913c7dd948ea26d4709386acd58717307fc + md5: 540af65a722c5e490012153673793df5 depends: - __osx >=11.0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - license: Apache-2.0 - license_family: Apache - size: 96707 - timestamp: 1728967262718 -- kind: conda - name: aws-c-sdkutils - version: 0.1.19 - build: h2bff981_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.19-h2bff981_4.conda - sha256: ef65ca9eb9f32ada6fb1b47759374e7ef4f85db002f2265ebc8fd61718284cbc - md5: 5a8afd37e2dfe464d68e63d1c38b08c5 - depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 license: Apache-2.0 license_family: Apache - size: 55957 - timestamp: 1728755888042 + size: 96830 + timestamp: 1731745236535 - kind: conda name: aws-c-sdkutils - version: 0.1.19 - build: ha24d3e7_4 - build_number: 4 + version: 0.2.1 + build: h4c7db1d_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.19-ha24d3e7_4.conda - sha256: 2bec8bd76145f72c89068fb30d60353e6c71a4bb32e13eb543d9d04d6ea0ae9b - md5: 33e7e774771d00b2933443c3954796ea + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h4c7db1d_1.conda + sha256: 3d2b079a361888197894308a93fec95666c6abfcc86c979ae36f1f9cb223dfb3 + md5: 45437a9bad358b25f795e77218063baf depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 58640 - timestamp: 1728755998456 + size: 58256 + timestamp: 1731687032896 - kind: conda name: aws-c-sdkutils - version: 0.1.19 - build: hd45b2be_4 - build_number: 4 + version: 0.2.1 + build: h5d7ee29_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.19-hd45b2be_4.conda - sha256: cc374eef1b367fb9acc83b2e74830f62742d3e53e1f0f6a0d01939b16ed1e3d5 - md5: 7ccdd0f21ffbc77b11963f00892ca8b5 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h5d7ee29_1.conda + sha256: ed3b272b9a345142e62f0cf9ab2a9fa909c92e09691f6a06e98ff500a1f8a303 + md5: 0f1e5bc57d4567c9d9bec8d8982828ed depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 49543 - timestamp: 1728755942076 + size: 50276 + timestamp: 1731687215375 - kind: conda - name: aws-checksums - version: 0.1.20 - build: h2bff981_1 + name: aws-c-sdkutils + version: 0.2.1 + build: hf42f96a_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.20-h2bff981_1.conda - sha256: e1793f2e52fe04ef3a6b2069abda7960d061c6f7af1f0d5f616d43e7a7c40e3c - md5: 8b424cf6b3cfc5cffe98bf4d16c032fb + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-hf42f96a_1.conda + sha256: f6e38c79b124c34edb048c28ec58fdfc4ea8f7a218dc493195afbada48ba063b + md5: bbdd20fb1994a9f0ba98078fcb6c12ab depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72862 - timestamp: 1728750748391 + size: 55738 + timestamp: 1731687063424 - kind: conda name: aws-checksums - version: 0.1.20 - build: ha24d3e7_1 + version: 0.2.2 + build: h4c7db1d_1 build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.20-ha24d3e7_1.conda - sha256: f59c33d71fe4dad1099d9124f471ff9c9e06a51d43578aeb2740c8416dc03540 - md5: 592f2d2e8bc10e60e0d0cf0a737b5da8 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h4c7db1d_1.conda + sha256: b3fa060d4fe9e8fdb7b21b8b3c5fdb61df6f02973f74245a65869100f72a3931 + md5: af22e7e1c1af348a66f938aa66192f2c depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72491 - timestamp: 1728750762489 + size: 72081 + timestamp: 1731687244426 - kind: conda name: aws-checksums - version: 0.1.20 - build: hd45b2be_1 + version: 0.2.2 + build: h5d7ee29_1 build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.20-hd45b2be_1.conda - sha256: d935ca7faa780cfa1053fe1bffb77611a54b4df791897a22048e770b250c651f - md5: ab0b68aafe787311cb8397fd2e60982d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h5d7ee29_1.conda + sha256: eb7ebe309b33a04329b3e51a7f10bb407815389dc37cc047f7d41f9c91f0d1b0 + md5: db1ed95988a8fe6c1ce0d94abdfc8e72 depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 70087 - timestamp: 1728750818479 + size: 70184 + timestamp: 1731687342560 - kind: conda - name: aws-crt-cpp - version: 0.28.3 - build: h4f9f7e0_8 - build_number: 8 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.28.3-h4f9f7e0_8.conda - sha256: 98cbed635af4841186aa3261e6ceadd03822983d6e30f0afa5d34eb452b2b509 - md5: 14af6354d5437421793e17e865301371 + name: aws-checksums + version: 0.2.2 + build: hf42f96a_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-hf42f96a_1.conda + sha256: da802ace5448481c968cfec7e7a4f79f686f42df9de8e3f78c09a925c2882a79 + md5: d908d43d87429be24edfb20e96543c20 depends: - - __osx >=11.0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 - - libcxx >=17 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 229980 - timestamp: 1729181342157 + size: 72744 + timestamp: 1731687193373 - kind: conda name: aws-crt-cpp - version: 0.28.3 - build: hbe26082_8 - build_number: 8 + version: 0.29.4 + build: h21d7256_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.28.3-hbe26082_8.conda - sha256: a9c23a685929b24fcd032daae36b61c4862912abf0a0a8735aeef53418c5bce6 - md5: 80d5fac04be0e6c2774f57eb7529f145 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.4-h21d7256_1.conda + sha256: 0de8dc3a6a9aab74049d85d407d204623a638ade4221a428cef4d91d25d41ef5 + md5: 963a310ba64fd6a113eb4f7fcf89f935 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 349632 - timestamp: 1729181229435 + size: 354101 + timestamp: 1731787070984 - kind: conda name: aws-crt-cpp - version: 0.28.3 - build: hcc2993b_8 - build_number: 8 + version: 0.29.4 + build: h6832833_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.4-h6832833_1.conda + sha256: 9c94db7881035bd1cfb24985668c5c7a693d70ecbf46e4b23c453774400e4437 + md5: 452a0da8c040f2aa825727af66d05b42 + depends: + - __osx >=11.0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 + - libcxx >=18 + license: Apache-2.0 + license_family: Apache + size: 237267 + timestamp: 1731787157065 +- kind: conda + name: aws-crt-cpp + version: 0.29.4 + build: h8cc6612_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.28.3-hcc2993b_8.conda - sha256: 3b5779785c8700e73be97f63ea778b6dba033a49fd77569c5fddbdd3a53a2600 - md5: e71043206d9db242eae53b70773f7f62 - depends: - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.4-h8cc6612_1.conda + sha256: 7ff3dcac3578f2946dcc2d1953f20369750efdb228ada2a6f894642677cef4ec + md5: 494aaf00b4413cdf961abfbdeb5c24e9 + depends: + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 276668 - timestamp: 1729181269528 + size: 283847 + timestamp: 1731787045666 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: h25d6d5c_1 - build_number: 1 + version: 1.11.449 + build: h1a02111_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.407-h25d6d5c_1.conda - sha256: f05d43f3204887cec9a9853a9217f06562b28161950b5485aed1f8afe42aad17 - md5: 0f2bd0128d59a45c9fd56151eab0b37e + url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.449-h1a02111_2.conda + sha256: 697d0055c4838f882d029d05baf432fb4d6fbebd92d60edfadeb10fea66f1755 + md5: 109ff9aa7347ca004a3f496a5160cdb9 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2931742 - timestamp: 1729235000691 + size: 2951572 + timestamp: 1731927266611 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: h880863c_1 - build_number: 1 + version: 1.11.449 + build: h8f08b23_2 + build_number: 2 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.407-h880863c_1.conda - sha256: 9cea713c0d727def94e29a99cdfe1deb65c241c90bc41c96e1e77777cb84d4c9 - md5: 60877ad5c76505fa4b90ab5567babb3d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.449-h8f08b23_2.conda + sha256: 7b7e17c332d7f382f5f97cefe477cb5e9fae171a00d0c40a78ad6263c64a0af2 + md5: c1111d86333195e42ae29d02d64a545c depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - - libcxx >=17 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2709553 - timestamp: 1729235667236 + size: 2733405 + timestamp: 1731927979855 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: hf265f57_1 - build_number: 1 + version: 1.11.449 + build: hf48a0a1_2 + build_number: 2 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.407-hf265f57_1.conda - sha256: d265e7a2af974f09ba795a900900e36e44e581b3adc7e827ddfd2374337ea89c - md5: 63a6b060807c6885d25f82615d5bd8f2 - depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.449-hf48a0a1_2.conda + sha256: 246d894d4354e1c7bbd1466881e87f3f92396777ebbd8cbebe53efb16ace88c4 + md5: e1cd103f7450254f9513244169ea6a1a + depends: + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2758696 - timestamp: 1729234995101 + size: 2803239 + timestamp: 1731927417845 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: h60f91e5_0 + version: 1.14.0 + build: h1887c18_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.13.0-h60f91e5_0.conda - sha256: b3aecc4e01db67a18891e6e9517ec9b628577bbd2e1b6616d147c7c5f2f28a2b - md5: fc41d5a9f2c98fd37324c20f47b0124b + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.14.0-h1887c18_0.conda + sha256: 8967b3ccee4d74e61f6ec82dd8efb9deb854ee7ba012dfe767b7a92e0ac77724 + md5: e0c3a906a41be769f0ae20ca3e31cfc0 depends: - - libcurl >=8.8.0,<9.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 331714 - timestamp: 1720854524500 + size: 338650 + timestamp: 1728055589907 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: h935415a_0 + version: 1.14.0 + build: h5cfcd09_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.13.0-h935415a_0.conda - sha256: b7e0a22295db2e1955f89c69cefc32810309b3af66df986d9fb75d89f98a80f7 - md5: debd1677c2fea41eb2233a260f48a298 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.14.0-h5cfcd09_0.conda + sha256: fe07debdb089a3db17f40a7f20d283d75284bb4fc269ef727b8ba6fc93f7cb5a + md5: 0a8838771cc2e985cd295e01ae83baf1 depends: - __glibc >=2.17,<3.0.a0 - - libcurl >=8.8.0,<9.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 338134 - timestamp: 1720853194547 + size: 345117 + timestamp: 1728053909574 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: hd01fc5c_0 + version: 1.14.0 + build: hd50102c_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.13.0-hd01fc5c_0.conda - sha256: aff4af38416cf7a81c79e5a3b071ce5aa13ec48da28db0312bc1ebe62cf7273d - md5: 2083f6313e623079db6ee67af00e6b27 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.14.0-hd50102c_0.conda + sha256: f5b91329ed59ffc0be8747784c6e4cc7e56250c54032883a83bc11808ef6a87e + md5: f093a11dcf3cdcca010b20a818fcc6dc depends: - __osx >=11.0 - - libcurl >=8.8.0,<9.0a0 - - libcxx >=16 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=17 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 287922 - timestamp: 1720853302106 + size: 294299 + timestamp: 1728054014060 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: h13ea094_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.8.0-h13ea094_2.conda - sha256: 11b01715cae19390890f29ebb56d36d895feafd787ba929aa10b6ce712f3f4b9 - md5: 383b72f2ee009992b21f4db08a708510 + version: 1.10.0 + build: h113e628_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.10.0-h113e628_0.conda + sha256: 286b31616c191486626cb49e9ceb5920d29394b9e913c23adb7eb637629ba4de + md5: 73f73f60854f325a55f1d31459f2ab73 depends: - - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libcxx >=16 - - openssl >=3.3.1,<4.0a0 + - __glibc >=2.17,<3.0.a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 142135 - timestamp: 1721777696118 + size: 232351 + timestamp: 1728486729511 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: hd126650_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.8.0-hd126650_2.conda - sha256: f85452eca3ae0e156b1d1a321a1a9f4f58d44ff45236c0d8602ab96aaad3c6ba - md5: 36df3cf05459de5d0a41c77c4329634b + version: 1.10.0 + build: h47b0b28_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.10.0-h47b0b28_0.conda + sha256: 1c72423b9beba167d2f01b80dc204da77240a8266f1edb3d89510c852b300d69 + md5: 94e73a7877743a85c57091d8afab2348 depends: - - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 199516 - timestamp: 1721777604325 + size: 217132 + timestamp: 1728488096615 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: hf0f394c_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.8.0-hf0f394c_2.conda - sha256: ac143df6b8596eeee2f770f02013e384f06ac09ecee042ee7f8c5a65f7958330 - md5: 3e74c83218d71b01f988e6bada2f4e22 + version: 1.10.0 + build: hc602bab_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.10.0-hc602bab_0.conda + sha256: bde446b916fff5150606f8ed3e6058ffc55a3aa72381e46f1ab346590b1ae40a + md5: d7b71593a937459f2d4b67e1a4727dc2 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - __osx >=11.0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libcxx >=17 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 182768 - timestamp: 1721779454639 + size: 166907 + timestamp: 1728486882502 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: h17ca4bd_0 + version: 12.13.0 + build: h185ecfd_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.12.0-h17ca4bd_0.conda - sha256: 4955de4131a1b4a16ac1f63d3e6f325904b997e1adb0f3fadf5a3b112eee6803 - md5: 9a26fea6b69f4f02689893366961be49 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.13.0-h185ecfd_1.conda + sha256: 280ec70009a92626054f58e45b168fce393e71a9710587488bd8401628cda481 + md5: 221e1e5ecb2643e113f32b3229d5ba33 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 473009 - timestamp: 1721866393941 + size: 502934 + timestamp: 1728580241002 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: hd2e3451_0 + version: 12.13.0 + build: h3cf044e_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.12.0-hd2e3451_0.conda - sha256: 69a0f5c2a08a1a40524b343060debb8d92295e2cc5805c3db56dad7a41246a93 - md5: 61f1c193452f0daa582f39634627ea33 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.13.0-h3cf044e_1.conda + sha256: 2606260e5379eed255bcdc6adc39b93fb31477337bcd911c121fc43cd29bf394 + md5: 7eb66060455c7a47d9dcdbfa9f46579b depends: - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 523120 - timestamp: 1721865032339 + size: 549342 + timestamp: 1728578123088 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: hfde595f_0 + version: 12.13.0 + build: h7585a09_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.12.0-hfde595f_0.conda - sha256: f733f4acedd8bf1705c780e0828f0b83242ae7e72963aef60d12a7c5b3a8640d - md5: f2c935764fdacd0fafc05f975fd347e0 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.13.0-h7585a09_1.conda + sha256: 08d52d130addc0fb55d5ba10d9fa483e39be25d69bac7f4c676c2c3069207590 + md5: 704238ef05d46144dae2e6b5853df8bc depends: - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libcxx >=17 license: MIT license_family: MIT - size: 419976 - timestamp: 1721865180569 + size: 438636 + timestamp: 1728578216193 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: h10ac4d7_1 + version: 12.8.0 + build: h1b94036_1 build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.7.0-h10ac4d7_1.conda - sha256: 1030fa54497a73eb78c509d451f25701e2e781dc182e7647f55719f1e1f9bee8 - md5: ab6d507ad16dbe2157920451d662e4a1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.8.0-h1b94036_1.conda + sha256: 146e76aac169e3dbdce5d3b142b7930ac643795c765e7655d1989905ec7d3231 + md5: 793b1080ab2d958980f137a8643cd6e8 depends: - - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 143039 - timestamp: 1721832724803 + size: 140832 + timestamp: 1728565334900 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: h68dbd84_1 + version: 12.8.0 + build: h736e048_1 build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.7.0-h68dbd84_1.conda - sha256: a4e0afd65ffed6cc788f13068b452d253e4bfa61d8ca0ebaa80e26fe62fed5f7 - md5: 368c9e33d8cc763bf883ca12c163b93c + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.8.0-h736e048_1.conda + sha256: 273475f002b091b66ce7366da04bf164c3732c03f8692ab2ee2d23335b6a82ba + md5: 13de36be8de3ae3f05ba127631599213 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __glibc >=2.17,<3.0.a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 135615 - timestamp: 1721834497638 + size: 149312 + timestamp: 1728563338704 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: hcf3b6fd_1 + version: 12.8.0 + build: h9ca1f76_1 build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.7.0-hcf3b6fd_1.conda - sha256: 3fdf9c0337c48706cffe2e4c761cdea4132fb6dbd1f144d969c28afd903cf256 - md5: df7e01bcf8f3a9bfb0ab06778f915f29 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.8.0-h9ca1f76_1.conda + sha256: 77ab04e8fe5636a2de9c718f72a43645f7502cd208868c8a91ffba385547d585 + md5: 7a187cd7b1445afc80253bb186a607cc depends: - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libcxx >=17 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 119821 - timestamp: 1721832870493 + size: 121278 + timestamp: 1728563418777 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h082e32e_1 + version: 12.12.0 + build: h37d6d07_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.11.0-h082e32e_1.conda - sha256: 3c288dc1ae6bff9a1e21ab5196d13ab486850f61ec649a743a87bf9726901abf - md5: 16b05d31f626717668f01c01a970115f + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.12.0-h37d6d07_1.conda + sha256: 4079c617a75682e49bae63670d58fd6078ccfbbe55ca1f994acab3a74ab6bbcc + md5: b724f3b4b7f4e9b36c58cbe3ed8610a2 depends: - - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 189065 - timestamp: 1721925275724 + size: 260547 + timestamp: 1728730924071 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h325d260_1 + version: 12.12.0 + build: ha633028_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.11.0-h325d260_1.conda - sha256: 1726fa324bb402e52d63227d6cb3f849957cd6841f8cb8aed58bb0c81203befb - md5: 11d926d1f4a75a1b03d1c053ca20424b + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.12.0-ha633028_1.conda + sha256: 5371e4f3f920933bb89b926a85a67f24388227419abd6e99f6086481e5e8d5f2 + md5: 7c1980f89dd41b097549782121a73490 depends: - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 274492 - timestamp: 1721925100762 + size: 287366 + timestamp: 1728729530295 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h36e5eb4_1 + version: 12.12.0 + build: hcdd55da_1 build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.11.0-h36e5eb4_1.conda - sha256: ba0cf9514c12d9fa56a15966badaec450d11ab78adef690501e38bb0f78aeb5f - md5: db65bbb89c21436f5471f93b09a7c09c + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.12.0-hcdd55da_1.conda + sha256: f48523f8aa0b5b80f45a92f0556b388dd96f44ac2dc2f44a01d08c1822eec97d + md5: c49fbc5233fcbaa86391162ff1adef38 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __osx >=11.0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libcxx >=17 license: MIT license_family: MIT - size: 243908 - timestamp: 1721926367577 + size: 196032 + timestamp: 1728729672889 - kind: conda name: backoff version: 2.2.1 @@ -2932,368 +2935,368 @@ packages: timestamp: 1729655345825 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_h00cdb27_1 + version: '20240722.0' + build: cxx17_h5888daf_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.2-cxx17_h00cdb27_1.conda - sha256: a9517c8683924f4b3b9380cdaa50fdd2009cd8d5f3918c92f64394238189d3cb - md5: f16963d88aed907af8b90878b8d8a05c + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda + sha256: 8f91429091183c26950f1e7ffa730e8632f0627ba35d2fccd71df31628c9b4e5 + md5: e1f604644fe8d78e22660e2fec6756bc depends: - - __osx >=11.0 - - libcxx >=16 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - libabseil-static =20240722.0=cxx17* + - abseil-cpp =20240722.0 license: Apache-2.0 license_family: Apache - size: 1136123 - timestamp: 1720857649214 + size: 1310521 + timestamp: 1727295454064 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_h0a1ffab_1 + version: '20240722.0' + build: cxx17_h5ad3122_1 build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.2-cxx17_h0a1ffab_1.conda - sha256: a6e1a6f13fd49c24238373838c266101a2bf3b521b0a36a3a7e586b40f50ec5b - md5: 9cadd103cf89edb2ea68d33728511158 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda + sha256: 590e47dce38031a8893e70491f3b71e214de7781cab53b6f017aa6f6841cb076 + md5: 6fe6b3694c4792a8e26755d3b06f0b80 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libgcc >=13 + - libstdcxx >=13 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - abseil-cpp =20240722.0 + - libabseil-static =20240722.0=cxx17* license: Apache-2.0 license_family: Apache - size: 1283386 - timestamp: 1720857389114 + size: 1328502 + timestamp: 1727295490806 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_he02047a_1 + version: '20240722.0' + build: cxx17_hf9b8971_1 build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda - sha256: 945396726cadae174a661ce006e3f74d71dbd719219faf7cc74696b267f7b0b5 - md5: c48fc56ec03229f294176923c3265c05 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda + sha256: 90bf08a75506dfcf28a70977da8ab050bcf594cd02abd3a9d84a22c9e8161724 + md5: 706da5e791c569a7b9814877098a6a0a depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __osx >=11.0 + - libcxx >=17 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - libabseil-static =20240722.0=cxx17* + - abseil-cpp =20240722.0 license: Apache-2.0 license_family: Apache - size: 1264712 - timestamp: 1720857377573 + size: 1179072 + timestamp: 1727295571173 - kind: conda name: libarrow - version: 17.0.0 - build: had3b6fe_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-17.0.0-had3b6fe_16_cpu.conda - sha256: 9aa5598878cccc29de744ebc4b501c4a5a43332973edfdf0a19ddc521bd7248f - md5: c899e532e16be21570d32bc74ea3d34f + version: 18.0.0 + build: h2409f62_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.0.0-h2409f62_7_cpu.conda + sha256: baf7322466c5849f0ef4c8bab9f394c1448fc7a1d42f74d775b49e20cea8fcf8 + md5: da6e0816fe9639c270cafdec68b411d6 depends: - - __glibc >=2.17,<3.0.a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + - __osx >=11.0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 - - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - - libgcc >=13 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx >=13 + - libcxx >=18 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 - arrow-cpp <0.0a0 - - apache-arrow-proc =*=cpu license: Apache-2.0 license_family: APACHE - size: 8495428 - timestamp: 1726669963852 + size: 5455595 + timestamp: 1731789726593 - kind: conda name: libarrow - version: 17.0.0 - build: hc6a7651_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-17.0.0-hc6a7651_16_cpu.conda - sha256: 1facd5aa7140031be0f68733ab5e413ea1505da40548e27a173b2407046f36b5 - md5: 05fecc4ae5930dc548327980a4bc7a83 + version: 18.0.0 + build: h3b997a5_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.0.0-h3b997a5_7_cpu.conda + sha256: d8e179b123ca9f62b83115091d3936c64d55506fef9c516b90cd3f2bdea304ca + md5: 32897a50e7f68187c4a524c439c0943c depends: - - __osx >=11.0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 + - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - - libcxx >=17 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 + - libgcc >=13 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: - - apache-arrow-proc =*=cpu - arrow-cpp <0.0a0 + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 license: Apache-2.0 license_family: APACHE - size: 5318871 - timestamp: 1726669928492 + size: 8714651 + timestamp: 1731789983840 - kind: conda name: libarrow - version: 17.0.0 - build: hccffc7f_16_cpu - build_number: 16 + version: 18.0.0 + build: hf19f309_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-17.0.0-hccffc7f_16_cpu.conda - sha256: b71e81d0a685ad5832df0c1762d613be82d14a165e984621e0c874cd885a5df4 - md5: adc3e7dd910df20ef4a968f09fe90da0 - depends: - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.0.0-hf19f309_7_cpu.conda + sha256: 83334f90a1759d91324c3cfcdcf4157018020f33901d1833ca28e9a912a4f89a + md5: e42e43720b5203a827bbd1ff05182afa + depends: + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - libgcc >=13 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 - libstdcxx >=13 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: - - apache-arrow-proc =*=cpu - arrow-cpp <0.0a0 + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 license: Apache-2.0 license_family: APACHE - size: 7818979 - timestamp: 1726670314145 + size: 7997233 + timestamp: 1731791153311 - kind: conda name: libarrow-acero - version: 17.0.0 - build: h5888daf_16_cpu - build_number: 16 + version: 18.0.0 + build: h286801f_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.0.0-h286801f_7_cpu.conda + sha256: 8df47c06ad5b839393aa4703721385d3529a64971227a3a342a1100eeb2fbe78 + md5: 67a94caeec254580852dd71b0cb5bfc7 + depends: + - __osx >=11.0 + - libarrow 18.0.0 h2409f62_7_cpu + - libcxx >=18 + license: Apache-2.0 + license_family: APACHE + size: 491285 + timestamp: 1731789825049 +- kind: conda + name: libarrow-acero + version: 18.0.0 + build: h5888daf_7_cpu + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-17.0.0-h5888daf_16_cpu.conda - sha256: 0ff4c712c7c61e60708c6ef4f8158200059e0f63c25d0a54c8e4cca7bd153d86 - md5: 18f796aae018a26a20ac51d19de69115 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.0.0-h5888daf_7_cpu.conda + sha256: bc0aa7f6c05c097f224cb2a8f72d22a5cde7ef239fde7a57f18061bf74776cd5 + md5: 786a275d019708cd1c963b12a8fb0c72 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu + - libarrow 18.0.0 h3b997a5_7_cpu - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 608267 - timestamp: 1726669999941 + size: 618726 + timestamp: 1731790016942 - kind: conda name: libarrow-acero - version: 17.0.0 - build: h5ad3122_16_cpu - build_number: 16 + version: 18.0.0 + build: h5ad3122_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-17.0.0-h5ad3122_16_cpu.conda - sha256: be9f73a92a00d991cc5946705c83c7b449f8cea6709ad29a2e05d6db7beb4b54 - md5: 0913ad25f0ebb327458c25d38bf9cf45 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.0.0-h5ad3122_7_cpu.conda + sha256: dda002b70f6ba368057ba9164eabdc0101a979eab329d3269ec4e615c07292c8 + md5: eaec91ad6d3dd2e459744e3116c68553 depends: - - libarrow 17.0.0 hccffc7f_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 573902 - timestamp: 1726670347811 + size: 585513 + timestamp: 1731791202130 - kind: conda - name: libarrow-acero - version: 17.0.0 - build: hf9b8971_16_cpu - build_number: 16 + name: libarrow-dataset + version: 18.0.0 + build: h286801f_7_cpu + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-17.0.0-hf9b8971_16_cpu.conda - sha256: c9ff43babc0acbd864584ed1720cf063715589e31e9e2024b90d2094d4f20d38 - md5: 319bd2a8c30dffa54d6ad69847f16de1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.0.0-h286801f_7_cpu.conda + sha256: 3d17beb5e336507443f436f21658e0baf6d6dbacc83938a60e7eac20886e5f78 + md5: 75cec89177549b4a87faa6c952fb07a6 depends: - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libcxx >=17 + - libarrow 18.0.0 h2409f62_7_cpu + - libarrow-acero 18.0.0 h286801f_7_cpu + - libcxx >=18 + - libparquet 18.0.0 hda0ea68_7_cpu license: Apache-2.0 license_family: APACHE - size: 483187 - timestamp: 1726670022814 + size: 497438 + timestamp: 1731791003104 - kind: conda name: libarrow-dataset - version: 17.0.0 - build: h5888daf_16_cpu - build_number: 16 + version: 18.0.0 + build: h5888daf_7_cpu + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-17.0.0-h5888daf_16_cpu.conda - sha256: e500e0154cf3ebb41bed3bdf41bd0ff5e0a6b7527a46ba755c05e59c8036e442 - md5: 5400efd6bf101674e0ce170906a0f7cb + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.0.0-h5888daf_7_cpu.conda + sha256: ecfcea86bf62a498eb59bfa28c8d6e28e842e9c8eeb594d059ef0fdc7064154f + md5: a742b9a0452b55020ccf662721c1ce44 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu - - libarrow-acero 17.0.0 h5888daf_16_cpu - - libgcc >=13 - - libparquet 17.0.0 h39682fd_16_cpu - - libstdcxx >=13 - license: Apache-2.0 - license_family: APACHE - size: 585061 - timestamp: 1726670063965 -- kind: conda - name: libarrow-dataset - version: 17.0.0 - build: h5ad3122_16_cpu - build_number: 16 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-17.0.0-h5ad3122_16_cpu.conda - sha256: 276af4de42960692a2ee34630659be11eb1e83552ec4752d59cc96e244382560 - md5: 2dc1bbff088399cca7137501cef4a741 - depends: - - libarrow 17.0.0 hccffc7f_16_cpu - - libarrow-acero 17.0.0 h5ad3122_16_cpu + - libarrow 18.0.0 h3b997a5_7_cpu + - libarrow-acero 18.0.0 h5888daf_7_cpu - libgcc >=13 - - libparquet 17.0.0 h501616e_16_cpu + - libparquet 18.0.0 h6bd9018_7_cpu - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 558058 - timestamp: 1726670424141 + size: 594424 + timestamp: 1731790074886 - kind: conda name: libarrow-dataset - version: 17.0.0 - build: hf9b8971_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-17.0.0-hf9b8971_16_cpu.conda - sha256: e77d3c6825384c232f61fd3602a32507b66410dbe8879cd69a89b0fc49489533 - md5: 67ea0ef775de4c394c3c7db991297ffa + version: 18.0.0 + build: h5ad3122_7_cpu + build_number: 7 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.0.0-h5ad3122_7_cpu.conda + sha256: e2c4cbeef3862b9446ab7052c5889c0923b97d77582fd10437744bcf75f24e05 + md5: 1b769328f659c977a4b72235bbcdaf9c depends: - - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libarrow-acero 17.0.0 hf9b8971_16_cpu - - libcxx >=17 - - libparquet 17.0.0 hf0ba9ef_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu + - libarrow-acero 18.0.0 h5ad3122_7_cpu + - libgcc >=13 + - libparquet 18.0.0 h23a96eb_7_cpu + - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 491606 - timestamp: 1726671006156 + size: 567511 + timestamp: 1731791297133 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: h08b7278_16_cpu - build_number: 16 + version: 18.0.0 + build: h14ec2bd_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-17.0.0-h08b7278_16_cpu.conda - sha256: 8f4179180db0ab8b7e759699e40533d893082e4556d2d6b81b20224e60312fa9 - md5: c677e8946781fd3b57ef3b8b1b883f4d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.0.0-h14ec2bd_7_cpu.conda + sha256: f9c63c5ad5629d8891bafc100bc8a8e0844ee73b52189a6dcb59522790d93635 + md5: 3c0517a4c9a67370e9279c3b9bc2ce2b depends: - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 hccffc7f_16_cpu - - libarrow-acero 17.0.0 h5ad3122_16_cpu - - libarrow-dataset 17.0.0 h5ad3122_16_cpu + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 hf19f309_7_cpu + - libarrow-acero 18.0.0 h5ad3122_7_cpu + - libarrow-dataset 18.0.0 h5ad3122_7_cpu - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 537621 - timestamp: 1726670458067 + size: 523066 + timestamp: 1731791341708 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: hbf8b706_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-17.0.0-hbf8b706_16_cpu.conda - sha256: 6880b3c8fb88ee6c0bbae34b0efea86567ccec1b8cd8a3662b8b8c6dfeb5e87a - md5: b739c909163c38f85f40f5650ab2aeb2 + version: 18.0.0 + build: h5c8f2c3_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.0.0-h5c8f2c3_7_cpu.conda + sha256: f4e12c8f48449b47ec7642f5cc0705d59e59c608d563e2848ffceec779c7c220 + md5: be76013fa3fdaec2c0c504e6fdfd282d depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libarrow-acero 17.0.0 hf9b8971_16_cpu - - libarrow-dataset 17.0.0 hf9b8971_16_cpu - - libcxx >=17 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 h3b997a5_7_cpu + - libarrow-acero 18.0.0 h5888daf_7_cpu + - libarrow-dataset 18.0.0 h5888daf_7_cpu + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 472812 - timestamp: 1726671149860 + size: 528172 + timestamp: 1731790101854 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: hf54134d_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-17.0.0-hf54134d_16_cpu.conda - sha256: 53f3d5f12c9ea557f33a4e1cf9067ce2dbb4211eff0a095574eeb7f0528bc044 - md5: 1cbc3fb1ee28c99e5f8c52920a7717a3 + version: 18.0.0 + build: h6a6e5c5_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.0.0-h6a6e5c5_7_cpu.conda + sha256: 775c202c379c712f3e77d43ce54d3f9a7ef8dd37d3b68911e886b89f5502eeac + md5: 2a3910690b531fdc9553e2889fda97bf depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 had3b6fe_16_cpu - - libarrow-acero 17.0.0 h5888daf_16_cpu - - libarrow-dataset 17.0.0 h5888daf_16_cpu - - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx >=13 + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 h2409f62_7_cpu + - libarrow-acero 18.0.0 h286801f_7_cpu + - libarrow-dataset 18.0.0 h286801f_7_cpu + - libcxx >=18 + - libprotobuf >=5.28.2,<5.28.3.0a0 license: Apache-2.0 license_family: APACHE - size: 550960 - timestamp: 1726670093831 + size: 459246 + timestamp: 1731791195089 - kind: conda name: libblas version: 3.9.0 @@ -3665,18 +3668,18 @@ packages: timestamp: 1726659794676 - kind: conda name: libcxx - version: 19.1.3 + version: 19.1.4 build: ha82da77_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.3-ha82da77_0.conda - sha256: 6d062760c6439e75b9a44d800d89aff60fe3441998d87506c62dc94c50412ef4 - md5: bf691071fba4734984231617783225bc + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.4-ha82da77_0.conda + sha256: 342896ebc1d6acbf022ca6df006a936b9a472579e91e3c502cb1f52f218b78e9 + md5: a2d3d484d95889fccdd09498d8f6bf9a depends: - __osx >=11.0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 520771 - timestamp: 1730314603920 + size: 520678 + timestamp: 1732060258949 - kind: conda name: libedit version: 3.1.20191231 @@ -4103,212 +4106,214 @@ packages: timestamp: 1729089357313 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: h435de7b_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.29.0-h435de7b_0.conda - sha256: c8ee42a4acce5227d220ec6500f6872d52d82e478c76648b9ff57dd2d86429bd - md5: 5d95d9040c4319997644f68e9aefbe70 + version: 2.31.0 + build: h3888205_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.31.0-h3888205_0.conda + sha256: 603b0bd55980f5bf97911b327c9e469cf953c482f112b561dc9c1c7608bbdc29 + md5: 5b3d9a0327c4f7c569162f10acaf6bb4 depends: - - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 1241649 - timestamp: 1725640926284 + size: 1246720 + timestamp: 1731122940037 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: hbb89541_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.29.0-hbb89541_0.conda - sha256: a604681e3a6a7b6214df0406afd1a225349e9cd1f8c177826140811315a938ba - md5: a2ca6f7068595e4c3e2ee8214106786b + version: 2.31.0 + build: h804f50b_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.31.0-h804f50b_0.conda + sha256: b2de99c83516236ff591d30436779f8345bcc11bb0ec76a7ca3a38a3b23b6423 + md5: 35ab838423b60f233391eb86d324a830 depends: + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 1231400 - timestamp: 1725642021621 + size: 1248705 + timestamp: 1731122589027 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: hfa33a2f_0 + version: 2.31.0 + build: h8d8be31_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.29.0-hfa33a2f_0.conda - sha256: 1f42048702d773a355d276d24313ac63781a331959fc3662c6be36e979d7845c - md5: f78c7bd435ee45f4661daae9e81ddf13 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.31.0-h8d8be31_0.conda + sha256: 184d650d55453a40935c128ea309088ae52e15a68cd87ab17ae7c77704251168 + md5: a338736f1514e6f999db8726fe0965b1 depends: - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 - - libcxx >=17 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=18 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 866727 - timestamp: 1725640714587 + size: 873497 + timestamp: 1731121684939 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 + version: 2.31.0 build: h0121fbd_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.29.0-h0121fbd_0.conda - sha256: 2847c9e940b742275a7068e0a742bdabf211bf0b2bbb1453592d6afb47c7e17e - md5: 06dfd5208170b56eee943d9ac674a533 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.31.0-h0121fbd_0.conda + sha256: 3c38b0a80441f82323dc5a72b96c0dd7476bd5184fbfcdf825a8e15249c849af + md5: 568d6a09a6ed76337a7b97c84ae7c0f8 depends: - __glibc >=2.17,<3.0.a0 - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - libgcc >=13 - - libgoogle-cloud 2.29.0 h435de7b_0 + - libgoogle-cloud 2.31.0 h804f50b_0 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 781655 - timestamp: 1725641060970 + size: 782150 + timestamp: 1731122728715 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 - build: h90fd6fa_0 + version: 2.31.0 + build: h7081f7f_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.29.0-h90fd6fa_0.conda - sha256: ec80383fbb6fae95d2ff7d04ba46b282ab48219b7ce85b3cd5ee7d0d8bae74e1 - md5: baee0b9cb1c5319f370a534ca5a16267 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.31.0-h7081f7f_0.conda + sha256: 01f5156584b816d34270a60a61f6b6561f2a01cb3b4eeb455a4e1808d763d486 + md5: 548fd1d31741ee6b13df4124db4a9f5f depends: - __osx >=11.0 - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - - libcxx >=17 - - libgoogle-cloud 2.29.0 hfa33a2f_0 + - libcxx >=18 + - libgoogle-cloud 2.31.0 h8d8be31_0 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 535346 - timestamp: 1725641618955 + size: 526858 + timestamp: 1731122580689 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 + version: 2.31.0 build: hb9b2b65_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.29.0-hb9b2b65_0.conda - sha256: d477736704021486ffde0b117290d8c1f29a434f02ab9a21d4458e41212c448f - md5: 5f75545cfccc08fb2f79256e0b8a2fb6 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.31.0-hb9b2b65_0.conda + sha256: 1df4b7b59224d865a574003df12ee36d4a9939e8e7911b4472348730b9c2a0e8 + md5: 53897114489b4df10e1680bf189aa306 depends: - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - libgcc >=13 - - libgoogle-cloud 2.29.0 hbb89541_0 + - libgoogle-cloud 2.31.0 h3888205_0 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 736327 - timestamp: 1725642186647 + size: 737686 + timestamp: 1731123086764 - kind: conda name: libgrpc - version: 1.62.2 - build: h15f2491_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.2-h15f2491_0.conda - sha256: 28241ed89335871db33cb6010e9ccb2d9e9b6bb444ddf6884f02f0857363c06a - md5: 8dabe607748cb3d7002ad73cd06f1325 + version: 1.67.1 + build: h36c5df4_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda + sha256: 1f6673d9d866048c9cf28fd56e6874ffc7e2c53c47d7071cb367d5fc2dde16a7 + md5: b946137e362e98a55a77fdf0b20a7739 depends: - - c-ares >=1.28.1,<2.0a0 + - c-ares >=1.32.3,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 7316832 - timestamp: 1713390645548 + size: 7131846 + timestamp: 1730236305327 - kind: conda name: libgrpc - version: 1.62.2 - build: h98a9317_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.62.2-h98a9317_0.conda - sha256: ae5fe7ba0c5c599f0e20fa08be436518b7ef25ab6f705e8c7fcf0d0f34525f72 - md5: 2a669953ec0f08c2cc56bb43fed78de8 + version: 1.67.1 + build: hc2c308b_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda + sha256: 870550c1faf524e9a695262cd4c31441b18ad542f16893bd3c5dbc93106705f7 + md5: 4606a4647bfe857e3cfe21ca12ac3afb depends: - - c-ares >=1.28.1,<2.0a0 + - __glibc >=2.17,<3.0.a0 + - c-ares >=1.32.3,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 7395259 - timestamp: 1713390742813 + size: 7362336 + timestamp: 1730236333879 - kind: conda name: libgrpc - version: 1.62.2 - build: h9c18a4f_0 + version: 1.67.1 + build: hc70892a_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.2-h9c18a4f_0.conda - sha256: d2c5b5a828f6f1242c11e8c91968f48f64446f7dd5cbfa1197545e465eb7d47a - md5: e624fc11026dbb84c549435eccd08623 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda + sha256: d2393fcd3c3584e5d58da4122f48bcf297567d2f6f14b3d1fcbd34fdd5040694 + md5: 624e27571fde34f8acc2afec840ac435 depends: - - c-ares >=1.28.1,<2.0a0 + - __osx >=11.0 + - c-ares >=1.34.2,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 5016525 - timestamp: 1713392846329 + size: 4882208 + timestamp: 1730236299095 - kind: conda name: libiconv version: '1.17' @@ -4556,179 +4561,178 @@ packages: timestamp: 1730773029647 - kind: conda name: libparquet - version: 17.0.0 - build: h39682fd_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-17.0.0-h39682fd_16_cpu.conda - sha256: 09bc64111e5e1e9f5fee78efdd62592e01c681943fe6e91b369f6580dc8726c4 - md5: dd1fee2da0659103080fdd74004656df + version: 18.0.0 + build: h23a96eb_7_cpu + build_number: 7 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.0.0-h23a96eb_7_cpu.conda + sha256: 405cd8b36b454aac8d8f3f698feb4c8c4fca99eae9724b9312bac1ce0653ec5d + md5: 010433ece4a8287643b92c348c48068d depends: - - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu - libgcc >=13 - libstdcxx >=13 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 1186069 - timestamp: 1726670048098 + size: 1122091 + timestamp: 1731791274767 - kind: conda name: libparquet - version: 17.0.0 - build: h501616e_16_cpu - build_number: 16 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-17.0.0-h501616e_16_cpu.conda - sha256: 7d834aec3ee3cc1069bd780862bbb0f339265e2386692252f375c1e380bc8f5f - md5: 0f366d30bc01ea47e04b7034d408d6d4 + version: 18.0.0 + build: h6bd9018_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.0.0-h6bd9018_7_cpu.conda + sha256: 908e21eab32839375ebe59952e783e40645ca5083b64001679960f2e38e64c31 + md5: 687870f7d9cba5262fdd7e730e9e9ba8 depends: - - libarrow 17.0.0 hccffc7f_16_cpu + - __glibc >=2.17,<3.0.a0 + - libarrow 18.0.0 h3b997a5_7_cpu - libgcc >=13 - libstdcxx >=13 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 1104185 - timestamp: 1726670404384 + size: 1212405 + timestamp: 1731790060397 - kind: conda name: libparquet - version: 17.0.0 - build: hf0ba9ef_16_cpu - build_number: 16 + version: 18.0.0 + build: hda0ea68_7_cpu + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-17.0.0-hf0ba9ef_16_cpu.conda - sha256: 6ed28f06409b02a9f521ee5e8cf2f4d3fb63a7633c11f2ee7ec2880e78e184e5 - md5: 517ecf2ee0c2822e6120c258f3acd383 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.0.0-hda0ea68_7_cpu.conda + sha256: 8343a369243b7c87993955e39fbbac3617413f4a963e271fda5079b6c8fec7b0 + md5: fd32f3b3115477411f3790eb67272081 depends: - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libcxx >=17 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libarrow 18.0.0 h2409f62_7_cpu + - libcxx >=18 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 873007 - timestamp: 1726670938318 + size: 881594 + timestamp: 1731790946184 - kind: conda name: libprotobuf - version: 4.25.3 - build: hc39d83c_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hc39d83c_1.conda - sha256: f51bde2dfe73968ab3090c1098f520b65a8d8f11e945cb13bf74d19e30966b61 - md5: fa77986d9170450c014586ab87e144f8 + version: 5.28.2 + build: h029595c_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda + sha256: d8c7b6f851bfc53494d9b8e54d473c4f11ab26483a6e64df6f7967563df166b1 + md5: 538dbe0ad9f248e2e109abb9b6809ea5 depends: - - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcxx >=17 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2177164 - timestamp: 1727160770879 + size: 2802876 + timestamp: 1728564881988 - kind: conda name: libprotobuf - version: 4.25.3 - build: hd5b35b9_1 - build_number: 1 + version: 5.28.2 + build: h5b01275_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-hd5b35b9_1.conda - sha256: 8b5e4e31ed93bf36fd14e9cf10cd3af78bb9184d0f1f87878b8d28c0374aa4dc - md5: 06def97690ef90781a91b786cb48a0a9 + url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda + sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421 + md5: ab0bff36363bec94720275a681af8b83 depends: - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2883090 - timestamp: 1727161327039 + size: 2945348 + timestamp: 1728565355702 - kind: conda name: libprotobuf - version: 4.25.3 - build: hea2c3fa_1 - build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-hea2c3fa_1.conda - sha256: dabf4632d39b29444d157c226f4df146fa347c82540c39bf6f9545f2a7d0f40c - md5: c06acb4f972c516696590e6d6ffb69c7 + version: 5.28.2 + build: h8f0b736_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda + sha256: f732a6fa918428e2d5ba61e78fe11bb44a002cc8f6bb74c94ee5b1297fefcfd8 + md5: d2cb5991f2fb8eb079c80084435e9ce6 depends: + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libgcc >=13 - - libstdcxx >=13 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2613905 - timestamp: 1727160673211 + size: 2374965 + timestamp: 1728565334796 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h5a48ba9_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda - sha256: 3f3c65fe0e9e328b4c1ebc2b622727cef3e5b81b18228cfa6cf0955bc1ed8eff - md5: 41c69fba59d495e8cf5ffda48a607e35 + version: 2024.07.02 + build: h18dbdb1_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda + sha256: 96d4fdac28d5af38c38f90c22cb0aa9a90affae13ca8ba24bd1eb60b789df8ff + md5: f1800796b0efc4bbc5b001d845545111 depends: - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 232603 - timestamp: 1708946763521 + size: 203516 + timestamp: 1728778974654 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h7b2c953_2 - build_number: 2 + version: 2024.07.02 + build: h2348fd5_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda - sha256: c8a0a6e7a627dc9c66ffb8858f8f6d499f67fd269b6636b25dc5169760610f05 - md5: 0b7b2ced046d6b5fe6e9d46b1ee0324c + url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda + sha256: 6facca42cfc85a05b33e484a8b0df7857cc092db34806946d022270098d8d20f + md5: 5a7065309a66097738be6a06fd04b7ef depends: + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 171443 - timestamp: 1708947163461 + size: 165956 + timestamp: 1728779107218 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h9d008c2_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2023.09.01-h9d008c2_2.conda - sha256: 1da5cfd57091a52c822ec9580694f1e07817e53db43b0407a477daa2d2a16fcd - md5: 387c114aadcaeb02210f646c4b5efca2 + version: 2024.07.02 + build: hbbce691_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda + sha256: f8ad6a4f6d4fd54ebe3e5e712a01e663222fc57f49d16b6b8b10c30990dafb8f + md5: 2124de47357b7a516c0a3efd8f88c143 depends: + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 217529 - timestamp: 1708946830978 + size: 211096 + timestamp: 1728778964655 - kind: conda name: libsodium version: 1.0.20 @@ -4923,62 +4927,59 @@ packages: timestamp: 1729089498541 - kind: conda name: libthrift - version: 0.20.0 - build: h0e7cc3e_1 - build_number: 1 + version: 0.21.0 + build: h0e7cc3e_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.20.0-h0e7cc3e_1.conda - sha256: 3e70dfda31a3ce28310c86cc0001f20abb78c917502e12c94285a1337fe5b9f0 - md5: d0ed81c4591775b70384f4cc78e05cd1 + url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda + sha256: ebb395232973c18745b86c9a399a4725b2c39293c9a91b8e59251be013db42f0 + md5: dcb95c0a98ba9ff737f7ae482aef7833 depends: - __glibc >=2.17,<3.0.a0 - libevent >=2.1.12,<2.1.13.0a0 - - libgcc-ng >=13 - - libstdcxx-ng >=13 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 417404 - timestamp: 1724652349098 + size: 425773 + timestamp: 1727205853307 - kind: conda name: libthrift - version: 0.20.0 - build: h154c74f_1 - build_number: 1 + version: 0.21.0 + build: h154c74f_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.20.0-h154c74f_1.conda - sha256: 283a6fbac3e6de97f25144306fb46dc5f6d6fc7f4052a4f8ec6da0cb806025b5 - md5: c0bd829d4ef1b1be0c5b8bf206c0cd6d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.21.0-h154c74f_0.conda + sha256: f04ab1417aca1687edff9c30d8423ace285eb8c053dc16d595c6e47cfeefb274 + md5: c28792bf37f4ecdce8e3cb9e40750650 depends: - libevent >=2.1.12,<2.1.13.0a0 - - libgcc-ng >=13 - - libstdcxx-ng >=13 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 408434 - timestamp: 1724652544563 + size: 417329 + timestamp: 1727205944238 - kind: conda name: libthrift - version: 0.20.0 - build: h64651cc_1 - build_number: 1 + version: 0.21.0 + build: h64651cc_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.20.0-h64651cc_1.conda - sha256: b6afcbc934258e0474e0f1059bc7b23865723b902062f2f2910e0370e6495401 - md5: 4cf2e5233320648397184415f380c891 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.21.0-h64651cc_0.conda + sha256: 7a6c7d5f58cbbc2ccd6493b4b821639fdb0701b9b04c737a949e8cb6adf1c9ad + md5: 7ce2bd2f650f8c31ad7ba4c7bfea61b7 depends: - __osx >=11.0 - libcxx >=17 - libevent >=2.1.12,<2.1.13.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 315041 - timestamp: 1724657608736 + size: 324342 + timestamp: 1727206096912 - kind: conda name: libutf8proc version: 2.8.0 @@ -5229,20 +5230,19 @@ packages: timestamp: 1727963148474 - kind: conda name: llvm-openmp - version: 19.1.3 - build: hb52a8e5_0 + version: 19.1.4 + build: hdb05f8b_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.3-hb52a8e5_0.conda - sha256: 49a8940e727aa82ee034fa9a60b3fcababec41b3192d955772aab635a5374b82 - md5: dd695d23e78d1ca4fecce969b1e1db61 + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.4-hdb05f8b_0.conda + sha256: dfdcd8de37899d984326f9734b28f46f80b88c068e44c562933a8b3117f2401a + md5: 76ca179ec970bea6e275e2fa477c2d3c depends: - __osx >=11.0 constrains: - - openmp 19.1.3|19.1.3.* + - openmp 19.1.4|19.1.4.* license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 280488 - timestamp: 1730364082380 + size: 281554 + timestamp: 1732102484807 - kind: conda name: lz4-c version: 1.9.4 @@ -5361,76 +5361,76 @@ packages: timestamp: 1729352296161 - kind: conda name: max - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - sha256: fa56e98447bb9722c73e114e668327474621732929a3b3bf03d706558c0b41df - md5: 099bfd8c69724fb21c86aa6440b07ed4 - depends: - - max-core ==24.6.0.dev2024111816 release - - max-python >=24.6.0.dev2024111816,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111816 release - - mblack ==24.6.0.dev2024111816 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + sha256: c6e86f0fbbd57d65c245b58c9a39f64301c769c587f75aa550f0a3f64629cbec + md5: f8203ce4409d971e909d91b10bf2fa89 + depends: + - max-core ==24.6.0.dev2024112020 release + - max-python >=24.6.0.dev2024112020,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024112020 release + - mblack ==24.6.0.dev2024112020 release license: LicenseRef-Modular-Proprietary - size: 9924 - timestamp: 1731949226511 + size: 9918 + timestamp: 1732136899196 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda - sha256: 4bbaf8418f56808a9a7ed147755de1fd9ff479bb5db60e0b0060f501007a6d03 - md5: 9239cc63963a1e4a15ce32f6ec8fa36c + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024112020-release.conda + sha256: 540fd3163a864bf60fae9a2afd86f111b54afd76f6dfb59aae9299d8189ea220 + md5: 85cd4cfe4bed145b377b9379319c39fc depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 271464508 - timestamp: 1731949226509 + size: 270965073 + timestamp: 1732136835508 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda - sha256: 232a2ca14f07fc562bddb44ecec6848e31f026cfa93267737fd329c51cb26a66 - md5: 9b6d01a1fe29a43ded2016a8c6a6a2c0 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024112020-release.conda + sha256: 4e3e1104c4b2c3f26134bf4b865fef2af26cd33aa453244c59cbc27bf58340d6 + md5: 1b76c22a75e2f55fdd8ec123cdfb82aa depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 275099918 - timestamp: 1731949126926 + size: 274655105 + timestamp: 1732136899194 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda - sha256: e8fc65d3b90b8557a6f64e0aa7700b97f4d00a2e2d2bbee651f918986dacb9cb - md5: fd415a5af0a193bfa9241e17eaf3747d + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024112020-release.conda + sha256: ae86df0b9d20d20756d16a0b66e0d2f12427a496e28d639589fba76c8e508cd7 + md5: 582615e4dae591fac5d708eaec594ebc depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 233285763 - timestamp: 1731949312758 + size: 233689138 + timestamp: 1732137063646 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.11release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.11release.conda - sha256: 19aca53724a4f71c13082dad144fb39446977662458c5fdda62211ccc9b2bdf5 - md5: 5cdb2b6cf87ec478e82440d3a9ec1665 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024112020-3.11release.conda + sha256: 8f721503a2783059ab961f593090de817732548a8650add618fb188d3877149a + md5: 54067fc2b06a754d97c550db3ffdee5b depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5450,18 +5450,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 136813048 - timestamp: 1731949226519 + size: 137374544 + timestamp: 1732136835518 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.11release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.11release.conda - sha256: 4a9cb744f9aa694191121d6f9d40bd8652e9046d6919fafa4a908e6c762e2f35 - md5: 0fb76b1bd3bc8a19b8f10ab460b709ec + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024112020-3.11release.conda + sha256: 2c0f106fa18ad49077cc912c2598385ac2c05ff542390580493602e12d419706 + md5: d7a170f9544a6a9bcbdf3a4c373c13f5 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5481,18 +5481,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 140376944 - timestamp: 1731949126935 + size: 140956474 + timestamp: 1732136899205 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.11release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.11release.conda - sha256: ed12919aba860fe1aaf485dc647ff67077c6a4d796c04da838e047cc626c64e7 - md5: cc3e59fa6ec40fda5df0ecb9de453ff8 + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024112020-3.11release.conda + sha256: ab5ad3eb6fdfef265488ccc4bd383d7dfe90e3e2f03661d1190f0fef51fff862 + md5: 4cab64a3872f254d847eabbe968ff0c3 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.11.* - fastapi - numpy >=1.18,<2.0 @@ -5512,17 +5512,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 125461339 - timestamp: 1731949312761 + size: 125972094 + timestamp: 1732137063648 - kind: conda name: mblack - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - sha256: 49cab69b1c9539336534907a415e6404b791290bccba5ed61b50b92be7278b6e - md5: 9e7f2d795645d6a04620718dfb10d39c + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda + sha256: d684315cf58ea23860f16a1e305bfc9b8a2c7e39554a6d40d46411a5d6fd50cf + md5: bf7e67dddae76fd3bb6a2f623642b200 depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5532,8 +5532,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130612 - timestamp: 1731949226516 + size: 130610 + timestamp: 1732136899202 - kind: conda name: mdurl version: 0.1.2 @@ -5551,21 +5551,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - sha256: db5710960cab7c1d1c63ecf6916652cc07fdb8cda80528773d410141b3db0076 - md5: 1959b4bee271c31390854e23a85a7815 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda + sha256: 65ee90ebd5d6250b6f12d6e78fea39c287b82f14949aba8df0f47c4cbdbc0be0 + md5: 5f30ae7817d94671df319b612c290550 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary size: 22941 - timestamp: 1731949226517 + timestamp: 1732136899203 - kind: conda name: multidict version: 6.1.0 @@ -5850,61 +5850,58 @@ packages: timestamp: 1731377666602 - kind: conda name: opentelemetry-api - version: 1.27.0 + version: 1.28.2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - sha256: ed8350db9d8f177f2e0eefb4df24c1134f1b39f7ef3e20ac42725a3b860309cd - md5: 947b016e29819585f8f3f82dbb7ede91 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + sha256: e267ed59ea8f357c3471defef796ce4f4555eacd9ee0ed2d47d3dd539ee7ee2f + md5: f1307fb38a8fd2220def45ec1691a21c depends: - deprecated >=1.2.6 - importlib-metadata >=6.0.0,<7.1.0 - python >=3.8 - setuptools >=16.0 license: Apache-2.0 - license_family: APACHE - size: 43708 - timestamp: 1724916819673 + size: 44014 + timestamp: 1731985724169 - kind: conda name: opentelemetry-exporter-otlp-proto-common - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - sha256: 6ec5cc984ad9c0faef329a1a1507d4431f08812b9053be42a2a736ae081dc3c5 - md5: 00e6c03b1437fa6bf3a775bc8f89f677 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + sha256: 838525f5a35f130eb3e6ccf06700ab7574467e8abe19da91e6f0de3b399e77c2 + md5: b00b3a8f0d25d5b18979c73ec051c313 depends: - backoff >=1.10.0,<3.0.0 - - opentelemetry-proto 1.27.0 - - python >=3.8 + - opentelemetry-proto 1.28.2 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 18221 - timestamp: 1724929505617 + size: 18838 + timestamp: 1731991715474 - kind: conda name: opentelemetry-exporter-otlp-proto-http - version: 1.27.0 + version: 1.28.2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda - sha256: b5b86f0f819b5dd05bf0e67ddaa763086194a751aa534bed44fdbf089b317142 - md5: 3caeb0419f4d0f9ac0538c799df15612 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda + sha256: d89b7b0f28dca5ed84d8c3421e3b16683f764c9eebde66cc8858fc183751af69 + md5: 73810c011d2d60914ce8f92fe99564a0 depends: - deprecated >=1.2.6 - googleapis-common-protos ~=1.52 - - opentelemetry-api 1.27.0 - - opentelemetry-exporter-otlp-proto-common 1.27.0 - - opentelemetry-proto 1.27.0 - - opentelemetry-sdk 1.27.0 + - opentelemetry-api ~=1.15 + - opentelemetry-exporter-otlp-proto-common 1.28.2 + - opentelemetry-proto 1.28.2 + - opentelemetry-sdk ~=1.28.2 - python >=3.8 - requests ~=2.7 license: Apache-2.0 - license_family: APACHE - size: 16982 - timestamp: 1724969540619 + size: 17007 + timestamp: 1732094238214 - kind: conda name: opentelemetry-exporter-prometheus version: 1.12.0rc1 @@ -5925,139 +5922,136 @@ packages: timestamp: 1695214221489 - kind: conda name: opentelemetry-instrumentation - version: 0.48b0 - build: pyhd8ed1ab_0 + version: 0.49b2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - sha256: e7466998c0a6e5ecc9b8681312617c5d6d85afe3902a03fa7c755eb1a08c3db8 - md5: 5cd186b5587efdc79c6b24f06b2b1726 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + sha256: ee20ad159bc040642fcbce1b25f8a9fc1d788b53c6bf593a0891bf7887ec7c5f + md5: 13d714acd504cd0141688c908521c0b9 depends: - opentelemetry-api ~=1.4 - - python >=3.7 + - opentelemetry-semantic-conventions 0.49b2 + - packaging >=18.0 + - python >=3.9 - setuptools >=16.0 - wrapt <2.0.0,>=1.0.0 license: Apache-2.0 - license_family: APACHE - size: 30783 - timestamp: 1724896532781 + size: 31616 + timestamp: 1732070359772 - kind: conda name: opentelemetry-instrumentation-asgi - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - sha256: 563634bfbb54093812aabcc9bb36b1430c462c02350d114967862188d66fddec - md5: e337134c68bfa548019f83593164cdfd + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + sha256: 7b2b4da037baa506a82c5e3e711905f34448441e069a6e3affb0e4917b3ee5e0 + md5: 482ad6cdc507689d5c33eb22aa16d83e depends: - asgiref ~=3.0 - opentelemetry-api ~=1.12 - - opentelemetry-instrumentation 0.48b0 - - opentelemetry-semantic-conventions 0.48b0 - - opentelemetry-util-http 0.48b0 + - opentelemetry-instrumentation 0.49b2 + - opentelemetry-semantic-conventions 0.49b2 + - opentelemetry-util-http 0.49b2 - python >=3.7 license: Apache-2.0 - license_family: APACHE - size: 23429 - timestamp: 1724943803444 + size: 23749 + timestamp: 1732086813641 - kind: conda name: opentelemetry-instrumentation-fastapi - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - sha256: 5c9195c089446241590001cfbcbc12421a2b89a0a23dd3691cd45fe9f77d5c93 - md5: e844191ea9b60804c57fb0978698407b + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + sha256: e853f62b4c56e308f349a3f360cf4d6aa814a9dc926e727c25effcf4121af68c + md5: 59c01fcead989ba58c5dc79e3ac3aab3 depends: - opentelemetry-api ~=1.12 - - opentelemetry-instrumentation 0.48b0 - - opentelemetry-instrumentation-asgi 0.48b0 - - opentelemetry-semantic-conventions 0.48b0 - - opentelemetry-util-http 0.48b0 + - opentelemetry-instrumentation 0.49b2 + - opentelemetry-instrumentation-asgi 0.49b2 + - opentelemetry-semantic-conventions 0.49b2 + - opentelemetry-util-http 0.49b2 - python >=3.7 license: Apache-2.0 - license_family: APACHE - size: 19806 - timestamp: 1724987641159 + size: 20288 + timestamp: 1732093785486 - kind: conda name: opentelemetry-proto - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - sha256: ca0480de7f33511dc983aeaf7de23f49c3a258b185588543f85abcf08b10d000 - md5: 3de386ea142a50514f6bba04c3fb48c0 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + sha256: e68320a465b45e05f569c440a20735db9a0fd7cdb9e52300506660a924d17caf + md5: 54ac33b32171ce2205b6639da1a1ac54 depends: - - protobuf >=3.19,<5.0 - - python >=3.8 + - protobuf <6.0,>=5.0 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 37620 - timestamp: 1724925809921 + size: 37108 + timestamp: 1731988686996 - kind: conda name: opentelemetry-sdk - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - sha256: fb0e4f664166d168edf455f744d827c2342b4b1e99d035cd2e47721863d845e5 - md5: 1a16e734cd0ebb70d3b79265403beb13 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + sha256: 67c5be0f2b81b329d273f1f24f985a53e000b4b42b8338b56375d75aa8da5bb1 + md5: 742115714b2cbfa599e9f78495233d1a depends: - - opentelemetry-api 1.27.0 - - opentelemetry-semantic-conventions 0.48b0 - - python >=3.8 + - opentelemetry-api 1.28.2 + - opentelemetry-semantic-conventions 0.49b2 + - python >=3.9 - typing-extensions >=3.7.4 + - typing_extensions >=3.7.4 license: Apache-2.0 - license_family: APACHE - size: 73814 - timestamp: 1724923174196 + size: 78017 + timestamp: 1732070451972 - kind: conda name: opentelemetry-semantic-conventions - version: 0.48b0 - build: pyhd8ed1ab_0 + version: 0.49b2 + build: pyh10f6f8f_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - sha256: e2f9a4dbb4eef97e5ab04a73b3898c0f186d57705eae66c6991452385f987e9c - md5: eefd5ed55046af15c08051afb6b0eb6b + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + sha256: 5e3869ad66082b16d56bab8219fad0c8c09090ec93eb866327eed788fe5c9340 + md5: d95dd6e8a70417e394bb16dad5cff408 depends: - - opentelemetry-api 1.27.0 - - python >=3.8 + - deprecated >=1.2.6 + - opentelemetry-api 1.28.2 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 76393 - timestamp: 1724919708207 + size: 81534 + timestamp: 1732067304518 - kind: conda name: opentelemetry-util-http - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - sha256: 9bc1dbb9d258d6e6c25d96b85d58d049e325971270d42439b5cff88777ce7bc7 - md5: 4fe36ba8135c7fb262d0f7721aa01b05 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + sha256: 73bb1cbb640b0732c1a04764a9704bb048ab77d6cb9c6439eb50ec0ecf926ede + md5: f267c60fc629a9bd1aa388f6ed8ea0ab depends: - python >=3.8 license: Apache-2.0 - license_family: APACHE - size: 19163 - timestamp: 1724929864899 + size: 19241 + timestamp: 1732081026829 - kind: conda name: orc - version: 2.0.2 - build: h383807c_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda - sha256: 04cc6054199bdbc2649f1ee1afde87d6274ce9dc6f2c2f22da42810b9c8f323a - md5: e910dc97dc0ce4ab1e1a87f49aff89fd + version: 2.0.3 + build: h121fd32_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h121fd32_0.conda + sha256: 4759fd0c3f06c035146100e22ee36a312c9a8226654bd2973e9ca9ac5de5cf1f + md5: 39995f7406b949c1bef74f0c7277afb3 depends: - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 + - __osx >=11.0 + - libcxx >=18 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -6065,21 +6059,20 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 1046461 - timestamp: 1723760657143 + size: 438254 + timestamp: 1731665228473 - kind: conda name: orc - version: 2.0.2 - build: h669347b_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda - sha256: 8a126e0be7f87c499f0a9b5229efa4321e60fc4ae46abdec9b13240631cb1746 - md5: 1e6c10f7d749a490612404efeb179eb8 + version: 2.0.3 + build: h90de224_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h90de224_0.conda + sha256: 7969db50268b65c2edb14be2e22bfff5656f36336eb5421d53030d29c037fec1 + md5: c07ba3025fe20ccbab9cd7c615953d6f depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -6087,20 +6080,21 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 1066349 - timestamp: 1723760593232 + size: 1170439 + timestamp: 1731665024334 - kind: conda name: orc - version: 2.0.2 - build: h75dedd0_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda - sha256: a23f3a88a6b16363bd13f964b4abd12be1576abac460126f3269cbed12d04840 - md5: 9c89e09cede143716b479c5eacc924fb + version: 2.0.3 + build: he039a57_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-he039a57_0.conda + sha256: 9657ae19d6541fe67a61ef0c26ba1012ec508920b49afa897962c7d4b263ba35 + md5: 052499acd6d6b79952197a13b23e2600 depends: - - __osx >=11.0 - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -6108,8 +6102,8 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 436164 - timestamp: 1723760750932 + size: 1187593 + timestamp: 1731664886527 - kind: conda name: packaging version: '24.2' @@ -6299,211 +6293,199 @@ packages: timestamp: 1728546060903 - kind: conda name: protobuf - version: 4.25.3 - build: py311h943de5f_1 - build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-4.25.3-py311h943de5f_1.conda - sha256: 3bc81aa28e5371c1fadfbd7cac900b39b1183491de12768be465c845afe6a8a3 - md5: 93eb88a291c946a938f8825284a0b82b + version: 5.28.2 + build: py311h6885ffc_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py311h6885ffc_0.conda + sha256: e3c9aadc12678327f8349d1f043d90a320ab287d733eae8e00f1a5d205d6792a + md5: 1a922ee234494a42a52e3f7225920b41 depends: - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx >=13 + - __osx >=11.0 + - libcxx >=17 - python >=3.11,<3.12.0a0 - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 400239 - timestamp: 1725018683245 + size: 453427 + timestamp: 1728669805249 - kind: conda name: protobuf - version: 4.25.3 - build: py311hbffca5d_1 - build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.25.3-py311hbffca5d_1.conda - sha256: 3e06dcdd3ec2e73fb456d5c2fdf9c8829d7f70c15d724f9920a24276a0a1d6b5 - md5: 27089f71e28d01bcc070460d822d5acb + version: 5.28.2 + build: py311h89d996e_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py311h89d996e_0.conda + sha256: e31883a2a0134a337dad1cc42730a4c1c212f13d69843cb8643f30cfcdaf134c + md5: 9e0fb694cb431de5b4ed52697a629f38 depends: - - __glibc >=2.17,<3.0.a0 - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - libstdcxx >=13 - python >=3.11,<3.12.0a0 + - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 398881 - timestamp: 1725018534875 + size: 480827 + timestamp: 1728669731679 - kind: conda name: protobuf - version: 4.25.3 - build: py311hd7a3543_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.25.3-py311hd7a3543_1.conda - sha256: 4c7221018c88b9979fd25f97369d4635dee16fc42dd6a9079362edf97eaa5a48 - md5: dacdcae7ce1a0d2f10351fb7b406bf7e + version: 5.28.2 + build: py311hfdbb021_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py311hfdbb021_0.conda + sha256: a002b1606e63dcdf8da3a6f570f73dbeeef60ce552f62c9c672711a2a31d4921 + md5: 83ce49456829de025312e1de9b4395a5 depends: - - __osx >=11.0 - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcxx >=17 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 - python >=3.11,<3.12.0a0 - - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 381079 - timestamp: 1725018857484 + size: 472879 + timestamp: 1728669387714 - kind: conda name: pyarrow - version: 17.0.0 - build: py311h35c05fe_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-17.0.0-py311h35c05fe_2.conda - sha256: dd31365596b92d1225ad5f4ee8698faea6a01a52a4a3bb0ad369b437b09ce6d3 - md5: e9e6452c510ec99ca0a5f00f4c300bcf - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + version: 18.0.0 + build: py311h38be061_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.0.0-py311h38be061_1.conda + sha256: 4248bbc50c631c824d05b2a648ee7c650960d080aa4abc0f25336726d995b6fb + md5: eeda074d8e993dac2355fa8887320359 + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: APACHE - size: 25766 - timestamp: 1730169580244 + size: 25157 + timestamp: 1731058869216 - kind: conda name: pyarrow - version: 17.0.0 - build: py311h58b41f2_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-17.0.0-py311h58b41f2_2.conda - sha256: e78d7d42f8147bf96f76acd4010867ffead93f2fec8abcf5482a1abde217c715 - md5: 1e8845680e2ba222eaa4405c1e6177dd - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + version: 18.0.0 + build: py311ha1ab1f8_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.0.0-py311ha1ab1f8_1.conda + sha256: 5f087472e5eb7577e97c030cbc527e1c24ee290f259379e8deabcd6a17838638 + md5: 342deac3c2230b86fdd97fafaf7d22ac + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: APACHE - size: 25743 - timestamp: 1730169950637 + size: 25371 + timestamp: 1731058530169 - kind: conda name: pyarrow - version: 17.0.0 - build: py311hbd00459_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-17.0.0-py311hbd00459_2.conda - sha256: c90d275efa91b3b89335451a7942ba0784f9869da584b7a8c0abae2b26a08b36 - md5: 824d752b0e2037090bb3d75e35e05533 - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + version: 18.0.0 + build: py311hfecb2dc_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.0.0-py311hfecb2dc_1.conda + sha256: 3631ef62b30e84811b26cf737d3d04af39781789998c461f7c6f671488c007f6 + md5: b3992e5e32e9d0f698b97147115e0bfe + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 license: Apache-2.0 license_family: APACHE - size: 25615 - timestamp: 1730169788262 + size: 25398 + timestamp: 1731059252216 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py311h4854187_2_cpu - build_number: 2 + version: 18.0.0 + build: py311h4854187_1_cpu + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-17.0.0-py311h4854187_2_cpu.conda - sha256: 4d98ea27ae10b241b45d4b5c5988c0aacb232d3a3a23e28b03649df9c029cea2 - md5: a04e64d38ca1fab46b12eb5bfc4f0026 + url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.0.0-py311h4854187_1_cpu.conda + sha256: 5009dceb335479761fe3efcc41aa4829cf924d19cb63dde74da08da30aff48aa + md5: 3c14bc71dda64e1eb6273a63b2561cc9 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.11,<3.12.0a0 - python_abi 3.11.* *_cp311 constrains: + - numpy >=1.21,<3 - apache-arrow-proc =*=cpu license: Apache-2.0 license_family: APACHE - size: 4643528 - timestamp: 1730169489406 + size: 4589659 + timestamp: 1731058468008 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py311ha6d2531_2_cpu - build_number: 2 + version: 18.0.0 + build: py311ha6d2531_1_cpu + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-17.0.0-py311ha6d2531_2_cpu.conda - sha256: 98c95b63323c607e61694c4cbf5911fc620263ebff0c3ea792b433ad6baaa51b - md5: 9a4dfd7ab5fa77a3d81ce683b49a8054 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.0.0-py311ha6d2531_1_cpu.conda + sha256: 4c54d4caa850601acdd78576e3647cedf4f4b344e4ddcf34ff693a867b22e5dc + md5: 396789b43363c50fe20e2dd7bb7e492a depends: - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.11,<3.12.0a0 - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 constrains: + - numpy >=1.21,<3 - apache-arrow-proc =*=cpu license: Apache-2.0 license_family: APACHE - size: 4522594 - timestamp: 1730176383785 + size: 4446613 + timestamp: 1731058813821 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py311he04fa90_2_cpu - build_number: 2 + version: 18.0.0 + build: py311he04fa90_1_cpu + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-17.0.0-py311he04fa90_2_cpu.conda - sha256: 310f2a3ea7cf22b81c7b785ce513956d79b4f094d4b5b788eb54b4adb4e9ba7e - md5: f3a2918db5b64a0d725a341775d83deb + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.0.0-py311he04fa90_1_cpu.conda + sha256: 3b4bc16e3f044a4f0ac75955ddf17fb4fc4e39feef7e5af8ede834ffbf52e888 + md5: f1da706c05d2113a7a1a1d8d07a63c7d depends: - __osx >=11.0 - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.11,<3.12.0a0 - python >=3.11,<3.12.0a0 *_cpython - python_abi 3.11.* *_cp311 constrains: - apache-arrow-proc =*=cpu + - numpy >=1.21,<3 license: Apache-2.0 license_family: APACHE - size: 4025429 - timestamp: 1730169540048 + size: 3934172 + timestamp: 1731058505049 - kind: conda name: pycparser version: '2.22' @@ -7100,49 +7082,49 @@ packages: timestamp: 1728644123354 - kind: conda name: re2 - version: 2023.09.01 - build: h4cba328_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda - sha256: 0e0d44414381c39a7e6f3da442cb41c637df0dcb383a07425f19c19ccffa0118 - md5: 0342882197116478a42fa4ea35af79c1 + version: 2024.07.02 + build: h2d3a13d_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda + sha256: 55e7be480bfb979fa8595a16d7f2adea3a5ac9a77b2e97cd0f7ac40e989edb6c + md5: 83f4e47229834c895a92c18383e1cd9d depends: - - libre2-11 2023.09.01 h7b2c953_2 + - libre2-11 2024.07.02 h18dbdb1_1 license: BSD-3-Clause license_family: BSD - size: 26770 - timestamp: 1708947220914 + size: 26747 + timestamp: 1728778986331 - kind: conda name: re2 - version: 2023.09.01 - build: h7f4b329_2 - build_number: 2 + version: 2024.07.02 + build: h77b4e00_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - sha256: f0f520f57e6b58313e8c41abc7dfa48742a05f1681f05654558127b667c769a8 - md5: 8f70e36268dea8eb666ef14c29bd3cda + url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda + sha256: c1721cb80f7201652fc9801f49c214c88aee835d957f2376e301bd40a8415742 + md5: 01093ff37c1b5e6bf9f17c0116747d11 depends: - - libre2-11 2023.09.01 h5a48ba9_2 + - libre2-11 2024.07.02 hbbce691_1 license: BSD-3-Clause license_family: BSD - size: 26617 - timestamp: 1708946796423 + size: 26665 + timestamp: 1728778975855 - kind: conda name: re2 - version: 2023.09.01 - build: h9caee61_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.09.01-h9caee61_2.conda - sha256: 31db9c598bfa7586ac2e3ba06681d676caa5d252b5b68f4b6173edc71f70681e - md5: a9667ab785e1686d53313364c695f58e + version: 2024.07.02 + build: hcd0e937_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda + sha256: eebddde6cb10b146507810b701ef6df122d5309cd5151a39d0828aa44dc53725 + md5: 19e29f2ccc9168eb0a39dc40c04c0e21 depends: - - libre2-11 2023.09.01 h9d008c2_2 + - libre2-11 2024.07.02 h2348fd5_1 license: BSD-3-Clause license_family: BSD - size: 26726 - timestamp: 1708946863063 + size: 26860 + timestamp: 1728779123653 - kind: conda name: readline version: '8.2' @@ -7282,35 +7264,35 @@ packages: timestamp: 1730592349978 - kind: conda name: s2n - version: 1.5.5 - build: h3931f03_0 + version: 1.5.9 + build: h0fd0ee4_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda - sha256: a6fa0afa836f8f26dea0abc180ca2549bb517932d9a88a121e707135d4bcb715 - md5: 334dba9982ab9f5d62033c61698a8683 + url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.9-h0fd0ee4_0.conda + sha256: f2c8e55d6caa8d87a482b1f133963c184de1ccb2303b77cc8ca86c794253f151 + md5: f472432f3753c5ca763d2497e2ea30bf depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 353081 - timestamp: 1728534228471 + size: 355568 + timestamp: 1731541963573 - kind: conda name: s2n - version: 1.5.5 - build: hc6ade00_0 + version: 1.5.9 + build: h636ded1_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda - sha256: 47e9783a3c2b44b2f718e7cda74c0170e6a8c145688eee76a4395ac06f6e5393 - md5: 7238fdea17af79b5f6928ff278c70d52 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.9-h636ded1_0.conda + sha256: 51572714743f836266af564c5b26b37599478131c4379a0d11778f04e647d070 + md5: bf4f84136d9ddb7be1855754a9ac4bb9 depends: - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 349557 - timestamp: 1728534230496 + size: 352546 + timestamp: 1731542018427 - kind: conda name: safetensors version: 0.4.5 @@ -7493,21 +7475,21 @@ packages: timestamp: 1722520112550 - kind: conda name: starlette - version: 0.41.2 - build: pyha770c72_0 + version: 0.41.3 + build: pyh7900ff3_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda - sha256: 02206e5369944e0fd29e4f5c8e9b51dd926a74a46b621a73323669ad404f1081 - md5: 287492bb6e159da4357a10a2bd05c13c + url: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda + sha256: 33986032cb0515f7e9f6647d07006b7dc49b3f373b73d5a1826e6979c661b27a + md5: 0889c5a3e95d8c382cff7556757aedb0 depends: - anyio >=3.4.0,<5 - - python >=3.8 + - python >=3.9 - typing_extensions >=3.10.0 license: BSD-3-Clause license_family: BSD - size: 59059 - timestamp: 1730305803101 + size: 59069 + timestamp: 1732037161800 - kind: conda name: tk version: 8.6.13 @@ -7704,13 +7686,13 @@ packages: timestamp: 1713535244513 - kind: conda name: transformers - version: 4.46.2 + version: 4.46.3 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - sha256: e654adbaa80a65ffa2209465d23e136dee2d8b1ded3da425c1f8c3a9c3be56a6 - md5: 587e2e9014d6efc236029e9acd8332c2 + url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + sha256: 6ae73c0d1197812d8fd6a2c64309fe9abe822feb66b2d330cc61ce9fa60dee0c + md5: 457af723774f077a128515a6fdd536a2 depends: - datasets !=2.5.0 - filelock @@ -7726,62 +7708,62 @@ packages: - tqdm >=4.27 license: Apache-2.0 license_family: APACHE - size: 3659906 - timestamp: 1730868580651 + size: 3622494 + timestamp: 1731981383171 - kind: conda name: typer - version: 0.13.0 + version: 0.13.1 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - sha256: f3661edc36aaf69c03323f0a2b71bbbfdf3c11ed1fe1c9c6f486ac1b53e11aa1 - md5: 0d2754390dab3d584823f497d1ab8704 + url: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + sha256: 2f12a5af13d440aa75970e3d0d1ea3192916848473967b4ecb483627c01333cb + md5: 82a4704166144f27e9c83803bff5bf53 depends: - python >=3.9 - - typer-slim-standard 0.13.0 hd8ed1ab_0 + - typer-slim-standard 0.13.1 hd8ed1ab_0 license: MIT license_family: MIT - size: 54855 - timestamp: 1731015674090 + size: 55352 + timestamp: 1732084066966 - kind: conda name: typer-slim - version: 0.13.0 + version: 0.13.1 build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - sha256: 6e23932ebef6b09b68a9667596952af4f81167b4b50a182ac70316ec224322fc - md5: 5fcd867cf0b4498002731d44621c0b58 + url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + sha256: b190bcd5f341ba8843f2f1ce43b5e8dae770bb84d49e2ce5b346e4d8098367a1 + md5: 85283fb942fa2604c3db03483027ced2 depends: - click >=8.0.0 - python >=3.9 - typing_extensions >=3.7.4.3 constrains: - - typer >=0.13.0,<0.13.1.0a0 - shellingham >=1.3.0 + - typer >=0.13.1,<0.13.2.0a0 - rich >=10.11.0 license: MIT license_family: MIT - size: 43166 - timestamp: 1731015659531 + size: 43463 + timestamp: 1732084053693 - kind: conda name: typer-slim-standard - version: 0.13.0 + version: 0.13.1 build: hd8ed1ab_0 subdir: noarch noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda - sha256: 402d1c872adb1dda436d563e03280750419367fb808a9ee7811f1335f218e8bc - md5: fe8bb6071bf1c47b38bc65f848847059 + url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda + sha256: 14ac72d0533bc2f37f8dc85b90b45a91ca28ee0995c520b16a40f34629749c7a + md5: a9bf95ed3c65bf936292d944bf3df36d depends: - rich - shellingham - - typer-slim 0.13.0 pyhff2d567_0 + - typer-slim 0.13.1 pyhff2d567_0 license: MIT license_family: MIT - size: 48480 - timestamp: 1731015660139 + size: 48744 + timestamp: 1732084054211 - kind: conda name: typing-extensions version: 4.12.2 diff --git a/examples/notebooks/magic.lock b/examples/notebooks/magic.lock index fd178e1c0d..7c1b1d0390 100644 --- a/examples/notebooks/magic.lock +++ b/examples/notebooks/magic.lock @@ -9,7 +9,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.6-py312h178313f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -20,24 +20,24 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.31-he1a10d6_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.7.4-hae4d56a_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.29-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.19-h2bff981_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.3-h19b0707_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.10-h14a7884_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.19-hc9e6898_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.7-hb8d5873_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.6.7-h666547d_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.19-h2bff981_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.20-h2bff981_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.28.3-hbe26082_8.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.407-h25d6d5c_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.13.0-h935415a_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.8.0-hd126650_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.12.0-hd2e3451_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.7.0-h10ac4d7_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.11.0-h325d260_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb88c0a9_10.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.0-hecf86a2_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.3-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-hf42f96a_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h1ffe551_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.1-hab05fe4_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.2-hdeadb07_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h7bd072d_8.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.1-h3a84f74_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-hf42f96a_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-hf42f96a_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.4-h21d7256_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.449-h1a02111_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.14.0-h5cfcd09_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.10.0-h113e628_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.13.0-h3cf044e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.8.0-h736e048_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.12.0-ha633028_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.16.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda @@ -108,11 +108,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-17.0.0-had3b6fe_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-17.0.0-h5888daf_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-17.0.0-h5888daf_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-17.0.0-hf54134d_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.0.0-h3b997a5_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.0.0-h5888daf_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.0.0-h5888daf_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.0.0-h5c8f2c3_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda @@ -130,23 +130,23 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.29.0-h435de7b_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.29.0-h0121fbd_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.2-h15f2491_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.31.0-h804f50b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.31.0-h0121fbd_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-17.0.0-h39682fd_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-hd5b35b9_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.0.0-h6bd9018_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.20.0-h0e7cc3e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.49.2-hb9d3cd8_0.conda @@ -157,13 +157,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024112020-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -175,18 +175,18 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-he039a57_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.2-py312h1d6d2e6_1.conda @@ -201,12 +201,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.48-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.0-py312h66e93f0_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.25.3-py312h83439f5_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.1.0-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-17.0.0-py312h9cebb41_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-17.0.0-py312h01725c0_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.0.0-py312h7900ff3_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.0.0-py312h01725c0_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.23.4-py312h12e396e_0.conda @@ -226,7 +226,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py312hbf22597_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/regex-2024.11.6-py312h66e93f0_0.conda @@ -235,7 +235,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.21.0-py312h12e396e_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.9-h0fd0ee4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda @@ -246,7 +246,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda @@ -255,10 +255,10 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.1-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda @@ -288,7 +288,7 @@ environments: linux-aarch64: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.6-py312hcc812fe_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -299,24 +299,24 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.31-h8fa6c3f_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.7.4-h3a42a84_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.29-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.19-ha24d3e7_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.4.3-h34ad692_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.8.10-h1e1d171_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.14.19-h9f8f545_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.10.7-had41049_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.6.7-h598b0a5_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.19-ha24d3e7_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.20-ha24d3e7_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.28.3-hcc2993b_8.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.407-hf265f57_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.13.0-h60f91e5_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.8.0-hf0f394c_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.12.0-h17ca4bd_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.7.0-h68dbd84_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.11.0-h36e5eb4_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hac900a4_10.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.0-h35473ba_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.3-h86ecc28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h4c7db1d_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-h9bacb8c_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.1-hf4e072c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.2-h10eb1bc_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h28a5e6a_8.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.1-h29aef15_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h4c7db1d_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h4c7db1d_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.4-h8cc6612_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.449-hf48a0a1_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.14.0-h1887c18_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.10.0-h47b0b28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.13.0-h185ecfd_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.8.0-h1b94036_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.12.0-h37d6d07_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.16.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda @@ -388,11 +388,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.2-cxx17_h0a1ffab_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-17.0.0-hccffc7f_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-17.0.0-h5ad3122_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-17.0.0-h5ad3122_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-17.0.0-h08b7278_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.0.0-hf19f309_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.0.0-h5ad3122_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.0.0-h5ad3122_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.0.0-h14ec2bd_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda @@ -410,23 +410,23 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.29.0-hbb89541_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.29.0-hb9b2b65_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.62.2-h98a9317_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.31.0-h3888205_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.31.0-hb9b2b65_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.28-pthreads_h9d3fd7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-17.0.0-h501616e_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-hea2c3fa_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2023.09.01-h9d008c2_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.0.0-h23a96eb_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.47.0-hc4a20ef_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.0-h492db2e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-14.2.0-h3f4de04_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-14.2.0-hf1166c9_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.20.0-h154c74f_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.21.0-h154c74f_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.8.0-h4e544f5_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.49.2-h86ecc28_0.conda @@ -437,13 +437,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024112020-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -455,18 +455,18 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py312h470d778_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h90de224_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.2-py312h14eacfc_1.conda @@ -481,12 +481,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.48-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/propcache-0.2.0-py312hb2c0f52_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-4.25.3-py312h8a04735_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-6.1.0-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-17.0.0-py312h55cb1a1_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-17.0.0-py312h66f7834_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.0.0-py312h8025657_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.0.0-py312h66f7834_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.23.4-py312h8cbf658_0.conda @@ -506,7 +506,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-26.2.0-py312h2427ae1_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.09.01-h9caee61_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/regex-2024.11.6-py312hb2c0f52_0.conda @@ -515,7 +515,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/rfc3986-validator-0.1.1-pyh9f0ad1d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rpds-py-0.21.0-py312ha4e36d7_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.9-h636ded1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda @@ -526,7 +526,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda @@ -535,10 +535,10 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4.1-py312h52516f5_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda @@ -567,7 +567,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda osx-arm64: - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.6-py312h998013c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda @@ -579,24 +579,24 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-2.4.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.31-h14f56dd_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.7.4-hd45b2be_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.29-h7ab814d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.19-hd45b2be_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.3-hdf5079d_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.10-h4588aaf_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.19-h5ad5fc2_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.7-hbe077eb_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.6.7-h86d2b7d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.19-hd45b2be_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.20-hd45b2be_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.28.3-h4f9f7e0_8.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.407-h880863c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.13.0-hd01fc5c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.8.0-h13ea094_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.12.0-hfde595f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.7.0-hcf3b6fd_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.11.0-h082e32e_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h9b725a8_10.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.0-h5d7ee29_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.3-h5505292_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h5d7ee29_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h13ead76_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.1-hf483d09_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.2-h39f8ad8_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h68a0d7e_8.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.1-h840aca7_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h5d7ee29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h5d7ee29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.4-h6832833_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.449-h8f08b23_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.14.0-hd50102c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.10.0-hc602bab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.13.0-h7585a09_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.8.0-h9ca1f76_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.12.0-hcdd55da_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.16.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_0.conda @@ -665,11 +665,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.2-cxx17_h00cdb27_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-17.0.0-hc6a7651_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-17.0.0-hf9b8971_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-17.0.0-hf9b8971_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-17.0.0-hbf8b706_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.0.0-h2409f62_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.0.0-h286801f_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.0.0-h286801f_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.0.0-h6a6e5c5_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda @@ -677,7 +677,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.3-ha82da77_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.4-ha82da77_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda @@ -685,36 +685,36 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.29.0-hfa33a2f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.29.0-h90fd6fa_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.2-h9c18a4f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.31.0-h8d8be31_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.31.0-h7081f7f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.28-openmp_hf332438_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-17.0.0-hf0ba9ef_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hc39d83c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.0.0-hda0ea68_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.47.0-hbaaea75_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.20.0-h64651cc_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.21.0-h64651cc_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.49.2-h7ab814d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-h376fa9f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.3-hb52a8e5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.4-hdb05f8b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024112020-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda @@ -726,18 +726,18 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py312h8442bc7_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h121fd32_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.2-py312h8ae5369_1.conda @@ -752,12 +752,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.48-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.0-py312h024a12e_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.25.3-py312he4aa971_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.1.0-py312h0bf5046_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd3deb0d_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-17.0.0-py312ha814d7c_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-17.0.0-py312hc40f475_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.0.0-py312h1f38498_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.0.0-py312hc40f475_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.23.4-py312he431725_0.conda @@ -779,7 +779,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.2.0-py312hf8a1cbd_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/regex-2024.11.6-py312hea69d52_0.conda @@ -798,7 +798,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh31c8845_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tinycss2-1.4.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda @@ -807,10 +807,10 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.1-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/types-python-dateutil-2.9.0.20241003-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda @@ -901,12 +901,12 @@ packages: timestamp: 1727779893392 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py312h178313f_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda - sha256: 020315ba01fcd1b53fcb81280a00b8de7051ecf5c4503fc3b3281df0cbca05ed - md5: e2f92c2c85d3a0d376947847942ed36c + url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.6-py312h178313f_0.conda + sha256: 100484cdbd0e6840fc969354e78173a0b8dff80ee53947ec0fc8f0c840486934 + md5: 3a62de1af76079acb81fad6936e1f6f8 depends: - __glibc >=2.17,<3.0.a0 - aiohappyeyeballs >=2.3.0 @@ -921,16 +921,16 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 903248 - timestamp: 1731703484704 + size: 908313 + timestamp: 1732088522122 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py312h998013c_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda - sha256: 5e619945d37829cde16c5add63abb042ba953f0dc92b94abb990000a6ba3e191 - md5: 1c0150beac996afe9d8ee8297d324352 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.6-py312h998013c_0.conda + sha256: e6bae4c7ce7ba1f42667b54495296b21c7414ff9c826c73eeaba0bd050d89af3 + md5: e24152bdeb4fc0ab20472d3c27539196 depends: - __osx >=11.0 - aiohappyeyeballs >=2.3.0 @@ -945,16 +945,16 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 865633 - timestamp: 1731703688760 + size: 870500 + timestamp: 1732088770426 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py312hcc812fe_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda - sha256: 92385f1c7e1bac9e502a7943f4b8a3e58b62fa8ae1c232519116091ac0fdecfd - md5: bcbd2dff2e7d88f7d5b0dab015caa1c0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.6-py312hcc812fe_0.conda + sha256: 009e1ed9676f857c90b6fd28f4cd31b11e13f5ba00fc780766e19b8cfaae7390 + md5: 73b5173b83afa78594434ac2912ec2b6 depends: - aiohappyeyeballs >=2.3.0 - aiosignal >=1.1.2 @@ -969,8 +969,8 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 893381 - timestamp: 1731703604408 + size: 897593 + timestamp: 1732088604447 - kind: conda name: aiosignal version: 1.3.1 @@ -1198,1016 +1198,1019 @@ packages: timestamp: 1722977241383 - kind: conda name: aws-c-auth - version: 0.7.31 - build: h14f56dd_2 - build_number: 2 + version: 0.8.0 + build: h9b725a8_10 + build_number: 10 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.31-h14f56dd_2.conda - sha256: 7ec650c52962f62e141d5c8ac018befd9a0c50eef1c951cba11089cadd90e703 - md5: 85a9125cf9705e4c7a829a829af6744b + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h9b725a8_10.conda + sha256: 63cb8c25e0a26be4261d4271de525e7e33aefe9d9b001b8abfa5c9ac69c3dab3 + md5: 17c90d9eb8c6842fd739dc5445ce9962 depends: - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 license: Apache-2.0 license_family: Apache - size: 92624 - timestamp: 1728796392911 + size: 92355 + timestamp: 1731733738919 - kind: conda name: aws-c-auth - version: 0.7.31 - build: h8fa6c3f_2 - build_number: 2 + version: 0.8.0 + build: hac900a4_10 + build_number: 10 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.31-h8fa6c3f_2.conda - sha256: 1420263c333ed29b89f37d0b9f9665eb02f3a23a50f9fe3ef787a30726168711 - md5: a7549b69ce1339ab4702c10cc213c01d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hac900a4_10.conda + sha256: 85c8500ae0570f0d39e6661a120c653e43f0f5f984e2954c44fd358a87776892 + md5: 9ecaef75ebd666dda7caa79154183b02 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 112059 - timestamp: 1728796399534 + size: 111853 + timestamp: 1731733547677 - kind: conda name: aws-c-auth - version: 0.7.31 - build: he1a10d6_2 - build_number: 2 + version: 0.8.0 + build: hb88c0a9_10 + build_number: 10 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.31-he1a10d6_2.conda - sha256: 83fa4b24101cd85da825dcbb7611390c2a6e31a3fc17abb4d1ee5b8c40bdaa5a - md5: 76550a294cc78aaccfca7824bb4814ce + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb88c0a9_10.conda + sha256: d2837a84e6bd7d993a83e79f9e240e1465e375f3d57149ea5b1927c6a4133bcc + md5: 409b7ee6d3473cc62bda7280f6ac20d0 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 107301 - timestamp: 1728796325782 + size: 107163 + timestamp: 1731733534767 - kind: conda name: aws-c-cal - version: 0.7.4 - build: h3a42a84_2 + version: 0.8.0 + build: h35473ba_2 build_number: 2 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.7.4-h3a42a84_2.conda - sha256: 5a0825bf3f2e89458088eb83f2e6e3eed0f3b9711963f6bf45cea9ed699a5611 - md5: 4c4096ea8a644e837e3d8576bf6d2ba9 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.0-h35473ba_2.conda + sha256: 3327a9e65ec531b0c55d17bbcdc436b4e641af1f293d1c2f50e0f16aa79fde60 + md5: 48dc0b3576513622673d3f5f3d163b62 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 49479 - timestamp: 1728755609823 + size: 49714 + timestamp: 1731678553709 - kind: conda name: aws-c-cal - version: 0.7.4 - build: hae4d56a_2 + version: 0.8.0 + build: h5d7ee29_2 build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.7.4-hae4d56a_2.conda - sha256: 4bfed63898a1697364ce9621e1fc09c98f143777b0ca60655eb812efa5bf246d - md5: cdc628e4ffb4ffcd476e3847267e1689 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.0-h5d7ee29_2.conda + sha256: 2a8c09b33400cf2b7d658e63fd5a6f9b6e9626458f6213b904592fc15220bc92 + md5: 92734dad83d22314205ba73b679710d2 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 47181 - timestamp: 1728755555430 + size: 39966 + timestamp: 1731678721786 - kind: conda name: aws-c-cal - version: 0.7.4 - build: hd45b2be_2 + version: 0.8.0 + build: hecf86a2_2 build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.7.4-hd45b2be_2.conda - sha256: d701872d79184dbb759aa033e6a6e4ec5c6f1b58e3255e53b756d0246d19986a - md5: de4bf687ac70a2b861a94b87164669c9 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.0-hecf86a2_2.conda + sha256: 220a37955c120bf2f565fbd5320a82fc4c8b550b2449294bc0509c296cfcb9fa + md5: c54459d686ad9d0502823cacff7e8423 depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 39794 - timestamp: 1728755626145 + size: 47477 + timestamp: 1731678510949 - kind: conda name: aws-c-common - version: 0.9.29 - build: h7ab814d_0 + version: 0.10.3 + build: h5505292_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.29-h7ab814d_0.conda - sha256: 8d2c330f0de571f1bf6f2db7650a1aa8c4060a2ccd25b48f392a4d3ea8222daa - md5: d4a90d217342b08daa7e80049fdaa6c9 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.3-h5505292_0.conda + sha256: bb2c1038726d31ffd2d35a5764f80bcd670b6a1c753aadfd261aecb9f88db6d8 + md5: 4150339e3b08db33fe4c436340b1d7f6 depends: - __osx >=11.0 license: Apache-2.0 license_family: Apache - size: 220687 - timestamp: 1728706817796 + size: 221524 + timestamp: 1731567512057 - kind: conda name: aws-c-common - version: 0.9.29 + version: 0.10.3 build: h86ecc28_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.29-h86ecc28_0.conda - sha256: f79b28d046aa448016ef4ddade430cfbfa3802813b6be04c97abb531edef05a2 - md5: f1fef7581dd3389ca7a3545e50bfcc7f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.3-h86ecc28_0.conda + sha256: 95ca372a0e1bb8dad421751de6aa44d37d87dd69c33a48faca1ae6efa30f2af0 + md5: 64f523ba00b75fdcb33a4eea827d3d19 depends: - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 258186 - timestamp: 1728706827519 + size: 257859 + timestamp: 1731567310573 - kind: conda name: aws-c-common - version: 0.9.29 + version: 0.10.3 build: hb9d3cd8_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.29-hb9d3cd8_0.conda - sha256: b3b50f518e9afad383f6851bf7000cf8b343d7d3ca71558df233ee7b4bfc2919 - md5: acc51b49fd7467c8dfe4343001b812b4 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.3-hb9d3cd8_0.conda + sha256: 90bd2ff40b65acb62f11e2500ee7b7e85ac77d2e332429002f4c1da949bec27f + md5: ff3653946d34a6a6ba10babb139d96ef depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 237231 - timestamp: 1728706773555 + size: 237137 + timestamp: 1731567278052 - kind: conda name: aws-c-compression - version: 0.2.19 - build: h2bff981_2 + version: 0.3.0 + build: h4c7db1d_2 build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.19-h2bff981_2.conda - sha256: 908a416ff3f62b09bed436e1f77418f54115412244734d3960b11d586dd0749f - md5: 87a059d4d2ab89409496416119dd7152 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h4c7db1d_2.conda + sha256: 8dba3d48a7230ccd2a6ea8d88c0e1b6caf0a39b14a2b2f0255a413fcfce8ad0a + md5: ee074857cec335bb83692771b06160a4 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 18983 - timestamp: 1728750679322 + size: 19696 + timestamp: 1731678729046 - kind: conda name: aws-c-compression - version: 0.2.19 - build: ha24d3e7_2 + version: 0.3.0 + build: h5d7ee29_2 build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.19-ha24d3e7_2.conda - sha256: 5c8abfbe725f7b646223a64b9446fc3305f66da75d27f199a3347ca1d9ea5671 - md5: a8162788a62f2568587b20646f2eacea + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h5d7ee29_2.conda + sha256: a52ea62bf08aed3af079e16d1738f3d2a7fcdd1d260289ae27ae96298e15d12a + md5: 15566c36b0cf5f314e3bee7f7cc796b5 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 19862 - timestamp: 1728750729312 + size: 18204 + timestamp: 1731678916439 - kind: conda name: aws-c-compression - version: 0.2.19 - build: hd45b2be_2 + version: 0.3.0 + build: hf42f96a_2 build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-hf42f96a_2.conda + sha256: 210ba4fff1c9500fe02de1dae311ce723bfa313a2d21b72accd745f736f56fce + md5: 257f4ae92fe11bd8436315c86468c39b + depends: + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 + license: Apache-2.0 + license_family: Apache + size: 19034 + timestamp: 1731678703956 +- kind: conda + name: aws-c-event-stream + version: 0.5.0 + build: h13ead76_7 + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.19-hd45b2be_2.conda - sha256: 86900c68f95a2ca79cb9bcb8a3e8fd0a7912cfa3754a6a1e6b78d35c0b8db58b - md5: 9c634af661f50e923419e0df92633d31 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h13ead76_7.conda + sha256: 386965fab5f0bed4a6109cdba32579f16bee1b0f76ce1db840ce6f7070188f9f + md5: 55a901b6d4fb9ce1bc8328925b229f0b depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 18065 - timestamp: 1728750721405 + size: 47528 + timestamp: 1731714690911 - kind: conda name: aws-c-event-stream - version: 0.4.3 - build: h19b0707_4 - build_number: 4 + version: 0.5.0 + build: h1ffe551_7 + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.3-h19b0707_4.conda - sha256: 951f96eb45a439a36935dc2099e10c902518ec511a287c1685ca65a88a9accaa - md5: df38f56123f30d61de24474e600e7d41 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h1ffe551_7.conda + sha256: 3b780d6483baa889e8df5aa66ab3c439a9c81331cf2a4799e373f4174768ddd9 + md5: 7cce4dfab184f4bbdfc160789251b3c5 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 53821 - timestamp: 1728792746255 + size: 53500 + timestamp: 1731714597524 - kind: conda name: aws-c-event-stream - version: 0.4.3 - build: h34ad692_4 - build_number: 4 + version: 0.5.0 + build: h9bacb8c_7 + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.4.3-h34ad692_4.conda - sha256: 20fb76e0740a403ef8e7bbf655482699612b9a6a25df15ff9f14caad511e79c9 - md5: 8d66cac131dd88ef8b81299e8b5818f8 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-h9bacb8c_7.conda + sha256: 2b7bb475330942d94bc359171df19d0cf8b326f15c0c7903a59da54a8add621e + md5: 694020125b66632d6577456d2d9d3c74 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 55018 - timestamp: 1728792897824 -- kind: conda - name: aws-c-event-stream - version: 0.4.3 - build: hdf5079d_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.3-hdf5079d_4.conda - sha256: 6976ea97bf8c79114da3026a9d46b717131e2445be01f244718a426ad4b587f2 - md5: d89057a51d66d9c0c907c3dfebf845eb - depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - libcxx >=17 - license: Apache-2.0 - license_family: Apache - size: 46737 - timestamp: 1728792823021 + size: 55054 + timestamp: 1731714599360 - kind: conda name: aws-c-http - version: 0.8.10 - build: h14a7884_2 + version: 0.9.1 + build: hab05fe4_2 build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.10-h14a7884_2.conda - sha256: 0561267292739a451d7d389f100330fefafb97859962f617cd5268c96400e3aa - md5: 6147c6b6cef67adcb85516f5cf775be7 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.1-hab05fe4_2.conda + sha256: 90a325b6f5371dd2203b643de646967fe57a4bcbbee8c91086abbf9dd733d59a + md5: fb409f7053fa3dbbdf6eb41045a87795 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 197562 - timestamp: 1728792795954 + size: 196945 + timestamp: 1731714483279 - kind: conda name: aws-c-http - version: 0.8.10 - build: h1e1d171_2 + version: 0.9.1 + build: hf483d09_2 build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.8.10-h1e1d171_2.conda - sha256: bb6426db42f1804b52b83a736f6ad4c407e260a7da5b0fe586cbe18e71101dfb - md5: 20f29e7210c170cbc810f10d65f692aa + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.1-hf483d09_2.conda + sha256: fca9ed0f0895bab9bf737c8d8a3314556cb893d45c40f0656f21a93502db3089 + md5: d880c40b8fc7d07374c036f93f1359d2 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 license: Apache-2.0 license_family: Apache - size: 190604 - timestamp: 1728792811917 + size: 153315 + timestamp: 1731714621306 - kind: conda name: aws-c-http - version: 0.8.10 - build: h4588aaf_2 + version: 0.9.1 + build: hf4e072c_2 build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.10-h4588aaf_2.conda - sha256: 0f422e1cb3ebfa4fbf316e0ee576ed8e8f96cd9890783a0d319366e7ad9ebca6 - md5: fd850cc4bc7af65f3b7e98324bda96fa + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.1-hf4e072c_2.conda + sha256: b9a262451fc91d2fd4ccfcb6dc11ac61d0152c0db765bfe8d089e3e1b70c2150 + md5: fddc197912c16cb95276077f6c7917c5 depends: - - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 152421 - timestamp: 1728792977955 + size: 190363 + timestamp: 1731714613945 - kind: conda name: aws-c-io - version: 0.14.19 - build: h5ad5fc2_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.19-h5ad5fc2_1.conda - sha256: 0fcfbd9b46474b543d59183bedee08bf46d0f5167c95406b3b06ce922d6626c4 - md5: 463fae93275ddd0a6e2afb327b4d87e5 + version: 0.15.2 + build: h10eb1bc_2 + build_number: 2 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.2-h10eb1bc_2.conda + sha256: b8e4206ee1fa58453535c1c08c6aca5bdc92cde026bf7ec20d038786f813239b + md5: 7cdf478bb4feae1a93319f6e3381b8a9 depends: - - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 137474 - timestamp: 1728770995104 + size: 162624 + timestamp: 1731702570075 - kind: conda name: aws-c-io - version: 0.14.19 - build: h9f8f545_1 - build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.14.19-h9f8f545_1.conda - sha256: dea9075bd1fac65a0bbaacf038f8196892004da9c44c34d061b0d1eec81b9644 - md5: 46958359610629e7eea043a83f64540c + version: 0.15.2 + build: h39f8ad8_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.2-h39f8ad8_2.conda + sha256: b14e32f024f6be1610dccfdb6371e101cba204d24f37c2a63d9b6380ac74ac17 + md5: 3b49f1dd8f20bead8b222828cfdad585 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 - - s2n >=1.5.5,<1.5.6.0a0 + - __osx >=11.0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 163350 - timestamp: 1728771046323 + size: 137610 + timestamp: 1731702839896 - kind: conda name: aws-c-io - version: 0.14.19 - build: hc9e6898_1 - build_number: 1 + version: 0.15.2 + build: hdeadb07_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.19-hc9e6898_1.conda - sha256: 35f9719fb9d5ddf4955a432d73d910261d60754d20b58de2be2701a2e68a9cfb - md5: ec84785f7ae14ed43156a54aec33bb14 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.2-hdeadb07_2.conda + sha256: 1636136a5d882b4aaa13ea8b7de8cf07038a6878872e3c434df9daf478cee594 + md5: 461a1eaa075fd391add91bcffc9de0c1 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 - - s2n >=1.5.5,<1.5.6.0a0 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 158806 - timestamp: 1728770974012 + size: 159368 + timestamp: 1731702542973 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: had41049_2 - build_number: 2 + version: 0.11.0 + build: h28a5e6a_8 + build_number: 8 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.10.7-had41049_2.conda - sha256: 2c4065737a77f80fd475ea1979db046ca7d46dd35548d7c20be1521c7ac17eef - md5: 4f489845a24aa7d2c556b0fedfb7e0a3 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h28a5e6a_8.conda + sha256: aad8c9a5c24953cdebf17efa7ec06b5639e14072d4fa70c5c0607d7ad913ba88 + md5: 5250ce3b5154c0347b7576015a7c6cef depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 169126 - timestamp: 1728797232432 + size: 169040 + timestamp: 1731734203264 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: hb8d5873_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.7-hb8d5873_2.conda - sha256: b30a3d8ba9352760c30f696b65486fe0e1d3cfe771f114b008a70ad440eb00c0 - md5: 8dc25ca24c1a50b8295a848c384ede99 + version: 0.11.0 + build: h68a0d7e_8 + build_number: 8 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h68a0d7e_8.conda + sha256: 837c24c105624e16ace94b4b566ffe45231ff275339c523571ebd45946926156 + md5: 9e3ac70d27e7591b1310a690768cfe27 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 license: Apache-2.0 license_family: Apache - size: 195951 - timestamp: 1728797647791 + size: 134573 + timestamp: 1731734281038 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: hbe077eb_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.7-hbe077eb_2.conda - sha256: 376f757b460fc936da6b8159ef80ed5a51a23d2ba02e7834055a99616004d3bc - md5: 5013eaa8a8242355199a31e8973ff3f0 + version: 0.11.0 + build: h7bd072d_8 + build_number: 8 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h7bd072d_8.conda + sha256: 51d3d87a47c642096e2ce389a169aec2e26958042e9130857552a12d65a19045 + md5: 0e9d67838114c0dbd267a9311268b331 depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 135058 - timestamp: 1728797199832 + size: 194447 + timestamp: 1731734668760 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h598b0a5_0 + version: 0.7.1 + build: h29aef15_3 + build_number: 3 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.6.7-h598b0a5_0.conda - sha256: 93c43c3cee726280deaf44d52cc936f51b1c614bfaf600ffd5f002a6a6bb4bd7 - md5: 46860887427f76d0ff0824d987a7aee1 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.1-h29aef15_3.conda + sha256: b8c67e279f8efa833fc92b066dc6d0cef3aff7f06144f738adfbd95cdab52865 + md5: bd7d7b664176b5d164d369f12615b75a depends: - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 117032 - timestamp: 1728967110055 + size: 117581 + timestamp: 1731745139268 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h666547d_0 + version: 0.7.1 + build: h3a84f74_3 + build_number: 3 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.6.7-h666547d_0.conda - sha256: fe006f58bd9349ab7cd4cd864dd4e83409e89764b10d9d7eb7ec148e2f964465 - md5: 7f59dcbbd4eab14ca9256f20b43849eb + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.1-h3a84f74_3.conda + sha256: 274c9ec3c173a2979b949ccc10a6013673c4391502a4a71e07070d6c50eabc60 + md5: e7a54821aaa774cfd64efcd45114a4d7 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 113457 - timestamp: 1728967087200 + size: 113837 + timestamp: 1731745115080 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h86d2b7d_0 + version: 0.7.1 + build: h840aca7_3 + build_number: 3 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.6.7-h86d2b7d_0.conda - sha256: 4691154b75d85039da165b01bd25a2dce99f40b8a635fa9537a36a45dcc3e236 - md5: 851d2b927ba01ac963ffbc1868e971a3 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.1-h840aca7_3.conda + sha256: a75dce44667327d365abdcd68c525913c7dd948ea26d4709386acd58717307fc + md5: 540af65a722c5e490012153673793df5 depends: - __osx >=11.0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - license: Apache-2.0 - license_family: Apache - size: 96707 - timestamp: 1728967262718 -- kind: conda - name: aws-c-sdkutils - version: 0.1.19 - build: h2bff981_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.19-h2bff981_4.conda - sha256: ef65ca9eb9f32ada6fb1b47759374e7ef4f85db002f2265ebc8fd61718284cbc - md5: 5a8afd37e2dfe464d68e63d1c38b08c5 - depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 license: Apache-2.0 license_family: Apache - size: 55957 - timestamp: 1728755888042 + size: 96830 + timestamp: 1731745236535 - kind: conda name: aws-c-sdkutils - version: 0.1.19 - build: ha24d3e7_4 - build_number: 4 + version: 0.2.1 + build: h4c7db1d_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.19-ha24d3e7_4.conda - sha256: 2bec8bd76145f72c89068fb30d60353e6c71a4bb32e13eb543d9d04d6ea0ae9b - md5: 33e7e774771d00b2933443c3954796ea + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h4c7db1d_1.conda + sha256: 3d2b079a361888197894308a93fec95666c6abfcc86c979ae36f1f9cb223dfb3 + md5: 45437a9bad358b25f795e77218063baf depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 58640 - timestamp: 1728755998456 + size: 58256 + timestamp: 1731687032896 - kind: conda name: aws-c-sdkutils - version: 0.1.19 - build: hd45b2be_4 - build_number: 4 + version: 0.2.1 + build: h5d7ee29_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.19-hd45b2be_4.conda - sha256: cc374eef1b367fb9acc83b2e74830f62742d3e53e1f0f6a0d01939b16ed1e3d5 - md5: 7ccdd0f21ffbc77b11963f00892ca8b5 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h5d7ee29_1.conda + sha256: ed3b272b9a345142e62f0cf9ab2a9fa909c92e09691f6a06e98ff500a1f8a303 + md5: 0f1e5bc57d4567c9d9bec8d8982828ed depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 49543 - timestamp: 1728755942076 + size: 50276 + timestamp: 1731687215375 - kind: conda - name: aws-checksums - version: 0.1.20 - build: h2bff981_1 + name: aws-c-sdkutils + version: 0.2.1 + build: hf42f96a_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.20-h2bff981_1.conda - sha256: e1793f2e52fe04ef3a6b2069abda7960d061c6f7af1f0d5f616d43e7a7c40e3c - md5: 8b424cf6b3cfc5cffe98bf4d16c032fb + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-hf42f96a_1.conda + sha256: f6e38c79b124c34edb048c28ec58fdfc4ea8f7a218dc493195afbada48ba063b + md5: bbdd20fb1994a9f0ba98078fcb6c12ab depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72862 - timestamp: 1728750748391 + size: 55738 + timestamp: 1731687063424 - kind: conda name: aws-checksums - version: 0.1.20 - build: ha24d3e7_1 + version: 0.2.2 + build: h4c7db1d_1 build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.20-ha24d3e7_1.conda - sha256: f59c33d71fe4dad1099d9124f471ff9c9e06a51d43578aeb2740c8416dc03540 - md5: 592f2d2e8bc10e60e0d0cf0a737b5da8 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h4c7db1d_1.conda + sha256: b3fa060d4fe9e8fdb7b21b8b3c5fdb61df6f02973f74245a65869100f72a3931 + md5: af22e7e1c1af348a66f938aa66192f2c depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72491 - timestamp: 1728750762489 + size: 72081 + timestamp: 1731687244426 - kind: conda name: aws-checksums - version: 0.1.20 - build: hd45b2be_1 + version: 0.2.2 + build: h5d7ee29_1 build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.20-hd45b2be_1.conda - sha256: d935ca7faa780cfa1053fe1bffb77611a54b4df791897a22048e770b250c651f - md5: ab0b68aafe787311cb8397fd2e60982d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h5d7ee29_1.conda + sha256: eb7ebe309b33a04329b3e51a7f10bb407815389dc37cc047f7d41f9c91f0d1b0 + md5: db1ed95988a8fe6c1ce0d94abdfc8e72 depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 70087 - timestamp: 1728750818479 + size: 70184 + timestamp: 1731687342560 - kind: conda - name: aws-crt-cpp - version: 0.28.3 - build: h4f9f7e0_8 - build_number: 8 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.28.3-h4f9f7e0_8.conda - sha256: 98cbed635af4841186aa3261e6ceadd03822983d6e30f0afa5d34eb452b2b509 - md5: 14af6354d5437421793e17e865301371 + name: aws-checksums + version: 0.2.2 + build: hf42f96a_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-hf42f96a_1.conda + sha256: da802ace5448481c968cfec7e7a4f79f686f42df9de8e3f78c09a925c2882a79 + md5: d908d43d87429be24edfb20e96543c20 depends: - - __osx >=11.0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 - - libcxx >=17 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 229980 - timestamp: 1729181342157 + size: 72744 + timestamp: 1731687193373 - kind: conda name: aws-crt-cpp - version: 0.28.3 - build: hbe26082_8 - build_number: 8 + version: 0.29.4 + build: h21d7256_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.28.3-hbe26082_8.conda - sha256: a9c23a685929b24fcd032daae36b61c4862912abf0a0a8735aeef53418c5bce6 - md5: 80d5fac04be0e6c2774f57eb7529f145 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.4-h21d7256_1.conda + sha256: 0de8dc3a6a9aab74049d85d407d204623a638ade4221a428cef4d91d25d41ef5 + md5: 963a310ba64fd6a113eb4f7fcf89f935 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 349632 - timestamp: 1729181229435 + size: 354101 + timestamp: 1731787070984 - kind: conda name: aws-crt-cpp - version: 0.28.3 - build: hcc2993b_8 - build_number: 8 + version: 0.29.4 + build: h6832833_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.4-h6832833_1.conda + sha256: 9c94db7881035bd1cfb24985668c5c7a693d70ecbf46e4b23c453774400e4437 + md5: 452a0da8c040f2aa825727af66d05b42 + depends: + - __osx >=11.0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 + - libcxx >=18 + license: Apache-2.0 + license_family: Apache + size: 237267 + timestamp: 1731787157065 +- kind: conda + name: aws-crt-cpp + version: 0.29.4 + build: h8cc6612_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.28.3-hcc2993b_8.conda - sha256: 3b5779785c8700e73be97f63ea778b6dba033a49fd77569c5fddbdd3a53a2600 - md5: e71043206d9db242eae53b70773f7f62 - depends: - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.4-h8cc6612_1.conda + sha256: 7ff3dcac3578f2946dcc2d1953f20369750efdb228ada2a6f894642677cef4ec + md5: 494aaf00b4413cdf961abfbdeb5c24e9 + depends: + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 276668 - timestamp: 1729181269528 + size: 283847 + timestamp: 1731787045666 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: h25d6d5c_1 - build_number: 1 + version: 1.11.449 + build: h1a02111_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.407-h25d6d5c_1.conda - sha256: f05d43f3204887cec9a9853a9217f06562b28161950b5485aed1f8afe42aad17 - md5: 0f2bd0128d59a45c9fd56151eab0b37e + url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.449-h1a02111_2.conda + sha256: 697d0055c4838f882d029d05baf432fb4d6fbebd92d60edfadeb10fea66f1755 + md5: 109ff9aa7347ca004a3f496a5160cdb9 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2931742 - timestamp: 1729235000691 + size: 2951572 + timestamp: 1731927266611 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: h880863c_1 - build_number: 1 + version: 1.11.449 + build: h8f08b23_2 + build_number: 2 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.407-h880863c_1.conda - sha256: 9cea713c0d727def94e29a99cdfe1deb65c241c90bc41c96e1e77777cb84d4c9 - md5: 60877ad5c76505fa4b90ab5567babb3d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.449-h8f08b23_2.conda + sha256: 7b7e17c332d7f382f5f97cefe477cb5e9fae171a00d0c40a78ad6263c64a0af2 + md5: c1111d86333195e42ae29d02d64a545c depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - - libcxx >=17 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2709553 - timestamp: 1729235667236 + size: 2733405 + timestamp: 1731927979855 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: hf265f57_1 - build_number: 1 + version: 1.11.449 + build: hf48a0a1_2 + build_number: 2 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.407-hf265f57_1.conda - sha256: d265e7a2af974f09ba795a900900e36e44e581b3adc7e827ddfd2374337ea89c - md5: 63a6b060807c6885d25f82615d5bd8f2 - depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.449-hf48a0a1_2.conda + sha256: 246d894d4354e1c7bbd1466881e87f3f92396777ebbd8cbebe53efb16ace88c4 + md5: e1cd103f7450254f9513244169ea6a1a + depends: + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2758696 - timestamp: 1729234995101 + size: 2803239 + timestamp: 1731927417845 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: h60f91e5_0 + version: 1.14.0 + build: h1887c18_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.13.0-h60f91e5_0.conda - sha256: b3aecc4e01db67a18891e6e9517ec9b628577bbd2e1b6616d147c7c5f2f28a2b - md5: fc41d5a9f2c98fd37324c20f47b0124b + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.14.0-h1887c18_0.conda + sha256: 8967b3ccee4d74e61f6ec82dd8efb9deb854ee7ba012dfe767b7a92e0ac77724 + md5: e0c3a906a41be769f0ae20ca3e31cfc0 depends: - - libcurl >=8.8.0,<9.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 331714 - timestamp: 1720854524500 + size: 338650 + timestamp: 1728055589907 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: h935415a_0 + version: 1.14.0 + build: h5cfcd09_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.13.0-h935415a_0.conda - sha256: b7e0a22295db2e1955f89c69cefc32810309b3af66df986d9fb75d89f98a80f7 - md5: debd1677c2fea41eb2233a260f48a298 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.14.0-h5cfcd09_0.conda + sha256: fe07debdb089a3db17f40a7f20d283d75284bb4fc269ef727b8ba6fc93f7cb5a + md5: 0a8838771cc2e985cd295e01ae83baf1 depends: - __glibc >=2.17,<3.0.a0 - - libcurl >=8.8.0,<9.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 338134 - timestamp: 1720853194547 + size: 345117 + timestamp: 1728053909574 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: hd01fc5c_0 + version: 1.14.0 + build: hd50102c_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.13.0-hd01fc5c_0.conda - sha256: aff4af38416cf7a81c79e5a3b071ce5aa13ec48da28db0312bc1ebe62cf7273d - md5: 2083f6313e623079db6ee67af00e6b27 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.14.0-hd50102c_0.conda + sha256: f5b91329ed59ffc0be8747784c6e4cc7e56250c54032883a83bc11808ef6a87e + md5: f093a11dcf3cdcca010b20a818fcc6dc depends: - __osx >=11.0 - - libcurl >=8.8.0,<9.0a0 - - libcxx >=16 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=17 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 287922 - timestamp: 1720853302106 + size: 294299 + timestamp: 1728054014060 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: h13ea094_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.8.0-h13ea094_2.conda - sha256: 11b01715cae19390890f29ebb56d36d895feafd787ba929aa10b6ce712f3f4b9 - md5: 383b72f2ee009992b21f4db08a708510 + version: 1.10.0 + build: h113e628_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.10.0-h113e628_0.conda + sha256: 286b31616c191486626cb49e9ceb5920d29394b9e913c23adb7eb637629ba4de + md5: 73f73f60854f325a55f1d31459f2ab73 depends: - - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libcxx >=16 - - openssl >=3.3.1,<4.0a0 + - __glibc >=2.17,<3.0.a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 142135 - timestamp: 1721777696118 + size: 232351 + timestamp: 1728486729511 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: hd126650_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.8.0-hd126650_2.conda - sha256: f85452eca3ae0e156b1d1a321a1a9f4f58d44ff45236c0d8602ab96aaad3c6ba - md5: 36df3cf05459de5d0a41c77c4329634b + version: 1.10.0 + build: h47b0b28_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.10.0-h47b0b28_0.conda + sha256: 1c72423b9beba167d2f01b80dc204da77240a8266f1edb3d89510c852b300d69 + md5: 94e73a7877743a85c57091d8afab2348 depends: - - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 199516 - timestamp: 1721777604325 + size: 217132 + timestamp: 1728488096615 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: hf0f394c_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.8.0-hf0f394c_2.conda - sha256: ac143df6b8596eeee2f770f02013e384f06ac09ecee042ee7f8c5a65f7958330 - md5: 3e74c83218d71b01f988e6bada2f4e22 + version: 1.10.0 + build: hc602bab_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.10.0-hc602bab_0.conda + sha256: bde446b916fff5150606f8ed3e6058ffc55a3aa72381e46f1ab346590b1ae40a + md5: d7b71593a937459f2d4b67e1a4727dc2 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - __osx >=11.0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libcxx >=17 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 182768 - timestamp: 1721779454639 + size: 166907 + timestamp: 1728486882502 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: h17ca4bd_0 + version: 12.13.0 + build: h185ecfd_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.12.0-h17ca4bd_0.conda - sha256: 4955de4131a1b4a16ac1f63d3e6f325904b997e1adb0f3fadf5a3b112eee6803 - md5: 9a26fea6b69f4f02689893366961be49 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.13.0-h185ecfd_1.conda + sha256: 280ec70009a92626054f58e45b168fce393e71a9710587488bd8401628cda481 + md5: 221e1e5ecb2643e113f32b3229d5ba33 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 473009 - timestamp: 1721866393941 + size: 502934 + timestamp: 1728580241002 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: hd2e3451_0 + version: 12.13.0 + build: h3cf044e_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.12.0-hd2e3451_0.conda - sha256: 69a0f5c2a08a1a40524b343060debb8d92295e2cc5805c3db56dad7a41246a93 - md5: 61f1c193452f0daa582f39634627ea33 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.13.0-h3cf044e_1.conda + sha256: 2606260e5379eed255bcdc6adc39b93fb31477337bcd911c121fc43cd29bf394 + md5: 7eb66060455c7a47d9dcdbfa9f46579b depends: - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 523120 - timestamp: 1721865032339 + size: 549342 + timestamp: 1728578123088 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: hfde595f_0 + version: 12.13.0 + build: h7585a09_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.12.0-hfde595f_0.conda - sha256: f733f4acedd8bf1705c780e0828f0b83242ae7e72963aef60d12a7c5b3a8640d - md5: f2c935764fdacd0fafc05f975fd347e0 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.13.0-h7585a09_1.conda + sha256: 08d52d130addc0fb55d5ba10d9fa483e39be25d69bac7f4c676c2c3069207590 + md5: 704238ef05d46144dae2e6b5853df8bc depends: - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libcxx >=17 license: MIT license_family: MIT - size: 419976 - timestamp: 1721865180569 + size: 438636 + timestamp: 1728578216193 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: h10ac4d7_1 + version: 12.8.0 + build: h1b94036_1 build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.7.0-h10ac4d7_1.conda - sha256: 1030fa54497a73eb78c509d451f25701e2e781dc182e7647f55719f1e1f9bee8 - md5: ab6d507ad16dbe2157920451d662e4a1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.8.0-h1b94036_1.conda + sha256: 146e76aac169e3dbdce5d3b142b7930ac643795c765e7655d1989905ec7d3231 + md5: 793b1080ab2d958980f137a8643cd6e8 depends: - - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 143039 - timestamp: 1721832724803 + size: 140832 + timestamp: 1728565334900 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: h68dbd84_1 + version: 12.8.0 + build: h736e048_1 build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.7.0-h68dbd84_1.conda - sha256: a4e0afd65ffed6cc788f13068b452d253e4bfa61d8ca0ebaa80e26fe62fed5f7 - md5: 368c9e33d8cc763bf883ca12c163b93c + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.8.0-h736e048_1.conda + sha256: 273475f002b091b66ce7366da04bf164c3732c03f8692ab2ee2d23335b6a82ba + md5: 13de36be8de3ae3f05ba127631599213 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __glibc >=2.17,<3.0.a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 135615 - timestamp: 1721834497638 + size: 149312 + timestamp: 1728563338704 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: hcf3b6fd_1 + version: 12.8.0 + build: h9ca1f76_1 build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.7.0-hcf3b6fd_1.conda - sha256: 3fdf9c0337c48706cffe2e4c761cdea4132fb6dbd1f144d969c28afd903cf256 - md5: df7e01bcf8f3a9bfb0ab06778f915f29 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.8.0-h9ca1f76_1.conda + sha256: 77ab04e8fe5636a2de9c718f72a43645f7502cd208868c8a91ffba385547d585 + md5: 7a187cd7b1445afc80253bb186a607cc depends: - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libcxx >=17 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 119821 - timestamp: 1721832870493 + size: 121278 + timestamp: 1728563418777 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h082e32e_1 + version: 12.12.0 + build: h37d6d07_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.11.0-h082e32e_1.conda - sha256: 3c288dc1ae6bff9a1e21ab5196d13ab486850f61ec649a743a87bf9726901abf - md5: 16b05d31f626717668f01c01a970115f + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.12.0-h37d6d07_1.conda + sha256: 4079c617a75682e49bae63670d58fd6078ccfbbe55ca1f994acab3a74ab6bbcc + md5: b724f3b4b7f4e9b36c58cbe3ed8610a2 depends: - - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 189065 - timestamp: 1721925275724 + size: 260547 + timestamp: 1728730924071 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h325d260_1 + version: 12.12.0 + build: ha633028_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.11.0-h325d260_1.conda - sha256: 1726fa324bb402e52d63227d6cb3f849957cd6841f8cb8aed58bb0c81203befb - md5: 11d926d1f4a75a1b03d1c053ca20424b + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.12.0-ha633028_1.conda + sha256: 5371e4f3f920933bb89b926a85a67f24388227419abd6e99f6086481e5e8d5f2 + md5: 7c1980f89dd41b097549782121a73490 depends: - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 274492 - timestamp: 1721925100762 + size: 287366 + timestamp: 1728729530295 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h36e5eb4_1 + version: 12.12.0 + build: hcdd55da_1 build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.11.0-h36e5eb4_1.conda - sha256: ba0cf9514c12d9fa56a15966badaec450d11ab78adef690501e38bb0f78aeb5f - md5: db65bbb89c21436f5471f93b09a7c09c + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.12.0-hcdd55da_1.conda + sha256: f48523f8aa0b5b80f45a92f0556b388dd96f44ac2dc2f44a01d08c1822eec97d + md5: c49fbc5233fcbaa86391162ff1adef38 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __osx >=11.0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libcxx >=17 license: MIT license_family: MIT - size: 243908 - timestamp: 1721926367577 + size: 196032 + timestamp: 1728729672889 - kind: conda name: babel version: 2.16.0 @@ -3934,368 +3937,368 @@ packages: timestamp: 1729655345825 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_h00cdb27_1 + version: '20240722.0' + build: cxx17_h5888daf_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.2-cxx17_h00cdb27_1.conda - sha256: a9517c8683924f4b3b9380cdaa50fdd2009cd8d5f3918c92f64394238189d3cb - md5: f16963d88aed907af8b90878b8d8a05c + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda + sha256: 8f91429091183c26950f1e7ffa730e8632f0627ba35d2fccd71df31628c9b4e5 + md5: e1f604644fe8d78e22660e2fec6756bc depends: - - __osx >=11.0 - - libcxx >=16 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - libabseil-static =20240722.0=cxx17* + - abseil-cpp =20240722.0 license: Apache-2.0 license_family: Apache - size: 1136123 - timestamp: 1720857649214 + size: 1310521 + timestamp: 1727295454064 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_h0a1ffab_1 + version: '20240722.0' + build: cxx17_h5ad3122_1 build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.2-cxx17_h0a1ffab_1.conda - sha256: a6e1a6f13fd49c24238373838c266101a2bf3b521b0a36a3a7e586b40f50ec5b - md5: 9cadd103cf89edb2ea68d33728511158 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda + sha256: 590e47dce38031a8893e70491f3b71e214de7781cab53b6f017aa6f6841cb076 + md5: 6fe6b3694c4792a8e26755d3b06f0b80 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libgcc >=13 + - libstdcxx >=13 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - abseil-cpp =20240722.0 + - libabseil-static =20240722.0=cxx17* license: Apache-2.0 license_family: Apache - size: 1283386 - timestamp: 1720857389114 + size: 1328502 + timestamp: 1727295490806 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_he02047a_1 + version: '20240722.0' + build: cxx17_hf9b8971_1 build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda - sha256: 945396726cadae174a661ce006e3f74d71dbd719219faf7cc74696b267f7b0b5 - md5: c48fc56ec03229f294176923c3265c05 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda + sha256: 90bf08a75506dfcf28a70977da8ab050bcf594cd02abd3a9d84a22c9e8161724 + md5: 706da5e791c569a7b9814877098a6a0a depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __osx >=11.0 + - libcxx >=17 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - libabseil-static =20240722.0=cxx17* + - abseil-cpp =20240722.0 license: Apache-2.0 license_family: Apache - size: 1264712 - timestamp: 1720857377573 + size: 1179072 + timestamp: 1727295571173 - kind: conda name: libarrow - version: 17.0.0 - build: had3b6fe_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-17.0.0-had3b6fe_16_cpu.conda - sha256: 9aa5598878cccc29de744ebc4b501c4a5a43332973edfdf0a19ddc521bd7248f - md5: c899e532e16be21570d32bc74ea3d34f + version: 18.0.0 + build: h2409f62_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.0.0-h2409f62_7_cpu.conda + sha256: baf7322466c5849f0ef4c8bab9f394c1448fc7a1d42f74d775b49e20cea8fcf8 + md5: da6e0816fe9639c270cafdec68b411d6 depends: - - __glibc >=2.17,<3.0.a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + - __osx >=11.0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 - - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - - libgcc >=13 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx >=13 + - libcxx >=18 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 - arrow-cpp <0.0a0 - - apache-arrow-proc =*=cpu license: Apache-2.0 license_family: APACHE - size: 8495428 - timestamp: 1726669963852 + size: 5455595 + timestamp: 1731789726593 - kind: conda name: libarrow - version: 17.0.0 - build: hc6a7651_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-17.0.0-hc6a7651_16_cpu.conda - sha256: 1facd5aa7140031be0f68733ab5e413ea1505da40548e27a173b2407046f36b5 - md5: 05fecc4ae5930dc548327980a4bc7a83 + version: 18.0.0 + build: h3b997a5_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.0.0-h3b997a5_7_cpu.conda + sha256: d8e179b123ca9f62b83115091d3936c64d55506fef9c516b90cd3f2bdea304ca + md5: 32897a50e7f68187c4a524c439c0943c depends: - - __osx >=11.0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 + - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - - libcxx >=17 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 + - libgcc >=13 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: - - apache-arrow-proc =*=cpu - arrow-cpp <0.0a0 + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 license: Apache-2.0 license_family: APACHE - size: 5318871 - timestamp: 1726669928492 + size: 8714651 + timestamp: 1731789983840 - kind: conda name: libarrow - version: 17.0.0 - build: hccffc7f_16_cpu - build_number: 16 + version: 18.0.0 + build: hf19f309_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-17.0.0-hccffc7f_16_cpu.conda - sha256: b71e81d0a685ad5832df0c1762d613be82d14a165e984621e0c874cd885a5df4 - md5: adc3e7dd910df20ef4a968f09fe90da0 - depends: - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.0.0-hf19f309_7_cpu.conda + sha256: 83334f90a1759d91324c3cfcdcf4157018020f33901d1833ca28e9a912a4f89a + md5: e42e43720b5203a827bbd1ff05182afa + depends: + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - libgcc >=13 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 - libstdcxx >=13 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: - - apache-arrow-proc =*=cpu - arrow-cpp <0.0a0 + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 license: Apache-2.0 license_family: APACHE - size: 7818979 - timestamp: 1726670314145 + size: 7997233 + timestamp: 1731791153311 - kind: conda name: libarrow-acero - version: 17.0.0 - build: h5888daf_16_cpu - build_number: 16 + version: 18.0.0 + build: h286801f_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.0.0-h286801f_7_cpu.conda + sha256: 8df47c06ad5b839393aa4703721385d3529a64971227a3a342a1100eeb2fbe78 + md5: 67a94caeec254580852dd71b0cb5bfc7 + depends: + - __osx >=11.0 + - libarrow 18.0.0 h2409f62_7_cpu + - libcxx >=18 + license: Apache-2.0 + license_family: APACHE + size: 491285 + timestamp: 1731789825049 +- kind: conda + name: libarrow-acero + version: 18.0.0 + build: h5888daf_7_cpu + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-17.0.0-h5888daf_16_cpu.conda - sha256: 0ff4c712c7c61e60708c6ef4f8158200059e0f63c25d0a54c8e4cca7bd153d86 - md5: 18f796aae018a26a20ac51d19de69115 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.0.0-h5888daf_7_cpu.conda + sha256: bc0aa7f6c05c097f224cb2a8f72d22a5cde7ef239fde7a57f18061bf74776cd5 + md5: 786a275d019708cd1c963b12a8fb0c72 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu + - libarrow 18.0.0 h3b997a5_7_cpu - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 608267 - timestamp: 1726669999941 + size: 618726 + timestamp: 1731790016942 - kind: conda name: libarrow-acero - version: 17.0.0 - build: h5ad3122_16_cpu - build_number: 16 + version: 18.0.0 + build: h5ad3122_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-17.0.0-h5ad3122_16_cpu.conda - sha256: be9f73a92a00d991cc5946705c83c7b449f8cea6709ad29a2e05d6db7beb4b54 - md5: 0913ad25f0ebb327458c25d38bf9cf45 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.0.0-h5ad3122_7_cpu.conda + sha256: dda002b70f6ba368057ba9164eabdc0101a979eab329d3269ec4e615c07292c8 + md5: eaec91ad6d3dd2e459744e3116c68553 depends: - - libarrow 17.0.0 hccffc7f_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 573902 - timestamp: 1726670347811 + size: 585513 + timestamp: 1731791202130 - kind: conda - name: libarrow-acero - version: 17.0.0 - build: hf9b8971_16_cpu - build_number: 16 + name: libarrow-dataset + version: 18.0.0 + build: h286801f_7_cpu + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-17.0.0-hf9b8971_16_cpu.conda - sha256: c9ff43babc0acbd864584ed1720cf063715589e31e9e2024b90d2094d4f20d38 - md5: 319bd2a8c30dffa54d6ad69847f16de1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.0.0-h286801f_7_cpu.conda + sha256: 3d17beb5e336507443f436f21658e0baf6d6dbacc83938a60e7eac20886e5f78 + md5: 75cec89177549b4a87faa6c952fb07a6 depends: - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libcxx >=17 + - libarrow 18.0.0 h2409f62_7_cpu + - libarrow-acero 18.0.0 h286801f_7_cpu + - libcxx >=18 + - libparquet 18.0.0 hda0ea68_7_cpu license: Apache-2.0 license_family: APACHE - size: 483187 - timestamp: 1726670022814 + size: 497438 + timestamp: 1731791003104 - kind: conda name: libarrow-dataset - version: 17.0.0 - build: h5888daf_16_cpu - build_number: 16 + version: 18.0.0 + build: h5888daf_7_cpu + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-17.0.0-h5888daf_16_cpu.conda - sha256: e500e0154cf3ebb41bed3bdf41bd0ff5e0a6b7527a46ba755c05e59c8036e442 - md5: 5400efd6bf101674e0ce170906a0f7cb + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.0.0-h5888daf_7_cpu.conda + sha256: ecfcea86bf62a498eb59bfa28c8d6e28e842e9c8eeb594d059ef0fdc7064154f + md5: a742b9a0452b55020ccf662721c1ce44 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu - - libarrow-acero 17.0.0 h5888daf_16_cpu + - libarrow 18.0.0 h3b997a5_7_cpu + - libarrow-acero 18.0.0 h5888daf_7_cpu - libgcc >=13 - - libparquet 17.0.0 h39682fd_16_cpu + - libparquet 18.0.0 h6bd9018_7_cpu - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 585061 - timestamp: 1726670063965 + size: 594424 + timestamp: 1731790074886 - kind: conda name: libarrow-dataset - version: 17.0.0 - build: h5ad3122_16_cpu - build_number: 16 + version: 18.0.0 + build: h5ad3122_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-17.0.0-h5ad3122_16_cpu.conda - sha256: 276af4de42960692a2ee34630659be11eb1e83552ec4752d59cc96e244382560 - md5: 2dc1bbff088399cca7137501cef4a741 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.0.0-h5ad3122_7_cpu.conda + sha256: e2c4cbeef3862b9446ab7052c5889c0923b97d77582fd10437744bcf75f24e05 + md5: 1b769328f659c977a4b72235bbcdaf9c depends: - - libarrow 17.0.0 hccffc7f_16_cpu - - libarrow-acero 17.0.0 h5ad3122_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu + - libarrow-acero 18.0.0 h5ad3122_7_cpu - libgcc >=13 - - libparquet 17.0.0 h501616e_16_cpu + - libparquet 18.0.0 h23a96eb_7_cpu - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 558058 - timestamp: 1726670424141 -- kind: conda - name: libarrow-dataset - version: 17.0.0 - build: hf9b8971_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-17.0.0-hf9b8971_16_cpu.conda - sha256: e77d3c6825384c232f61fd3602a32507b66410dbe8879cd69a89b0fc49489533 - md5: 67ea0ef775de4c394c3c7db991297ffa - depends: - - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libarrow-acero 17.0.0 hf9b8971_16_cpu - - libcxx >=17 - - libparquet 17.0.0 hf0ba9ef_16_cpu - license: Apache-2.0 - license_family: APACHE - size: 491606 - timestamp: 1726671006156 + size: 567511 + timestamp: 1731791297133 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: h08b7278_16_cpu - build_number: 16 + version: 18.0.0 + build: h14ec2bd_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-17.0.0-h08b7278_16_cpu.conda - sha256: 8f4179180db0ab8b7e759699e40533d893082e4556d2d6b81b20224e60312fa9 - md5: c677e8946781fd3b57ef3b8b1b883f4d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.0.0-h14ec2bd_7_cpu.conda + sha256: f9c63c5ad5629d8891bafc100bc8a8e0844ee73b52189a6dcb59522790d93635 + md5: 3c0517a4c9a67370e9279c3b9bc2ce2b depends: - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 hccffc7f_16_cpu - - libarrow-acero 17.0.0 h5ad3122_16_cpu - - libarrow-dataset 17.0.0 h5ad3122_16_cpu + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 hf19f309_7_cpu + - libarrow-acero 18.0.0 h5ad3122_7_cpu + - libarrow-dataset 18.0.0 h5ad3122_7_cpu - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 537621 - timestamp: 1726670458067 + size: 523066 + timestamp: 1731791341708 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: hbf8b706_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-17.0.0-hbf8b706_16_cpu.conda - sha256: 6880b3c8fb88ee6c0bbae34b0efea86567ccec1b8cd8a3662b8b8c6dfeb5e87a - md5: b739c909163c38f85f40f5650ab2aeb2 + version: 18.0.0 + build: h5c8f2c3_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.0.0-h5c8f2c3_7_cpu.conda + sha256: f4e12c8f48449b47ec7642f5cc0705d59e59c608d563e2848ffceec779c7c220 + md5: be76013fa3fdaec2c0c504e6fdfd282d depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libarrow-acero 17.0.0 hf9b8971_16_cpu - - libarrow-dataset 17.0.0 hf9b8971_16_cpu - - libcxx >=17 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 h3b997a5_7_cpu + - libarrow-acero 18.0.0 h5888daf_7_cpu + - libarrow-dataset 18.0.0 h5888daf_7_cpu + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 472812 - timestamp: 1726671149860 + size: 528172 + timestamp: 1731790101854 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: hf54134d_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-17.0.0-hf54134d_16_cpu.conda - sha256: 53f3d5f12c9ea557f33a4e1cf9067ce2dbb4211eff0a095574eeb7f0528bc044 - md5: 1cbc3fb1ee28c99e5f8c52920a7717a3 + version: 18.0.0 + build: h6a6e5c5_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.0.0-h6a6e5c5_7_cpu.conda + sha256: 775c202c379c712f3e77d43ce54d3f9a7ef8dd37d3b68911e886b89f5502eeac + md5: 2a3910690b531fdc9553e2889fda97bf depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 had3b6fe_16_cpu - - libarrow-acero 17.0.0 h5888daf_16_cpu - - libarrow-dataset 17.0.0 h5888daf_16_cpu - - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx >=13 + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 h2409f62_7_cpu + - libarrow-acero 18.0.0 h286801f_7_cpu + - libarrow-dataset 18.0.0 h286801f_7_cpu + - libcxx >=18 + - libprotobuf >=5.28.2,<5.28.3.0a0 license: Apache-2.0 license_family: APACHE - size: 550960 - timestamp: 1726670093831 + size: 459246 + timestamp: 1731791195089 - kind: conda name: libblas version: 3.9.0 @@ -4667,18 +4670,18 @@ packages: timestamp: 1726659794676 - kind: conda name: libcxx - version: 19.1.3 + version: 19.1.4 build: ha82da77_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.3-ha82da77_0.conda - sha256: 6d062760c6439e75b9a44d800d89aff60fe3441998d87506c62dc94c50412ef4 - md5: bf691071fba4734984231617783225bc + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.4-ha82da77_0.conda + sha256: 342896ebc1d6acbf022ca6df006a936b9a472579e91e3c502cb1f52f218b78e9 + md5: a2d3d484d95889fccdd09498d8f6bf9a depends: - __osx >=11.0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 520771 - timestamp: 1730314603920 + size: 520678 + timestamp: 1732060258949 - kind: conda name: libedit version: 3.1.20191231 @@ -5105,212 +5108,214 @@ packages: timestamp: 1729089357313 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: h435de7b_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.29.0-h435de7b_0.conda - sha256: c8ee42a4acce5227d220ec6500f6872d52d82e478c76648b9ff57dd2d86429bd - md5: 5d95d9040c4319997644f68e9aefbe70 + version: 2.31.0 + build: h3888205_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.31.0-h3888205_0.conda + sha256: 603b0bd55980f5bf97911b327c9e469cf953c482f112b561dc9c1c7608bbdc29 + md5: 5b3d9a0327c4f7c569162f10acaf6bb4 depends: - - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 1241649 - timestamp: 1725640926284 + size: 1246720 + timestamp: 1731122940037 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: hbb89541_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.29.0-hbb89541_0.conda - sha256: a604681e3a6a7b6214df0406afd1a225349e9cd1f8c177826140811315a938ba - md5: a2ca6f7068595e4c3e2ee8214106786b + version: 2.31.0 + build: h804f50b_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.31.0-h804f50b_0.conda + sha256: b2de99c83516236ff591d30436779f8345bcc11bb0ec76a7ca3a38a3b23b6423 + md5: 35ab838423b60f233391eb86d324a830 depends: + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 1231400 - timestamp: 1725642021621 + size: 1248705 + timestamp: 1731122589027 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: hfa33a2f_0 + version: 2.31.0 + build: h8d8be31_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.29.0-hfa33a2f_0.conda - sha256: 1f42048702d773a355d276d24313ac63781a331959fc3662c6be36e979d7845c - md5: f78c7bd435ee45f4661daae9e81ddf13 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.31.0-h8d8be31_0.conda + sha256: 184d650d55453a40935c128ea309088ae52e15a68cd87ab17ae7c77704251168 + md5: a338736f1514e6f999db8726fe0965b1 depends: - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 - - libcxx >=17 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=18 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 866727 - timestamp: 1725640714587 + size: 873497 + timestamp: 1731121684939 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 + version: 2.31.0 build: h0121fbd_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.29.0-h0121fbd_0.conda - sha256: 2847c9e940b742275a7068e0a742bdabf211bf0b2bbb1453592d6afb47c7e17e - md5: 06dfd5208170b56eee943d9ac674a533 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.31.0-h0121fbd_0.conda + sha256: 3c38b0a80441f82323dc5a72b96c0dd7476bd5184fbfcdf825a8e15249c849af + md5: 568d6a09a6ed76337a7b97c84ae7c0f8 depends: - __glibc >=2.17,<3.0.a0 - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - libgcc >=13 - - libgoogle-cloud 2.29.0 h435de7b_0 + - libgoogle-cloud 2.31.0 h804f50b_0 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 781655 - timestamp: 1725641060970 + size: 782150 + timestamp: 1731122728715 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 - build: h90fd6fa_0 + version: 2.31.0 + build: h7081f7f_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.29.0-h90fd6fa_0.conda - sha256: ec80383fbb6fae95d2ff7d04ba46b282ab48219b7ce85b3cd5ee7d0d8bae74e1 - md5: baee0b9cb1c5319f370a534ca5a16267 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.31.0-h7081f7f_0.conda + sha256: 01f5156584b816d34270a60a61f6b6561f2a01cb3b4eeb455a4e1808d763d486 + md5: 548fd1d31741ee6b13df4124db4a9f5f depends: - __osx >=11.0 - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - - libcxx >=17 - - libgoogle-cloud 2.29.0 hfa33a2f_0 + - libcxx >=18 + - libgoogle-cloud 2.31.0 h8d8be31_0 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 535346 - timestamp: 1725641618955 + size: 526858 + timestamp: 1731122580689 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 + version: 2.31.0 build: hb9b2b65_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.29.0-hb9b2b65_0.conda - sha256: d477736704021486ffde0b117290d8c1f29a434f02ab9a21d4458e41212c448f - md5: 5f75545cfccc08fb2f79256e0b8a2fb6 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.31.0-hb9b2b65_0.conda + sha256: 1df4b7b59224d865a574003df12ee36d4a9939e8e7911b4472348730b9c2a0e8 + md5: 53897114489b4df10e1680bf189aa306 depends: - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - libgcc >=13 - - libgoogle-cloud 2.29.0 hbb89541_0 + - libgoogle-cloud 2.31.0 h3888205_0 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 736327 - timestamp: 1725642186647 + size: 737686 + timestamp: 1731123086764 - kind: conda name: libgrpc - version: 1.62.2 - build: h15f2491_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.2-h15f2491_0.conda - sha256: 28241ed89335871db33cb6010e9ccb2d9e9b6bb444ddf6884f02f0857363c06a - md5: 8dabe607748cb3d7002ad73cd06f1325 + version: 1.67.1 + build: h36c5df4_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda + sha256: 1f6673d9d866048c9cf28fd56e6874ffc7e2c53c47d7071cb367d5fc2dde16a7 + md5: b946137e362e98a55a77fdf0b20a7739 depends: - - c-ares >=1.28.1,<2.0a0 + - c-ares >=1.32.3,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 7316832 - timestamp: 1713390645548 + size: 7131846 + timestamp: 1730236305327 - kind: conda name: libgrpc - version: 1.62.2 - build: h98a9317_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.62.2-h98a9317_0.conda - sha256: ae5fe7ba0c5c599f0e20fa08be436518b7ef25ab6f705e8c7fcf0d0f34525f72 - md5: 2a669953ec0f08c2cc56bb43fed78de8 + version: 1.67.1 + build: hc2c308b_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda + sha256: 870550c1faf524e9a695262cd4c31441b18ad542f16893bd3c5dbc93106705f7 + md5: 4606a4647bfe857e3cfe21ca12ac3afb depends: - - c-ares >=1.28.1,<2.0a0 + - __glibc >=2.17,<3.0.a0 + - c-ares >=1.32.3,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 7395259 - timestamp: 1713390742813 + size: 7362336 + timestamp: 1730236333879 - kind: conda name: libgrpc - version: 1.62.2 - build: h9c18a4f_0 + version: 1.67.1 + build: hc70892a_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.2-h9c18a4f_0.conda - sha256: d2c5b5a828f6f1242c11e8c91968f48f64446f7dd5cbfa1197545e465eb7d47a - md5: e624fc11026dbb84c549435eccd08623 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda + sha256: d2393fcd3c3584e5d58da4122f48bcf297567d2f6f14b3d1fcbd34fdd5040694 + md5: 624e27571fde34f8acc2afec840ac435 depends: - - c-ares >=1.28.1,<2.0a0 + - __osx >=11.0 + - c-ares >=1.34.2,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 5016525 - timestamp: 1713392846329 + size: 4882208 + timestamp: 1730236299095 - kind: conda name: libiconv version: '1.17' @@ -5558,179 +5563,178 @@ packages: timestamp: 1730773029647 - kind: conda name: libparquet - version: 17.0.0 - build: h39682fd_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-17.0.0-h39682fd_16_cpu.conda - sha256: 09bc64111e5e1e9f5fee78efdd62592e01c681943fe6e91b369f6580dc8726c4 - md5: dd1fee2da0659103080fdd74004656df + version: 18.0.0 + build: h23a96eb_7_cpu + build_number: 7 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.0.0-h23a96eb_7_cpu.conda + sha256: 405cd8b36b454aac8d8f3f698feb4c8c4fca99eae9724b9312bac1ce0653ec5d + md5: 010433ece4a8287643b92c348c48068d depends: - - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu - libgcc >=13 - libstdcxx >=13 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 1186069 - timestamp: 1726670048098 + size: 1122091 + timestamp: 1731791274767 - kind: conda name: libparquet - version: 17.0.0 - build: h501616e_16_cpu - build_number: 16 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-17.0.0-h501616e_16_cpu.conda - sha256: 7d834aec3ee3cc1069bd780862bbb0f339265e2386692252f375c1e380bc8f5f - md5: 0f366d30bc01ea47e04b7034d408d6d4 + version: 18.0.0 + build: h6bd9018_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.0.0-h6bd9018_7_cpu.conda + sha256: 908e21eab32839375ebe59952e783e40645ca5083b64001679960f2e38e64c31 + md5: 687870f7d9cba5262fdd7e730e9e9ba8 depends: - - libarrow 17.0.0 hccffc7f_16_cpu + - __glibc >=2.17,<3.0.a0 + - libarrow 18.0.0 h3b997a5_7_cpu - libgcc >=13 - libstdcxx >=13 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 1104185 - timestamp: 1726670404384 + size: 1212405 + timestamp: 1731790060397 - kind: conda name: libparquet - version: 17.0.0 - build: hf0ba9ef_16_cpu - build_number: 16 + version: 18.0.0 + build: hda0ea68_7_cpu + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-17.0.0-hf0ba9ef_16_cpu.conda - sha256: 6ed28f06409b02a9f521ee5e8cf2f4d3fb63a7633c11f2ee7ec2880e78e184e5 - md5: 517ecf2ee0c2822e6120c258f3acd383 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.0.0-hda0ea68_7_cpu.conda + sha256: 8343a369243b7c87993955e39fbbac3617413f4a963e271fda5079b6c8fec7b0 + md5: fd32f3b3115477411f3790eb67272081 depends: - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libcxx >=17 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libarrow 18.0.0 h2409f62_7_cpu + - libcxx >=18 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 873007 - timestamp: 1726670938318 + size: 881594 + timestamp: 1731790946184 - kind: conda name: libprotobuf - version: 4.25.3 - build: hc39d83c_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hc39d83c_1.conda - sha256: f51bde2dfe73968ab3090c1098f520b65a8d8f11e945cb13bf74d19e30966b61 - md5: fa77986d9170450c014586ab87e144f8 + version: 5.28.2 + build: h029595c_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda + sha256: d8c7b6f851bfc53494d9b8e54d473c4f11ab26483a6e64df6f7967563df166b1 + md5: 538dbe0ad9f248e2e109abb9b6809ea5 depends: - - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcxx >=17 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2177164 - timestamp: 1727160770879 + size: 2802876 + timestamp: 1728564881988 - kind: conda name: libprotobuf - version: 4.25.3 - build: hd5b35b9_1 - build_number: 1 + version: 5.28.2 + build: h5b01275_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-hd5b35b9_1.conda - sha256: 8b5e4e31ed93bf36fd14e9cf10cd3af78bb9184d0f1f87878b8d28c0374aa4dc - md5: 06def97690ef90781a91b786cb48a0a9 + url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda + sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421 + md5: ab0bff36363bec94720275a681af8b83 depends: - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2883090 - timestamp: 1727161327039 + size: 2945348 + timestamp: 1728565355702 - kind: conda name: libprotobuf - version: 4.25.3 - build: hea2c3fa_1 - build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-hea2c3fa_1.conda - sha256: dabf4632d39b29444d157c226f4df146fa347c82540c39bf6f9545f2a7d0f40c - md5: c06acb4f972c516696590e6d6ffb69c7 + version: 5.28.2 + build: h8f0b736_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda + sha256: f732a6fa918428e2d5ba61e78fe11bb44a002cc8f6bb74c94ee5b1297fefcfd8 + md5: d2cb5991f2fb8eb079c80084435e9ce6 depends: + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libgcc >=13 - - libstdcxx >=13 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2613905 - timestamp: 1727160673211 + size: 2374965 + timestamp: 1728565334796 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h5a48ba9_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda - sha256: 3f3c65fe0e9e328b4c1ebc2b622727cef3e5b81b18228cfa6cf0955bc1ed8eff - md5: 41c69fba59d495e8cf5ffda48a607e35 + version: 2024.07.02 + build: h18dbdb1_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda + sha256: 96d4fdac28d5af38c38f90c22cb0aa9a90affae13ca8ba24bd1eb60b789df8ff + md5: f1800796b0efc4bbc5b001d845545111 depends: - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 232603 - timestamp: 1708946763521 + size: 203516 + timestamp: 1728778974654 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h7b2c953_2 - build_number: 2 + version: 2024.07.02 + build: h2348fd5_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda - sha256: c8a0a6e7a627dc9c66ffb8858f8f6d499f67fd269b6636b25dc5169760610f05 - md5: 0b7b2ced046d6b5fe6e9d46b1ee0324c + url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda + sha256: 6facca42cfc85a05b33e484a8b0df7857cc092db34806946d022270098d8d20f + md5: 5a7065309a66097738be6a06fd04b7ef depends: + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 171443 - timestamp: 1708947163461 + size: 165956 + timestamp: 1728779107218 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h9d008c2_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2023.09.01-h9d008c2_2.conda - sha256: 1da5cfd57091a52c822ec9580694f1e07817e53db43b0407a477daa2d2a16fcd - md5: 387c114aadcaeb02210f646c4b5efca2 + version: 2024.07.02 + build: hbbce691_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda + sha256: f8ad6a4f6d4fd54ebe3e5e712a01e663222fc57f49d16b6b8b10c30990dafb8f + md5: 2124de47357b7a516c0a3efd8f88c143 depends: + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 217529 - timestamp: 1708946830978 + size: 211096 + timestamp: 1728778964655 - kind: conda name: libsodium version: 1.0.20 @@ -5925,62 +5929,59 @@ packages: timestamp: 1729089498541 - kind: conda name: libthrift - version: 0.20.0 - build: h0e7cc3e_1 - build_number: 1 + version: 0.21.0 + build: h0e7cc3e_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.20.0-h0e7cc3e_1.conda - sha256: 3e70dfda31a3ce28310c86cc0001f20abb78c917502e12c94285a1337fe5b9f0 - md5: d0ed81c4591775b70384f4cc78e05cd1 + url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda + sha256: ebb395232973c18745b86c9a399a4725b2c39293c9a91b8e59251be013db42f0 + md5: dcb95c0a98ba9ff737f7ae482aef7833 depends: - __glibc >=2.17,<3.0.a0 - libevent >=2.1.12,<2.1.13.0a0 - - libgcc-ng >=13 - - libstdcxx-ng >=13 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 417404 - timestamp: 1724652349098 + size: 425773 + timestamp: 1727205853307 - kind: conda name: libthrift - version: 0.20.0 - build: h154c74f_1 - build_number: 1 + version: 0.21.0 + build: h154c74f_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.20.0-h154c74f_1.conda - sha256: 283a6fbac3e6de97f25144306fb46dc5f6d6fc7f4052a4f8ec6da0cb806025b5 - md5: c0bd829d4ef1b1be0c5b8bf206c0cd6d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.21.0-h154c74f_0.conda + sha256: f04ab1417aca1687edff9c30d8423ace285eb8c053dc16d595c6e47cfeefb274 + md5: c28792bf37f4ecdce8e3cb9e40750650 depends: - libevent >=2.1.12,<2.1.13.0a0 - - libgcc-ng >=13 - - libstdcxx-ng >=13 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 408434 - timestamp: 1724652544563 + size: 417329 + timestamp: 1727205944238 - kind: conda name: libthrift - version: 0.20.0 - build: h64651cc_1 - build_number: 1 + version: 0.21.0 + build: h64651cc_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.20.0-h64651cc_1.conda - sha256: b6afcbc934258e0474e0f1059bc7b23865723b902062f2f2910e0370e6495401 - md5: 4cf2e5233320648397184415f380c891 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.21.0-h64651cc_0.conda + sha256: 7a6c7d5f58cbbc2ccd6493b4b821639fdb0701b9b04c737a949e8cb6adf1c9ad + md5: 7ce2bd2f650f8c31ad7ba4c7bfea61b7 depends: - __osx >=11.0 - libcxx >=17 - libevent >=2.1.12,<2.1.13.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 315041 - timestamp: 1724657608736 + size: 324342 + timestamp: 1727206096912 - kind: conda name: libutf8proc version: 2.8.0 @@ -6231,20 +6232,19 @@ packages: timestamp: 1727963148474 - kind: conda name: llvm-openmp - version: 19.1.3 - build: hb52a8e5_0 + version: 19.1.4 + build: hdb05f8b_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.3-hb52a8e5_0.conda - sha256: 49a8940e727aa82ee034fa9a60b3fcababec41b3192d955772aab635a5374b82 - md5: dd695d23e78d1ca4fecce969b1e1db61 + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.4-hdb05f8b_0.conda + sha256: dfdcd8de37899d984326f9734b28f46f80b88c068e44c562933a8b3117f2401a + md5: 76ca179ec970bea6e275e2fa477c2d3c depends: - __osx >=11.0 constrains: - - openmp 19.1.3|19.1.3.* + - openmp 19.1.4|19.1.4.* license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 280488 - timestamp: 1730364082380 + size: 281554 + timestamp: 1732102484807 - kind: conda name: lz4-c version: 1.9.4 @@ -6379,76 +6379,76 @@ packages: timestamp: 1713250613726 - kind: conda name: max - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - sha256: fa56e98447bb9722c73e114e668327474621732929a3b3bf03d706558c0b41df - md5: 099bfd8c69724fb21c86aa6440b07ed4 + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + sha256: c6e86f0fbbd57d65c245b58c9a39f64301c769c587f75aa550f0a3f64629cbec + md5: f8203ce4409d971e909d91b10bf2fa89 depends: - - max-core ==24.6.0.dev2024111816 release - - max-python >=24.6.0.dev2024111816,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111816 release - - mblack ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release + - max-python >=24.6.0.dev2024112020,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024112020 release + - mblack ==24.6.0.dev2024112020 release license: LicenseRef-Modular-Proprietary - size: 9924 - timestamp: 1731949226511 + size: 9918 + timestamp: 1732136899196 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda - sha256: 4bbaf8418f56808a9a7ed147755de1fd9ff479bb5db60e0b0060f501007a6d03 - md5: 9239cc63963a1e4a15ce32f6ec8fa36c + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024112020-release.conda + sha256: 540fd3163a864bf60fae9a2afd86f111b54afd76f6dfb59aae9299d8189ea220 + md5: 85cd4cfe4bed145b377b9379319c39fc depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 271464508 - timestamp: 1731949226509 + size: 270965073 + timestamp: 1732136835508 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda - sha256: 232a2ca14f07fc562bddb44ecec6848e31f026cfa93267737fd329c51cb26a66 - md5: 9b6d01a1fe29a43ded2016a8c6a6a2c0 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024112020-release.conda + sha256: 4e3e1104c4b2c3f26134bf4b865fef2af26cd33aa453244c59cbc27bf58340d6 + md5: 1b76c22a75e2f55fdd8ec123cdfb82aa depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 275099918 - timestamp: 1731949126926 + size: 274655105 + timestamp: 1732136899194 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda - sha256: e8fc65d3b90b8557a6f64e0aa7700b97f4d00a2e2d2bbee651f918986dacb9cb - md5: fd415a5af0a193bfa9241e17eaf3747d + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024112020-release.conda + sha256: ae86df0b9d20d20756d16a0b66e0d2f12427a496e28d639589fba76c8e508cd7 + md5: 582615e4dae591fac5d708eaec594ebc depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 233285763 - timestamp: 1731949312758 + size: 233689138 + timestamp: 1732137063646 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda - sha256: a625852f27ef5a5f3ad3142199eab2bd81c66e44d5b46bddcfd4f68001372eda - md5: a4f8b2d1c96022cac3bff1a1e2de7770 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024112020-3.12release.conda + sha256: 9211cfb8440bf028cce5ec4554f1377ef2524e5bc2532b26029d5072a01a59b4 + md5: 83c7b6adf2b7567243a2e8682f7f33a2 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6468,18 +6468,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 136809568 - timestamp: 1731949226522 + size: 137376849 + timestamp: 1732136835521 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda - sha256: cd12e22f775075932eb6aee4d8654fad445ecf08fef09f08fec259d08a8b93fe - md5: dd91853ef7d888e133cca3368f8651bc + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024112020-3.12release.conda + sha256: 21914b325dbf1015b5cb5fef142789721d64fd5ac2f7c6b15b4192a4bb02ae4d + md5: 8b47d04ff478a6b4a66defe8226da80a depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6499,18 +6499,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 140331334 - timestamp: 1731949126939 + size: 140907571 + timestamp: 1732136899208 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda - sha256: 6b96a0d537f247fe3fa9851d5147d57733038ef4ba245510e75d8362b5e5aabf - md5: 6ed7307847e8d9a0592b8bc08c31cf80 + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024112020-3.12release.conda + sha256: bbbbf91f30719bc4a51bc0317c91b9e1716d024b3721a95b37bd058ca1c66d5e + md5: 4893fb00ccdf17ce31d56617288c15f6 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -6530,17 +6530,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 125415344 - timestamp: 1731949312762 + size: 125944186 + timestamp: 1732137063649 - kind: conda name: mblack - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - sha256: 49cab69b1c9539336534907a415e6404b791290bccba5ed61b50b92be7278b6e - md5: 9e7f2d795645d6a04620718dfb10d39c + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda + sha256: d684315cf58ea23860f16a1e305bfc9b8a2c7e39554a6d40d46411a5d6fd50cf + md5: bf7e67dddae76fd3bb6a2f623642b200 depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -6550,8 +6550,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130612 - timestamp: 1731949226516 + size: 130610 + timestamp: 1732136899202 - kind: conda name: mdurl version: 0.1.2 @@ -6584,21 +6584,21 @@ packages: timestamp: 1698947249750 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - sha256: db5710960cab7c1d1c63ecf6916652cc07fdb8cda80528773d410141b3db0076 - md5: 1959b4bee271c31390854e23a85a7815 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda + sha256: 65ee90ebd5d6250b6f12d6e78fea39c287b82f14949aba8df0f47c4cbdbc0be0 + md5: 5f30ae7817d94671df319b612c290550 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary size: 22941 - timestamp: 1731949226517 + timestamp: 1732136899203 - kind: conda name: multidict version: 6.1.0 @@ -6987,61 +6987,58 @@ packages: timestamp: 1731377666602 - kind: conda name: opentelemetry-api - version: 1.27.0 + version: 1.28.2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - sha256: ed8350db9d8f177f2e0eefb4df24c1134f1b39f7ef3e20ac42725a3b860309cd - md5: 947b016e29819585f8f3f82dbb7ede91 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + sha256: e267ed59ea8f357c3471defef796ce4f4555eacd9ee0ed2d47d3dd539ee7ee2f + md5: f1307fb38a8fd2220def45ec1691a21c depends: - deprecated >=1.2.6 - importlib-metadata >=6.0.0,<7.1.0 - python >=3.8 - setuptools >=16.0 license: Apache-2.0 - license_family: APACHE - size: 43708 - timestamp: 1724916819673 + size: 44014 + timestamp: 1731985724169 - kind: conda name: opentelemetry-exporter-otlp-proto-common - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - sha256: 6ec5cc984ad9c0faef329a1a1507d4431f08812b9053be42a2a736ae081dc3c5 - md5: 00e6c03b1437fa6bf3a775bc8f89f677 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + sha256: 838525f5a35f130eb3e6ccf06700ab7574467e8abe19da91e6f0de3b399e77c2 + md5: b00b3a8f0d25d5b18979c73ec051c313 depends: - backoff >=1.10.0,<3.0.0 - - opentelemetry-proto 1.27.0 - - python >=3.8 + - opentelemetry-proto 1.28.2 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 18221 - timestamp: 1724929505617 + size: 18838 + timestamp: 1731991715474 - kind: conda name: opentelemetry-exporter-otlp-proto-http - version: 1.27.0 + version: 1.28.2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda - sha256: b5b86f0f819b5dd05bf0e67ddaa763086194a751aa534bed44fdbf089b317142 - md5: 3caeb0419f4d0f9ac0538c799df15612 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda + sha256: d89b7b0f28dca5ed84d8c3421e3b16683f764c9eebde66cc8858fc183751af69 + md5: 73810c011d2d60914ce8f92fe99564a0 depends: - deprecated >=1.2.6 - googleapis-common-protos ~=1.52 - - opentelemetry-api 1.27.0 - - opentelemetry-exporter-otlp-proto-common 1.27.0 - - opentelemetry-proto 1.27.0 - - opentelemetry-sdk 1.27.0 + - opentelemetry-api ~=1.15 + - opentelemetry-exporter-otlp-proto-common 1.28.2 + - opentelemetry-proto 1.28.2 + - opentelemetry-sdk ~=1.28.2 - python >=3.8 - requests ~=2.7 license: Apache-2.0 - license_family: APACHE - size: 16982 - timestamp: 1724969540619 + size: 17007 + timestamp: 1732094238214 - kind: conda name: opentelemetry-exporter-prometheus version: 1.12.0rc1 @@ -7062,139 +7059,136 @@ packages: timestamp: 1695214221489 - kind: conda name: opentelemetry-instrumentation - version: 0.48b0 - build: pyhd8ed1ab_0 + version: 0.49b2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - sha256: e7466998c0a6e5ecc9b8681312617c5d6d85afe3902a03fa7c755eb1a08c3db8 - md5: 5cd186b5587efdc79c6b24f06b2b1726 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + sha256: ee20ad159bc040642fcbce1b25f8a9fc1d788b53c6bf593a0891bf7887ec7c5f + md5: 13d714acd504cd0141688c908521c0b9 depends: - opentelemetry-api ~=1.4 - - python >=3.7 + - opentelemetry-semantic-conventions 0.49b2 + - packaging >=18.0 + - python >=3.9 - setuptools >=16.0 - wrapt <2.0.0,>=1.0.0 license: Apache-2.0 - license_family: APACHE - size: 30783 - timestamp: 1724896532781 + size: 31616 + timestamp: 1732070359772 - kind: conda name: opentelemetry-instrumentation-asgi - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - sha256: 563634bfbb54093812aabcc9bb36b1430c462c02350d114967862188d66fddec - md5: e337134c68bfa548019f83593164cdfd + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + sha256: 7b2b4da037baa506a82c5e3e711905f34448441e069a6e3affb0e4917b3ee5e0 + md5: 482ad6cdc507689d5c33eb22aa16d83e depends: - asgiref ~=3.0 - opentelemetry-api ~=1.12 - - opentelemetry-instrumentation 0.48b0 - - opentelemetry-semantic-conventions 0.48b0 - - opentelemetry-util-http 0.48b0 + - opentelemetry-instrumentation 0.49b2 + - opentelemetry-semantic-conventions 0.49b2 + - opentelemetry-util-http 0.49b2 - python >=3.7 license: Apache-2.0 - license_family: APACHE - size: 23429 - timestamp: 1724943803444 + size: 23749 + timestamp: 1732086813641 - kind: conda name: opentelemetry-instrumentation-fastapi - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - sha256: 5c9195c089446241590001cfbcbc12421a2b89a0a23dd3691cd45fe9f77d5c93 - md5: e844191ea9b60804c57fb0978698407b + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + sha256: e853f62b4c56e308f349a3f360cf4d6aa814a9dc926e727c25effcf4121af68c + md5: 59c01fcead989ba58c5dc79e3ac3aab3 depends: - opentelemetry-api ~=1.12 - - opentelemetry-instrumentation 0.48b0 - - opentelemetry-instrumentation-asgi 0.48b0 - - opentelemetry-semantic-conventions 0.48b0 - - opentelemetry-util-http 0.48b0 + - opentelemetry-instrumentation 0.49b2 + - opentelemetry-instrumentation-asgi 0.49b2 + - opentelemetry-semantic-conventions 0.49b2 + - opentelemetry-util-http 0.49b2 - python >=3.7 license: Apache-2.0 - license_family: APACHE - size: 19806 - timestamp: 1724987641159 + size: 20288 + timestamp: 1732093785486 - kind: conda name: opentelemetry-proto - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - sha256: ca0480de7f33511dc983aeaf7de23f49c3a258b185588543f85abcf08b10d000 - md5: 3de386ea142a50514f6bba04c3fb48c0 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + sha256: e68320a465b45e05f569c440a20735db9a0fd7cdb9e52300506660a924d17caf + md5: 54ac33b32171ce2205b6639da1a1ac54 depends: - - protobuf >=3.19,<5.0 - - python >=3.8 + - protobuf <6.0,>=5.0 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 37620 - timestamp: 1724925809921 + size: 37108 + timestamp: 1731988686996 - kind: conda name: opentelemetry-sdk - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - sha256: fb0e4f664166d168edf455f744d827c2342b4b1e99d035cd2e47721863d845e5 - md5: 1a16e734cd0ebb70d3b79265403beb13 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + sha256: 67c5be0f2b81b329d273f1f24f985a53e000b4b42b8338b56375d75aa8da5bb1 + md5: 742115714b2cbfa599e9f78495233d1a depends: - - opentelemetry-api 1.27.0 - - opentelemetry-semantic-conventions 0.48b0 - - python >=3.8 + - opentelemetry-api 1.28.2 + - opentelemetry-semantic-conventions 0.49b2 + - python >=3.9 - typing-extensions >=3.7.4 + - typing_extensions >=3.7.4 license: Apache-2.0 - license_family: APACHE - size: 73814 - timestamp: 1724923174196 + size: 78017 + timestamp: 1732070451972 - kind: conda name: opentelemetry-semantic-conventions - version: 0.48b0 - build: pyhd8ed1ab_0 + version: 0.49b2 + build: pyh10f6f8f_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - sha256: e2f9a4dbb4eef97e5ab04a73b3898c0f186d57705eae66c6991452385f987e9c - md5: eefd5ed55046af15c08051afb6b0eb6b + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + sha256: 5e3869ad66082b16d56bab8219fad0c8c09090ec93eb866327eed788fe5c9340 + md5: d95dd6e8a70417e394bb16dad5cff408 depends: - - opentelemetry-api 1.27.0 - - python >=3.8 + - deprecated >=1.2.6 + - opentelemetry-api 1.28.2 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 76393 - timestamp: 1724919708207 + size: 81534 + timestamp: 1732067304518 - kind: conda name: opentelemetry-util-http - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - sha256: 9bc1dbb9d258d6e6c25d96b85d58d049e325971270d42439b5cff88777ce7bc7 - md5: 4fe36ba8135c7fb262d0f7721aa01b05 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + sha256: 73bb1cbb640b0732c1a04764a9704bb048ab77d6cb9c6439eb50ec0ecf926ede + md5: f267c60fc629a9bd1aa388f6ed8ea0ab depends: - python >=3.8 license: Apache-2.0 - license_family: APACHE - size: 19163 - timestamp: 1724929864899 + size: 19241 + timestamp: 1732081026829 - kind: conda name: orc - version: 2.0.2 - build: h383807c_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda - sha256: 04cc6054199bdbc2649f1ee1afde87d6274ce9dc6f2c2f22da42810b9c8f323a - md5: e910dc97dc0ce4ab1e1a87f49aff89fd + version: 2.0.3 + build: h121fd32_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h121fd32_0.conda + sha256: 4759fd0c3f06c035146100e22ee36a312c9a8226654bd2973e9ca9ac5de5cf1f + md5: 39995f7406b949c1bef74f0c7277afb3 depends: - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 + - __osx >=11.0 + - libcxx >=18 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -7202,21 +7196,20 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 1046461 - timestamp: 1723760657143 + size: 438254 + timestamp: 1731665228473 - kind: conda name: orc - version: 2.0.2 - build: h669347b_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda - sha256: 8a126e0be7f87c499f0a9b5229efa4321e60fc4ae46abdec9b13240631cb1746 - md5: 1e6c10f7d749a490612404efeb179eb8 + version: 2.0.3 + build: h90de224_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h90de224_0.conda + sha256: 7969db50268b65c2edb14be2e22bfff5656f36336eb5421d53030d29c037fec1 + md5: c07ba3025fe20ccbab9cd7c615953d6f depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -7224,20 +7217,21 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 1066349 - timestamp: 1723760593232 + size: 1170439 + timestamp: 1731665024334 - kind: conda name: orc - version: 2.0.2 - build: h75dedd0_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda - sha256: a23f3a88a6b16363bd13f964b4abd12be1576abac460126f3269cbed12d04840 - md5: 9c89e09cede143716b479c5eacc924fb + version: 2.0.3 + build: he039a57_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-he039a57_0.conda + sha256: 9657ae19d6541fe67a61ef0c26ba1012ec508920b49afa897962c7d4b263ba35 + md5: 052499acd6d6b79952197a13b23e2600 depends: - - __osx >=11.0 - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -7245,8 +7239,8 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 436164 - timestamp: 1723760750932 + size: 1187593 + timestamp: 1731664886527 - kind: conda name: overrides version: 7.7.0 @@ -7559,73 +7553,64 @@ packages: timestamp: 1728546155066 - kind: conda name: protobuf - version: 4.25.3 - build: py312h83439f5_1 - build_number: 1 + version: 5.28.2 + build: py312h2ec8cdc_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.25.3-py312h83439f5_1.conda - sha256: 30d212eca5e25d0b0260dd0fff18f917386bfe046e425d627847aaed642a0aa4 - md5: 7bbcc35ebf7e3d8c59e472f1bf0e65fc + url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda + sha256: 4884f8161602f0148ebbc1af8d3176cec80b96c83243f68aafd651986b573817 + md5: 586bead4a9dfa46faf88deb7d3a742bb depends: - __glibc >=2.17,<3.0.a0 - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - libstdcxx >=13 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 390590 - timestamp: 1725018571385 + size: 464548 + timestamp: 1728669645013 - kind: conda name: protobuf - version: 4.25.3 - build: py312h8a04735_1 - build_number: 1 + version: 5.28.2 + build: py312h6f74592_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-4.25.3-py312h8a04735_1.conda - sha256: 1a79bd9813b6ca59329549c5831f86031668dff8c31339cb1199b5aef38e36ab - md5: 0f527d01f72f363ee35a4bc874f235ba + url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda + sha256: f874ffd38b9ae2b810e9d2e43fd8d3b778cdeaf7dea4a3e6ee4adeafe2d936cf + md5: 4b9b22bd7c53d938b207f9d0f79db183 depends: - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - libstdcxx >=13 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 392015 - timestamp: 1725018625494 + size: 472764 + timestamp: 1728669483611 - kind: conda name: protobuf - version: 4.25.3 - build: py312he4aa971_1 - build_number: 1 + version: 5.28.2 + build: py312hf02c72a_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.25.3-py312he4aa971_1.conda - sha256: 1eb7f6c300be7a727ceaa01b009b9af14aac5112f685e8ef38238dbc8f4ad4dc - md5: 5feb2cb13c6b7c2b2365ee5307e4b2db + url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda + sha256: dbcec117510ced5c12097e3eb06ebbf4512dc255733a9ace33c4249fb7e6a364 + md5: 6fda46c82abd0a080ca33de7d16ca877 depends: - __osx >=11.0 - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - libcxx >=17 - - libprotobuf >=4.25.3,<4.25.4.0a0 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 373218 - timestamp: 1725018824150 + size: 447369 + timestamp: 1728669902591 - kind: conda name: psutil version: 6.1.0 @@ -7708,142 +7693,139 @@ packages: timestamp: 1721585805256 - kind: conda name: pyarrow - version: 17.0.0 - build: py312h55cb1a1_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-17.0.0-py312h55cb1a1_2.conda - sha256: 83d34c5bd373ab01402e2350ed5b1e836a3ac25a715d399621ce3610d8685339 - md5: da93169f2deb8623e266c71ca9b0bac6 - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + version: 18.0.0 + build: py312h1f38498_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.0.0-py312h1f38498_1.conda + sha256: c411c8bf7c22113a1d4ceac1c8df638a223ffcec9b4e5fc528631b64f3df7ccd + md5: 4510221533398449a8f707bda652dd27 + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 25737 - timestamp: 1730169570576 + size: 25409 + timestamp: 1731058762728 - kind: conda name: pyarrow - version: 17.0.0 - build: py312h9cebb41_2 - build_number: 2 + version: 18.0.0 + build: py312h7900ff3_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-17.0.0-py312h9cebb41_2.conda - sha256: 9e1baddd1199e244f4f8be10c7250691088948583ab3955c510b90eb71c91a2c - md5: 5f7d505626cb057e1320bbd46dd02ef2 - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.0.0-py312h7900ff3_1.conda + sha256: 948514cde269fb6874a3945c8b2c26666588ac7835eb19fa7ec11c0547250b8d + md5: ea33ac754057779cd2df785661486310 + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 25538 - timestamp: 1730169714708 + size: 25161 + timestamp: 1731058699977 - kind: conda name: pyarrow - version: 17.0.0 - build: py312ha814d7c_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-17.0.0-py312ha814d7c_2.conda - sha256: d6433c343120e723cad92b52ea05c16e05096845489275a697201ce0a50fc568 - md5: 04a90c4ce691f2e289658dd475f69631 - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + version: 18.0.0 + build: py312h8025657_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.0.0-py312h8025657_1.conda + sha256: ec1bace4edb04a2cb0bca92c378044260bf798a42aefc5ac1156826b3a4c79c8 + md5: be32cb6508ecd041d0468be137a9c60b + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 25811 - timestamp: 1730169125041 + size: 25338 + timestamp: 1731059175489 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py312h01725c0_2_cpu - build_number: 2 + version: 18.0.0 + build: py312h01725c0_1_cpu + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-17.0.0-py312h01725c0_2_cpu.conda - sha256: e5ed32ee7664a6322263e446d3504a35ff6f5452b17f1161bce7922d03f3cbd4 - md5: add603bfa43d9bf3f06783f780e1a817 + url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.0.0-py312h01725c0_1_cpu.conda + sha256: 240ab4328ebbfd81fe4f93cacd24fc44cd9e58edf9a95acc492e1025525f9a82 + md5: c8ae967c39337603035d59c8994c23f9 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 constrains: - apache-arrow-proc =*=cpu + - numpy >=1.21,<3 license: Apache-2.0 license_family: APACHE - size: 4607408 - timestamp: 1730169265797 + size: 4578590 + timestamp: 1731058358731 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py312h66f7834_2_cpu - build_number: 2 + version: 18.0.0 + build: py312h66f7834_1_cpu + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-17.0.0-py312h66f7834_2_cpu.conda - sha256: 239ac3e62ef11c6e0acc16a4b1a8e3029ed11c5aec771a98f08b7f2fc3a79945 - md5: 77b54d42cacd19af257ed402fb936f9c + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.0.0-py312h66f7834_1_cpu.conda + sha256: ded4bd91b1e0f6eaee9bdd4cba76efb424a3279d69946aec8fc65671fae213eb + md5: 8d857df755335de36fc7d10f897ac7c5 depends: - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 constrains: + - numpy >=1.21,<3 - apache-arrow-proc =*=cpu license: Apache-2.0 license_family: APACHE - size: 4460462 - timestamp: 1730169449471 + size: 4408381 + timestamp: 1731058794401 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py312hc40f475_2_cpu - build_number: 2 + version: 18.0.0 + build: py312hc40f475_1_cpu + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-17.0.0-py312hc40f475_2_cpu.conda - sha256: 708488e602a159fa38a7fd5fa4466e9f093761dc4a8538661f06be3df42f30a5 - md5: bc617fed2854d65a16760d2bf02a475c + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.0.0-py312hc40f475_1_cpu.conda + sha256: afa1d9cfb76ab37ae837c6a68f9a79e0a25f96da826c373be9728fed152eaec9 + md5: 801f7771b21af9ca4016d9c2f9ff2a08 depends: - __osx >=11.0 - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 constrains: - apache-arrow-proc =*=cpu + - numpy >=1.21,<3 license: Apache-2.0 license_family: APACHE - size: 3990396 - timestamp: 1730169098217 + size: 3915622 + timestamp: 1731058726842 - kind: conda name: pycparser version: '2.22' @@ -8492,49 +8474,49 @@ packages: timestamp: 1728642457661 - kind: conda name: re2 - version: 2023.09.01 - build: h4cba328_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda - sha256: 0e0d44414381c39a7e6f3da442cb41c637df0dcb383a07425f19c19ccffa0118 - md5: 0342882197116478a42fa4ea35af79c1 + version: 2024.07.02 + build: h2d3a13d_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda + sha256: 55e7be480bfb979fa8595a16d7f2adea3a5ac9a77b2e97cd0f7ac40e989edb6c + md5: 83f4e47229834c895a92c18383e1cd9d depends: - - libre2-11 2023.09.01 h7b2c953_2 + - libre2-11 2024.07.02 h18dbdb1_1 license: BSD-3-Clause license_family: BSD - size: 26770 - timestamp: 1708947220914 + size: 26747 + timestamp: 1728778986331 - kind: conda name: re2 - version: 2023.09.01 - build: h7f4b329_2 - build_number: 2 + version: 2024.07.02 + build: h77b4e00_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - sha256: f0f520f57e6b58313e8c41abc7dfa48742a05f1681f05654558127b667c769a8 - md5: 8f70e36268dea8eb666ef14c29bd3cda + url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda + sha256: c1721cb80f7201652fc9801f49c214c88aee835d957f2376e301bd40a8415742 + md5: 01093ff37c1b5e6bf9f17c0116747d11 depends: - - libre2-11 2023.09.01 h5a48ba9_2 + - libre2-11 2024.07.02 hbbce691_1 license: BSD-3-Clause license_family: BSD - size: 26617 - timestamp: 1708946796423 + size: 26665 + timestamp: 1728778975855 - kind: conda name: re2 - version: 2023.09.01 - build: h9caee61_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.09.01-h9caee61_2.conda - sha256: 31db9c598bfa7586ac2e3ba06681d676caa5d252b5b68f4b6173edc71f70681e - md5: a9667ab785e1686d53313364c695f58e + version: 2024.07.02 + build: hcd0e937_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda + sha256: eebddde6cb10b146507810b701ef6df122d5309cd5151a39d0828aa44dc53725 + md5: 19e29f2ccc9168eb0a39dc40c04c0e21 depends: - - libre2-11 2023.09.01 h9d008c2_2 + - libre2-11 2024.07.02 h2348fd5_1 license: BSD-3-Clause license_family: BSD - size: 26726 - timestamp: 1708946863063 + size: 26860 + timestamp: 1728779123653 - kind: conda name: readline version: '8.2' @@ -8778,35 +8760,35 @@ packages: timestamp: 1730922974629 - kind: conda name: s2n - version: 1.5.5 - build: h3931f03_0 + version: 1.5.9 + build: h0fd0ee4_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda - sha256: a6fa0afa836f8f26dea0abc180ca2549bb517932d9a88a121e707135d4bcb715 - md5: 334dba9982ab9f5d62033c61698a8683 + url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.9-h0fd0ee4_0.conda + sha256: f2c8e55d6caa8d87a482b1f133963c184de1ccb2303b77cc8ca86c794253f151 + md5: f472432f3753c5ca763d2497e2ea30bf depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 353081 - timestamp: 1728534228471 + size: 355568 + timestamp: 1731541963573 - kind: conda name: s2n - version: 1.5.5 - build: hc6ade00_0 + version: 1.5.9 + build: h636ded1_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda - sha256: 47e9783a3c2b44b2f718e7cda74c0170e6a8c145688eee76a4395ac06f6e5393 - md5: 7238fdea17af79b5f6928ff278c70d52 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.9-h636ded1_0.conda + sha256: 51572714743f836266af564c5b26b37599478131c4379a0d11778f04e647d070 + md5: bf4f84136d9ddb7be1855754a9ac4bb9 depends: - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 349557 - timestamp: 1728534230496 + size: 352546 + timestamp: 1731542018427 - kind: conda name: safetensors version: 0.4.5 @@ -9056,21 +9038,21 @@ packages: timestamp: 1669632203115 - kind: conda name: starlette - version: 0.41.2 - build: pyha770c72_0 + version: 0.41.3 + build: pyh7900ff3_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda - sha256: 02206e5369944e0fd29e4f5c8e9b51dd926a74a46b621a73323669ad404f1081 - md5: 287492bb6e159da4357a10a2bd05c13c + url: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda + sha256: 33986032cb0515f7e9f6647d07006b7dc49b3f373b73d5a1826e6979c661b27a + md5: 0889c5a3e95d8c382cff7556757aedb0 depends: - anyio >=3.4.0,<5 - - python >=3.8 + - python >=3.9 - typing_extensions >=3.10.0 license: BSD-3-Clause license_family: BSD - size: 59059 - timestamp: 1730305803101 + size: 59069 + timestamp: 1732037161800 - kind: conda name: terminado version: 0.18.1 @@ -9334,13 +9316,13 @@ packages: timestamp: 1713535244513 - kind: conda name: transformers - version: 4.46.2 + version: 4.46.3 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - sha256: e654adbaa80a65ffa2209465d23e136dee2d8b1ded3da425c1f8c3a9c3be56a6 - md5: 587e2e9014d6efc236029e9acd8332c2 + url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + sha256: 6ae73c0d1197812d8fd6a2c64309fe9abe822feb66b2d330cc61ce9fa60dee0c + md5: 457af723774f077a128515a6fdd536a2 depends: - datasets !=2.5.0 - filelock @@ -9356,62 +9338,62 @@ packages: - tqdm >=4.27 license: Apache-2.0 license_family: APACHE - size: 3659906 - timestamp: 1730868580651 + size: 3622494 + timestamp: 1731981383171 - kind: conda name: typer - version: 0.13.0 + version: 0.13.1 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - sha256: f3661edc36aaf69c03323f0a2b71bbbfdf3c11ed1fe1c9c6f486ac1b53e11aa1 - md5: 0d2754390dab3d584823f497d1ab8704 + url: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + sha256: 2f12a5af13d440aa75970e3d0d1ea3192916848473967b4ecb483627c01333cb + md5: 82a4704166144f27e9c83803bff5bf53 depends: - python >=3.9 - - typer-slim-standard 0.13.0 hd8ed1ab_0 + - typer-slim-standard 0.13.1 hd8ed1ab_0 license: MIT license_family: MIT - size: 54855 - timestamp: 1731015674090 + size: 55352 + timestamp: 1732084066966 - kind: conda name: typer-slim - version: 0.13.0 + version: 0.13.1 build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - sha256: 6e23932ebef6b09b68a9667596952af4f81167b4b50a182ac70316ec224322fc - md5: 5fcd867cf0b4498002731d44621c0b58 + url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + sha256: b190bcd5f341ba8843f2f1ce43b5e8dae770bb84d49e2ce5b346e4d8098367a1 + md5: 85283fb942fa2604c3db03483027ced2 depends: - click >=8.0.0 - python >=3.9 - typing_extensions >=3.7.4.3 constrains: - - typer >=0.13.0,<0.13.1.0a0 - shellingham >=1.3.0 + - typer >=0.13.1,<0.13.2.0a0 - rich >=10.11.0 license: MIT license_family: MIT - size: 43166 - timestamp: 1731015659531 + size: 43463 + timestamp: 1732084053693 - kind: conda name: typer-slim-standard - version: 0.13.0 + version: 0.13.1 build: hd8ed1ab_0 subdir: noarch noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda - sha256: 402d1c872adb1dda436d563e03280750419367fb808a9ee7811f1335f218e8bc - md5: fe8bb6071bf1c47b38bc65f848847059 + url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda + sha256: 14ac72d0533bc2f37f8dc85b90b45a91ca28ee0995c520b16a40f34629749c7a + md5: a9bf95ed3c65bf936292d944bf3df36d depends: - rich - shellingham - - typer-slim 0.13.0 pyhff2d567_0 + - typer-slim 0.13.1 pyhff2d567_0 license: MIT license_family: MIT - size: 48480 - timestamp: 1731015660139 + size: 48744 + timestamp: 1732084054211 - kind: conda name: types-python-dateutil version: 2.9.0.20241003 diff --git a/examples/operators/magic.lock b/examples/operators/magic.lock index a981a7da90..18ecbf7803 100644 --- a/examples/operators/magic.lock +++ b/examples/operators/magic.lock @@ -9,30 +9,30 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.6-py312h178313f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/asgiref-3.8.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.31-he1a10d6_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.7.4-hae4d56a_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.29-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.19-h2bff981_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.3-h19b0707_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.10-h14a7884_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.19-hc9e6898_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.7-hb8d5873_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.6.7-h666547d_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.19-h2bff981_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.20-h2bff981_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.28.3-hbe26082_8.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.407-h25d6d5c_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.13.0-h935415a_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.8.0-hd126650_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.12.0-hd2e3451_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.7.0-h10ac4d7_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.11.0-h325d260_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb88c0a9_10.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.0-hecf86a2_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.3-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-hf42f96a_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h1ffe551_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.1-hab05fe4_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.2-hdeadb07_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h7bd072d_8.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.1-h3a84f74_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-hf42f96a_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-hf42f96a_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.4-h21d7256_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.449-h1a02111_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.14.0-h5cfcd09_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.10.0-h113e628_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.13.0-h3cf044e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.8.0-h736e048_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.12.0-ha633028_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda @@ -74,11 +74,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-17.0.0-had3b6fe_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-17.0.0-h5888daf_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-17.0.0-h5888daf_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-17.0.0-hf54134d_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.0.0-h3b997a5_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.0.0-h5888daf_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.0.0-h5888daf_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.0.0-h5c8f2c3_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda @@ -96,23 +96,23 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.29.0-h435de7b_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.29.0-h0121fbd_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.2-h15f2491_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.31.0-h804f50b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.31.0-h0121fbd_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-17.0.0-h39682fd_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-hd5b35b9_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.0.0-h6bd9018_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.20.0-h0e7cc3e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.49.2-hb9d3cd8_0.conda @@ -122,39 +122,39 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024112020-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-he039a57_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.0-py312h66e93f0_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.25.3-py312h83439f5_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-17.0.0-py312h9cebb41_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-17.0.0-py312h01725c0_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.0.0-py312h7900ff3_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.0.0-py312h01725c0_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.23.4-py312h12e396e_0.conda @@ -173,12 +173,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py312hbf22597_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/regex-2024.11.6-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.9-h0fd0ee4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda @@ -186,16 +186,16 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tokenizers-0.20.3-py312h8360d73_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.1-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda @@ -217,30 +217,30 @@ environments: linux-aarch64: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.6-py312hcc812fe_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/asgiref-3.8.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.31-h8fa6c3f_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.7.4-h3a42a84_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.29-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.19-ha24d3e7_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.4.3-h34ad692_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.8.10-h1e1d171_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.14.19-h9f8f545_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.10.7-had41049_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.6.7-h598b0a5_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.19-ha24d3e7_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.20-ha24d3e7_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.28.3-hcc2993b_8.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.407-hf265f57_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.13.0-h60f91e5_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.8.0-hf0f394c_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.12.0-h17ca4bd_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.7.0-h68dbd84_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.11.0-h36e5eb4_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hac900a4_10.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.0-h35473ba_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.3-h86ecc28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h4c7db1d_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-h9bacb8c_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.1-hf4e072c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.2-h10eb1bc_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h28a5e6a_8.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.1-h29aef15_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h4c7db1d_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h4c7db1d_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.4-h8cc6612_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.449-hf48a0a1_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.14.0-h1887c18_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.10.0-h47b0b28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.13.0-h185ecfd_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.8.0-h1b94036_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.12.0-h37d6d07_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-python-1.1.0-py312h6f74592_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda @@ -283,11 +283,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.2-cxx17_h0a1ffab_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-17.0.0-hccffc7f_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-17.0.0-h5ad3122_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-17.0.0-h5ad3122_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-17.0.0-h08b7278_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.0.0-hf19f309_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.0.0-h5ad3122_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.0.0-h5ad3122_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.0.0-h14ec2bd_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda @@ -305,23 +305,23 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.29.0-hbb89541_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.29.0-hb9b2b65_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.62.2-h98a9317_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.31.0-h3888205_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.31.0-hb9b2b65_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.28-pthreads_h9d3fd7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-17.0.0-h501616e_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-hea2c3fa_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2023.09.01-h9d008c2_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.0.0-h23a96eb_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.47.0-hc4a20ef_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.0-h492db2e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-14.2.0-h3f4de04_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-14.2.0-hf1166c9_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.20.0-h154c74f_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.21.0-h154c74f_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.8.0-h4e544f5_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.49.2-h86ecc28_0.conda @@ -331,39 +331,39 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024112020-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py312h470d778_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h90de224_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/propcache-0.2.0-py312hb2c0f52_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-4.25.3-py312h8a04735_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-17.0.0-py312h55cb1a1_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-17.0.0-py312h66f7834_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.0.0-py312h8025657_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.0.0-py312h66f7834_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.23.4-py312h8cbf658_0.conda @@ -382,12 +382,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-26.2.0-py312h2427ae1_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.09.01-h9caee61_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/regex-2024.11.6-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.9-h636ded1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda @@ -395,16 +395,16 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-h1088aeb_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tokenizers-0.20.3-py312ha0d6ea1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4.1-py312h52516f5_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda @@ -425,30 +425,30 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda osx-arm64: - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.6-py312h998013c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/asgiref-3.8.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.31-h14f56dd_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.7.4-hd45b2be_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.29-h7ab814d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.19-hd45b2be_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.3-hdf5079d_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.10-h4588aaf_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.19-h5ad5fc2_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.7-hbe077eb_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.6.7-h86d2b7d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.19-hd45b2be_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.20-hd45b2be_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.28.3-h4f9f7e0_8.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.407-h880863c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.13.0-hd01fc5c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.8.0-h13ea094_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.12.0-hfde595f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.7.0-hcf3b6fd_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.11.0-h082e32e_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h9b725a8_10.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.0-h5d7ee29_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.3-h5505292_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h5d7ee29_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h13ead76_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.1-hf483d09_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.2-h39f8ad8_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h68a0d7e_8.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.1-h840aca7_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h5d7ee29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h5d7ee29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.4-h6832833_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.449-h8f08b23_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.14.0-hd50102c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.10.0-hc602bab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.13.0-h7585a09_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.8.0-h9ca1f76_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.12.0-hcdd55da_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312hde4cb15_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda @@ -488,11 +488,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.2-cxx17_h00cdb27_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-17.0.0-hc6a7651_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-17.0.0-hf9b8971_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-17.0.0-hf9b8971_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-17.0.0-hbf8b706_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.0.0-h2409f62_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.0.0-h286801f_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.0.0-h286801f_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.0.0-h6a6e5c5_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda @@ -500,7 +500,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.3-ha82da77_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.4-ha82da77_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda @@ -508,61 +508,61 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.29.0-hfa33a2f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.29.0-h90fd6fa_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.2-h9c18a4f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.31.0-h8d8be31_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.31.0-h7081f7f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.28-openmp_hf332438_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-17.0.0-hf0ba9ef_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hc39d83c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.0.0-hda0ea68_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.47.0-hbaaea75_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.20.0-h64651cc_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.21.0-h64651cc_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.49.2-h7ab814d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-h376fa9f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.3-hb52a8e5_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.4-hdb05f8b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024112020-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py312h8442bc7_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h121fd32_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.0-py312h024a12e_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.25.3-py312he4aa971_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-17.0.0-py312ha814d7c_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-17.0.0-py312hc40f475_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.0.0-py312h1f38498_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.0.0-py312hc40f475_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.23.4-py312he431725_0.conda @@ -581,7 +581,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.2.0-py312hf8a1cbd_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/regex-2024.11.6-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda @@ -593,16 +593,16 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-hd02b534_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tokenizers-0.20.3-py312hf3e4074_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.1-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda @@ -685,12 +685,12 @@ packages: timestamp: 1727779893392 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py312h178313f_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda - sha256: 020315ba01fcd1b53fcb81280a00b8de7051ecf5c4503fc3b3281df0cbca05ed - md5: e2f92c2c85d3a0d376947847942ed36c + url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.6-py312h178313f_0.conda + sha256: 100484cdbd0e6840fc969354e78173a0b8dff80ee53947ec0fc8f0c840486934 + md5: 3a62de1af76079acb81fad6936e1f6f8 depends: - __glibc >=2.17,<3.0.a0 - aiohappyeyeballs >=2.3.0 @@ -705,16 +705,16 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 903248 - timestamp: 1731703484704 + size: 908313 + timestamp: 1732088522122 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py312h998013c_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda - sha256: 5e619945d37829cde16c5add63abb042ba953f0dc92b94abb990000a6ba3e191 - md5: 1c0150beac996afe9d8ee8297d324352 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.6-py312h998013c_0.conda + sha256: e6bae4c7ce7ba1f42667b54495296b21c7414ff9c826c73eeaba0bd050d89af3 + md5: e24152bdeb4fc0ab20472d3c27539196 depends: - __osx >=11.0 - aiohappyeyeballs >=2.3.0 @@ -729,16 +729,16 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 865633 - timestamp: 1731703688760 + size: 870500 + timestamp: 1732088770426 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py312hcc812fe_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda - sha256: 92385f1c7e1bac9e502a7943f4b8a3e58b62fa8ae1c232519116091ac0fdecfd - md5: bcbd2dff2e7d88f7d5b0dab015caa1c0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.6-py312hcc812fe_0.conda + sha256: 009e1ed9676f857c90b6fd28f4cd31b11e13f5ba00fc780766e19b8cfaae7390 + md5: 73b5173b83afa78594434ac2912ec2b6 depends: - aiohappyeyeballs >=2.3.0 - aiosignal >=1.1.2 @@ -753,8 +753,8 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 893381 - timestamp: 1731703604408 + size: 897593 + timestamp: 1732088604447 - kind: conda name: aiosignal version: 1.3.1 @@ -842,1016 +842,1019 @@ packages: timestamp: 1722977241383 - kind: conda name: aws-c-auth - version: 0.7.31 - build: h14f56dd_2 - build_number: 2 + version: 0.8.0 + build: h9b725a8_10 + build_number: 10 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.31-h14f56dd_2.conda - sha256: 7ec650c52962f62e141d5c8ac018befd9a0c50eef1c951cba11089cadd90e703 - md5: 85a9125cf9705e4c7a829a829af6744b + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h9b725a8_10.conda + sha256: 63cb8c25e0a26be4261d4271de525e7e33aefe9d9b001b8abfa5c9ac69c3dab3 + md5: 17c90d9eb8c6842fd739dc5445ce9962 depends: - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 license: Apache-2.0 license_family: Apache - size: 92624 - timestamp: 1728796392911 + size: 92355 + timestamp: 1731733738919 - kind: conda name: aws-c-auth - version: 0.7.31 - build: h8fa6c3f_2 - build_number: 2 + version: 0.8.0 + build: hac900a4_10 + build_number: 10 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.31-h8fa6c3f_2.conda - sha256: 1420263c333ed29b89f37d0b9f9665eb02f3a23a50f9fe3ef787a30726168711 - md5: a7549b69ce1339ab4702c10cc213c01d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hac900a4_10.conda + sha256: 85c8500ae0570f0d39e6661a120c653e43f0f5f984e2954c44fd358a87776892 + md5: 9ecaef75ebd666dda7caa79154183b02 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 112059 - timestamp: 1728796399534 + size: 111853 + timestamp: 1731733547677 - kind: conda name: aws-c-auth - version: 0.7.31 - build: he1a10d6_2 - build_number: 2 + version: 0.8.0 + build: hb88c0a9_10 + build_number: 10 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.31-he1a10d6_2.conda - sha256: 83fa4b24101cd85da825dcbb7611390c2a6e31a3fc17abb4d1ee5b8c40bdaa5a - md5: 76550a294cc78aaccfca7824bb4814ce + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb88c0a9_10.conda + sha256: d2837a84e6bd7d993a83e79f9e240e1465e375f3d57149ea5b1927c6a4133bcc + md5: 409b7ee6d3473cc62bda7280f6ac20d0 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 107301 - timestamp: 1728796325782 + size: 107163 + timestamp: 1731733534767 - kind: conda name: aws-c-cal - version: 0.7.4 - build: h3a42a84_2 + version: 0.8.0 + build: h35473ba_2 build_number: 2 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.7.4-h3a42a84_2.conda - sha256: 5a0825bf3f2e89458088eb83f2e6e3eed0f3b9711963f6bf45cea9ed699a5611 - md5: 4c4096ea8a644e837e3d8576bf6d2ba9 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.0-h35473ba_2.conda + sha256: 3327a9e65ec531b0c55d17bbcdc436b4e641af1f293d1c2f50e0f16aa79fde60 + md5: 48dc0b3576513622673d3f5f3d163b62 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 49479 - timestamp: 1728755609823 + size: 49714 + timestamp: 1731678553709 - kind: conda name: aws-c-cal - version: 0.7.4 - build: hae4d56a_2 + version: 0.8.0 + build: h5d7ee29_2 build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.7.4-hae4d56a_2.conda - sha256: 4bfed63898a1697364ce9621e1fc09c98f143777b0ca60655eb812efa5bf246d - md5: cdc628e4ffb4ffcd476e3847267e1689 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.0-h5d7ee29_2.conda + sha256: 2a8c09b33400cf2b7d658e63fd5a6f9b6e9626458f6213b904592fc15220bc92 + md5: 92734dad83d22314205ba73b679710d2 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 47181 - timestamp: 1728755555430 + size: 39966 + timestamp: 1731678721786 - kind: conda name: aws-c-cal - version: 0.7.4 - build: hd45b2be_2 + version: 0.8.0 + build: hecf86a2_2 build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.7.4-hd45b2be_2.conda - sha256: d701872d79184dbb759aa033e6a6e4ec5c6f1b58e3255e53b756d0246d19986a - md5: de4bf687ac70a2b861a94b87164669c9 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.0-hecf86a2_2.conda + sha256: 220a37955c120bf2f565fbd5320a82fc4c8b550b2449294bc0509c296cfcb9fa + md5: c54459d686ad9d0502823cacff7e8423 depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 39794 - timestamp: 1728755626145 + size: 47477 + timestamp: 1731678510949 - kind: conda name: aws-c-common - version: 0.9.29 - build: h7ab814d_0 + version: 0.10.3 + build: h5505292_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.29-h7ab814d_0.conda - sha256: 8d2c330f0de571f1bf6f2db7650a1aa8c4060a2ccd25b48f392a4d3ea8222daa - md5: d4a90d217342b08daa7e80049fdaa6c9 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.3-h5505292_0.conda + sha256: bb2c1038726d31ffd2d35a5764f80bcd670b6a1c753aadfd261aecb9f88db6d8 + md5: 4150339e3b08db33fe4c436340b1d7f6 depends: - __osx >=11.0 license: Apache-2.0 license_family: Apache - size: 220687 - timestamp: 1728706817796 + size: 221524 + timestamp: 1731567512057 - kind: conda name: aws-c-common - version: 0.9.29 + version: 0.10.3 build: h86ecc28_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.29-h86ecc28_0.conda - sha256: f79b28d046aa448016ef4ddade430cfbfa3802813b6be04c97abb531edef05a2 - md5: f1fef7581dd3389ca7a3545e50bfcc7f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.3-h86ecc28_0.conda + sha256: 95ca372a0e1bb8dad421751de6aa44d37d87dd69c33a48faca1ae6efa30f2af0 + md5: 64f523ba00b75fdcb33a4eea827d3d19 depends: - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 258186 - timestamp: 1728706827519 + size: 257859 + timestamp: 1731567310573 - kind: conda name: aws-c-common - version: 0.9.29 + version: 0.10.3 build: hb9d3cd8_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.29-hb9d3cd8_0.conda - sha256: b3b50f518e9afad383f6851bf7000cf8b343d7d3ca71558df233ee7b4bfc2919 - md5: acc51b49fd7467c8dfe4343001b812b4 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.3-hb9d3cd8_0.conda + sha256: 90bd2ff40b65acb62f11e2500ee7b7e85ac77d2e332429002f4c1da949bec27f + md5: ff3653946d34a6a6ba10babb139d96ef depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 237231 - timestamp: 1728706773555 + size: 237137 + timestamp: 1731567278052 - kind: conda name: aws-c-compression - version: 0.2.19 - build: h2bff981_2 + version: 0.3.0 + build: h4c7db1d_2 build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.19-h2bff981_2.conda - sha256: 908a416ff3f62b09bed436e1f77418f54115412244734d3960b11d586dd0749f - md5: 87a059d4d2ab89409496416119dd7152 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h4c7db1d_2.conda + sha256: 8dba3d48a7230ccd2a6ea8d88c0e1b6caf0a39b14a2b2f0255a413fcfce8ad0a + md5: ee074857cec335bb83692771b06160a4 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 18983 - timestamp: 1728750679322 + size: 19696 + timestamp: 1731678729046 - kind: conda name: aws-c-compression - version: 0.2.19 - build: ha24d3e7_2 + version: 0.3.0 + build: h5d7ee29_2 build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.19-ha24d3e7_2.conda - sha256: 5c8abfbe725f7b646223a64b9446fc3305f66da75d27f199a3347ca1d9ea5671 - md5: a8162788a62f2568587b20646f2eacea + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h5d7ee29_2.conda + sha256: a52ea62bf08aed3af079e16d1738f3d2a7fcdd1d260289ae27ae96298e15d12a + md5: 15566c36b0cf5f314e3bee7f7cc796b5 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 19862 - timestamp: 1728750729312 + size: 18204 + timestamp: 1731678916439 - kind: conda name: aws-c-compression - version: 0.2.19 - build: hd45b2be_2 + version: 0.3.0 + build: hf42f96a_2 build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-hf42f96a_2.conda + sha256: 210ba4fff1c9500fe02de1dae311ce723bfa313a2d21b72accd745f736f56fce + md5: 257f4ae92fe11bd8436315c86468c39b + depends: + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 + license: Apache-2.0 + license_family: Apache + size: 19034 + timestamp: 1731678703956 +- kind: conda + name: aws-c-event-stream + version: 0.5.0 + build: h13ead76_7 + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.19-hd45b2be_2.conda - sha256: 86900c68f95a2ca79cb9bcb8a3e8fd0a7912cfa3754a6a1e6b78d35c0b8db58b - md5: 9c634af661f50e923419e0df92633d31 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h13ead76_7.conda + sha256: 386965fab5f0bed4a6109cdba32579f16bee1b0f76ce1db840ce6f7070188f9f + md5: 55a901b6d4fb9ce1bc8328925b229f0b depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 18065 - timestamp: 1728750721405 + size: 47528 + timestamp: 1731714690911 - kind: conda name: aws-c-event-stream - version: 0.4.3 - build: h19b0707_4 - build_number: 4 + version: 0.5.0 + build: h1ffe551_7 + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.3-h19b0707_4.conda - sha256: 951f96eb45a439a36935dc2099e10c902518ec511a287c1685ca65a88a9accaa - md5: df38f56123f30d61de24474e600e7d41 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h1ffe551_7.conda + sha256: 3b780d6483baa889e8df5aa66ab3c439a9c81331cf2a4799e373f4174768ddd9 + md5: 7cce4dfab184f4bbdfc160789251b3c5 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 53821 - timestamp: 1728792746255 + size: 53500 + timestamp: 1731714597524 - kind: conda name: aws-c-event-stream - version: 0.4.3 - build: h34ad692_4 - build_number: 4 + version: 0.5.0 + build: h9bacb8c_7 + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.4.3-h34ad692_4.conda - sha256: 20fb76e0740a403ef8e7bbf655482699612b9a6a25df15ff9f14caad511e79c9 - md5: 8d66cac131dd88ef8b81299e8b5818f8 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-h9bacb8c_7.conda + sha256: 2b7bb475330942d94bc359171df19d0cf8b326f15c0c7903a59da54a8add621e + md5: 694020125b66632d6577456d2d9d3c74 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 55018 - timestamp: 1728792897824 -- kind: conda - name: aws-c-event-stream - version: 0.4.3 - build: hdf5079d_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.3-hdf5079d_4.conda - sha256: 6976ea97bf8c79114da3026a9d46b717131e2445be01f244718a426ad4b587f2 - md5: d89057a51d66d9c0c907c3dfebf845eb - depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - libcxx >=17 - license: Apache-2.0 - license_family: Apache - size: 46737 - timestamp: 1728792823021 + size: 55054 + timestamp: 1731714599360 - kind: conda name: aws-c-http - version: 0.8.10 - build: h14a7884_2 + version: 0.9.1 + build: hab05fe4_2 build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.10-h14a7884_2.conda - sha256: 0561267292739a451d7d389f100330fefafb97859962f617cd5268c96400e3aa - md5: 6147c6b6cef67adcb85516f5cf775be7 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.1-hab05fe4_2.conda + sha256: 90a325b6f5371dd2203b643de646967fe57a4bcbbee8c91086abbf9dd733d59a + md5: fb409f7053fa3dbbdf6eb41045a87795 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 197562 - timestamp: 1728792795954 + size: 196945 + timestamp: 1731714483279 - kind: conda name: aws-c-http - version: 0.8.10 - build: h1e1d171_2 + version: 0.9.1 + build: hf483d09_2 build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.8.10-h1e1d171_2.conda - sha256: bb6426db42f1804b52b83a736f6ad4c407e260a7da5b0fe586cbe18e71101dfb - md5: 20f29e7210c170cbc810f10d65f692aa + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.1-hf483d09_2.conda + sha256: fca9ed0f0895bab9bf737c8d8a3314556cb893d45c40f0656f21a93502db3089 + md5: d880c40b8fc7d07374c036f93f1359d2 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 license: Apache-2.0 license_family: Apache - size: 190604 - timestamp: 1728792811917 + size: 153315 + timestamp: 1731714621306 - kind: conda name: aws-c-http - version: 0.8.10 - build: h4588aaf_2 + version: 0.9.1 + build: hf4e072c_2 build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.10-h4588aaf_2.conda - sha256: 0f422e1cb3ebfa4fbf316e0ee576ed8e8f96cd9890783a0d319366e7ad9ebca6 - md5: fd850cc4bc7af65f3b7e98324bda96fa + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.1-hf4e072c_2.conda + sha256: b9a262451fc91d2fd4ccfcb6dc11ac61d0152c0db765bfe8d089e3e1b70c2150 + md5: fddc197912c16cb95276077f6c7917c5 depends: - - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 152421 - timestamp: 1728792977955 + size: 190363 + timestamp: 1731714613945 - kind: conda name: aws-c-io - version: 0.14.19 - build: h5ad5fc2_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.19-h5ad5fc2_1.conda - sha256: 0fcfbd9b46474b543d59183bedee08bf46d0f5167c95406b3b06ce922d6626c4 - md5: 463fae93275ddd0a6e2afb327b4d87e5 + version: 0.15.2 + build: h10eb1bc_2 + build_number: 2 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.2-h10eb1bc_2.conda + sha256: b8e4206ee1fa58453535c1c08c6aca5bdc92cde026bf7ec20d038786f813239b + md5: 7cdf478bb4feae1a93319f6e3381b8a9 depends: - - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 137474 - timestamp: 1728770995104 + size: 162624 + timestamp: 1731702570075 - kind: conda name: aws-c-io - version: 0.14.19 - build: h9f8f545_1 - build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.14.19-h9f8f545_1.conda - sha256: dea9075bd1fac65a0bbaacf038f8196892004da9c44c34d061b0d1eec81b9644 - md5: 46958359610629e7eea043a83f64540c + version: 0.15.2 + build: h39f8ad8_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.2-h39f8ad8_2.conda + sha256: b14e32f024f6be1610dccfdb6371e101cba204d24f37c2a63d9b6380ac74ac17 + md5: 3b49f1dd8f20bead8b222828cfdad585 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 - - s2n >=1.5.5,<1.5.6.0a0 + - __osx >=11.0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 163350 - timestamp: 1728771046323 + size: 137610 + timestamp: 1731702839896 - kind: conda name: aws-c-io - version: 0.14.19 - build: hc9e6898_1 - build_number: 1 + version: 0.15.2 + build: hdeadb07_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.19-hc9e6898_1.conda - sha256: 35f9719fb9d5ddf4955a432d73d910261d60754d20b58de2be2701a2e68a9cfb - md5: ec84785f7ae14ed43156a54aec33bb14 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.2-hdeadb07_2.conda + sha256: 1636136a5d882b4aaa13ea8b7de8cf07038a6878872e3c434df9daf478cee594 + md5: 461a1eaa075fd391add91bcffc9de0c1 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 - - s2n >=1.5.5,<1.5.6.0a0 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 158806 - timestamp: 1728770974012 + size: 159368 + timestamp: 1731702542973 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: had41049_2 - build_number: 2 + version: 0.11.0 + build: h28a5e6a_8 + build_number: 8 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.10.7-had41049_2.conda - sha256: 2c4065737a77f80fd475ea1979db046ca7d46dd35548d7c20be1521c7ac17eef - md5: 4f489845a24aa7d2c556b0fedfb7e0a3 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h28a5e6a_8.conda + sha256: aad8c9a5c24953cdebf17efa7ec06b5639e14072d4fa70c5c0607d7ad913ba88 + md5: 5250ce3b5154c0347b7576015a7c6cef depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 169126 - timestamp: 1728797232432 + size: 169040 + timestamp: 1731734203264 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: hb8d5873_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.7-hb8d5873_2.conda - sha256: b30a3d8ba9352760c30f696b65486fe0e1d3cfe771f114b008a70ad440eb00c0 - md5: 8dc25ca24c1a50b8295a848c384ede99 + version: 0.11.0 + build: h68a0d7e_8 + build_number: 8 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h68a0d7e_8.conda + sha256: 837c24c105624e16ace94b4b566ffe45231ff275339c523571ebd45946926156 + md5: 9e3ac70d27e7591b1310a690768cfe27 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 license: Apache-2.0 license_family: Apache - size: 195951 - timestamp: 1728797647791 + size: 134573 + timestamp: 1731734281038 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: hbe077eb_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.7-hbe077eb_2.conda - sha256: 376f757b460fc936da6b8159ef80ed5a51a23d2ba02e7834055a99616004d3bc - md5: 5013eaa8a8242355199a31e8973ff3f0 + version: 0.11.0 + build: h7bd072d_8 + build_number: 8 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h7bd072d_8.conda + sha256: 51d3d87a47c642096e2ce389a169aec2e26958042e9130857552a12d65a19045 + md5: 0e9d67838114c0dbd267a9311268b331 depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 135058 - timestamp: 1728797199832 + size: 194447 + timestamp: 1731734668760 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h598b0a5_0 + version: 0.7.1 + build: h29aef15_3 + build_number: 3 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.6.7-h598b0a5_0.conda - sha256: 93c43c3cee726280deaf44d52cc936f51b1c614bfaf600ffd5f002a6a6bb4bd7 - md5: 46860887427f76d0ff0824d987a7aee1 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.1-h29aef15_3.conda + sha256: b8c67e279f8efa833fc92b066dc6d0cef3aff7f06144f738adfbd95cdab52865 + md5: bd7d7b664176b5d164d369f12615b75a depends: - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 117032 - timestamp: 1728967110055 + size: 117581 + timestamp: 1731745139268 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h666547d_0 + version: 0.7.1 + build: h3a84f74_3 + build_number: 3 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.6.7-h666547d_0.conda - sha256: fe006f58bd9349ab7cd4cd864dd4e83409e89764b10d9d7eb7ec148e2f964465 - md5: 7f59dcbbd4eab14ca9256f20b43849eb + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.1-h3a84f74_3.conda + sha256: 274c9ec3c173a2979b949ccc10a6013673c4391502a4a71e07070d6c50eabc60 + md5: e7a54821aaa774cfd64efcd45114a4d7 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 113457 - timestamp: 1728967087200 + size: 113837 + timestamp: 1731745115080 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h86d2b7d_0 + version: 0.7.1 + build: h840aca7_3 + build_number: 3 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.6.7-h86d2b7d_0.conda - sha256: 4691154b75d85039da165b01bd25a2dce99f40b8a635fa9537a36a45dcc3e236 - md5: 851d2b927ba01ac963ffbc1868e971a3 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.1-h840aca7_3.conda + sha256: a75dce44667327d365abdcd68c525913c7dd948ea26d4709386acd58717307fc + md5: 540af65a722c5e490012153673793df5 depends: - __osx >=11.0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - license: Apache-2.0 - license_family: Apache - size: 96707 - timestamp: 1728967262718 -- kind: conda - name: aws-c-sdkutils - version: 0.1.19 - build: h2bff981_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.19-h2bff981_4.conda - sha256: ef65ca9eb9f32ada6fb1b47759374e7ef4f85db002f2265ebc8fd61718284cbc - md5: 5a8afd37e2dfe464d68e63d1c38b08c5 - depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 license: Apache-2.0 license_family: Apache - size: 55957 - timestamp: 1728755888042 + size: 96830 + timestamp: 1731745236535 - kind: conda name: aws-c-sdkutils - version: 0.1.19 - build: ha24d3e7_4 - build_number: 4 + version: 0.2.1 + build: h4c7db1d_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.19-ha24d3e7_4.conda - sha256: 2bec8bd76145f72c89068fb30d60353e6c71a4bb32e13eb543d9d04d6ea0ae9b - md5: 33e7e774771d00b2933443c3954796ea + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h4c7db1d_1.conda + sha256: 3d2b079a361888197894308a93fec95666c6abfcc86c979ae36f1f9cb223dfb3 + md5: 45437a9bad358b25f795e77218063baf depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 58640 - timestamp: 1728755998456 + size: 58256 + timestamp: 1731687032896 - kind: conda name: aws-c-sdkutils - version: 0.1.19 - build: hd45b2be_4 - build_number: 4 + version: 0.2.1 + build: h5d7ee29_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.19-hd45b2be_4.conda - sha256: cc374eef1b367fb9acc83b2e74830f62742d3e53e1f0f6a0d01939b16ed1e3d5 - md5: 7ccdd0f21ffbc77b11963f00892ca8b5 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h5d7ee29_1.conda + sha256: ed3b272b9a345142e62f0cf9ab2a9fa909c92e09691f6a06e98ff500a1f8a303 + md5: 0f1e5bc57d4567c9d9bec8d8982828ed depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 49543 - timestamp: 1728755942076 + size: 50276 + timestamp: 1731687215375 - kind: conda - name: aws-checksums - version: 0.1.20 - build: h2bff981_1 + name: aws-c-sdkutils + version: 0.2.1 + build: hf42f96a_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.20-h2bff981_1.conda - sha256: e1793f2e52fe04ef3a6b2069abda7960d061c6f7af1f0d5f616d43e7a7c40e3c - md5: 8b424cf6b3cfc5cffe98bf4d16c032fb + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-hf42f96a_1.conda + sha256: f6e38c79b124c34edb048c28ec58fdfc4ea8f7a218dc493195afbada48ba063b + md5: bbdd20fb1994a9f0ba98078fcb6c12ab depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72862 - timestamp: 1728750748391 + size: 55738 + timestamp: 1731687063424 - kind: conda name: aws-checksums - version: 0.1.20 - build: ha24d3e7_1 + version: 0.2.2 + build: h4c7db1d_1 build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.20-ha24d3e7_1.conda - sha256: f59c33d71fe4dad1099d9124f471ff9c9e06a51d43578aeb2740c8416dc03540 - md5: 592f2d2e8bc10e60e0d0cf0a737b5da8 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h4c7db1d_1.conda + sha256: b3fa060d4fe9e8fdb7b21b8b3c5fdb61df6f02973f74245a65869100f72a3931 + md5: af22e7e1c1af348a66f938aa66192f2c depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72491 - timestamp: 1728750762489 + size: 72081 + timestamp: 1731687244426 - kind: conda name: aws-checksums - version: 0.1.20 - build: hd45b2be_1 + version: 0.2.2 + build: h5d7ee29_1 build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.20-hd45b2be_1.conda - sha256: d935ca7faa780cfa1053fe1bffb77611a54b4df791897a22048e770b250c651f - md5: ab0b68aafe787311cb8397fd2e60982d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h5d7ee29_1.conda + sha256: eb7ebe309b33a04329b3e51a7f10bb407815389dc37cc047f7d41f9c91f0d1b0 + md5: db1ed95988a8fe6c1ce0d94abdfc8e72 depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 70087 - timestamp: 1728750818479 + size: 70184 + timestamp: 1731687342560 - kind: conda - name: aws-crt-cpp - version: 0.28.3 - build: h4f9f7e0_8 - build_number: 8 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.28.3-h4f9f7e0_8.conda - sha256: 98cbed635af4841186aa3261e6ceadd03822983d6e30f0afa5d34eb452b2b509 - md5: 14af6354d5437421793e17e865301371 + name: aws-checksums + version: 0.2.2 + build: hf42f96a_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-hf42f96a_1.conda + sha256: da802ace5448481c968cfec7e7a4f79f686f42df9de8e3f78c09a925c2882a79 + md5: d908d43d87429be24edfb20e96543c20 depends: - - __osx >=11.0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 - - libcxx >=17 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 229980 - timestamp: 1729181342157 + size: 72744 + timestamp: 1731687193373 - kind: conda name: aws-crt-cpp - version: 0.28.3 - build: hbe26082_8 - build_number: 8 + version: 0.29.4 + build: h21d7256_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.28.3-hbe26082_8.conda - sha256: a9c23a685929b24fcd032daae36b61c4862912abf0a0a8735aeef53418c5bce6 - md5: 80d5fac04be0e6c2774f57eb7529f145 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.4-h21d7256_1.conda + sha256: 0de8dc3a6a9aab74049d85d407d204623a638ade4221a428cef4d91d25d41ef5 + md5: 963a310ba64fd6a113eb4f7fcf89f935 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 349632 - timestamp: 1729181229435 + size: 354101 + timestamp: 1731787070984 - kind: conda name: aws-crt-cpp - version: 0.28.3 - build: hcc2993b_8 - build_number: 8 + version: 0.29.4 + build: h6832833_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.4-h6832833_1.conda + sha256: 9c94db7881035bd1cfb24985668c5c7a693d70ecbf46e4b23c453774400e4437 + md5: 452a0da8c040f2aa825727af66d05b42 + depends: + - __osx >=11.0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 + - libcxx >=18 + license: Apache-2.0 + license_family: Apache + size: 237267 + timestamp: 1731787157065 +- kind: conda + name: aws-crt-cpp + version: 0.29.4 + build: h8cc6612_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.28.3-hcc2993b_8.conda - sha256: 3b5779785c8700e73be97f63ea778b6dba033a49fd77569c5fddbdd3a53a2600 - md5: e71043206d9db242eae53b70773f7f62 - depends: - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.4-h8cc6612_1.conda + sha256: 7ff3dcac3578f2946dcc2d1953f20369750efdb228ada2a6f894642677cef4ec + md5: 494aaf00b4413cdf961abfbdeb5c24e9 + depends: + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 276668 - timestamp: 1729181269528 + size: 283847 + timestamp: 1731787045666 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: h25d6d5c_1 - build_number: 1 + version: 1.11.449 + build: h1a02111_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.407-h25d6d5c_1.conda - sha256: f05d43f3204887cec9a9853a9217f06562b28161950b5485aed1f8afe42aad17 - md5: 0f2bd0128d59a45c9fd56151eab0b37e + url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.449-h1a02111_2.conda + sha256: 697d0055c4838f882d029d05baf432fb4d6fbebd92d60edfadeb10fea66f1755 + md5: 109ff9aa7347ca004a3f496a5160cdb9 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2931742 - timestamp: 1729235000691 + size: 2951572 + timestamp: 1731927266611 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: h880863c_1 - build_number: 1 + version: 1.11.449 + build: h8f08b23_2 + build_number: 2 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.407-h880863c_1.conda - sha256: 9cea713c0d727def94e29a99cdfe1deb65c241c90bc41c96e1e77777cb84d4c9 - md5: 60877ad5c76505fa4b90ab5567babb3d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.449-h8f08b23_2.conda + sha256: 7b7e17c332d7f382f5f97cefe477cb5e9fae171a00d0c40a78ad6263c64a0af2 + md5: c1111d86333195e42ae29d02d64a545c depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - - libcxx >=17 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2709553 - timestamp: 1729235667236 + size: 2733405 + timestamp: 1731927979855 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: hf265f57_1 - build_number: 1 + version: 1.11.449 + build: hf48a0a1_2 + build_number: 2 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.407-hf265f57_1.conda - sha256: d265e7a2af974f09ba795a900900e36e44e581b3adc7e827ddfd2374337ea89c - md5: 63a6b060807c6885d25f82615d5bd8f2 - depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.449-hf48a0a1_2.conda + sha256: 246d894d4354e1c7bbd1466881e87f3f92396777ebbd8cbebe53efb16ace88c4 + md5: e1cd103f7450254f9513244169ea6a1a + depends: + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2758696 - timestamp: 1729234995101 + size: 2803239 + timestamp: 1731927417845 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: h60f91e5_0 + version: 1.14.0 + build: h1887c18_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.13.0-h60f91e5_0.conda - sha256: b3aecc4e01db67a18891e6e9517ec9b628577bbd2e1b6616d147c7c5f2f28a2b - md5: fc41d5a9f2c98fd37324c20f47b0124b + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.14.0-h1887c18_0.conda + sha256: 8967b3ccee4d74e61f6ec82dd8efb9deb854ee7ba012dfe767b7a92e0ac77724 + md5: e0c3a906a41be769f0ae20ca3e31cfc0 depends: - - libcurl >=8.8.0,<9.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 331714 - timestamp: 1720854524500 + size: 338650 + timestamp: 1728055589907 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: h935415a_0 + version: 1.14.0 + build: h5cfcd09_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.13.0-h935415a_0.conda - sha256: b7e0a22295db2e1955f89c69cefc32810309b3af66df986d9fb75d89f98a80f7 - md5: debd1677c2fea41eb2233a260f48a298 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.14.0-h5cfcd09_0.conda + sha256: fe07debdb089a3db17f40a7f20d283d75284bb4fc269ef727b8ba6fc93f7cb5a + md5: 0a8838771cc2e985cd295e01ae83baf1 depends: - __glibc >=2.17,<3.0.a0 - - libcurl >=8.8.0,<9.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 338134 - timestamp: 1720853194547 + size: 345117 + timestamp: 1728053909574 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: hd01fc5c_0 + version: 1.14.0 + build: hd50102c_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.13.0-hd01fc5c_0.conda - sha256: aff4af38416cf7a81c79e5a3b071ce5aa13ec48da28db0312bc1ebe62cf7273d - md5: 2083f6313e623079db6ee67af00e6b27 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.14.0-hd50102c_0.conda + sha256: f5b91329ed59ffc0be8747784c6e4cc7e56250c54032883a83bc11808ef6a87e + md5: f093a11dcf3cdcca010b20a818fcc6dc depends: - __osx >=11.0 - - libcurl >=8.8.0,<9.0a0 - - libcxx >=16 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=17 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 287922 - timestamp: 1720853302106 + size: 294299 + timestamp: 1728054014060 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: h13ea094_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.8.0-h13ea094_2.conda - sha256: 11b01715cae19390890f29ebb56d36d895feafd787ba929aa10b6ce712f3f4b9 - md5: 383b72f2ee009992b21f4db08a708510 + version: 1.10.0 + build: h113e628_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.10.0-h113e628_0.conda + sha256: 286b31616c191486626cb49e9ceb5920d29394b9e913c23adb7eb637629ba4de + md5: 73f73f60854f325a55f1d31459f2ab73 depends: - - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libcxx >=16 - - openssl >=3.3.1,<4.0a0 + - __glibc >=2.17,<3.0.a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 142135 - timestamp: 1721777696118 + size: 232351 + timestamp: 1728486729511 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: hd126650_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.8.0-hd126650_2.conda - sha256: f85452eca3ae0e156b1d1a321a1a9f4f58d44ff45236c0d8602ab96aaad3c6ba - md5: 36df3cf05459de5d0a41c77c4329634b + version: 1.10.0 + build: h47b0b28_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.10.0-h47b0b28_0.conda + sha256: 1c72423b9beba167d2f01b80dc204da77240a8266f1edb3d89510c852b300d69 + md5: 94e73a7877743a85c57091d8afab2348 depends: - - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 199516 - timestamp: 1721777604325 + size: 217132 + timestamp: 1728488096615 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: hf0f394c_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.8.0-hf0f394c_2.conda - sha256: ac143df6b8596eeee2f770f02013e384f06ac09ecee042ee7f8c5a65f7958330 - md5: 3e74c83218d71b01f988e6bada2f4e22 + version: 1.10.0 + build: hc602bab_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.10.0-hc602bab_0.conda + sha256: bde446b916fff5150606f8ed3e6058ffc55a3aa72381e46f1ab346590b1ae40a + md5: d7b71593a937459f2d4b67e1a4727dc2 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - __osx >=11.0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libcxx >=17 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 182768 - timestamp: 1721779454639 + size: 166907 + timestamp: 1728486882502 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: h17ca4bd_0 + version: 12.13.0 + build: h185ecfd_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.12.0-h17ca4bd_0.conda - sha256: 4955de4131a1b4a16ac1f63d3e6f325904b997e1adb0f3fadf5a3b112eee6803 - md5: 9a26fea6b69f4f02689893366961be49 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.13.0-h185ecfd_1.conda + sha256: 280ec70009a92626054f58e45b168fce393e71a9710587488bd8401628cda481 + md5: 221e1e5ecb2643e113f32b3229d5ba33 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 473009 - timestamp: 1721866393941 + size: 502934 + timestamp: 1728580241002 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: hd2e3451_0 + version: 12.13.0 + build: h3cf044e_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.12.0-hd2e3451_0.conda - sha256: 69a0f5c2a08a1a40524b343060debb8d92295e2cc5805c3db56dad7a41246a93 - md5: 61f1c193452f0daa582f39634627ea33 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.13.0-h3cf044e_1.conda + sha256: 2606260e5379eed255bcdc6adc39b93fb31477337bcd911c121fc43cd29bf394 + md5: 7eb66060455c7a47d9dcdbfa9f46579b depends: - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 523120 - timestamp: 1721865032339 + size: 549342 + timestamp: 1728578123088 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: hfde595f_0 + version: 12.13.0 + build: h7585a09_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.12.0-hfde595f_0.conda - sha256: f733f4acedd8bf1705c780e0828f0b83242ae7e72963aef60d12a7c5b3a8640d - md5: f2c935764fdacd0fafc05f975fd347e0 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.13.0-h7585a09_1.conda + sha256: 08d52d130addc0fb55d5ba10d9fa483e39be25d69bac7f4c676c2c3069207590 + md5: 704238ef05d46144dae2e6b5853df8bc depends: - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libcxx >=17 license: MIT license_family: MIT - size: 419976 - timestamp: 1721865180569 + size: 438636 + timestamp: 1728578216193 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: h10ac4d7_1 + version: 12.8.0 + build: h1b94036_1 build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.7.0-h10ac4d7_1.conda - sha256: 1030fa54497a73eb78c509d451f25701e2e781dc182e7647f55719f1e1f9bee8 - md5: ab6d507ad16dbe2157920451d662e4a1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.8.0-h1b94036_1.conda + sha256: 146e76aac169e3dbdce5d3b142b7930ac643795c765e7655d1989905ec7d3231 + md5: 793b1080ab2d958980f137a8643cd6e8 depends: - - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 143039 - timestamp: 1721832724803 + size: 140832 + timestamp: 1728565334900 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: h68dbd84_1 + version: 12.8.0 + build: h736e048_1 build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.7.0-h68dbd84_1.conda - sha256: a4e0afd65ffed6cc788f13068b452d253e4bfa61d8ca0ebaa80e26fe62fed5f7 - md5: 368c9e33d8cc763bf883ca12c163b93c + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.8.0-h736e048_1.conda + sha256: 273475f002b091b66ce7366da04bf164c3732c03f8692ab2ee2d23335b6a82ba + md5: 13de36be8de3ae3f05ba127631599213 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __glibc >=2.17,<3.0.a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 135615 - timestamp: 1721834497638 + size: 149312 + timestamp: 1728563338704 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: hcf3b6fd_1 + version: 12.8.0 + build: h9ca1f76_1 build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.7.0-hcf3b6fd_1.conda - sha256: 3fdf9c0337c48706cffe2e4c761cdea4132fb6dbd1f144d969c28afd903cf256 - md5: df7e01bcf8f3a9bfb0ab06778f915f29 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.8.0-h9ca1f76_1.conda + sha256: 77ab04e8fe5636a2de9c718f72a43645f7502cd208868c8a91ffba385547d585 + md5: 7a187cd7b1445afc80253bb186a607cc depends: - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libcxx >=17 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 119821 - timestamp: 1721832870493 + size: 121278 + timestamp: 1728563418777 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h082e32e_1 + version: 12.12.0 + build: h37d6d07_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.11.0-h082e32e_1.conda - sha256: 3c288dc1ae6bff9a1e21ab5196d13ab486850f61ec649a743a87bf9726901abf - md5: 16b05d31f626717668f01c01a970115f + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.12.0-h37d6d07_1.conda + sha256: 4079c617a75682e49bae63670d58fd6078ccfbbe55ca1f994acab3a74ab6bbcc + md5: b724f3b4b7f4e9b36c58cbe3ed8610a2 depends: - - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 189065 - timestamp: 1721925275724 + size: 260547 + timestamp: 1728730924071 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h325d260_1 + version: 12.12.0 + build: ha633028_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.11.0-h325d260_1.conda - sha256: 1726fa324bb402e52d63227d6cb3f849957cd6841f8cb8aed58bb0c81203befb - md5: 11d926d1f4a75a1b03d1c053ca20424b + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.12.0-ha633028_1.conda + sha256: 5371e4f3f920933bb89b926a85a67f24388227419abd6e99f6086481e5e8d5f2 + md5: 7c1980f89dd41b097549782121a73490 depends: - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 274492 - timestamp: 1721925100762 + size: 287366 + timestamp: 1728729530295 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h36e5eb4_1 + version: 12.12.0 + build: hcdd55da_1 build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.11.0-h36e5eb4_1.conda - sha256: ba0cf9514c12d9fa56a15966badaec450d11ab78adef690501e38bb0f78aeb5f - md5: db65bbb89c21436f5471f93b09a7c09c + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.12.0-hcdd55da_1.conda + sha256: f48523f8aa0b5b80f45a92f0556b388dd96f44ac2dc2f44a01d08c1822eec97d + md5: c49fbc5233fcbaa86391162ff1adef38 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __osx >=11.0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libcxx >=17 license: MIT license_family: MIT - size: 243908 - timestamp: 1721926367577 + size: 196032 + timestamp: 1728729672889 - kind: conda name: backoff version: 2.2.1 @@ -2932,368 +2935,368 @@ packages: timestamp: 1729655345825 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_h00cdb27_1 + version: '20240722.0' + build: cxx17_h5888daf_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.2-cxx17_h00cdb27_1.conda - sha256: a9517c8683924f4b3b9380cdaa50fdd2009cd8d5f3918c92f64394238189d3cb - md5: f16963d88aed907af8b90878b8d8a05c + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda + sha256: 8f91429091183c26950f1e7ffa730e8632f0627ba35d2fccd71df31628c9b4e5 + md5: e1f604644fe8d78e22660e2fec6756bc depends: - - __osx >=11.0 - - libcxx >=16 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - libabseil-static =20240722.0=cxx17* + - abseil-cpp =20240722.0 license: Apache-2.0 license_family: Apache - size: 1136123 - timestamp: 1720857649214 + size: 1310521 + timestamp: 1727295454064 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_h0a1ffab_1 + version: '20240722.0' + build: cxx17_h5ad3122_1 build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.2-cxx17_h0a1ffab_1.conda - sha256: a6e1a6f13fd49c24238373838c266101a2bf3b521b0a36a3a7e586b40f50ec5b - md5: 9cadd103cf89edb2ea68d33728511158 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda + sha256: 590e47dce38031a8893e70491f3b71e214de7781cab53b6f017aa6f6841cb076 + md5: 6fe6b3694c4792a8e26755d3b06f0b80 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libgcc >=13 + - libstdcxx >=13 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - abseil-cpp =20240722.0 + - libabseil-static =20240722.0=cxx17* license: Apache-2.0 license_family: Apache - size: 1283386 - timestamp: 1720857389114 + size: 1328502 + timestamp: 1727295490806 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_he02047a_1 + version: '20240722.0' + build: cxx17_hf9b8971_1 build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda - sha256: 945396726cadae174a661ce006e3f74d71dbd719219faf7cc74696b267f7b0b5 - md5: c48fc56ec03229f294176923c3265c05 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda + sha256: 90bf08a75506dfcf28a70977da8ab050bcf594cd02abd3a9d84a22c9e8161724 + md5: 706da5e791c569a7b9814877098a6a0a depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __osx >=11.0 + - libcxx >=17 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - libabseil-static =20240722.0=cxx17* + - abseil-cpp =20240722.0 license: Apache-2.0 license_family: Apache - size: 1264712 - timestamp: 1720857377573 + size: 1179072 + timestamp: 1727295571173 - kind: conda name: libarrow - version: 17.0.0 - build: had3b6fe_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-17.0.0-had3b6fe_16_cpu.conda - sha256: 9aa5598878cccc29de744ebc4b501c4a5a43332973edfdf0a19ddc521bd7248f - md5: c899e532e16be21570d32bc74ea3d34f + version: 18.0.0 + build: h2409f62_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.0.0-h2409f62_7_cpu.conda + sha256: baf7322466c5849f0ef4c8bab9f394c1448fc7a1d42f74d775b49e20cea8fcf8 + md5: da6e0816fe9639c270cafdec68b411d6 depends: - - __glibc >=2.17,<3.0.a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + - __osx >=11.0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 - - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - - libgcc >=13 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx >=13 + - libcxx >=18 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 - arrow-cpp <0.0a0 - - apache-arrow-proc =*=cpu license: Apache-2.0 license_family: APACHE - size: 8495428 - timestamp: 1726669963852 + size: 5455595 + timestamp: 1731789726593 - kind: conda name: libarrow - version: 17.0.0 - build: hc6a7651_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-17.0.0-hc6a7651_16_cpu.conda - sha256: 1facd5aa7140031be0f68733ab5e413ea1505da40548e27a173b2407046f36b5 - md5: 05fecc4ae5930dc548327980a4bc7a83 + version: 18.0.0 + build: h3b997a5_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.0.0-h3b997a5_7_cpu.conda + sha256: d8e179b123ca9f62b83115091d3936c64d55506fef9c516b90cd3f2bdea304ca + md5: 32897a50e7f68187c4a524c439c0943c depends: - - __osx >=11.0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 + - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - - libcxx >=17 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 + - libgcc >=13 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: - - apache-arrow-proc =*=cpu - arrow-cpp <0.0a0 + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 license: Apache-2.0 license_family: APACHE - size: 5318871 - timestamp: 1726669928492 + size: 8714651 + timestamp: 1731789983840 - kind: conda name: libarrow - version: 17.0.0 - build: hccffc7f_16_cpu - build_number: 16 + version: 18.0.0 + build: hf19f309_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-17.0.0-hccffc7f_16_cpu.conda - sha256: b71e81d0a685ad5832df0c1762d613be82d14a165e984621e0c874cd885a5df4 - md5: adc3e7dd910df20ef4a968f09fe90da0 - depends: - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.0.0-hf19f309_7_cpu.conda + sha256: 83334f90a1759d91324c3cfcdcf4157018020f33901d1833ca28e9a912a4f89a + md5: e42e43720b5203a827bbd1ff05182afa + depends: + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - libgcc >=13 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 - libstdcxx >=13 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: - - apache-arrow-proc =*=cpu - arrow-cpp <0.0a0 + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 license: Apache-2.0 license_family: APACHE - size: 7818979 - timestamp: 1726670314145 + size: 7997233 + timestamp: 1731791153311 +- kind: conda + name: libarrow-acero + version: 18.0.0 + build: h286801f_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.0.0-h286801f_7_cpu.conda + sha256: 8df47c06ad5b839393aa4703721385d3529a64971227a3a342a1100eeb2fbe78 + md5: 67a94caeec254580852dd71b0cb5bfc7 + depends: + - __osx >=11.0 + - libarrow 18.0.0 h2409f62_7_cpu + - libcxx >=18 + license: Apache-2.0 + license_family: APACHE + size: 491285 + timestamp: 1731789825049 - kind: conda name: libarrow-acero - version: 17.0.0 - build: h5888daf_16_cpu - build_number: 16 + version: 18.0.0 + build: h5888daf_7_cpu + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-17.0.0-h5888daf_16_cpu.conda - sha256: 0ff4c712c7c61e60708c6ef4f8158200059e0f63c25d0a54c8e4cca7bd153d86 - md5: 18f796aae018a26a20ac51d19de69115 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.0.0-h5888daf_7_cpu.conda + sha256: bc0aa7f6c05c097f224cb2a8f72d22a5cde7ef239fde7a57f18061bf74776cd5 + md5: 786a275d019708cd1c963b12a8fb0c72 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu + - libarrow 18.0.0 h3b997a5_7_cpu - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 608267 - timestamp: 1726669999941 + size: 618726 + timestamp: 1731790016942 - kind: conda name: libarrow-acero - version: 17.0.0 - build: h5ad3122_16_cpu - build_number: 16 + version: 18.0.0 + build: h5ad3122_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-17.0.0-h5ad3122_16_cpu.conda - sha256: be9f73a92a00d991cc5946705c83c7b449f8cea6709ad29a2e05d6db7beb4b54 - md5: 0913ad25f0ebb327458c25d38bf9cf45 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.0.0-h5ad3122_7_cpu.conda + sha256: dda002b70f6ba368057ba9164eabdc0101a979eab329d3269ec4e615c07292c8 + md5: eaec91ad6d3dd2e459744e3116c68553 depends: - - libarrow 17.0.0 hccffc7f_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 573902 - timestamp: 1726670347811 + size: 585513 + timestamp: 1731791202130 - kind: conda - name: libarrow-acero - version: 17.0.0 - build: hf9b8971_16_cpu - build_number: 16 + name: libarrow-dataset + version: 18.0.0 + build: h286801f_7_cpu + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-17.0.0-hf9b8971_16_cpu.conda - sha256: c9ff43babc0acbd864584ed1720cf063715589e31e9e2024b90d2094d4f20d38 - md5: 319bd2a8c30dffa54d6ad69847f16de1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.0.0-h286801f_7_cpu.conda + sha256: 3d17beb5e336507443f436f21658e0baf6d6dbacc83938a60e7eac20886e5f78 + md5: 75cec89177549b4a87faa6c952fb07a6 depends: - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libcxx >=17 + - libarrow 18.0.0 h2409f62_7_cpu + - libarrow-acero 18.0.0 h286801f_7_cpu + - libcxx >=18 + - libparquet 18.0.0 hda0ea68_7_cpu license: Apache-2.0 license_family: APACHE - size: 483187 - timestamp: 1726670022814 + size: 497438 + timestamp: 1731791003104 - kind: conda name: libarrow-dataset - version: 17.0.0 - build: h5888daf_16_cpu - build_number: 16 + version: 18.0.0 + build: h5888daf_7_cpu + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-17.0.0-h5888daf_16_cpu.conda - sha256: e500e0154cf3ebb41bed3bdf41bd0ff5e0a6b7527a46ba755c05e59c8036e442 - md5: 5400efd6bf101674e0ce170906a0f7cb + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.0.0-h5888daf_7_cpu.conda + sha256: ecfcea86bf62a498eb59bfa28c8d6e28e842e9c8eeb594d059ef0fdc7064154f + md5: a742b9a0452b55020ccf662721c1ce44 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu - - libarrow-acero 17.0.0 h5888daf_16_cpu + - libarrow 18.0.0 h3b997a5_7_cpu + - libarrow-acero 18.0.0 h5888daf_7_cpu - libgcc >=13 - - libparquet 17.0.0 h39682fd_16_cpu + - libparquet 18.0.0 h6bd9018_7_cpu - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 585061 - timestamp: 1726670063965 + size: 594424 + timestamp: 1731790074886 - kind: conda name: libarrow-dataset - version: 17.0.0 - build: h5ad3122_16_cpu - build_number: 16 + version: 18.0.0 + build: h5ad3122_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-17.0.0-h5ad3122_16_cpu.conda - sha256: 276af4de42960692a2ee34630659be11eb1e83552ec4752d59cc96e244382560 - md5: 2dc1bbff088399cca7137501cef4a741 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.0.0-h5ad3122_7_cpu.conda + sha256: e2c4cbeef3862b9446ab7052c5889c0923b97d77582fd10437744bcf75f24e05 + md5: 1b769328f659c977a4b72235bbcdaf9c depends: - - libarrow 17.0.0 hccffc7f_16_cpu - - libarrow-acero 17.0.0 h5ad3122_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu + - libarrow-acero 18.0.0 h5ad3122_7_cpu - libgcc >=13 - - libparquet 17.0.0 h501616e_16_cpu + - libparquet 18.0.0 h23a96eb_7_cpu - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 558058 - timestamp: 1726670424141 -- kind: conda - name: libarrow-dataset - version: 17.0.0 - build: hf9b8971_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-17.0.0-hf9b8971_16_cpu.conda - sha256: e77d3c6825384c232f61fd3602a32507b66410dbe8879cd69a89b0fc49489533 - md5: 67ea0ef775de4c394c3c7db991297ffa - depends: - - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libarrow-acero 17.0.0 hf9b8971_16_cpu - - libcxx >=17 - - libparquet 17.0.0 hf0ba9ef_16_cpu - license: Apache-2.0 - license_family: APACHE - size: 491606 - timestamp: 1726671006156 + size: 567511 + timestamp: 1731791297133 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: h08b7278_16_cpu - build_number: 16 + version: 18.0.0 + build: h14ec2bd_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-17.0.0-h08b7278_16_cpu.conda - sha256: 8f4179180db0ab8b7e759699e40533d893082e4556d2d6b81b20224e60312fa9 - md5: c677e8946781fd3b57ef3b8b1b883f4d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.0.0-h14ec2bd_7_cpu.conda + sha256: f9c63c5ad5629d8891bafc100bc8a8e0844ee73b52189a6dcb59522790d93635 + md5: 3c0517a4c9a67370e9279c3b9bc2ce2b depends: - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 hccffc7f_16_cpu - - libarrow-acero 17.0.0 h5ad3122_16_cpu - - libarrow-dataset 17.0.0 h5ad3122_16_cpu + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 hf19f309_7_cpu + - libarrow-acero 18.0.0 h5ad3122_7_cpu + - libarrow-dataset 18.0.0 h5ad3122_7_cpu - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 537621 - timestamp: 1726670458067 + size: 523066 + timestamp: 1731791341708 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: hbf8b706_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-17.0.0-hbf8b706_16_cpu.conda - sha256: 6880b3c8fb88ee6c0bbae34b0efea86567ccec1b8cd8a3662b8b8c6dfeb5e87a - md5: b739c909163c38f85f40f5650ab2aeb2 + version: 18.0.0 + build: h5c8f2c3_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.0.0-h5c8f2c3_7_cpu.conda + sha256: f4e12c8f48449b47ec7642f5cc0705d59e59c608d563e2848ffceec779c7c220 + md5: be76013fa3fdaec2c0c504e6fdfd282d depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libarrow-acero 17.0.0 hf9b8971_16_cpu - - libarrow-dataset 17.0.0 hf9b8971_16_cpu - - libcxx >=17 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 h3b997a5_7_cpu + - libarrow-acero 18.0.0 h5888daf_7_cpu + - libarrow-dataset 18.0.0 h5888daf_7_cpu + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 472812 - timestamp: 1726671149860 + size: 528172 + timestamp: 1731790101854 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: hf54134d_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-17.0.0-hf54134d_16_cpu.conda - sha256: 53f3d5f12c9ea557f33a4e1cf9067ce2dbb4211eff0a095574eeb7f0528bc044 - md5: 1cbc3fb1ee28c99e5f8c52920a7717a3 + version: 18.0.0 + build: h6a6e5c5_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.0.0-h6a6e5c5_7_cpu.conda + sha256: 775c202c379c712f3e77d43ce54d3f9a7ef8dd37d3b68911e886b89f5502eeac + md5: 2a3910690b531fdc9553e2889fda97bf depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 had3b6fe_16_cpu - - libarrow-acero 17.0.0 h5888daf_16_cpu - - libarrow-dataset 17.0.0 h5888daf_16_cpu - - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx >=13 + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 h2409f62_7_cpu + - libarrow-acero 18.0.0 h286801f_7_cpu + - libarrow-dataset 18.0.0 h286801f_7_cpu + - libcxx >=18 + - libprotobuf >=5.28.2,<5.28.3.0a0 license: Apache-2.0 license_family: APACHE - size: 550960 - timestamp: 1726670093831 + size: 459246 + timestamp: 1731791195089 - kind: conda name: libblas version: 3.9.0 @@ -3665,18 +3668,18 @@ packages: timestamp: 1726659794676 - kind: conda name: libcxx - version: 19.1.3 + version: 19.1.4 build: ha82da77_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.3-ha82da77_0.conda - sha256: 6d062760c6439e75b9a44d800d89aff60fe3441998d87506c62dc94c50412ef4 - md5: bf691071fba4734984231617783225bc + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.4-ha82da77_0.conda + sha256: 342896ebc1d6acbf022ca6df006a936b9a472579e91e3c502cb1f52f218b78e9 + md5: a2d3d484d95889fccdd09498d8f6bf9a depends: - __osx >=11.0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 520771 - timestamp: 1730314603920 + size: 520678 + timestamp: 1732060258949 - kind: conda name: libedit version: 3.1.20191231 @@ -4103,212 +4106,214 @@ packages: timestamp: 1729089357313 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: h435de7b_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.29.0-h435de7b_0.conda - sha256: c8ee42a4acce5227d220ec6500f6872d52d82e478c76648b9ff57dd2d86429bd - md5: 5d95d9040c4319997644f68e9aefbe70 + version: 2.31.0 + build: h3888205_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.31.0-h3888205_0.conda + sha256: 603b0bd55980f5bf97911b327c9e469cf953c482f112b561dc9c1c7608bbdc29 + md5: 5b3d9a0327c4f7c569162f10acaf6bb4 depends: - - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 1241649 - timestamp: 1725640926284 + size: 1246720 + timestamp: 1731122940037 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: hbb89541_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.29.0-hbb89541_0.conda - sha256: a604681e3a6a7b6214df0406afd1a225349e9cd1f8c177826140811315a938ba - md5: a2ca6f7068595e4c3e2ee8214106786b + version: 2.31.0 + build: h804f50b_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.31.0-h804f50b_0.conda + sha256: b2de99c83516236ff591d30436779f8345bcc11bb0ec76a7ca3a38a3b23b6423 + md5: 35ab838423b60f233391eb86d324a830 depends: + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 1231400 - timestamp: 1725642021621 + size: 1248705 + timestamp: 1731122589027 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: hfa33a2f_0 + version: 2.31.0 + build: h8d8be31_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.29.0-hfa33a2f_0.conda - sha256: 1f42048702d773a355d276d24313ac63781a331959fc3662c6be36e979d7845c - md5: f78c7bd435ee45f4661daae9e81ddf13 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.31.0-h8d8be31_0.conda + sha256: 184d650d55453a40935c128ea309088ae52e15a68cd87ab17ae7c77704251168 + md5: a338736f1514e6f999db8726fe0965b1 depends: - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 - - libcxx >=17 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=18 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 866727 - timestamp: 1725640714587 + size: 873497 + timestamp: 1731121684939 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 + version: 2.31.0 build: h0121fbd_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.29.0-h0121fbd_0.conda - sha256: 2847c9e940b742275a7068e0a742bdabf211bf0b2bbb1453592d6afb47c7e17e - md5: 06dfd5208170b56eee943d9ac674a533 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.31.0-h0121fbd_0.conda + sha256: 3c38b0a80441f82323dc5a72b96c0dd7476bd5184fbfcdf825a8e15249c849af + md5: 568d6a09a6ed76337a7b97c84ae7c0f8 depends: - __glibc >=2.17,<3.0.a0 - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - libgcc >=13 - - libgoogle-cloud 2.29.0 h435de7b_0 + - libgoogle-cloud 2.31.0 h804f50b_0 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 781655 - timestamp: 1725641060970 + size: 782150 + timestamp: 1731122728715 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 - build: h90fd6fa_0 + version: 2.31.0 + build: h7081f7f_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.29.0-h90fd6fa_0.conda - sha256: ec80383fbb6fae95d2ff7d04ba46b282ab48219b7ce85b3cd5ee7d0d8bae74e1 - md5: baee0b9cb1c5319f370a534ca5a16267 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.31.0-h7081f7f_0.conda + sha256: 01f5156584b816d34270a60a61f6b6561f2a01cb3b4eeb455a4e1808d763d486 + md5: 548fd1d31741ee6b13df4124db4a9f5f depends: - __osx >=11.0 - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - - libcxx >=17 - - libgoogle-cloud 2.29.0 hfa33a2f_0 + - libcxx >=18 + - libgoogle-cloud 2.31.0 h8d8be31_0 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 535346 - timestamp: 1725641618955 + size: 526858 + timestamp: 1731122580689 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 + version: 2.31.0 build: hb9b2b65_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.29.0-hb9b2b65_0.conda - sha256: d477736704021486ffde0b117290d8c1f29a434f02ab9a21d4458e41212c448f - md5: 5f75545cfccc08fb2f79256e0b8a2fb6 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.31.0-hb9b2b65_0.conda + sha256: 1df4b7b59224d865a574003df12ee36d4a9939e8e7911b4472348730b9c2a0e8 + md5: 53897114489b4df10e1680bf189aa306 depends: - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - libgcc >=13 - - libgoogle-cloud 2.29.0 hbb89541_0 + - libgoogle-cloud 2.31.0 h3888205_0 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 736327 - timestamp: 1725642186647 + size: 737686 + timestamp: 1731123086764 - kind: conda name: libgrpc - version: 1.62.2 - build: h15f2491_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.2-h15f2491_0.conda - sha256: 28241ed89335871db33cb6010e9ccb2d9e9b6bb444ddf6884f02f0857363c06a - md5: 8dabe607748cb3d7002ad73cd06f1325 + version: 1.67.1 + build: h36c5df4_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda + sha256: 1f6673d9d866048c9cf28fd56e6874ffc7e2c53c47d7071cb367d5fc2dde16a7 + md5: b946137e362e98a55a77fdf0b20a7739 depends: - - c-ares >=1.28.1,<2.0a0 + - c-ares >=1.32.3,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 7316832 - timestamp: 1713390645548 + size: 7131846 + timestamp: 1730236305327 - kind: conda name: libgrpc - version: 1.62.2 - build: h98a9317_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.62.2-h98a9317_0.conda - sha256: ae5fe7ba0c5c599f0e20fa08be436518b7ef25ab6f705e8c7fcf0d0f34525f72 - md5: 2a669953ec0f08c2cc56bb43fed78de8 + version: 1.67.1 + build: hc2c308b_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda + sha256: 870550c1faf524e9a695262cd4c31441b18ad542f16893bd3c5dbc93106705f7 + md5: 4606a4647bfe857e3cfe21ca12ac3afb depends: - - c-ares >=1.28.1,<2.0a0 + - __glibc >=2.17,<3.0.a0 + - c-ares >=1.32.3,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 7395259 - timestamp: 1713390742813 + size: 7362336 + timestamp: 1730236333879 - kind: conda name: libgrpc - version: 1.62.2 - build: h9c18a4f_0 + version: 1.67.1 + build: hc70892a_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.2-h9c18a4f_0.conda - sha256: d2c5b5a828f6f1242c11e8c91968f48f64446f7dd5cbfa1197545e465eb7d47a - md5: e624fc11026dbb84c549435eccd08623 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda + sha256: d2393fcd3c3584e5d58da4122f48bcf297567d2f6f14b3d1fcbd34fdd5040694 + md5: 624e27571fde34f8acc2afec840ac435 depends: - - c-ares >=1.28.1,<2.0a0 + - __osx >=11.0 + - c-ares >=1.34.2,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 5016525 - timestamp: 1713392846329 + size: 4882208 + timestamp: 1730236299095 - kind: conda name: libiconv version: '1.17' @@ -4556,179 +4561,178 @@ packages: timestamp: 1730773029647 - kind: conda name: libparquet - version: 17.0.0 - build: h39682fd_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-17.0.0-h39682fd_16_cpu.conda - sha256: 09bc64111e5e1e9f5fee78efdd62592e01c681943fe6e91b369f6580dc8726c4 - md5: dd1fee2da0659103080fdd74004656df + version: 18.0.0 + build: h23a96eb_7_cpu + build_number: 7 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.0.0-h23a96eb_7_cpu.conda + sha256: 405cd8b36b454aac8d8f3f698feb4c8c4fca99eae9724b9312bac1ce0653ec5d + md5: 010433ece4a8287643b92c348c48068d depends: - - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu - libgcc >=13 - libstdcxx >=13 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 1186069 - timestamp: 1726670048098 + size: 1122091 + timestamp: 1731791274767 - kind: conda name: libparquet - version: 17.0.0 - build: h501616e_16_cpu - build_number: 16 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-17.0.0-h501616e_16_cpu.conda - sha256: 7d834aec3ee3cc1069bd780862bbb0f339265e2386692252f375c1e380bc8f5f - md5: 0f366d30bc01ea47e04b7034d408d6d4 + version: 18.0.0 + build: h6bd9018_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.0.0-h6bd9018_7_cpu.conda + sha256: 908e21eab32839375ebe59952e783e40645ca5083b64001679960f2e38e64c31 + md5: 687870f7d9cba5262fdd7e730e9e9ba8 depends: - - libarrow 17.0.0 hccffc7f_16_cpu + - __glibc >=2.17,<3.0.a0 + - libarrow 18.0.0 h3b997a5_7_cpu - libgcc >=13 - libstdcxx >=13 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 1104185 - timestamp: 1726670404384 + size: 1212405 + timestamp: 1731790060397 - kind: conda name: libparquet - version: 17.0.0 - build: hf0ba9ef_16_cpu - build_number: 16 + version: 18.0.0 + build: hda0ea68_7_cpu + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-17.0.0-hf0ba9ef_16_cpu.conda - sha256: 6ed28f06409b02a9f521ee5e8cf2f4d3fb63a7633c11f2ee7ec2880e78e184e5 - md5: 517ecf2ee0c2822e6120c258f3acd383 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.0.0-hda0ea68_7_cpu.conda + sha256: 8343a369243b7c87993955e39fbbac3617413f4a963e271fda5079b6c8fec7b0 + md5: fd32f3b3115477411f3790eb67272081 depends: - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libcxx >=17 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libarrow 18.0.0 h2409f62_7_cpu + - libcxx >=18 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 873007 - timestamp: 1726670938318 + size: 881594 + timestamp: 1731790946184 - kind: conda name: libprotobuf - version: 4.25.3 - build: hc39d83c_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hc39d83c_1.conda - sha256: f51bde2dfe73968ab3090c1098f520b65a8d8f11e945cb13bf74d19e30966b61 - md5: fa77986d9170450c014586ab87e144f8 + version: 5.28.2 + build: h029595c_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda + sha256: d8c7b6f851bfc53494d9b8e54d473c4f11ab26483a6e64df6f7967563df166b1 + md5: 538dbe0ad9f248e2e109abb9b6809ea5 depends: - - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcxx >=17 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2177164 - timestamp: 1727160770879 + size: 2802876 + timestamp: 1728564881988 - kind: conda name: libprotobuf - version: 4.25.3 - build: hd5b35b9_1 - build_number: 1 + version: 5.28.2 + build: h5b01275_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-hd5b35b9_1.conda - sha256: 8b5e4e31ed93bf36fd14e9cf10cd3af78bb9184d0f1f87878b8d28c0374aa4dc - md5: 06def97690ef90781a91b786cb48a0a9 + url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda + sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421 + md5: ab0bff36363bec94720275a681af8b83 depends: - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2883090 - timestamp: 1727161327039 + size: 2945348 + timestamp: 1728565355702 - kind: conda name: libprotobuf - version: 4.25.3 - build: hea2c3fa_1 - build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-hea2c3fa_1.conda - sha256: dabf4632d39b29444d157c226f4df146fa347c82540c39bf6f9545f2a7d0f40c - md5: c06acb4f972c516696590e6d6ffb69c7 + version: 5.28.2 + build: h8f0b736_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda + sha256: f732a6fa918428e2d5ba61e78fe11bb44a002cc8f6bb74c94ee5b1297fefcfd8 + md5: d2cb5991f2fb8eb079c80084435e9ce6 depends: + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libgcc >=13 - - libstdcxx >=13 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2613905 - timestamp: 1727160673211 + size: 2374965 + timestamp: 1728565334796 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h5a48ba9_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda - sha256: 3f3c65fe0e9e328b4c1ebc2b622727cef3e5b81b18228cfa6cf0955bc1ed8eff - md5: 41c69fba59d495e8cf5ffda48a607e35 + version: 2024.07.02 + build: h18dbdb1_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda + sha256: 96d4fdac28d5af38c38f90c22cb0aa9a90affae13ca8ba24bd1eb60b789df8ff + md5: f1800796b0efc4bbc5b001d845545111 depends: - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 232603 - timestamp: 1708946763521 + size: 203516 + timestamp: 1728778974654 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h7b2c953_2 - build_number: 2 + version: 2024.07.02 + build: h2348fd5_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda - sha256: c8a0a6e7a627dc9c66ffb8858f8f6d499f67fd269b6636b25dc5169760610f05 - md5: 0b7b2ced046d6b5fe6e9d46b1ee0324c + url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda + sha256: 6facca42cfc85a05b33e484a8b0df7857cc092db34806946d022270098d8d20f + md5: 5a7065309a66097738be6a06fd04b7ef depends: + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 171443 - timestamp: 1708947163461 + size: 165956 + timestamp: 1728779107218 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h9d008c2_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2023.09.01-h9d008c2_2.conda - sha256: 1da5cfd57091a52c822ec9580694f1e07817e53db43b0407a477daa2d2a16fcd - md5: 387c114aadcaeb02210f646c4b5efca2 + version: 2024.07.02 + build: hbbce691_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda + sha256: f8ad6a4f6d4fd54ebe3e5e712a01e663222fc57f49d16b6b8b10c30990dafb8f + md5: 2124de47357b7a516c0a3efd8f88c143 depends: + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 217529 - timestamp: 1708946830978 + size: 211096 + timestamp: 1728778964655 - kind: conda name: libsodium version: 1.0.20 @@ -4923,62 +4927,59 @@ packages: timestamp: 1729089498541 - kind: conda name: libthrift - version: 0.20.0 - build: h0e7cc3e_1 - build_number: 1 + version: 0.21.0 + build: h0e7cc3e_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.20.0-h0e7cc3e_1.conda - sha256: 3e70dfda31a3ce28310c86cc0001f20abb78c917502e12c94285a1337fe5b9f0 - md5: d0ed81c4591775b70384f4cc78e05cd1 + url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda + sha256: ebb395232973c18745b86c9a399a4725b2c39293c9a91b8e59251be013db42f0 + md5: dcb95c0a98ba9ff737f7ae482aef7833 depends: - __glibc >=2.17,<3.0.a0 - libevent >=2.1.12,<2.1.13.0a0 - - libgcc-ng >=13 - - libstdcxx-ng >=13 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 417404 - timestamp: 1724652349098 + size: 425773 + timestamp: 1727205853307 - kind: conda name: libthrift - version: 0.20.0 - build: h154c74f_1 - build_number: 1 + version: 0.21.0 + build: h154c74f_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.20.0-h154c74f_1.conda - sha256: 283a6fbac3e6de97f25144306fb46dc5f6d6fc7f4052a4f8ec6da0cb806025b5 - md5: c0bd829d4ef1b1be0c5b8bf206c0cd6d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.21.0-h154c74f_0.conda + sha256: f04ab1417aca1687edff9c30d8423ace285eb8c053dc16d595c6e47cfeefb274 + md5: c28792bf37f4ecdce8e3cb9e40750650 depends: - libevent >=2.1.12,<2.1.13.0a0 - - libgcc-ng >=13 - - libstdcxx-ng >=13 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 408434 - timestamp: 1724652544563 + size: 417329 + timestamp: 1727205944238 - kind: conda name: libthrift - version: 0.20.0 - build: h64651cc_1 - build_number: 1 + version: 0.21.0 + build: h64651cc_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.20.0-h64651cc_1.conda - sha256: b6afcbc934258e0474e0f1059bc7b23865723b902062f2f2910e0370e6495401 - md5: 4cf2e5233320648397184415f380c891 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.21.0-h64651cc_0.conda + sha256: 7a6c7d5f58cbbc2ccd6493b4b821639fdb0701b9b04c737a949e8cb6adf1c9ad + md5: 7ce2bd2f650f8c31ad7ba4c7bfea61b7 depends: - __osx >=11.0 - libcxx >=17 - libevent >=2.1.12,<2.1.13.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 315041 - timestamp: 1724657608736 + size: 324342 + timestamp: 1727206096912 - kind: conda name: libutf8proc version: 2.8.0 @@ -5229,20 +5230,19 @@ packages: timestamp: 1727963148474 - kind: conda name: llvm-openmp - version: 19.1.3 - build: hb52a8e5_0 + version: 19.1.4 + build: hdb05f8b_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.3-hb52a8e5_0.conda - sha256: 49a8940e727aa82ee034fa9a60b3fcababec41b3192d955772aab635a5374b82 - md5: dd695d23e78d1ca4fecce969b1e1db61 + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.4-hdb05f8b_0.conda + sha256: dfdcd8de37899d984326f9734b28f46f80b88c068e44c562933a8b3117f2401a + md5: 76ca179ec970bea6e275e2fa477c2d3c depends: - __osx >=11.0 constrains: - - openmp 19.1.3|19.1.3.* + - openmp 19.1.4|19.1.4.* license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 280488 - timestamp: 1730364082380 + size: 281554 + timestamp: 1732102484807 - kind: conda name: lz4-c version: 1.9.4 @@ -5361,76 +5361,76 @@ packages: timestamp: 1729351534830 - kind: conda name: max - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - sha256: fa56e98447bb9722c73e114e668327474621732929a3b3bf03d706558c0b41df - md5: 099bfd8c69724fb21c86aa6440b07ed4 - depends: - - max-core ==24.6.0.dev2024111816 release - - max-python >=24.6.0.dev2024111816,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111816 release - - mblack ==24.6.0.dev2024111816 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + sha256: c6e86f0fbbd57d65c245b58c9a39f64301c769c587f75aa550f0a3f64629cbec + md5: f8203ce4409d971e909d91b10bf2fa89 + depends: + - max-core ==24.6.0.dev2024112020 release + - max-python >=24.6.0.dev2024112020,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024112020 release + - mblack ==24.6.0.dev2024112020 release license: LicenseRef-Modular-Proprietary - size: 9924 - timestamp: 1731949226511 + size: 9918 + timestamp: 1732136899196 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda - sha256: 4bbaf8418f56808a9a7ed147755de1fd9ff479bb5db60e0b0060f501007a6d03 - md5: 9239cc63963a1e4a15ce32f6ec8fa36c + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024112020-release.conda + sha256: 540fd3163a864bf60fae9a2afd86f111b54afd76f6dfb59aae9299d8189ea220 + md5: 85cd4cfe4bed145b377b9379319c39fc depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 271464508 - timestamp: 1731949226509 + size: 270965073 + timestamp: 1732136835508 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda - sha256: 232a2ca14f07fc562bddb44ecec6848e31f026cfa93267737fd329c51cb26a66 - md5: 9b6d01a1fe29a43ded2016a8c6a6a2c0 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024112020-release.conda + sha256: 4e3e1104c4b2c3f26134bf4b865fef2af26cd33aa453244c59cbc27bf58340d6 + md5: 1b76c22a75e2f55fdd8ec123cdfb82aa depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 275099918 - timestamp: 1731949126926 + size: 274655105 + timestamp: 1732136899194 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda - sha256: e8fc65d3b90b8557a6f64e0aa7700b97f4d00a2e2d2bbee651f918986dacb9cb - md5: fd415a5af0a193bfa9241e17eaf3747d + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024112020-release.conda + sha256: ae86df0b9d20d20756d16a0b66e0d2f12427a496e28d639589fba76c8e508cd7 + md5: 582615e4dae591fac5d708eaec594ebc depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 233285763 - timestamp: 1731949312758 + size: 233689138 + timestamp: 1732137063646 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda - sha256: a625852f27ef5a5f3ad3142199eab2bd81c66e44d5b46bddcfd4f68001372eda - md5: a4f8b2d1c96022cac3bff1a1e2de7770 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024112020-3.12release.conda + sha256: 9211cfb8440bf028cce5ec4554f1377ef2524e5bc2532b26029d5072a01a59b4 + md5: 83c7b6adf2b7567243a2e8682f7f33a2 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5450,18 +5450,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 136809568 - timestamp: 1731949226522 + size: 137376849 + timestamp: 1732136835521 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda - sha256: cd12e22f775075932eb6aee4d8654fad445ecf08fef09f08fec259d08a8b93fe - md5: dd91853ef7d888e133cca3368f8651bc + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024112020-3.12release.conda + sha256: 21914b325dbf1015b5cb5fef142789721d64fd5ac2f7c6b15b4192a4bb02ae4d + md5: 8b47d04ff478a6b4a66defe8226da80a depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5481,18 +5481,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 140331334 - timestamp: 1731949126939 + size: 140907571 + timestamp: 1732136899208 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda - sha256: 6b96a0d537f247fe3fa9851d5147d57733038ef4ba245510e75d8362b5e5aabf - md5: 6ed7307847e8d9a0592b8bc08c31cf80 + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024112020-3.12release.conda + sha256: bbbbf91f30719bc4a51bc0317c91b9e1716d024b3721a95b37bd058ca1c66d5e + md5: 4893fb00ccdf17ce31d56617288c15f6 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5512,17 +5512,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 125415344 - timestamp: 1731949312762 + size: 125944186 + timestamp: 1732137063649 - kind: conda name: mblack - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - sha256: 49cab69b1c9539336534907a415e6404b791290bccba5ed61b50b92be7278b6e - md5: 9e7f2d795645d6a04620718dfb10d39c + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda + sha256: d684315cf58ea23860f16a1e305bfc9b8a2c7e39554a6d40d46411a5d6fd50cf + md5: bf7e67dddae76fd3bb6a2f623642b200 depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5532,8 +5532,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130612 - timestamp: 1731949226516 + size: 130610 + timestamp: 1732136899202 - kind: conda name: mdurl version: 0.1.2 @@ -5551,21 +5551,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - sha256: db5710960cab7c1d1c63ecf6916652cc07fdb8cda80528773d410141b3db0076 - md5: 1959b4bee271c31390854e23a85a7815 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda + sha256: 65ee90ebd5d6250b6f12d6e78fea39c287b82f14949aba8df0f47c4cbdbc0be0 + md5: 5f30ae7817d94671df319b612c290550 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary size: 22941 - timestamp: 1731949226517 + timestamp: 1732136899203 - kind: conda name: multidict version: 6.1.0 @@ -5850,61 +5850,58 @@ packages: timestamp: 1731377666602 - kind: conda name: opentelemetry-api - version: 1.27.0 + version: 1.28.2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - sha256: ed8350db9d8f177f2e0eefb4df24c1134f1b39f7ef3e20ac42725a3b860309cd - md5: 947b016e29819585f8f3f82dbb7ede91 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + sha256: e267ed59ea8f357c3471defef796ce4f4555eacd9ee0ed2d47d3dd539ee7ee2f + md5: f1307fb38a8fd2220def45ec1691a21c depends: - deprecated >=1.2.6 - importlib-metadata >=6.0.0,<7.1.0 - python >=3.8 - setuptools >=16.0 license: Apache-2.0 - license_family: APACHE - size: 43708 - timestamp: 1724916819673 + size: 44014 + timestamp: 1731985724169 - kind: conda name: opentelemetry-exporter-otlp-proto-common - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - sha256: 6ec5cc984ad9c0faef329a1a1507d4431f08812b9053be42a2a736ae081dc3c5 - md5: 00e6c03b1437fa6bf3a775bc8f89f677 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + sha256: 838525f5a35f130eb3e6ccf06700ab7574467e8abe19da91e6f0de3b399e77c2 + md5: b00b3a8f0d25d5b18979c73ec051c313 depends: - backoff >=1.10.0,<3.0.0 - - opentelemetry-proto 1.27.0 - - python >=3.8 + - opentelemetry-proto 1.28.2 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 18221 - timestamp: 1724929505617 + size: 18838 + timestamp: 1731991715474 - kind: conda name: opentelemetry-exporter-otlp-proto-http - version: 1.27.0 + version: 1.28.2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda - sha256: b5b86f0f819b5dd05bf0e67ddaa763086194a751aa534bed44fdbf089b317142 - md5: 3caeb0419f4d0f9ac0538c799df15612 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda + sha256: d89b7b0f28dca5ed84d8c3421e3b16683f764c9eebde66cc8858fc183751af69 + md5: 73810c011d2d60914ce8f92fe99564a0 depends: - deprecated >=1.2.6 - googleapis-common-protos ~=1.52 - - opentelemetry-api 1.27.0 - - opentelemetry-exporter-otlp-proto-common 1.27.0 - - opentelemetry-proto 1.27.0 - - opentelemetry-sdk 1.27.0 + - opentelemetry-api ~=1.15 + - opentelemetry-exporter-otlp-proto-common 1.28.2 + - opentelemetry-proto 1.28.2 + - opentelemetry-sdk ~=1.28.2 - python >=3.8 - requests ~=2.7 license: Apache-2.0 - license_family: APACHE - size: 16982 - timestamp: 1724969540619 + size: 17007 + timestamp: 1732094238214 - kind: conda name: opentelemetry-exporter-prometheus version: 1.12.0rc1 @@ -5925,139 +5922,136 @@ packages: timestamp: 1695214221489 - kind: conda name: opentelemetry-instrumentation - version: 0.48b0 - build: pyhd8ed1ab_0 + version: 0.49b2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - sha256: e7466998c0a6e5ecc9b8681312617c5d6d85afe3902a03fa7c755eb1a08c3db8 - md5: 5cd186b5587efdc79c6b24f06b2b1726 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + sha256: ee20ad159bc040642fcbce1b25f8a9fc1d788b53c6bf593a0891bf7887ec7c5f + md5: 13d714acd504cd0141688c908521c0b9 depends: - opentelemetry-api ~=1.4 - - python >=3.7 + - opentelemetry-semantic-conventions 0.49b2 + - packaging >=18.0 + - python >=3.9 - setuptools >=16.0 - wrapt <2.0.0,>=1.0.0 license: Apache-2.0 - license_family: APACHE - size: 30783 - timestamp: 1724896532781 + size: 31616 + timestamp: 1732070359772 - kind: conda name: opentelemetry-instrumentation-asgi - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - sha256: 563634bfbb54093812aabcc9bb36b1430c462c02350d114967862188d66fddec - md5: e337134c68bfa548019f83593164cdfd + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + sha256: 7b2b4da037baa506a82c5e3e711905f34448441e069a6e3affb0e4917b3ee5e0 + md5: 482ad6cdc507689d5c33eb22aa16d83e depends: - asgiref ~=3.0 - opentelemetry-api ~=1.12 - - opentelemetry-instrumentation 0.48b0 - - opentelemetry-semantic-conventions 0.48b0 - - opentelemetry-util-http 0.48b0 + - opentelemetry-instrumentation 0.49b2 + - opentelemetry-semantic-conventions 0.49b2 + - opentelemetry-util-http 0.49b2 - python >=3.7 license: Apache-2.0 - license_family: APACHE - size: 23429 - timestamp: 1724943803444 + size: 23749 + timestamp: 1732086813641 - kind: conda name: opentelemetry-instrumentation-fastapi - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - sha256: 5c9195c089446241590001cfbcbc12421a2b89a0a23dd3691cd45fe9f77d5c93 - md5: e844191ea9b60804c57fb0978698407b + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + sha256: e853f62b4c56e308f349a3f360cf4d6aa814a9dc926e727c25effcf4121af68c + md5: 59c01fcead989ba58c5dc79e3ac3aab3 depends: - opentelemetry-api ~=1.12 - - opentelemetry-instrumentation 0.48b0 - - opentelemetry-instrumentation-asgi 0.48b0 - - opentelemetry-semantic-conventions 0.48b0 - - opentelemetry-util-http 0.48b0 + - opentelemetry-instrumentation 0.49b2 + - opentelemetry-instrumentation-asgi 0.49b2 + - opentelemetry-semantic-conventions 0.49b2 + - opentelemetry-util-http 0.49b2 - python >=3.7 license: Apache-2.0 - license_family: APACHE - size: 19806 - timestamp: 1724987641159 + size: 20288 + timestamp: 1732093785486 - kind: conda name: opentelemetry-proto - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - sha256: ca0480de7f33511dc983aeaf7de23f49c3a258b185588543f85abcf08b10d000 - md5: 3de386ea142a50514f6bba04c3fb48c0 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + sha256: e68320a465b45e05f569c440a20735db9a0fd7cdb9e52300506660a924d17caf + md5: 54ac33b32171ce2205b6639da1a1ac54 depends: - - protobuf >=3.19,<5.0 - - python >=3.8 + - protobuf <6.0,>=5.0 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 37620 - timestamp: 1724925809921 + size: 37108 + timestamp: 1731988686996 - kind: conda name: opentelemetry-sdk - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - sha256: fb0e4f664166d168edf455f744d827c2342b4b1e99d035cd2e47721863d845e5 - md5: 1a16e734cd0ebb70d3b79265403beb13 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + sha256: 67c5be0f2b81b329d273f1f24f985a53e000b4b42b8338b56375d75aa8da5bb1 + md5: 742115714b2cbfa599e9f78495233d1a depends: - - opentelemetry-api 1.27.0 - - opentelemetry-semantic-conventions 0.48b0 - - python >=3.8 + - opentelemetry-api 1.28.2 + - opentelemetry-semantic-conventions 0.49b2 + - python >=3.9 - typing-extensions >=3.7.4 + - typing_extensions >=3.7.4 license: Apache-2.0 - license_family: APACHE - size: 73814 - timestamp: 1724923174196 + size: 78017 + timestamp: 1732070451972 - kind: conda name: opentelemetry-semantic-conventions - version: 0.48b0 - build: pyhd8ed1ab_0 + version: 0.49b2 + build: pyh10f6f8f_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - sha256: e2f9a4dbb4eef97e5ab04a73b3898c0f186d57705eae66c6991452385f987e9c - md5: eefd5ed55046af15c08051afb6b0eb6b + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + sha256: 5e3869ad66082b16d56bab8219fad0c8c09090ec93eb866327eed788fe5c9340 + md5: d95dd6e8a70417e394bb16dad5cff408 depends: - - opentelemetry-api 1.27.0 - - python >=3.8 + - deprecated >=1.2.6 + - opentelemetry-api 1.28.2 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 76393 - timestamp: 1724919708207 + size: 81534 + timestamp: 1732067304518 - kind: conda name: opentelemetry-util-http - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - sha256: 9bc1dbb9d258d6e6c25d96b85d58d049e325971270d42439b5cff88777ce7bc7 - md5: 4fe36ba8135c7fb262d0f7721aa01b05 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + sha256: 73bb1cbb640b0732c1a04764a9704bb048ab77d6cb9c6439eb50ec0ecf926ede + md5: f267c60fc629a9bd1aa388f6ed8ea0ab depends: - python >=3.8 license: Apache-2.0 - license_family: APACHE - size: 19163 - timestamp: 1724929864899 + size: 19241 + timestamp: 1732081026829 - kind: conda name: orc - version: 2.0.2 - build: h383807c_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda - sha256: 04cc6054199bdbc2649f1ee1afde87d6274ce9dc6f2c2f22da42810b9c8f323a - md5: e910dc97dc0ce4ab1e1a87f49aff89fd + version: 2.0.3 + build: h121fd32_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h121fd32_0.conda + sha256: 4759fd0c3f06c035146100e22ee36a312c9a8226654bd2973e9ca9ac5de5cf1f + md5: 39995f7406b949c1bef74f0c7277afb3 depends: - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 + - __osx >=11.0 + - libcxx >=18 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -6065,21 +6059,20 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 1046461 - timestamp: 1723760657143 + size: 438254 + timestamp: 1731665228473 - kind: conda name: orc - version: 2.0.2 - build: h669347b_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda - sha256: 8a126e0be7f87c499f0a9b5229efa4321e60fc4ae46abdec9b13240631cb1746 - md5: 1e6c10f7d749a490612404efeb179eb8 + version: 2.0.3 + build: h90de224_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h90de224_0.conda + sha256: 7969db50268b65c2edb14be2e22bfff5656f36336eb5421d53030d29c037fec1 + md5: c07ba3025fe20ccbab9cd7c615953d6f depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -6087,20 +6080,21 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 1066349 - timestamp: 1723760593232 + size: 1170439 + timestamp: 1731665024334 - kind: conda name: orc - version: 2.0.2 - build: h75dedd0_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda - sha256: a23f3a88a6b16363bd13f964b4abd12be1576abac460126f3269cbed12d04840 - md5: 9c89e09cede143716b479c5eacc924fb + version: 2.0.3 + build: he039a57_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-he039a57_0.conda + sha256: 9657ae19d6541fe67a61ef0c26ba1012ec508920b49afa897962c7d4b263ba35 + md5: 052499acd6d6b79952197a13b23e2600 depends: - - __osx >=11.0 - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -6108,8 +6102,8 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 436164 - timestamp: 1723760750932 + size: 1187593 + timestamp: 1731664886527 - kind: conda name: packaging version: '24.2' @@ -6299,211 +6293,199 @@ packages: timestamp: 1728546155066 - kind: conda name: protobuf - version: 4.25.3 - build: py312h83439f5_1 - build_number: 1 + version: 5.28.2 + build: py312h2ec8cdc_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.25.3-py312h83439f5_1.conda - sha256: 30d212eca5e25d0b0260dd0fff18f917386bfe046e425d627847aaed642a0aa4 - md5: 7bbcc35ebf7e3d8c59e472f1bf0e65fc + url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda + sha256: 4884f8161602f0148ebbc1af8d3176cec80b96c83243f68aafd651986b573817 + md5: 586bead4a9dfa46faf88deb7d3a742bb depends: - __glibc >=2.17,<3.0.a0 - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - libstdcxx >=13 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 390590 - timestamp: 1725018571385 + size: 464548 + timestamp: 1728669645013 - kind: conda name: protobuf - version: 4.25.3 - build: py312h8a04735_1 - build_number: 1 + version: 5.28.2 + build: py312h6f74592_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-4.25.3-py312h8a04735_1.conda - sha256: 1a79bd9813b6ca59329549c5831f86031668dff8c31339cb1199b5aef38e36ab - md5: 0f527d01f72f363ee35a4bc874f235ba + url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda + sha256: f874ffd38b9ae2b810e9d2e43fd8d3b778cdeaf7dea4a3e6ee4adeafe2d936cf + md5: 4b9b22bd7c53d938b207f9d0f79db183 depends: - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - libstdcxx >=13 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 392015 - timestamp: 1725018625494 + size: 472764 + timestamp: 1728669483611 - kind: conda name: protobuf - version: 4.25.3 - build: py312he4aa971_1 - build_number: 1 + version: 5.28.2 + build: py312hf02c72a_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.25.3-py312he4aa971_1.conda - sha256: 1eb7f6c300be7a727ceaa01b009b9af14aac5112f685e8ef38238dbc8f4ad4dc - md5: 5feb2cb13c6b7c2b2365ee5307e4b2db + url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda + sha256: dbcec117510ced5c12097e3eb06ebbf4512dc255733a9ace33c4249fb7e6a364 + md5: 6fda46c82abd0a080ca33de7d16ca877 depends: - __osx >=11.0 - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - libcxx >=17 - - libprotobuf >=4.25.3,<4.25.4.0a0 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 373218 - timestamp: 1725018824150 + size: 447369 + timestamp: 1728669902591 - kind: conda name: pyarrow - version: 17.0.0 - build: py312h55cb1a1_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-17.0.0-py312h55cb1a1_2.conda - sha256: 83d34c5bd373ab01402e2350ed5b1e836a3ac25a715d399621ce3610d8685339 - md5: da93169f2deb8623e266c71ca9b0bac6 - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + version: 18.0.0 + build: py312h1f38498_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.0.0-py312h1f38498_1.conda + sha256: c411c8bf7c22113a1d4ceac1c8df638a223ffcec9b4e5fc528631b64f3df7ccd + md5: 4510221533398449a8f707bda652dd27 + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 25737 - timestamp: 1730169570576 + size: 25409 + timestamp: 1731058762728 - kind: conda name: pyarrow - version: 17.0.0 - build: py312h9cebb41_2 - build_number: 2 + version: 18.0.0 + build: py312h7900ff3_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-17.0.0-py312h9cebb41_2.conda - sha256: 9e1baddd1199e244f4f8be10c7250691088948583ab3955c510b90eb71c91a2c - md5: 5f7d505626cb057e1320bbd46dd02ef2 - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.0.0-py312h7900ff3_1.conda + sha256: 948514cde269fb6874a3945c8b2c26666588ac7835eb19fa7ec11c0547250b8d + md5: ea33ac754057779cd2df785661486310 + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 25538 - timestamp: 1730169714708 + size: 25161 + timestamp: 1731058699977 - kind: conda name: pyarrow - version: 17.0.0 - build: py312ha814d7c_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-17.0.0-py312ha814d7c_2.conda - sha256: d6433c343120e723cad92b52ea05c16e05096845489275a697201ce0a50fc568 - md5: 04a90c4ce691f2e289658dd475f69631 - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + version: 18.0.0 + build: py312h8025657_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.0.0-py312h8025657_1.conda + sha256: ec1bace4edb04a2cb0bca92c378044260bf798a42aefc5ac1156826b3a4c79c8 + md5: be32cb6508ecd041d0468be137a9c60b + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 25811 - timestamp: 1730169125041 + size: 25338 + timestamp: 1731059175489 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py312h01725c0_2_cpu - build_number: 2 + version: 18.0.0 + build: py312h01725c0_1_cpu + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-17.0.0-py312h01725c0_2_cpu.conda - sha256: e5ed32ee7664a6322263e446d3504a35ff6f5452b17f1161bce7922d03f3cbd4 - md5: add603bfa43d9bf3f06783f780e1a817 + url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.0.0-py312h01725c0_1_cpu.conda + sha256: 240ab4328ebbfd81fe4f93cacd24fc44cd9e58edf9a95acc492e1025525f9a82 + md5: c8ae967c39337603035d59c8994c23f9 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 constrains: - apache-arrow-proc =*=cpu + - numpy >=1.21,<3 license: Apache-2.0 license_family: APACHE - size: 4607408 - timestamp: 1730169265797 + size: 4578590 + timestamp: 1731058358731 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py312h66f7834_2_cpu - build_number: 2 + version: 18.0.0 + build: py312h66f7834_1_cpu + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-17.0.0-py312h66f7834_2_cpu.conda - sha256: 239ac3e62ef11c6e0acc16a4b1a8e3029ed11c5aec771a98f08b7f2fc3a79945 - md5: 77b54d42cacd19af257ed402fb936f9c + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.0.0-py312h66f7834_1_cpu.conda + sha256: ded4bd91b1e0f6eaee9bdd4cba76efb424a3279d69946aec8fc65671fae213eb + md5: 8d857df755335de36fc7d10f897ac7c5 depends: - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 constrains: + - numpy >=1.21,<3 - apache-arrow-proc =*=cpu license: Apache-2.0 license_family: APACHE - size: 4460462 - timestamp: 1730169449471 + size: 4408381 + timestamp: 1731058794401 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py312hc40f475_2_cpu - build_number: 2 + version: 18.0.0 + build: py312hc40f475_1_cpu + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-17.0.0-py312hc40f475_2_cpu.conda - sha256: 708488e602a159fa38a7fd5fa4466e9f093761dc4a8538661f06be3df42f30a5 - md5: bc617fed2854d65a16760d2bf02a475c + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.0.0-py312hc40f475_1_cpu.conda + sha256: afa1d9cfb76ab37ae837c6a68f9a79e0a25f96da826c373be9728fed152eaec9 + md5: 801f7771b21af9ca4016d9c2f9ff2a08 depends: - __osx >=11.0 - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 constrains: - apache-arrow-proc =*=cpu + - numpy >=1.21,<3 license: Apache-2.0 license_family: APACHE - size: 3990396 - timestamp: 1730169098217 + size: 3915622 + timestamp: 1731058726842 - kind: conda name: pycparser version: '2.22' @@ -7097,49 +7079,49 @@ packages: timestamp: 1728642457661 - kind: conda name: re2 - version: 2023.09.01 - build: h4cba328_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda - sha256: 0e0d44414381c39a7e6f3da442cb41c637df0dcb383a07425f19c19ccffa0118 - md5: 0342882197116478a42fa4ea35af79c1 + version: 2024.07.02 + build: h2d3a13d_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda + sha256: 55e7be480bfb979fa8595a16d7f2adea3a5ac9a77b2e97cd0f7ac40e989edb6c + md5: 83f4e47229834c895a92c18383e1cd9d depends: - - libre2-11 2023.09.01 h7b2c953_2 + - libre2-11 2024.07.02 h18dbdb1_1 license: BSD-3-Clause license_family: BSD - size: 26770 - timestamp: 1708947220914 + size: 26747 + timestamp: 1728778986331 - kind: conda name: re2 - version: 2023.09.01 - build: h7f4b329_2 - build_number: 2 + version: 2024.07.02 + build: h77b4e00_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - sha256: f0f520f57e6b58313e8c41abc7dfa48742a05f1681f05654558127b667c769a8 - md5: 8f70e36268dea8eb666ef14c29bd3cda + url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda + sha256: c1721cb80f7201652fc9801f49c214c88aee835d957f2376e301bd40a8415742 + md5: 01093ff37c1b5e6bf9f17c0116747d11 depends: - - libre2-11 2023.09.01 h5a48ba9_2 + - libre2-11 2024.07.02 hbbce691_1 license: BSD-3-Clause license_family: BSD - size: 26617 - timestamp: 1708946796423 + size: 26665 + timestamp: 1728778975855 - kind: conda name: re2 - version: 2023.09.01 - build: h9caee61_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.09.01-h9caee61_2.conda - sha256: 31db9c598bfa7586ac2e3ba06681d676caa5d252b5b68f4b6173edc71f70681e - md5: a9667ab785e1686d53313364c695f58e + version: 2024.07.02 + build: hcd0e937_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda + sha256: eebddde6cb10b146507810b701ef6df122d5309cd5151a39d0828aa44dc53725 + md5: 19e29f2ccc9168eb0a39dc40c04c0e21 depends: - - libre2-11 2023.09.01 h9d008c2_2 + - libre2-11 2024.07.02 h2348fd5_1 license: BSD-3-Clause license_family: BSD - size: 26726 - timestamp: 1708946863063 + size: 26860 + timestamp: 1728779123653 - kind: conda name: readline version: '8.2' @@ -7279,35 +7261,35 @@ packages: timestamp: 1730592349978 - kind: conda name: s2n - version: 1.5.5 - build: h3931f03_0 + version: 1.5.9 + build: h0fd0ee4_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda - sha256: a6fa0afa836f8f26dea0abc180ca2549bb517932d9a88a121e707135d4bcb715 - md5: 334dba9982ab9f5d62033c61698a8683 + url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.9-h0fd0ee4_0.conda + sha256: f2c8e55d6caa8d87a482b1f133963c184de1ccb2303b77cc8ca86c794253f151 + md5: f472432f3753c5ca763d2497e2ea30bf depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 353081 - timestamp: 1728534228471 + size: 355568 + timestamp: 1731541963573 - kind: conda name: s2n - version: 1.5.5 - build: hc6ade00_0 + version: 1.5.9 + build: h636ded1_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda - sha256: 47e9783a3c2b44b2f718e7cda74c0170e6a8c145688eee76a4395ac06f6e5393 - md5: 7238fdea17af79b5f6928ff278c70d52 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.9-h636ded1_0.conda + sha256: 51572714743f836266af564c5b26b37599478131c4379a0d11778f04e647d070 + md5: bf4f84136d9ddb7be1855754a9ac4bb9 depends: - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 349557 - timestamp: 1728534230496 + size: 352546 + timestamp: 1731542018427 - kind: conda name: safetensors version: 0.4.5 @@ -7490,21 +7472,21 @@ packages: timestamp: 1722520112550 - kind: conda name: starlette - version: 0.41.2 - build: pyha770c72_0 + version: 0.41.3 + build: pyh7900ff3_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda - sha256: 02206e5369944e0fd29e4f5c8e9b51dd926a74a46b621a73323669ad404f1081 - md5: 287492bb6e159da4357a10a2bd05c13c + url: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda + sha256: 33986032cb0515f7e9f6647d07006b7dc49b3f373b73d5a1826e6979c661b27a + md5: 0889c5a3e95d8c382cff7556757aedb0 depends: - anyio >=3.4.0,<5 - - python >=3.8 + - python >=3.9 - typing_extensions >=3.10.0 license: BSD-3-Clause license_family: BSD - size: 59059 - timestamp: 1730305803101 + size: 59069 + timestamp: 1732037161800 - kind: conda name: tk version: 8.6.13 @@ -7701,13 +7683,13 @@ packages: timestamp: 1713535244513 - kind: conda name: transformers - version: 4.46.2 + version: 4.46.3 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - sha256: e654adbaa80a65ffa2209465d23e136dee2d8b1ded3da425c1f8c3a9c3be56a6 - md5: 587e2e9014d6efc236029e9acd8332c2 + url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + sha256: 6ae73c0d1197812d8fd6a2c64309fe9abe822feb66b2d330cc61ce9fa60dee0c + md5: 457af723774f077a128515a6fdd536a2 depends: - datasets !=2.5.0 - filelock @@ -7723,62 +7705,62 @@ packages: - tqdm >=4.27 license: Apache-2.0 license_family: APACHE - size: 3659906 - timestamp: 1730868580651 + size: 3622494 + timestamp: 1731981383171 - kind: conda name: typer - version: 0.13.0 + version: 0.13.1 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - sha256: f3661edc36aaf69c03323f0a2b71bbbfdf3c11ed1fe1c9c6f486ac1b53e11aa1 - md5: 0d2754390dab3d584823f497d1ab8704 + url: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + sha256: 2f12a5af13d440aa75970e3d0d1ea3192916848473967b4ecb483627c01333cb + md5: 82a4704166144f27e9c83803bff5bf53 depends: - python >=3.9 - - typer-slim-standard 0.13.0 hd8ed1ab_0 + - typer-slim-standard 0.13.1 hd8ed1ab_0 license: MIT license_family: MIT - size: 54855 - timestamp: 1731015674090 + size: 55352 + timestamp: 1732084066966 - kind: conda name: typer-slim - version: 0.13.0 + version: 0.13.1 build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - sha256: 6e23932ebef6b09b68a9667596952af4f81167b4b50a182ac70316ec224322fc - md5: 5fcd867cf0b4498002731d44621c0b58 + url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + sha256: b190bcd5f341ba8843f2f1ce43b5e8dae770bb84d49e2ce5b346e4d8098367a1 + md5: 85283fb942fa2604c3db03483027ced2 depends: - click >=8.0.0 - python >=3.9 - typing_extensions >=3.7.4.3 constrains: - - typer >=0.13.0,<0.13.1.0a0 - shellingham >=1.3.0 + - typer >=0.13.1,<0.13.2.0a0 - rich >=10.11.0 license: MIT license_family: MIT - size: 43166 - timestamp: 1731015659531 + size: 43463 + timestamp: 1732084053693 - kind: conda name: typer-slim-standard - version: 0.13.0 + version: 0.13.1 build: hd8ed1ab_0 subdir: noarch noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda - sha256: 402d1c872adb1dda436d563e03280750419367fb808a9ee7811f1335f218e8bc - md5: fe8bb6071bf1c47b38bc65f848847059 + url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda + sha256: 14ac72d0533bc2f37f8dc85b90b45a91ca28ee0995c520b16a40f34629749c7a + md5: a9bf95ed3c65bf936292d944bf3df36d depends: - rich - shellingham - - typer-slim 0.13.0 pyhff2d567_0 + - typer-slim 0.13.1 pyhff2d567_0 license: MIT license_family: MIT - size: 48480 - timestamp: 1731015660139 + size: 48744 + timestamp: 1732084054211 - kind: conda name: typing-extensions version: 4.12.2 diff --git a/magic.lock b/magic.lock index 0354e8c01d..f0daecd646 100644 --- a/magic.lock +++ b/magic.lock @@ -9,30 +9,30 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.6-py312h178313f_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/asgiref-3.8.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.31-he1a10d6_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.7.4-hae4d56a_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.29-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.19-h2bff981_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.3-h19b0707_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.10-h14a7884_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.19-hc9e6898_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.7-hb8d5873_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.6.7-h666547d_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.19-h2bff981_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.20-h2bff981_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.28.3-hbe26082_8.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.407-h25d6d5c_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.13.0-h935415a_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.8.0-hd126650_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.12.0-hd2e3451_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.7.0-h10ac4d7_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.11.0-h325d260_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb88c0a9_10.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.0-hecf86a2_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.3-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-hf42f96a_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h1ffe551_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.1-hab05fe4_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.2-hdeadb07_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h7bd072d_8.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.1-h3a84f74_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-hf42f96a_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-hf42f96a_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.4-h21d7256_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.449-h1a02111_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.14.0-h5cfcd09_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.10.0-h113e628_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.13.0-h3cf044e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.8.0-h736e048_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.12.0-ha633028_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda @@ -74,11 +74,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.3-h659f571_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-17.0.0-had3b6fe_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-17.0.0-h5888daf_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-17.0.0-h5888daf_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-17.0.0-hf54134d_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.0.0-h3b997a5_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.0.0-h5888daf_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.0.0-h5888daf_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.0.0-h5c8f2c3_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda @@ -96,66 +96,66 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.29.0-h435de7b_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.29.0-h0121fbd_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.2-h15f2491_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.31.0-h804f50b_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.31.0-h0121fbd_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-17.0.0-h39682fd_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-hd5b35b9_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.0.0-h6bd9018_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.20.0-h0e7cc3e_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.8.0-h166bdaf_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.49.2-hb9d3cd8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.5-h064dc61_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.9.4-hcb278e6_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024112020-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.16-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-he039a57_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.0-py312h66e93f0_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.25.3-py312h83439f5_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-17.0.0-py312h9cebb41_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-17.0.0-py312h01725c0_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.0.0-py312h7900ff3_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.0.0-py312h01725c0_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.23.4-py312h12e396e_0.conda @@ -174,12 +174,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py312hbf22597_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/regex-2024.11.6-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.9-h0fd0ee4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda @@ -187,16 +187,16 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-ha2e4443_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tokenizers-0.20.3-py312h8360d73_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.1-py312h66e93f0_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda @@ -218,30 +218,30 @@ environments: linux-aarch64: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.6-py312hcc812fe_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/asgiref-3.8.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.31-h8fa6c3f_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.7.4-h3a42a84_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.29-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.19-ha24d3e7_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.4.3-h34ad692_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.8.10-h1e1d171_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.14.19-h9f8f545_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.10.7-had41049_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.6.7-h598b0a5_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.19-ha24d3e7_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.20-ha24d3e7_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.28.3-hcc2993b_8.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.407-hf265f57_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.13.0-h60f91e5_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.8.0-hf0f394c_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.12.0-h17ca4bd_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.7.0-h68dbd84_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.11.0-h36e5eb4_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hac900a4_10.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.0-h35473ba_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.3-h86ecc28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h4c7db1d_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-h9bacb8c_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.1-hf4e072c_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.2-h10eb1bc_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h28a5e6a_8.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.1-h29aef15_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h4c7db1d_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h4c7db1d_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.4-h8cc6612_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.449-hf48a0a1_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.14.0-h1887c18_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.10.0-h47b0b28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.13.0-h185ecfd_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.8.0-h1b94036_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.12.0-h37d6d07_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-python-1.1.0-py312h6f74592_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda @@ -284,11 +284,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/krb5-1.21.3-h50a48e9_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.2-cxx17_h0a1ffab_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-17.0.0-hccffc7f_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-17.0.0-h5ad3122_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-17.0.0-h5ad3122_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-17.0.0-h08b7278_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.0.0-hf19f309_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.0.0-h5ad3122_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.0.0-h5ad3122_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.0.0-h14ec2bd_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda @@ -306,66 +306,66 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.29.0-hbb89541_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.29.0-hb9b2b65_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.62.2-h98a9317_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.31.0-h3888205_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.31.0-hb9b2b65_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.28-pthreads_h9d3fd7e_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-17.0.0-h501616e_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-hea2c3fa_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2023.09.01-h9d008c2_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.0.0-h23a96eb_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.47.0-hc4a20ef_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.0-h492db2e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-14.2.0-h3f4de04_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-14.2.0-hf1166c9_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.20.0-h154c74f_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.21.0-h154c74f_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.8.0-h4e544f5_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.49.2-h86ecc28_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.13.5-hf4efe5d_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.4-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.9.4-hd600fc2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024112020-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.16-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py312h470d778_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h90de224_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/propcache-0.2.0-py312hb2c0f52_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-4.25.3-py312h8a04735_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-17.0.0-py312h55cb1a1_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-17.0.0-py312h66f7834_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.0.0-py312h8025657_1.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.0.0-py312h66f7834_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.23.4-py312h8cbf658_0.conda @@ -384,12 +384,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hb2c0f52_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-26.2.0-py312h2427ae1_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.09.01-h9caee61_2.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/regex-2024.11.6-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.9-h636ded1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.5.0-pyhff2d567_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_0.conda @@ -397,16 +397,16 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-h1088aeb_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tokenizers-0.20.3-py312ha0d6ea1_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4.1-py312h52516f5_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda @@ -427,30 +427,30 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda osx-arm64: - conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.6-py312h998013c_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.6.2.post1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/asgiref-3.8.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.31-h14f56dd_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.7.4-hd45b2be_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.29-h7ab814d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.19-hd45b2be_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.3-hdf5079d_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.10-h4588aaf_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.19-h5ad5fc2_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.7-hbe077eb_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.6.7-h86d2b7d_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.19-hd45b2be_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.20-hd45b2be_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.28.3-h4f9f7e0_8.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.407-h880863c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.13.0-hd01fc5c_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.8.0-h13ea094_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.12.0-hfde595f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.7.0-hcf3b6fd_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.11.0-h082e32e_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h9b725a8_10.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.0-h5d7ee29_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.3-h5505292_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h5d7ee29_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h13ead76_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.1-hf483d09_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.2-h39f8ad8_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h68a0d7e_8.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.1-h840aca7_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h5d7ee29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h5d7ee29_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.4-h6832833_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.449-h8f08b23_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.14.0-hd50102c_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.10.0-hc602bab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.13.0-h7585a09_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.8.0-h9ca1f76_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.12.0-hcdd55da_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312hde4cb15_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda @@ -490,11 +490,11 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.2-cxx17_h00cdb27_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-17.0.0-hc6a7651_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-17.0.0-hf9b8971_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-17.0.0-hf9b8971_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-17.0.0-hbf8b706_16_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.0.0-h2409f62_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.0.0-h286801f_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.0.0-h286801f_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.0.0-h6a6e5c5_7_cpu.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda @@ -502,7 +502,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcrc32c-1.1.2-hbdafb3b_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.3-ha82da77_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.4-ha82da77_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda @@ -510,62 +510,62 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.29.0-hfa33a2f_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.29.0-h90fd6fa_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.2-h9c18a4f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.31.0-h8d8be31_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.31.0-h7081f7f_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-25_osxarm64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.28-openmp_hf332438_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-17.0.0-hf0ba9ef_16_cpu.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hc39d83c_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.0.0-hda0ea68_7_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.47.0-hbaaea75_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.20.0-h64651cc_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.21.0-h64651cc_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.8.0-h1a8c8d9_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.49.2-h7ab814d_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-h376fa9f_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.3-hb52a8e5_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.4-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.4-hdb05f8b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.9.4-hb7217d7_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312ha0ccf2a_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024112020-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024112020-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_0.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multidict-6.1.0-py312hdb8e49c_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/multiprocess-0.70.16-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py312h8442bc7_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-prometheus-1.12.0rc1-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h121fd32_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhff2d567_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.0-py312h024a12e_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.25.3-py312he4aa971_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-17.0.0-py312ha814d7c_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-17.0.0-py312hc40f475_2_cpu.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.0.0-py312h1f38498_1.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.0.0-py312hc40f475_1_cpu.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.9.2-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.23.4-py312he431725_0.conda @@ -584,7 +584,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.2.0-py312hf8a1cbd_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/regex-2024.11.6-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_0.conda @@ -596,16 +596,16 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-hd02b534_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tokenizers-0.20.3-py312hf3e4074_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.1-py312h024a12e_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda @@ -688,12 +688,12 @@ packages: timestamp: 1727779893392 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py312h178313f_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.2-py312h178313f_0.conda - sha256: 020315ba01fcd1b53fcb81280a00b8de7051ecf5c4503fc3b3281df0cbca05ed - md5: e2f92c2c85d3a0d376947847942ed36c + url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.6-py312h178313f_0.conda + sha256: 100484cdbd0e6840fc969354e78173a0b8dff80ee53947ec0fc8f0c840486934 + md5: 3a62de1af76079acb81fad6936e1f6f8 depends: - __glibc >=2.17,<3.0.a0 - aiohappyeyeballs >=2.3.0 @@ -708,16 +708,16 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 903248 - timestamp: 1731703484704 + size: 908313 + timestamp: 1732088522122 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py312h998013c_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.2-py312h998013c_0.conda - sha256: 5e619945d37829cde16c5add63abb042ba953f0dc92b94abb990000a6ba3e191 - md5: 1c0150beac996afe9d8ee8297d324352 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.6-py312h998013c_0.conda + sha256: e6bae4c7ce7ba1f42667b54495296b21c7414ff9c826c73eeaba0bd050d89af3 + md5: e24152bdeb4fc0ab20472d3c27539196 depends: - __osx >=11.0 - aiohappyeyeballs >=2.3.0 @@ -732,16 +732,16 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 865633 - timestamp: 1731703688760 + size: 870500 + timestamp: 1732088770426 - kind: conda name: aiohttp - version: 3.11.2 + version: 3.11.6 build: py312hcc812fe_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.2-py312hcc812fe_0.conda - sha256: 92385f1c7e1bac9e502a7943f4b8a3e58b62fa8ae1c232519116091ac0fdecfd - md5: bcbd2dff2e7d88f7d5b0dab015caa1c0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.6-py312hcc812fe_0.conda + sha256: 009e1ed9676f857c90b6fd28f4cd31b11e13f5ba00fc780766e19b8cfaae7390 + md5: 73b5173b83afa78594434ac2912ec2b6 depends: - aiohappyeyeballs >=2.3.0 - aiosignal >=1.1.2 @@ -756,8 +756,8 @@ packages: - yarl >=1.17.0,<2.0 license: MIT AND Apache-2.0 license_family: Apache - size: 893381 - timestamp: 1731703604408 + size: 897593 + timestamp: 1732088604447 - kind: conda name: aiosignal version: 1.3.1 @@ -845,1016 +845,1019 @@ packages: timestamp: 1722977241383 - kind: conda name: aws-c-auth - version: 0.7.31 - build: h14f56dd_2 - build_number: 2 + version: 0.8.0 + build: h9b725a8_10 + build_number: 10 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.7.31-h14f56dd_2.conda - sha256: 7ec650c52962f62e141d5c8ac018befd9a0c50eef1c951cba11089cadd90e703 - md5: 85a9125cf9705e4c7a829a829af6744b + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h9b725a8_10.conda + sha256: 63cb8c25e0a26be4261d4271de525e7e33aefe9d9b001b8abfa5c9ac69c3dab3 + md5: 17c90d9eb8c6842fd739dc5445ce9962 depends: - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 license: Apache-2.0 license_family: Apache - size: 92624 - timestamp: 1728796392911 + size: 92355 + timestamp: 1731733738919 - kind: conda name: aws-c-auth - version: 0.7.31 - build: h8fa6c3f_2 - build_number: 2 + version: 0.8.0 + build: hac900a4_10 + build_number: 10 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.7.31-h8fa6c3f_2.conda - sha256: 1420263c333ed29b89f37d0b9f9665eb02f3a23a50f9fe3ef787a30726168711 - md5: a7549b69ce1339ab4702c10cc213c01d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hac900a4_10.conda + sha256: 85c8500ae0570f0d39e6661a120c653e43f0f5f984e2954c44fd358a87776892 + md5: 9ecaef75ebd666dda7caa79154183b02 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 112059 - timestamp: 1728796399534 + size: 111853 + timestamp: 1731733547677 - kind: conda name: aws-c-auth - version: 0.7.31 - build: he1a10d6_2 - build_number: 2 + version: 0.8.0 + build: hb88c0a9_10 + build_number: 10 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.7.31-he1a10d6_2.conda - sha256: 83fa4b24101cd85da825dcbb7611390c2a6e31a3fc17abb4d1ee5b8c40bdaa5a - md5: 76550a294cc78aaccfca7824bb4814ce + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb88c0a9_10.conda + sha256: d2837a84e6bd7d993a83e79f9e240e1465e375f3d57149ea5b1927c6a4133bcc + md5: 409b7ee6d3473cc62bda7280f6ac20d0 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 107301 - timestamp: 1728796325782 + size: 107163 + timestamp: 1731733534767 - kind: conda name: aws-c-cal - version: 0.7.4 - build: h3a42a84_2 + version: 0.8.0 + build: h35473ba_2 build_number: 2 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.7.4-h3a42a84_2.conda - sha256: 5a0825bf3f2e89458088eb83f2e6e3eed0f3b9711963f6bf45cea9ed699a5611 - md5: 4c4096ea8a644e837e3d8576bf6d2ba9 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.0-h35473ba_2.conda + sha256: 3327a9e65ec531b0c55d17bbcdc436b4e641af1f293d1c2f50e0f16aa79fde60 + md5: 48dc0b3576513622673d3f5f3d163b62 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 49479 - timestamp: 1728755609823 + size: 49714 + timestamp: 1731678553709 - kind: conda name: aws-c-cal - version: 0.7.4 - build: hae4d56a_2 + version: 0.8.0 + build: h5d7ee29_2 build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.7.4-hae4d56a_2.conda - sha256: 4bfed63898a1697364ce9621e1fc09c98f143777b0ca60655eb812efa5bf246d - md5: cdc628e4ffb4ffcd476e3847267e1689 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.0-h5d7ee29_2.conda + sha256: 2a8c09b33400cf2b7d658e63fd5a6f9b6e9626458f6213b904592fc15220bc92 + md5: 92734dad83d22314205ba73b679710d2 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 47181 - timestamp: 1728755555430 + size: 39966 + timestamp: 1731678721786 - kind: conda name: aws-c-cal - version: 0.7.4 - build: hd45b2be_2 + version: 0.8.0 + build: hecf86a2_2 build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.7.4-hd45b2be_2.conda - sha256: d701872d79184dbb759aa033e6a6e4ec5c6f1b58e3255e53b756d0246d19986a - md5: de4bf687ac70a2b861a94b87164669c9 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.0-hecf86a2_2.conda + sha256: 220a37955c120bf2f565fbd5320a82fc4c8b550b2449294bc0509c296cfcb9fa + md5: c54459d686ad9d0502823cacff7e8423 depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 39794 - timestamp: 1728755626145 + size: 47477 + timestamp: 1731678510949 - kind: conda name: aws-c-common - version: 0.9.29 - build: h7ab814d_0 + version: 0.10.3 + build: h5505292_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.9.29-h7ab814d_0.conda - sha256: 8d2c330f0de571f1bf6f2db7650a1aa8c4060a2ccd25b48f392a4d3ea8222daa - md5: d4a90d217342b08daa7e80049fdaa6c9 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.3-h5505292_0.conda + sha256: bb2c1038726d31ffd2d35a5764f80bcd670b6a1c753aadfd261aecb9f88db6d8 + md5: 4150339e3b08db33fe4c436340b1d7f6 depends: - __osx >=11.0 license: Apache-2.0 license_family: Apache - size: 220687 - timestamp: 1728706817796 + size: 221524 + timestamp: 1731567512057 - kind: conda name: aws-c-common - version: 0.9.29 + version: 0.10.3 build: h86ecc28_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.9.29-h86ecc28_0.conda - sha256: f79b28d046aa448016ef4ddade430cfbfa3802813b6be04c97abb531edef05a2 - md5: f1fef7581dd3389ca7a3545e50bfcc7f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.3-h86ecc28_0.conda + sha256: 95ca372a0e1bb8dad421751de6aa44d37d87dd69c33a48faca1ae6efa30f2af0 + md5: 64f523ba00b75fdcb33a4eea827d3d19 depends: - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 258186 - timestamp: 1728706827519 + size: 257859 + timestamp: 1731567310573 - kind: conda name: aws-c-common - version: 0.9.29 + version: 0.10.3 build: hb9d3cd8_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.9.29-hb9d3cd8_0.conda - sha256: b3b50f518e9afad383f6851bf7000cf8b343d7d3ca71558df233ee7b4bfc2919 - md5: acc51b49fd7467c8dfe4343001b812b4 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.3-hb9d3cd8_0.conda + sha256: 90bd2ff40b65acb62f11e2500ee7b7e85ac77d2e332429002f4c1da949bec27f + md5: ff3653946d34a6a6ba10babb139d96ef depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 237231 - timestamp: 1728706773555 + size: 237137 + timestamp: 1731567278052 - kind: conda name: aws-c-compression - version: 0.2.19 - build: h2bff981_2 + version: 0.3.0 + build: h4c7db1d_2 build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.2.19-h2bff981_2.conda - sha256: 908a416ff3f62b09bed436e1f77418f54115412244734d3960b11d586dd0749f - md5: 87a059d4d2ab89409496416119dd7152 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h4c7db1d_2.conda + sha256: 8dba3d48a7230ccd2a6ea8d88c0e1b6caf0a39b14a2b2f0255a413fcfce8ad0a + md5: ee074857cec335bb83692771b06160a4 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 18983 - timestamp: 1728750679322 + size: 19696 + timestamp: 1731678729046 - kind: conda name: aws-c-compression - version: 0.2.19 - build: ha24d3e7_2 + version: 0.3.0 + build: h5d7ee29_2 build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.2.19-ha24d3e7_2.conda - sha256: 5c8abfbe725f7b646223a64b9446fc3305f66da75d27f199a3347ca1d9ea5671 - md5: a8162788a62f2568587b20646f2eacea + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h5d7ee29_2.conda + sha256: a52ea62bf08aed3af079e16d1738f3d2a7fcdd1d260289ae27ae96298e15d12a + md5: 15566c36b0cf5f314e3bee7f7cc796b5 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 19862 - timestamp: 1728750729312 + size: 18204 + timestamp: 1731678916439 - kind: conda name: aws-c-compression - version: 0.2.19 - build: hd45b2be_2 + version: 0.3.0 + build: hf42f96a_2 build_number: 2 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-hf42f96a_2.conda + sha256: 210ba4fff1c9500fe02de1dae311ce723bfa313a2d21b72accd745f736f56fce + md5: 257f4ae92fe11bd8436315c86468c39b + depends: + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 + license: Apache-2.0 + license_family: Apache + size: 19034 + timestamp: 1731678703956 +- kind: conda + name: aws-c-event-stream + version: 0.5.0 + build: h13ead76_7 + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.2.19-hd45b2be_2.conda - sha256: 86900c68f95a2ca79cb9bcb8a3e8fd0a7912cfa3754a6a1e6b78d35c0b8db58b - md5: 9c634af661f50e923419e0df92633d31 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h13ead76_7.conda + sha256: 386965fab5f0bed4a6109cdba32579f16bee1b0f76ce1db840ce6f7070188f9f + md5: 55a901b6d4fb9ce1bc8328925b229f0b depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 18065 - timestamp: 1728750721405 + size: 47528 + timestamp: 1731714690911 - kind: conda name: aws-c-event-stream - version: 0.4.3 - build: h19b0707_4 - build_number: 4 + version: 0.5.0 + build: h1ffe551_7 + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.4.3-h19b0707_4.conda - sha256: 951f96eb45a439a36935dc2099e10c902518ec511a287c1685ca65a88a9accaa - md5: df38f56123f30d61de24474e600e7d41 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h1ffe551_7.conda + sha256: 3b780d6483baa889e8df5aa66ab3c439a9c81331cf2a4799e373f4174768ddd9 + md5: 7cce4dfab184f4bbdfc160789251b3c5 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 53821 - timestamp: 1728792746255 + size: 53500 + timestamp: 1731714597524 - kind: conda name: aws-c-event-stream - version: 0.4.3 - build: h34ad692_4 - build_number: 4 + version: 0.5.0 + build: h9bacb8c_7 + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.4.3-h34ad692_4.conda - sha256: 20fb76e0740a403ef8e7bbf655482699612b9a6a25df15ff9f14caad511e79c9 - md5: 8d66cac131dd88ef8b81299e8b5818f8 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-h9bacb8c_7.conda + sha256: 2b7bb475330942d94bc359171df19d0cf8b326f15c0c7903a59da54a8add621e + md5: 694020125b66632d6577456d2d9d3c74 depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 55018 - timestamp: 1728792897824 -- kind: conda - name: aws-c-event-stream - version: 0.4.3 - build: hdf5079d_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.4.3-hdf5079d_4.conda - sha256: 6976ea97bf8c79114da3026a9d46b717131e2445be01f244718a426ad4b587f2 - md5: d89057a51d66d9c0c907c3dfebf845eb - depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - libcxx >=17 - license: Apache-2.0 - license_family: Apache - size: 46737 - timestamp: 1728792823021 + size: 55054 + timestamp: 1731714599360 - kind: conda name: aws-c-http - version: 0.8.10 - build: h14a7884_2 + version: 0.9.1 + build: hab05fe4_2 build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.8.10-h14a7884_2.conda - sha256: 0561267292739a451d7d389f100330fefafb97859962f617cd5268c96400e3aa - md5: 6147c6b6cef67adcb85516f5cf775be7 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.1-hab05fe4_2.conda + sha256: 90a325b6f5371dd2203b643de646967fe57a4bcbbee8c91086abbf9dd733d59a + md5: fb409f7053fa3dbbdf6eb41045a87795 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 197562 - timestamp: 1728792795954 + size: 196945 + timestamp: 1731714483279 - kind: conda name: aws-c-http - version: 0.8.10 - build: h1e1d171_2 + version: 0.9.1 + build: hf483d09_2 build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.8.10-h1e1d171_2.conda - sha256: bb6426db42f1804b52b83a736f6ad4c407e260a7da5b0fe586cbe18e71101dfb - md5: 20f29e7210c170cbc810f10d65f692aa + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.1-hf483d09_2.conda + sha256: fca9ed0f0895bab9bf737c8d8a3314556cb893d45c40f0656f21a93502db3089 + md5: d880c40b8fc7d07374c036f93f1359d2 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 license: Apache-2.0 license_family: Apache - size: 190604 - timestamp: 1728792811917 + size: 153315 + timestamp: 1731714621306 - kind: conda name: aws-c-http - version: 0.8.10 - build: h4588aaf_2 + version: 0.9.1 + build: hf4e072c_2 build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.8.10-h4588aaf_2.conda - sha256: 0f422e1cb3ebfa4fbf316e0ee576ed8e8f96cd9890783a0d319366e7ad9ebca6 - md5: fd850cc4bc7af65f3b7e98324bda96fa + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.1-hf4e072c_2.conda + sha256: b9a262451fc91d2fd4ccfcb6dc11ac61d0152c0db765bfe8d089e3e1b70c2150 + md5: fddc197912c16cb95276077f6c7917c5 depends: - - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-compression >=0.2.19,<0.2.20.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-compression >=0.3.0,<0.3.1.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 152421 - timestamp: 1728792977955 + size: 190363 + timestamp: 1731714613945 - kind: conda name: aws-c-io - version: 0.14.19 - build: h5ad5fc2_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.14.19-h5ad5fc2_1.conda - sha256: 0fcfbd9b46474b543d59183bedee08bf46d0f5167c95406b3b06ce922d6626c4 - md5: 463fae93275ddd0a6e2afb327b4d87e5 + version: 0.15.2 + build: h10eb1bc_2 + build_number: 2 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.2-h10eb1bc_2.conda + sha256: b8e4206ee1fa58453535c1c08c6aca5bdc92cde026bf7ec20d038786f813239b + md5: 7cdf478bb4feae1a93319f6e3381b8a9 depends: - - __osx >=11.0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 137474 - timestamp: 1728770995104 + size: 162624 + timestamp: 1731702570075 - kind: conda name: aws-c-io - version: 0.14.19 - build: h9f8f545_1 - build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.14.19-h9f8f545_1.conda - sha256: dea9075bd1fac65a0bbaacf038f8196892004da9c44c34d061b0d1eec81b9644 - md5: 46958359610629e7eea043a83f64540c + version: 0.15.2 + build: h39f8ad8_2 + build_number: 2 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.2-h39f8ad8_2.conda + sha256: b14e32f024f6be1610dccfdb6371e101cba204d24f37c2a63d9b6380ac74ac17 + md5: 3b49f1dd8f20bead8b222828cfdad585 depends: - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 - - s2n >=1.5.5,<1.5.6.0a0 + - __osx >=11.0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 163350 - timestamp: 1728771046323 + size: 137610 + timestamp: 1731702839896 - kind: conda name: aws-c-io - version: 0.14.19 - build: hc9e6898_1 - build_number: 1 + version: 0.15.2 + build: hdeadb07_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.14.19-hc9e6898_1.conda - sha256: 35f9719fb9d5ddf4955a432d73d910261d60754d20b58de2be2701a2e68a9cfb - md5: ec84785f7ae14ed43156a54aec33bb14 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.2-hdeadb07_2.conda + sha256: 1636136a5d882b4aaa13ea8b7de8cf07038a6878872e3c434df9daf478cee594 + md5: 461a1eaa075fd391add91bcffc9de0c1 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 - - s2n >=1.5.5,<1.5.6.0a0 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 158806 - timestamp: 1728770974012 + size: 159368 + timestamp: 1731702542973 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: had41049_2 - build_number: 2 + version: 0.11.0 + build: h28a5e6a_8 + build_number: 8 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.10.7-had41049_2.conda - sha256: 2c4065737a77f80fd475ea1979db046ca7d46dd35548d7c20be1521c7ac17eef - md5: 4f489845a24aa7d2c556b0fedfb7e0a3 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h28a5e6a_8.conda + sha256: aad8c9a5c24953cdebf17efa7ec06b5639e14072d4fa70c5c0607d7ad913ba88 + md5: 5250ce3b5154c0347b7576015a7c6cef depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 169126 - timestamp: 1728797232432 + size: 169040 + timestamp: 1731734203264 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: hb8d5873_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.10.7-hb8d5873_2.conda - sha256: b30a3d8ba9352760c30f696b65486fe0e1d3cfe771f114b008a70ad440eb00c0 - md5: 8dc25ca24c1a50b8295a848c384ede99 + version: 0.11.0 + build: h68a0d7e_8 + build_number: 8 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h68a0d7e_8.conda + sha256: 837c24c105624e16ace94b4b566ffe45231ff275339c523571ebd45946926156 + md5: 9e3ac70d27e7591b1310a690768cfe27 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 license: Apache-2.0 license_family: Apache - size: 195951 - timestamp: 1728797647791 + size: 134573 + timestamp: 1731734281038 - kind: conda name: aws-c-mqtt - version: 0.10.7 - build: hbe077eb_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.10.7-hbe077eb_2.conda - sha256: 376f757b460fc936da6b8159ef80ed5a51a23d2ba02e7834055a99616004d3bc - md5: 5013eaa8a8242355199a31e8973ff3f0 + version: 0.11.0 + build: h7bd072d_8 + build_number: 8 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h7bd072d_8.conda + sha256: 51d3d87a47c642096e2ce389a169aec2e26958042e9130857552a12d65a19045 + md5: 0e9d67838114c0dbd267a9311268b331 depends: - - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 135058 - timestamp: 1728797199832 + size: 194447 + timestamp: 1731734668760 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h598b0a5_0 + version: 0.7.1 + build: h29aef15_3 + build_number: 3 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.6.7-h598b0a5_0.conda - sha256: 93c43c3cee726280deaf44d52cc936f51b1c614bfaf600ffd5f002a6a6bb4bd7 - md5: 46860887427f76d0ff0824d987a7aee1 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.1-h29aef15_3.conda + sha256: b8c67e279f8efa833fc92b066dc6d0cef3aff7f06144f738adfbd95cdab52865 + md5: bd7d7b664176b5d164d369f12615b75a depends: - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 117032 - timestamp: 1728967110055 + size: 117581 + timestamp: 1731745139268 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h666547d_0 + version: 0.7.1 + build: h3a84f74_3 + build_number: 3 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.6.7-h666547d_0.conda - sha256: fe006f58bd9349ab7cd4cd864dd4e83409e89764b10d9d7eb7ec148e2f964465 - md5: 7f59dcbbd4eab14ca9256f20b43849eb + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.1-h3a84f74_3.conda + sha256: 274c9ec3c173a2979b949ccc10a6013673c4391502a4a71e07070d6c50eabc60 + md5: e7a54821aaa774cfd64efcd45114a4d7 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 113457 - timestamp: 1728967087200 + size: 113837 + timestamp: 1731745115080 - kind: conda name: aws-c-s3 - version: 0.6.7 - build: h86d2b7d_0 + version: 0.7.1 + build: h840aca7_3 + build_number: 3 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.6.7-h86d2b7d_0.conda - sha256: 4691154b75d85039da165b01bd25a2dce99f40b8a635fa9537a36a45dcc3e236 - md5: 851d2b927ba01ac963ffbc1868e971a3 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.1-h840aca7_3.conda + sha256: a75dce44667327d365abdcd68c525913c7dd948ea26d4709386acd58717307fc + md5: 540af65a722c5e490012153673793df5 depends: - __osx >=11.0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - license: Apache-2.0 - license_family: Apache - size: 96707 - timestamp: 1728967262718 -- kind: conda - name: aws-c-sdkutils - version: 0.1.19 - build: h2bff981_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.1.19-h2bff981_4.conda - sha256: ef65ca9eb9f32ada6fb1b47759374e7ef4f85db002f2265ebc8fd61718284cbc - md5: 5a8afd37e2dfe464d68e63d1c38b08c5 - depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - libgcc >=13 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 license: Apache-2.0 license_family: Apache - size: 55957 - timestamp: 1728755888042 + size: 96830 + timestamp: 1731745236535 - kind: conda name: aws-c-sdkutils - version: 0.1.19 - build: ha24d3e7_4 - build_number: 4 + version: 0.2.1 + build: h4c7db1d_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.1.19-ha24d3e7_4.conda - sha256: 2bec8bd76145f72c89068fb30d60353e6c71a4bb32e13eb543d9d04d6ea0ae9b - md5: 33e7e774771d00b2933443c3954796ea + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h4c7db1d_1.conda + sha256: 3d2b079a361888197894308a93fec95666c6abfcc86c979ae36f1f9cb223dfb3 + md5: 45437a9bad358b25f795e77218063baf depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 58640 - timestamp: 1728755998456 + size: 58256 + timestamp: 1731687032896 - kind: conda name: aws-c-sdkutils - version: 0.1.19 - build: hd45b2be_4 - build_number: 4 + version: 0.2.1 + build: h5d7ee29_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.1.19-hd45b2be_4.conda - sha256: cc374eef1b367fb9acc83b2e74830f62742d3e53e1f0f6a0d01939b16ed1e3d5 - md5: 7ccdd0f21ffbc77b11963f00892ca8b5 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h5d7ee29_1.conda + sha256: ed3b272b9a345142e62f0cf9ab2a9fa909c92e09691f6a06e98ff500a1f8a303 + md5: 0f1e5bc57d4567c9d9bec8d8982828ed depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 49543 - timestamp: 1728755942076 + size: 50276 + timestamp: 1731687215375 - kind: conda - name: aws-checksums - version: 0.1.20 - build: h2bff981_1 + name: aws-c-sdkutils + version: 0.2.1 + build: hf42f96a_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.1.20-h2bff981_1.conda - sha256: e1793f2e52fe04ef3a6b2069abda7960d061c6f7af1f0d5f616d43e7a7c40e3c - md5: 8b424cf6b3cfc5cffe98bf4d16c032fb + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-hf42f96a_1.conda + sha256: f6e38c79b124c34edb048c28ec58fdfc4ea8f7a218dc493195afbada48ba063b + md5: bbdd20fb1994a9f0ba98078fcb6c12ab depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72862 - timestamp: 1728750748391 + size: 55738 + timestamp: 1731687063424 - kind: conda name: aws-checksums - version: 0.1.20 - build: ha24d3e7_1 + version: 0.2.2 + build: h4c7db1d_1 build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.1.20-ha24d3e7_1.conda - sha256: f59c33d71fe4dad1099d9124f471ff9c9e06a51d43578aeb2740c8416dc03540 - md5: 592f2d2e8bc10e60e0d0cf0a737b5da8 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h4c7db1d_1.conda + sha256: b3fa060d4fe9e8fdb7b21b8b3c5fdb61df6f02973f74245a65869100f72a3931 + md5: af22e7e1c1af348a66f938aa66192f2c depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72491 - timestamp: 1728750762489 + size: 72081 + timestamp: 1731687244426 - kind: conda name: aws-checksums - version: 0.1.20 - build: hd45b2be_1 + version: 0.2.2 + build: h5d7ee29_1 build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.1.20-hd45b2be_1.conda - sha256: d935ca7faa780cfa1053fe1bffb77611a54b4df791897a22048e770b250c651f - md5: ab0b68aafe787311cb8397fd2e60982d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h5d7ee29_1.conda + sha256: eb7ebe309b33a04329b3e51a7f10bb407815389dc37cc047f7d41f9c91f0d1b0 + md5: db1ed95988a8fe6c1ce0d94abdfc8e72 depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 license: Apache-2.0 license_family: Apache - size: 70087 - timestamp: 1728750818479 + size: 70184 + timestamp: 1731687342560 - kind: conda - name: aws-crt-cpp - version: 0.28.3 - build: h4f9f7e0_8 - build_number: 8 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.28.3-h4f9f7e0_8.conda - sha256: 98cbed635af4841186aa3261e6ceadd03822983d6e30f0afa5d34eb452b2b509 - md5: 14af6354d5437421793e17e865301371 + name: aws-checksums + version: 0.2.2 + build: hf42f96a_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-hf42f96a_1.conda + sha256: da802ace5448481c968cfec7e7a4f79f686f42df9de8e3f78c09a925c2882a79 + md5: d908d43d87429be24edfb20e96543c20 depends: - - __osx >=11.0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 - - libcxx >=17 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 229980 - timestamp: 1729181342157 + size: 72744 + timestamp: 1731687193373 - kind: conda name: aws-crt-cpp - version: 0.28.3 - build: hbe26082_8 - build_number: 8 + version: 0.29.4 + build: h21d7256_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.28.3-hbe26082_8.conda - sha256: a9c23a685929b24fcd032daae36b61c4862912abf0a0a8735aeef53418c5bce6 - md5: 80d5fac04be0e6c2774f57eb7529f145 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.4-h21d7256_1.conda + sha256: 0de8dc3a6a9aab74049d85d407d204623a638ade4221a428cef4d91d25d41ef5 + md5: 963a310ba64fd6a113eb4f7fcf89f935 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 349632 - timestamp: 1729181229435 + size: 354101 + timestamp: 1731787070984 - kind: conda name: aws-crt-cpp - version: 0.28.3 - build: hcc2993b_8 - build_number: 8 + version: 0.29.4 + build: h6832833_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.4-h6832833_1.conda + sha256: 9c94db7881035bd1cfb24985668c5c7a693d70ecbf46e4b23c453774400e4437 + md5: 452a0da8c040f2aa825727af66d05b42 + depends: + - __osx >=11.0 + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 + - libcxx >=18 + license: Apache-2.0 + license_family: Apache + size: 237267 + timestamp: 1731787157065 +- kind: conda + name: aws-crt-cpp + version: 0.29.4 + build: h8cc6612_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.28.3-hcc2993b_8.conda - sha256: 3b5779785c8700e73be97f63ea778b6dba033a49fd77569c5fddbdd3a53a2600 - md5: e71043206d9db242eae53b70773f7f62 - depends: - - aws-c-auth >=0.7.31,<0.7.32.0a0 - - aws-c-cal >=0.7.4,<0.7.5.0a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-c-http >=0.8.10,<0.8.11.0a0 - - aws-c-io >=0.14.19,<0.14.20.0a0 - - aws-c-mqtt >=0.10.7,<0.10.8.0a0 - - aws-c-s3 >=0.6.7,<0.6.8.0a0 - - aws-c-sdkutils >=0.1.19,<0.1.20.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.4-h8cc6612_1.conda + sha256: 7ff3dcac3578f2946dcc2d1953f20369750efdb228ada2a6f894642677cef4ec + md5: 494aaf00b4413cdf961abfbdeb5c24e9 + depends: + - aws-c-auth >=0.8.0,<0.8.1.0a0 + - aws-c-cal >=0.8.0,<0.8.1.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-c-http >=0.9.1,<0.9.2.0a0 + - aws-c-io >=0.15.2,<0.15.3.0a0 + - aws-c-mqtt >=0.11.0,<0.11.1.0a0 + - aws-c-s3 >=0.7.1,<0.7.2.0a0 + - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 276668 - timestamp: 1729181269528 + size: 283847 + timestamp: 1731787045666 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: h25d6d5c_1 - build_number: 1 + version: 1.11.449 + build: h1a02111_2 + build_number: 2 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.407-h25d6d5c_1.conda - sha256: f05d43f3204887cec9a9853a9217f06562b28161950b5485aed1f8afe42aad17 - md5: 0f2bd0128d59a45c9fd56151eab0b37e + url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.449-h1a02111_2.conda + sha256: 697d0055c4838f882d029d05baf432fb4d6fbebd92d60edfadeb10fea66f1755 + md5: 109ff9aa7347ca004a3f496a5160cdb9 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2931742 - timestamp: 1729235000691 + size: 2951572 + timestamp: 1731927266611 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: h880863c_1 - build_number: 1 + version: 1.11.449 + build: h8f08b23_2 + build_number: 2 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.407-h880863c_1.conda - sha256: 9cea713c0d727def94e29a99cdfe1deb65c241c90bc41c96e1e77777cb84d4c9 - md5: 60877ad5c76505fa4b90ab5567babb3d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.449-h8f08b23_2.conda + sha256: 7b7e17c332d7f382f5f97cefe477cb5e9fae171a00d0c40a78ad6263c64a0af2 + md5: c1111d86333195e42ae29d02d64a545c depends: - __osx >=11.0 - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - - libcxx >=17 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2709553 - timestamp: 1729235667236 + size: 2733405 + timestamp: 1731927979855 - kind: conda name: aws-sdk-cpp - version: 1.11.407 - build: hf265f57_1 - build_number: 1 + version: 1.11.449 + build: hf48a0a1_2 + build_number: 2 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.407-hf265f57_1.conda - sha256: d265e7a2af974f09ba795a900900e36e44e581b3adc7e827ddfd2374337ea89c - md5: 63a6b060807c6885d25f82615d5bd8f2 - depends: - - aws-c-common >=0.9.29,<0.9.30.0a0 - - aws-c-event-stream >=0.4.3,<0.4.4.0a0 - - aws-checksums >=0.1.20,<0.1.21.0a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.449-hf48a0a1_2.conda + sha256: 246d894d4354e1c7bbd1466881e87f3f92396777ebbd8cbebe53efb16ace88c4 + md5: e1cd103f7450254f9513244169ea6a1a + depends: + - aws-c-common >=0.10.3,<0.10.4.0a0 + - aws-c-event-stream >=0.5.0,<0.5.1.0a0 + - aws-checksums >=0.2.2,<0.2.3.0a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2758696 - timestamp: 1729234995101 + size: 2803239 + timestamp: 1731927417845 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: h60f91e5_0 + version: 1.14.0 + build: h1887c18_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.13.0-h60f91e5_0.conda - sha256: b3aecc4e01db67a18891e6e9517ec9b628577bbd2e1b6616d147c7c5f2f28a2b - md5: fc41d5a9f2c98fd37324c20f47b0124b + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-core-cpp-1.14.0-h1887c18_0.conda + sha256: 8967b3ccee4d74e61f6ec82dd8efb9deb854ee7ba012dfe767b7a92e0ac77724 + md5: e0c3a906a41be769f0ae20ca3e31cfc0 depends: - - libcurl >=8.8.0,<9.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 331714 - timestamp: 1720854524500 + size: 338650 + timestamp: 1728055589907 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: h935415a_0 + version: 1.14.0 + build: h5cfcd09_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.13.0-h935415a_0.conda - sha256: b7e0a22295db2e1955f89c69cefc32810309b3af66df986d9fb75d89f98a80f7 - md5: debd1677c2fea41eb2233a260f48a298 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-core-cpp-1.14.0-h5cfcd09_0.conda + sha256: fe07debdb089a3db17f40a7f20d283d75284bb4fc269ef727b8ba6fc93f7cb5a + md5: 0a8838771cc2e985cd295e01ae83baf1 depends: - __glibc >=2.17,<3.0.a0 - - libcurl >=8.8.0,<9.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 338134 - timestamp: 1720853194547 + size: 345117 + timestamp: 1728053909574 - kind: conda name: azure-core-cpp - version: 1.13.0 - build: hd01fc5c_0 + version: 1.14.0 + build: hd50102c_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.13.0-hd01fc5c_0.conda - sha256: aff4af38416cf7a81c79e5a3b071ce5aa13ec48da28db0312bc1ebe62cf7273d - md5: 2083f6313e623079db6ee67af00e6b27 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-core-cpp-1.14.0-hd50102c_0.conda + sha256: f5b91329ed59ffc0be8747784c6e4cc7e56250c54032883a83bc11808ef6a87e + md5: f093a11dcf3cdcca010b20a818fcc6dc depends: - __osx >=11.0 - - libcurl >=8.8.0,<9.0a0 - - libcxx >=16 - - openssl >=3.3.1,<4.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=17 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 287922 - timestamp: 1720853302106 + size: 294299 + timestamp: 1728054014060 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: h13ea094_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.8.0-h13ea094_2.conda - sha256: 11b01715cae19390890f29ebb56d36d895feafd787ba929aa10b6ce712f3f4b9 - md5: 383b72f2ee009992b21f4db08a708510 + version: 1.10.0 + build: h113e628_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.10.0-h113e628_0.conda + sha256: 286b31616c191486626cb49e9ceb5920d29394b9e913c23adb7eb637629ba4de + md5: 73f73f60854f325a55f1d31459f2ab73 depends: - - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libcxx >=16 - - openssl >=3.3.1,<4.0a0 + - __glibc >=2.17,<3.0.a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 142135 - timestamp: 1721777696118 + size: 232351 + timestamp: 1728486729511 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: hd126650_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-identity-cpp-1.8.0-hd126650_2.conda - sha256: f85452eca3ae0e156b1d1a321a1a9f4f58d44ff45236c0d8602ab96aaad3c6ba - md5: 36df3cf05459de5d0a41c77c4329634b + version: 1.10.0 + build: h47b0b28_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.10.0-h47b0b28_0.conda + sha256: 1c72423b9beba167d2f01b80dc204da77240a8266f1edb3d89510c852b300d69 + md5: 94e73a7877743a85c57091d8afab2348 depends: - - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 199516 - timestamp: 1721777604325 + size: 217132 + timestamp: 1728488096615 - kind: conda name: azure-identity-cpp - version: 1.8.0 - build: hf0f394c_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-identity-cpp-1.8.0-hf0f394c_2.conda - sha256: ac143df6b8596eeee2f770f02013e384f06ac09ecee042ee7f8c5a65f7958330 - md5: 3e74c83218d71b01f988e6bada2f4e22 + version: 1.10.0 + build: hc602bab_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-identity-cpp-1.10.0-hc602bab_0.conda + sha256: bde446b916fff5150606f8ed3e6058ffc55a3aa72381e46f1ab346590b1ae40a + md5: d7b71593a937459f2d4b67e1a4727dc2 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 - - openssl >=3.3.1,<4.0a0 + - __osx >=11.0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libcxx >=17 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 182768 - timestamp: 1721779454639 + size: 166907 + timestamp: 1728486882502 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: h17ca4bd_0 + version: 12.13.0 + build: h185ecfd_1 + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.12.0-h17ca4bd_0.conda - sha256: 4955de4131a1b4a16ac1f63d3e6f325904b997e1adb0f3fadf5a3b112eee6803 - md5: 9a26fea6b69f4f02689893366961be49 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-blobs-cpp-12.13.0-h185ecfd_1.conda + sha256: 280ec70009a92626054f58e45b168fce393e71a9710587488bd8401628cda481 + md5: 221e1e5ecb2643e113f32b3229d5ba33 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 473009 - timestamp: 1721866393941 + size: 502934 + timestamp: 1728580241002 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: hd2e3451_0 + version: 12.13.0 + build: h3cf044e_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.12.0-hd2e3451_0.conda - sha256: 69a0f5c2a08a1a40524b343060debb8d92295e2cc5805c3db56dad7a41246a93 - md5: 61f1c193452f0daa582f39634627ea33 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-blobs-cpp-12.13.0-h3cf044e_1.conda + sha256: 2606260e5379eed255bcdc6adc39b93fb31477337bcd911c121fc43cd29bf394 + md5: 7eb66060455c7a47d9dcdbfa9f46579b depends: - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 523120 - timestamp: 1721865032339 + size: 549342 + timestamp: 1728578123088 - kind: conda name: azure-storage-blobs-cpp - version: 12.12.0 - build: hfde595f_0 + version: 12.13.0 + build: h7585a09_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.12.0-hfde595f_0.conda - sha256: f733f4acedd8bf1705c780e0828f0b83242ae7e72963aef60d12a7c5b3a8640d - md5: f2c935764fdacd0fafc05f975fd347e0 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-blobs-cpp-12.13.0-h7585a09_1.conda + sha256: 08d52d130addc0fb55d5ba10d9fa483e39be25d69bac7f4c676c2c3069207590 + md5: 704238ef05d46144dae2e6b5853df8bc depends: - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libcxx >=17 license: MIT license_family: MIT - size: 419976 - timestamp: 1721865180569 + size: 438636 + timestamp: 1728578216193 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: h10ac4d7_1 + version: 12.8.0 + build: h1b94036_1 build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.7.0-h10ac4d7_1.conda - sha256: 1030fa54497a73eb78c509d451f25701e2e781dc182e7647f55719f1e1f9bee8 - md5: ab6d507ad16dbe2157920451d662e4a1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.8.0-h1b94036_1.conda + sha256: 146e76aac169e3dbdce5d3b142b7930ac643795c765e7655d1989905ec7d3231 + md5: 793b1080ab2d958980f137a8643cd6e8 depends: - - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 143039 - timestamp: 1721832724803 + size: 140832 + timestamp: 1728565334900 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: h68dbd84_1 + version: 12.8.0 + build: h736e048_1 build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-common-cpp-12.7.0-h68dbd84_1.conda - sha256: a4e0afd65ffed6cc788f13068b452d253e4bfa61d8ca0ebaa80e26fe62fed5f7 - md5: 368c9e33d8cc763bf883ca12c163b93c + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-common-cpp-12.8.0-h736e048_1.conda + sha256: 273475f002b091b66ce7366da04bf164c3732c03f8692ab2ee2d23335b6a82ba + md5: 13de36be8de3ae3f05ba127631599213 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __glibc >=2.17,<3.0.a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libgcc >=13 + - libstdcxx >=13 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 135615 - timestamp: 1721834497638 + size: 149312 + timestamp: 1728563338704 - kind: conda name: azure-storage-common-cpp - version: 12.7.0 - build: hcf3b6fd_1 + version: 12.8.0 + build: h9ca1f76_1 build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.7.0-hcf3b6fd_1.conda - sha256: 3fdf9c0337c48706cffe2e4c761cdea4132fb6dbd1f144d969c28afd903cf256 - md5: df7e01bcf8f3a9bfb0ab06778f915f29 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-common-cpp-12.8.0-h9ca1f76_1.conda + sha256: 77ab04e8fe5636a2de9c718f72a43645f7502cd208868c8a91ffba385547d585 + md5: 7a187cd7b1445afc80253bb186a607cc depends: - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - libcxx >=17 - libxml2 >=2.12.7,<3.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: MIT license_family: MIT - size: 119821 - timestamp: 1721832870493 + size: 121278 + timestamp: 1728563418777 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h082e32e_1 + version: 12.12.0 + build: h37d6d07_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.11.0-h082e32e_1.conda - sha256: 3c288dc1ae6bff9a1e21ab5196d13ab486850f61ec649a743a87bf9726901abf - md5: 16b05d31f626717668f01c01a970115f + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.12.0-h37d6d07_1.conda + sha256: 4079c617a75682e49bae63670d58fd6078ccfbbe55ca1f994acab3a74ab6bbcc + md5: b724f3b4b7f4e9b36c58cbe3ed8610a2 depends: - - __osx >=11.0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libcxx >=16 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 189065 - timestamp: 1721925275724 + size: 260547 + timestamp: 1728730924071 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h325d260_1 + version: 12.12.0 + build: ha633028_1 build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.11.0-h325d260_1.conda - sha256: 1726fa324bb402e52d63227d6cb3f849957cd6841f8cb8aed58bb0c81203befb - md5: 11d926d1f4a75a1b03d1c053ca20424b + url: https://conda.anaconda.org/conda-forge/linux-64/azure-storage-files-datalake-cpp-12.12.0-ha633028_1.conda + sha256: 5371e4f3f920933bb89b926a85a67f24388227419abd6e99f6086481e5e8d5f2 + md5: 7c1980f89dd41b097549782121a73490 depends: - __glibc >=2.17,<3.0.a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libgcc >=13 + - libstdcxx >=13 license: MIT license_family: MIT - size: 274492 - timestamp: 1721925100762 + size: 287366 + timestamp: 1728729530295 - kind: conda name: azure-storage-files-datalake-cpp - version: 12.11.0 - build: h36e5eb4_1 + version: 12.12.0 + build: hcdd55da_1 build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/azure-storage-files-datalake-cpp-12.11.0-h36e5eb4_1.conda - sha256: ba0cf9514c12d9fa56a15966badaec450d11ab78adef690501e38bb0f78aeb5f - md5: db65bbb89c21436f5471f93b09a7c09c + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/azure-storage-files-datalake-cpp-12.12.0-hcdd55da_1.conda + sha256: f48523f8aa0b5b80f45a92f0556b388dd96f44ac2dc2f44a01d08c1822eec97d + md5: c49fbc5233fcbaa86391162ff1adef38 depends: - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-common-cpp >=12.7.0,<12.7.1.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __osx >=11.0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-common-cpp >=12.8.0,<12.8.1.0a0 + - libcxx >=17 license: MIT license_family: MIT - size: 243908 - timestamp: 1721926367577 + size: 196032 + timestamp: 1728729672889 - kind: conda name: backoff version: 2.2.1 @@ -2935,368 +2938,368 @@ packages: timestamp: 1729655345825 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_h00cdb27_1 + version: '20240722.0' + build: cxx17_h5888daf_1 build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240116.2-cxx17_h00cdb27_1.conda - sha256: a9517c8683924f4b3b9380cdaa50fdd2009cd8d5f3918c92f64394238189d3cb - md5: f16963d88aed907af8b90878b8d8a05c + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda + sha256: 8f91429091183c26950f1e7ffa730e8632f0627ba35d2fccd71df31628c9b4e5 + md5: e1f604644fe8d78e22660e2fec6756bc depends: - - __osx >=11.0 - - libcxx >=16 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - libabseil-static =20240722.0=cxx17* + - abseil-cpp =20240722.0 license: Apache-2.0 license_family: Apache - size: 1136123 - timestamp: 1720857649214 + size: 1310521 + timestamp: 1727295454064 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_h0a1ffab_1 + version: '20240722.0' + build: cxx17_h5ad3122_1 build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240116.2-cxx17_h0a1ffab_1.conda - sha256: a6e1a6f13fd49c24238373838c266101a2bf3b521b0a36a3a7e586b40f50ec5b - md5: 9cadd103cf89edb2ea68d33728511158 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda + sha256: 590e47dce38031a8893e70491f3b71e214de7781cab53b6f017aa6f6841cb076 + md5: 6fe6b3694c4792a8e26755d3b06f0b80 depends: - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libgcc >=13 + - libstdcxx >=13 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - abseil-cpp =20240722.0 + - libabseil-static =20240722.0=cxx17* license: Apache-2.0 license_family: Apache - size: 1283386 - timestamp: 1720857389114 + size: 1328502 + timestamp: 1727295490806 - kind: conda name: libabseil - version: '20240116.2' - build: cxx17_he02047a_1 + version: '20240722.0' + build: cxx17_hf9b8971_1 build_number: 1 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240116.2-cxx17_he02047a_1.conda - sha256: 945396726cadae174a661ce006e3f74d71dbd719219faf7cc74696b267f7b0b5 - md5: c48fc56ec03229f294176923c3265c05 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda + sha256: 90bf08a75506dfcf28a70977da8ab050bcf594cd02abd3a9d84a22c9e8161724 + md5: 706da5e791c569a7b9814877098a6a0a depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - __osx >=11.0 + - libcxx >=17 constrains: - - abseil-cpp =20240116.2 - - libabseil-static =20240116.2=cxx17* + - libabseil-static =20240722.0=cxx17* + - abseil-cpp =20240722.0 license: Apache-2.0 license_family: Apache - size: 1264712 - timestamp: 1720857377573 + size: 1179072 + timestamp: 1727295571173 - kind: conda name: libarrow - version: 17.0.0 - build: had3b6fe_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-17.0.0-had3b6fe_16_cpu.conda - sha256: 9aa5598878cccc29de744ebc4b501c4a5a43332973edfdf0a19ddc521bd7248f - md5: c899e532e16be21570d32bc74ea3d34f + version: 18.0.0 + build: h2409f62_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.0.0-h2409f62_7_cpu.conda + sha256: baf7322466c5849f0ef4c8bab9f394c1448fc7a1d42f74d775b49e20cea8fcf8 + md5: da6e0816fe9639c270cafdec68b411d6 depends: - - __glibc >=2.17,<3.0.a0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + - __osx >=11.0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 - - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - - libgcc >=13 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx >=13 + - libcxx >=18 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 - arrow-cpp <0.0a0 - - apache-arrow-proc =*=cpu license: Apache-2.0 license_family: APACHE - size: 8495428 - timestamp: 1726669963852 + size: 5455595 + timestamp: 1731789726593 - kind: conda name: libarrow - version: 17.0.0 - build: hc6a7651_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-17.0.0-hc6a7651_16_cpu.conda - sha256: 1facd5aa7140031be0f68733ab5e413ea1505da40548e27a173b2407046f36b5 - md5: 05fecc4ae5930dc548327980a4bc7a83 + version: 18.0.0 + build: h3b997a5_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.0.0-h3b997a5_7_cpu.conda + sha256: d8e179b123ca9f62b83115091d3936c64d55506fef9c516b90cd3f2bdea304ca + md5: 32897a50e7f68187c4a524c439c0943c depends: - - __osx >=11.0 - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 + - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - - libcxx >=17 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 + - libgcc >=13 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: - - apache-arrow-proc =*=cpu - arrow-cpp <0.0a0 + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 license: Apache-2.0 license_family: APACHE - size: 5318871 - timestamp: 1726669928492 + size: 8714651 + timestamp: 1731789983840 - kind: conda name: libarrow - version: 17.0.0 - build: hccffc7f_16_cpu - build_number: 16 + version: 18.0.0 + build: hf19f309_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-17.0.0-hccffc7f_16_cpu.conda - sha256: b71e81d0a685ad5832df0c1762d613be82d14a165e984621e0c874cd885a5df4 - md5: adc3e7dd910df20ef4a968f09fe90da0 - depends: - - aws-crt-cpp >=0.28.3,<0.28.4.0a0 - - aws-sdk-cpp >=1.11.407,<1.11.408.0a0 - - azure-core-cpp >=1.13.0,<1.13.1.0a0 - - azure-identity-cpp >=1.8.0,<1.8.1.0a0 - - azure-storage-blobs-cpp >=12.12.0,<12.12.1.0a0 - - azure-storage-files-datalake-cpp >=12.11.0,<12.11.1.0a0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.0.0-hf19f309_7_cpu.conda + sha256: 83334f90a1759d91324c3cfcdcf4157018020f33901d1833ca28e9a912a4f89a + md5: e42e43720b5203a827bbd1ff05182afa + depends: + - aws-crt-cpp >=0.29.4,<0.29.5.0a0 + - aws-sdk-cpp >=1.11.449,<1.11.450.0a0 + - azure-core-cpp >=1.14.0,<1.14.1.0a0 + - azure-identity-cpp >=1.10.0,<1.10.1.0a0 + - azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0 + - azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0 - bzip2 >=1.0.8,<2.0a0 - gflags >=2.2.2,<2.3.0a0 - glog >=0.7.1,<0.8.0a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libbrotlidec >=1.1.0,<1.2.0a0 - libbrotlienc >=1.1.0,<1.2.0a0 - libgcc >=13 - - libgoogle-cloud >=2.29.0,<2.30.0a0 - - libgoogle-cloud-storage >=2.29.0,<2.30.0a0 - - libre2-11 >=2023.9.1 + - libgoogle-cloud >=2.31.0,<2.32.0a0 + - libgoogle-cloud-storage >=2.31.0,<2.32.0a0 + - libre2-11 >=2024.7.2 - libstdcxx >=13 - libutf8proc >=2.8.0,<3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - - orc >=2.0.2,<2.0.3.0a0 + - orc >=2.0.3,<2.0.4.0a0 - re2 - snappy >=1.2.1,<1.3.0a0 - zstd >=1.5.6,<1.6.0a0 constrains: - - apache-arrow-proc =*=cpu - arrow-cpp <0.0a0 + - apache-arrow-proc =*=cpu - parquet-cpp <0.0a0 license: Apache-2.0 license_family: APACHE - size: 7818979 - timestamp: 1726670314145 + size: 7997233 + timestamp: 1731791153311 +- kind: conda + name: libarrow-acero + version: 18.0.0 + build: h286801f_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.0.0-h286801f_7_cpu.conda + sha256: 8df47c06ad5b839393aa4703721385d3529a64971227a3a342a1100eeb2fbe78 + md5: 67a94caeec254580852dd71b0cb5bfc7 + depends: + - __osx >=11.0 + - libarrow 18.0.0 h2409f62_7_cpu + - libcxx >=18 + license: Apache-2.0 + license_family: APACHE + size: 491285 + timestamp: 1731789825049 - kind: conda name: libarrow-acero - version: 17.0.0 - build: h5888daf_16_cpu - build_number: 16 + version: 18.0.0 + build: h5888daf_7_cpu + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-17.0.0-h5888daf_16_cpu.conda - sha256: 0ff4c712c7c61e60708c6ef4f8158200059e0f63c25d0a54c8e4cca7bd153d86 - md5: 18f796aae018a26a20ac51d19de69115 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.0.0-h5888daf_7_cpu.conda + sha256: bc0aa7f6c05c097f224cb2a8f72d22a5cde7ef239fde7a57f18061bf74776cd5 + md5: 786a275d019708cd1c963b12a8fb0c72 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu + - libarrow 18.0.0 h3b997a5_7_cpu - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 608267 - timestamp: 1726669999941 + size: 618726 + timestamp: 1731790016942 - kind: conda name: libarrow-acero - version: 17.0.0 - build: h5ad3122_16_cpu - build_number: 16 + version: 18.0.0 + build: h5ad3122_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-17.0.0-h5ad3122_16_cpu.conda - sha256: be9f73a92a00d991cc5946705c83c7b449f8cea6709ad29a2e05d6db7beb4b54 - md5: 0913ad25f0ebb327458c25d38bf9cf45 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.0.0-h5ad3122_7_cpu.conda + sha256: dda002b70f6ba368057ba9164eabdc0101a979eab329d3269ec4e615c07292c8 + md5: eaec91ad6d3dd2e459744e3116c68553 depends: - - libarrow 17.0.0 hccffc7f_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 573902 - timestamp: 1726670347811 + size: 585513 + timestamp: 1731791202130 - kind: conda - name: libarrow-acero - version: 17.0.0 - build: hf9b8971_16_cpu - build_number: 16 + name: libarrow-dataset + version: 18.0.0 + build: h286801f_7_cpu + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-17.0.0-hf9b8971_16_cpu.conda - sha256: c9ff43babc0acbd864584ed1720cf063715589e31e9e2024b90d2094d4f20d38 - md5: 319bd2a8c30dffa54d6ad69847f16de1 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.0.0-h286801f_7_cpu.conda + sha256: 3d17beb5e336507443f436f21658e0baf6d6dbacc83938a60e7eac20886e5f78 + md5: 75cec89177549b4a87faa6c952fb07a6 depends: - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libcxx >=17 + - libarrow 18.0.0 h2409f62_7_cpu + - libarrow-acero 18.0.0 h286801f_7_cpu + - libcxx >=18 + - libparquet 18.0.0 hda0ea68_7_cpu license: Apache-2.0 license_family: APACHE - size: 483187 - timestamp: 1726670022814 + size: 497438 + timestamp: 1731791003104 - kind: conda name: libarrow-dataset - version: 17.0.0 - build: h5888daf_16_cpu - build_number: 16 + version: 18.0.0 + build: h5888daf_7_cpu + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-17.0.0-h5888daf_16_cpu.conda - sha256: e500e0154cf3ebb41bed3bdf41bd0ff5e0a6b7527a46ba755c05e59c8036e442 - md5: 5400efd6bf101674e0ce170906a0f7cb + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.0.0-h5888daf_7_cpu.conda + sha256: ecfcea86bf62a498eb59bfa28c8d6e28e842e9c8eeb594d059ef0fdc7064154f + md5: a742b9a0452b55020ccf662721c1ce44 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu - - libarrow-acero 17.0.0 h5888daf_16_cpu + - libarrow 18.0.0 h3b997a5_7_cpu + - libarrow-acero 18.0.0 h5888daf_7_cpu - libgcc >=13 - - libparquet 17.0.0 h39682fd_16_cpu + - libparquet 18.0.0 h6bd9018_7_cpu - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 585061 - timestamp: 1726670063965 + size: 594424 + timestamp: 1731790074886 - kind: conda name: libarrow-dataset - version: 17.0.0 - build: h5ad3122_16_cpu - build_number: 16 + version: 18.0.0 + build: h5ad3122_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-17.0.0-h5ad3122_16_cpu.conda - sha256: 276af4de42960692a2ee34630659be11eb1e83552ec4752d59cc96e244382560 - md5: 2dc1bbff088399cca7137501cef4a741 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.0.0-h5ad3122_7_cpu.conda + sha256: e2c4cbeef3862b9446ab7052c5889c0923b97d77582fd10437744bcf75f24e05 + md5: 1b769328f659c977a4b72235bbcdaf9c depends: - - libarrow 17.0.0 hccffc7f_16_cpu - - libarrow-acero 17.0.0 h5ad3122_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu + - libarrow-acero 18.0.0 h5ad3122_7_cpu - libgcc >=13 - - libparquet 17.0.0 h501616e_16_cpu + - libparquet 18.0.0 h23a96eb_7_cpu - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 558058 - timestamp: 1726670424141 -- kind: conda - name: libarrow-dataset - version: 17.0.0 - build: hf9b8971_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-17.0.0-hf9b8971_16_cpu.conda - sha256: e77d3c6825384c232f61fd3602a32507b66410dbe8879cd69a89b0fc49489533 - md5: 67ea0ef775de4c394c3c7db991297ffa - depends: - - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libarrow-acero 17.0.0 hf9b8971_16_cpu - - libcxx >=17 - - libparquet 17.0.0 hf0ba9ef_16_cpu - license: Apache-2.0 - license_family: APACHE - size: 491606 - timestamp: 1726671006156 + size: 567511 + timestamp: 1731791297133 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: h08b7278_16_cpu - build_number: 16 + version: 18.0.0 + build: h14ec2bd_7_cpu + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-17.0.0-h08b7278_16_cpu.conda - sha256: 8f4179180db0ab8b7e759699e40533d893082e4556d2d6b81b20224e60312fa9 - md5: c677e8946781fd3b57ef3b8b1b883f4d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.0.0-h14ec2bd_7_cpu.conda + sha256: f9c63c5ad5629d8891bafc100bc8a8e0844ee73b52189a6dcb59522790d93635 + md5: 3c0517a4c9a67370e9279c3b9bc2ce2b depends: - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 hccffc7f_16_cpu - - libarrow-acero 17.0.0 h5ad3122_16_cpu - - libarrow-dataset 17.0.0 h5ad3122_16_cpu + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 hf19f309_7_cpu + - libarrow-acero 18.0.0 h5ad3122_7_cpu + - libarrow-dataset 18.0.0 h5ad3122_7_cpu - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 537621 - timestamp: 1726670458067 + size: 523066 + timestamp: 1731791341708 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: hbf8b706_16_cpu - build_number: 16 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-17.0.0-hbf8b706_16_cpu.conda - sha256: 6880b3c8fb88ee6c0bbae34b0efea86567ccec1b8cd8a3662b8b8c6dfeb5e87a - md5: b739c909163c38f85f40f5650ab2aeb2 + version: 18.0.0 + build: h5c8f2c3_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.0.0-h5c8f2c3_7_cpu.conda + sha256: f4e12c8f48449b47ec7642f5cc0705d59e59c608d563e2848ffceec779c7c220 + md5: be76013fa3fdaec2c0c504e6fdfd282d depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libarrow-acero 17.0.0 hf9b8971_16_cpu - - libarrow-dataset 17.0.0 hf9b8971_16_cpu - - libcxx >=17 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 h3b997a5_7_cpu + - libarrow-acero 18.0.0 h5888daf_7_cpu + - libarrow-dataset 18.0.0 h5888daf_7_cpu + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 license: Apache-2.0 license_family: APACHE - size: 472812 - timestamp: 1726671149860 + size: 528172 + timestamp: 1731790101854 - kind: conda name: libarrow-substrait - version: 17.0.0 - build: hf54134d_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-17.0.0-hf54134d_16_cpu.conda - sha256: 53f3d5f12c9ea557f33a4e1cf9067ce2dbb4211eff0a095574eeb7f0528bc044 - md5: 1cbc3fb1ee28c99e5f8c52920a7717a3 + version: 18.0.0 + build: h6a6e5c5_7_cpu + build_number: 7 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.0.0-h6a6e5c5_7_cpu.conda + sha256: 775c202c379c712f3e77d43ce54d3f9a7ef8dd37d3b68911e886b89f5502eeac + md5: 2a3910690b531fdc9553e2889fda97bf depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libarrow 17.0.0 had3b6fe_16_cpu - - libarrow-acero 17.0.0 h5888daf_16_cpu - - libarrow-dataset 17.0.0 h5888daf_16_cpu - - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx >=13 + - libabseil >=20240722.0,<20240723.0a0 + - libarrow 18.0.0 h2409f62_7_cpu + - libarrow-acero 18.0.0 h286801f_7_cpu + - libarrow-dataset 18.0.0 h286801f_7_cpu + - libcxx >=18 + - libprotobuf >=5.28.2,<5.28.3.0a0 license: Apache-2.0 license_family: APACHE - size: 550960 - timestamp: 1726670093831 + size: 459246 + timestamp: 1731791195089 - kind: conda name: libblas version: 3.9.0 @@ -3668,18 +3671,18 @@ packages: timestamp: 1726659794676 - kind: conda name: libcxx - version: 19.1.3 + version: 19.1.4 build: ha82da77_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.3-ha82da77_0.conda - sha256: 6d062760c6439e75b9a44d800d89aff60fe3441998d87506c62dc94c50412ef4 - md5: bf691071fba4734984231617783225bc + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.4-ha82da77_0.conda + sha256: 342896ebc1d6acbf022ca6df006a936b9a472579e91e3c502cb1f52f218b78e9 + md5: a2d3d484d95889fccdd09498d8f6bf9a depends: - __osx >=11.0 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 520771 - timestamp: 1730314603920 + size: 520678 + timestamp: 1732060258949 - kind: conda name: libedit version: 3.1.20191231 @@ -4106,212 +4109,214 @@ packages: timestamp: 1729089357313 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: h435de7b_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.29.0-h435de7b_0.conda - sha256: c8ee42a4acce5227d220ec6500f6872d52d82e478c76648b9ff57dd2d86429bd - md5: 5d95d9040c4319997644f68e9aefbe70 + version: 2.31.0 + build: h3888205_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.31.0-h3888205_0.conda + sha256: 603b0bd55980f5bf97911b327c9e469cf953c482f112b561dc9c1c7608bbdc29 + md5: 5b3d9a0327c4f7c569162f10acaf6bb4 depends: - - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 1241649 - timestamp: 1725640926284 + size: 1246720 + timestamp: 1731122940037 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: hbb89541_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.29.0-hbb89541_0.conda - sha256: a604681e3a6a7b6214df0406afd1a225349e9cd1f8c177826140811315a938ba - md5: a2ca6f7068595e4c3e2ee8214106786b + version: 2.31.0 + build: h804f50b_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.31.0-h804f50b_0.conda + sha256: b2de99c83516236ff591d30436779f8345bcc11bb0ec76a7ca3a38a3b23b6423 + md5: 35ab838423b60f233391eb86d324a830 depends: + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 - libgcc >=13 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libstdcxx >=13 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 1231400 - timestamp: 1725642021621 + size: 1248705 + timestamp: 1731122589027 - kind: conda name: libgoogle-cloud - version: 2.29.0 - build: hfa33a2f_0 + version: 2.31.0 + build: h8d8be31_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.29.0-hfa33a2f_0.conda - sha256: 1f42048702d773a355d276d24313ac63781a331959fc3662c6be36e979d7845c - md5: f78c7bd435ee45f4661daae9e81ddf13 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.31.0-h8d8be31_0.conda + sha256: 184d650d55453a40935c128ea309088ae52e15a68cd87ab17ae7c77704251168 + md5: a338736f1514e6f999db8726fe0965b1 depends: - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcurl >=8.9.1,<9.0a0 - - libcxx >=17 - - libgrpc >=1.62.2,<1.63.0a0 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcurl >=8.10.1,<9.0a0 + - libcxx >=18 + - libgrpc >=1.67.1,<1.68.0a0 + - libprotobuf >=5.28.2,<5.28.3.0a0 - openssl >=3.3.2,<4.0a0 constrains: - - libgoogle-cloud 2.29.0 *_0 + - libgoogle-cloud 2.31.0 *_0 license: Apache-2.0 license_family: Apache - size: 866727 - timestamp: 1725640714587 + size: 873497 + timestamp: 1731121684939 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 + version: 2.31.0 build: h0121fbd_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.29.0-h0121fbd_0.conda - sha256: 2847c9e940b742275a7068e0a742bdabf211bf0b2bbb1453592d6afb47c7e17e - md5: 06dfd5208170b56eee943d9ac674a533 + url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.31.0-h0121fbd_0.conda + sha256: 3c38b0a80441f82323dc5a72b96c0dd7476bd5184fbfcdf825a8e15249c849af + md5: 568d6a09a6ed76337a7b97c84ae7c0f8 depends: - __glibc >=2.17,<3.0.a0 - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - libgcc >=13 - - libgoogle-cloud 2.29.0 h435de7b_0 + - libgoogle-cloud 2.31.0 h804f50b_0 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 781655 - timestamp: 1725641060970 + size: 782150 + timestamp: 1731122728715 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 - build: h90fd6fa_0 + version: 2.31.0 + build: h7081f7f_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.29.0-h90fd6fa_0.conda - sha256: ec80383fbb6fae95d2ff7d04ba46b282ab48219b7ce85b3cd5ee7d0d8bae74e1 - md5: baee0b9cb1c5319f370a534ca5a16267 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.31.0-h7081f7f_0.conda + sha256: 01f5156584b816d34270a60a61f6b6561f2a01cb3b4eeb455a4e1808d763d486 + md5: 548fd1d31741ee6b13df4124db4a9f5f depends: - __osx >=11.0 - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - - libcxx >=17 - - libgoogle-cloud 2.29.0 hfa33a2f_0 + - libcxx >=18 + - libgoogle-cloud 2.31.0 h8d8be31_0 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 535346 - timestamp: 1725641618955 + size: 526858 + timestamp: 1731122580689 - kind: conda name: libgoogle-cloud-storage - version: 2.29.0 + version: 2.31.0 build: hb9b2b65_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.29.0-hb9b2b65_0.conda - sha256: d477736704021486ffde0b117290d8c1f29a434f02ab9a21d4458e41212c448f - md5: 5f75545cfccc08fb2f79256e0b8a2fb6 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.31.0-hb9b2b65_0.conda + sha256: 1df4b7b59224d865a574003df12ee36d4a9939e8e7911b4472348730b9c2a0e8 + md5: 53897114489b4df10e1680bf189aa306 depends: - libabseil - libcrc32c >=1.1.2,<1.2.0a0 - libcurl - libgcc >=13 - - libgoogle-cloud 2.29.0 hbb89541_0 + - libgoogle-cloud 2.31.0 h3888205_0 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl license: Apache-2.0 license_family: Apache - size: 736327 - timestamp: 1725642186647 + size: 737686 + timestamp: 1731123086764 - kind: conda name: libgrpc - version: 1.62.2 - build: h15f2491_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.62.2-h15f2491_0.conda - sha256: 28241ed89335871db33cb6010e9ccb2d9e9b6bb444ddf6884f02f0857363c06a - md5: 8dabe607748cb3d7002ad73cd06f1325 + version: 1.67.1 + build: h36c5df4_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda + sha256: 1f6673d9d866048c9cf28fd56e6874ffc7e2c53c47d7071cb367d5fc2dde16a7 + md5: b946137e362e98a55a77fdf0b20a7739 depends: - - c-ares >=1.28.1,<2.0a0 + - c-ares >=1.32.3,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 7316832 - timestamp: 1713390645548 + size: 7131846 + timestamp: 1730236305327 - kind: conda name: libgrpc - version: 1.62.2 - build: h98a9317_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.62.2-h98a9317_0.conda - sha256: ae5fe7ba0c5c599f0e20fa08be436518b7ef25ab6f705e8c7fcf0d0f34525f72 - md5: 2a669953ec0f08c2cc56bb43fed78de8 + version: 1.67.1 + build: hc2c308b_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda + sha256: 870550c1faf524e9a695262cd4c31441b18ad542f16893bd3c5dbc93106705f7 + md5: 4606a4647bfe857e3cfe21ca12ac3afb depends: - - c-ares >=1.28.1,<2.0a0 + - __glibc >=2.17,<3.0.a0 + - c-ares >=1.32.3,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libstdcxx-ng >=12 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libstdcxx >=13 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 7395259 - timestamp: 1713390742813 + size: 7362336 + timestamp: 1730236333879 - kind: conda name: libgrpc - version: 1.62.2 - build: h9c18a4f_0 + version: 1.67.1 + build: hc70892a_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.62.2-h9c18a4f_0.conda - sha256: d2c5b5a828f6f1242c11e8c91968f48f64446f7dd5cbfa1197545e465eb7d47a - md5: e624fc11026dbb84c549435eccd08623 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda + sha256: d2393fcd3c3584e5d58da4122f48bcf297567d2f6f14b3d1fcbd34fdd5040694 + md5: 624e27571fde34f8acc2afec840ac435 depends: - - c-ares >=1.28.1,<2.0a0 + - __osx >=11.0 + - c-ares >=1.34.2,<2.0a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libre2-11 >=2023.9.1 - - libzlib >=1.2.13,<2.0.0a0 - - openssl >=3.2.1,<4.0a0 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libre2-11 >=2024.7.2 + - libzlib >=1.3.1,<2.0a0 + - openssl >=3.3.2,<4.0a0 - re2 constrains: - - grpc-cpp =1.62.2 + - grpc-cpp =1.67.1 license: Apache-2.0 license_family: APACHE - size: 5016525 - timestamp: 1713392846329 + size: 4882208 + timestamp: 1730236299095 - kind: conda name: libiconv version: '1.17' @@ -4559,179 +4564,178 @@ packages: timestamp: 1730773029647 - kind: conda name: libparquet - version: 17.0.0 - build: h39682fd_16_cpu - build_number: 16 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-17.0.0-h39682fd_16_cpu.conda - sha256: 09bc64111e5e1e9f5fee78efdd62592e01c681943fe6e91b369f6580dc8726c4 - md5: dd1fee2da0659103080fdd74004656df + version: 18.0.0 + build: h23a96eb_7_cpu + build_number: 7 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.0.0-h23a96eb_7_cpu.conda + sha256: 405cd8b36b454aac8d8f3f698feb4c8c4fca99eae9724b9312bac1ce0653ec5d + md5: 010433ece4a8287643b92c348c48068d depends: - - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0 had3b6fe_16_cpu + - libarrow 18.0.0 hf19f309_7_cpu - libgcc >=13 - libstdcxx >=13 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 1186069 - timestamp: 1726670048098 + size: 1122091 + timestamp: 1731791274767 - kind: conda name: libparquet - version: 17.0.0 - build: h501616e_16_cpu - build_number: 16 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-17.0.0-h501616e_16_cpu.conda - sha256: 7d834aec3ee3cc1069bd780862bbb0f339265e2386692252f375c1e380bc8f5f - md5: 0f366d30bc01ea47e04b7034d408d6d4 + version: 18.0.0 + build: h6bd9018_7_cpu + build_number: 7 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.0.0-h6bd9018_7_cpu.conda + sha256: 908e21eab32839375ebe59952e783e40645ca5083b64001679960f2e38e64c31 + md5: 687870f7d9cba5262fdd7e730e9e9ba8 depends: - - libarrow 17.0.0 hccffc7f_16_cpu + - __glibc >=2.17,<3.0.a0 + - libarrow 18.0.0 h3b997a5_7_cpu - libgcc >=13 - libstdcxx >=13 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 1104185 - timestamp: 1726670404384 + size: 1212405 + timestamp: 1731790060397 - kind: conda name: libparquet - version: 17.0.0 - build: hf0ba9ef_16_cpu - build_number: 16 + version: 18.0.0 + build: hda0ea68_7_cpu + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-17.0.0-hf0ba9ef_16_cpu.conda - sha256: 6ed28f06409b02a9f521ee5e8cf2f4d3fb63a7633c11f2ee7ec2880e78e184e5 - md5: 517ecf2ee0c2822e6120c258f3acd383 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.0.0-hda0ea68_7_cpu.conda + sha256: 8343a369243b7c87993955e39fbbac3617413f4a963e271fda5079b6c8fec7b0 + md5: fd32f3b3115477411f3790eb67272081 depends: - __osx >=11.0 - - libarrow 17.0.0 hc6a7651_16_cpu - - libcxx >=17 - - libthrift >=0.20.0,<0.20.1.0a0 - - openssl >=3.3.2,<4.0a0 + - libarrow 18.0.0 h2409f62_7_cpu + - libcxx >=18 + - libthrift >=0.21.0,<0.21.1.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 873007 - timestamp: 1726670938318 + size: 881594 + timestamp: 1731790946184 - kind: conda name: libprotobuf - version: 4.25.3 - build: hc39d83c_1 - build_number: 1 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-4.25.3-hc39d83c_1.conda - sha256: f51bde2dfe73968ab3090c1098f520b65a8d8f11e945cb13bf74d19e30966b61 - md5: fa77986d9170450c014586ab87e144f8 + version: 5.28.2 + build: h029595c_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda + sha256: d8c7b6f851bfc53494d9b8e54d473c4f11ab26483a6e64df6f7967563df166b1 + md5: 538dbe0ad9f248e2e109abb9b6809ea5 depends: - - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libcxx >=17 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2177164 - timestamp: 1727160770879 + size: 2802876 + timestamp: 1728564881988 - kind: conda name: libprotobuf - version: 4.25.3 - build: hd5b35b9_1 - build_number: 1 + version: 5.28.2 + build: h5b01275_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-4.25.3-hd5b35b9_1.conda - sha256: 8b5e4e31ed93bf36fd14e9cf10cd3af78bb9184d0f1f87878b8d28c0374aa4dc - md5: 06def97690ef90781a91b786cb48a0a9 + url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda + sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421 + md5: ab0bff36363bec94720275a681af8b83 depends: - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 + - libabseil >=20240722.0,<20240723.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2883090 - timestamp: 1727161327039 + size: 2945348 + timestamp: 1728565355702 - kind: conda name: libprotobuf - version: 4.25.3 - build: hea2c3fa_1 - build_number: 1 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-4.25.3-hea2c3fa_1.conda - sha256: dabf4632d39b29444d157c226f4df146fa347c82540c39bf6f9545f2a7d0f40c - md5: c06acb4f972c516696590e6d6ffb69c7 + version: 5.28.2 + build: h8f0b736_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda + sha256: f732a6fa918428e2d5ba61e78fe11bb44a002cc8f6bb74c94ee5b1297fefcfd8 + md5: d2cb5991f2fb8eb079c80084435e9ce6 depends: + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - - libgcc >=13 - - libstdcxx >=13 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 - libzlib >=1.3.1,<2.0a0 license: BSD-3-Clause license_family: BSD - size: 2613905 - timestamp: 1727160673211 + size: 2374965 + timestamp: 1728565334796 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h5a48ba9_2 - build_number: 2 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2023.09.01-h5a48ba9_2.conda - sha256: 3f3c65fe0e9e328b4c1ebc2b622727cef3e5b81b18228cfa6cf0955bc1ed8eff - md5: 41c69fba59d495e8cf5ffda48a607e35 + version: 2024.07.02 + build: h18dbdb1_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda + sha256: 96d4fdac28d5af38c38f90c22cb0aa9a90affae13ca8ba24bd1eb60b789df8ff + md5: f1800796b0efc4bbc5b001d845545111 depends: - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 232603 - timestamp: 1708946763521 + size: 203516 + timestamp: 1728778974654 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h7b2c953_2 - build_number: 2 + version: 2024.07.02 + build: h2348fd5_1 + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2023.09.01-h7b2c953_2.conda - sha256: c8a0a6e7a627dc9c66ffb8858f8f6d499f67fd269b6636b25dc5169760610f05 - md5: 0b7b2ced046d6b5fe6e9d46b1ee0324c + url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda + sha256: 6facca42cfc85a05b33e484a8b0df7857cc092db34806946d022270098d8d20f + md5: 5a7065309a66097738be6a06fd04b7ef depends: + - __osx >=11.0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libcxx >=16 + - libabseil >=20240722.0,<20240723.0a0 + - libcxx >=17 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 171443 - timestamp: 1708947163461 + size: 165956 + timestamp: 1728779107218 - kind: conda name: libre2-11 - version: 2023.09.01 - build: h9d008c2_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2023.09.01-h9d008c2_2.conda - sha256: 1da5cfd57091a52c822ec9580694f1e07817e53db43b0407a477daa2d2a16fcd - md5: 387c114aadcaeb02210f646c4b5efca2 + version: 2024.07.02 + build: hbbce691_1 + build_number: 1 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda + sha256: f8ad6a4f6d4fd54ebe3e5e712a01e663222fc57f49d16b6b8b10c30990dafb8f + md5: 2124de47357b7a516c0a3efd8f88c143 depends: + - __glibc >=2.17,<3.0.a0 - libabseil * cxx17* - - libabseil >=20240116.1,<20240117.0a0 - - libgcc-ng >=12 - - libstdcxx-ng >=12 + - libabseil >=20240722.0,<20240723.0a0 + - libgcc >=13 + - libstdcxx >=13 constrains: - - re2 2023.09.01.* + - re2 2024.07.02.* license: BSD-3-Clause license_family: BSD - size: 217529 - timestamp: 1708946830978 + size: 211096 + timestamp: 1728778964655 - kind: conda name: libsodium version: 1.0.20 @@ -4926,62 +4930,59 @@ packages: timestamp: 1729089498541 - kind: conda name: libthrift - version: 0.20.0 - build: h0e7cc3e_1 - build_number: 1 + version: 0.21.0 + build: h0e7cc3e_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.20.0-h0e7cc3e_1.conda - sha256: 3e70dfda31a3ce28310c86cc0001f20abb78c917502e12c94285a1337fe5b9f0 - md5: d0ed81c4591775b70384f4cc78e05cd1 + url: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda + sha256: ebb395232973c18745b86c9a399a4725b2c39293c9a91b8e59251be013db42f0 + md5: dcb95c0a98ba9ff737f7ae482aef7833 depends: - __glibc >=2.17,<3.0.a0 - libevent >=2.1.12,<2.1.13.0a0 - - libgcc-ng >=13 - - libstdcxx-ng >=13 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 417404 - timestamp: 1724652349098 + size: 425773 + timestamp: 1727205853307 - kind: conda name: libthrift - version: 0.20.0 - build: h154c74f_1 - build_number: 1 + version: 0.21.0 + build: h154c74f_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.20.0-h154c74f_1.conda - sha256: 283a6fbac3e6de97f25144306fb46dc5f6d6fc7f4052a4f8ec6da0cb806025b5 - md5: c0bd829d4ef1b1be0c5b8bf206c0cd6d + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.21.0-h154c74f_0.conda + sha256: f04ab1417aca1687edff9c30d8423ace285eb8c053dc16d595c6e47cfeefb274 + md5: c28792bf37f4ecdce8e3cb9e40750650 depends: - libevent >=2.1.12,<2.1.13.0a0 - - libgcc-ng >=13 - - libstdcxx-ng >=13 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 408434 - timestamp: 1724652544563 + size: 417329 + timestamp: 1727205944238 - kind: conda name: libthrift - version: 0.20.0 - build: h64651cc_1 - build_number: 1 + version: 0.21.0 + build: h64651cc_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.20.0-h64651cc_1.conda - sha256: b6afcbc934258e0474e0f1059bc7b23865723b902062f2f2910e0370e6495401 - md5: 4cf2e5233320648397184415f380c891 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libthrift-0.21.0-h64651cc_0.conda + sha256: 7a6c7d5f58cbbc2ccd6493b4b821639fdb0701b9b04c737a949e8cb6adf1c9ad + md5: 7ce2bd2f650f8c31ad7ba4c7bfea61b7 depends: - __osx >=11.0 - libcxx >=17 - libevent >=2.1.12,<2.1.13.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.1,<4.0a0 + - openssl >=3.3.2,<4.0a0 license: Apache-2.0 license_family: APACHE - size: 315041 - timestamp: 1724657608736 + size: 324342 + timestamp: 1727206096912 - kind: conda name: libutf8proc version: 2.8.0 @@ -5232,35 +5233,34 @@ packages: timestamp: 1727963148474 - kind: conda name: lit - version: 19.1.3 + version: 19.1.4 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.3-pyhd8ed1ab_0.conda - sha256: 7ec1944ef3a2bd3a163d2667f36c490d58d5389c062a5a836cc634d4ea0a95fb - md5: b929a6ecc1027275015c2acffdceaeb8 + url: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.4-pyhd8ed1ab_0.conda + sha256: 89dfa22c04e6b781ae0e872a8202ccd7994a670493a89d3fb086348438386a89 + md5: 5ece98668bcee7bfc23d4b214a5a8bb4 depends: - python >=3 license: Apache-2.0 WITH LLVM-exception license_family: Apache - size: 128702 - timestamp: 1730301422924 + size: 128424 + timestamp: 1732065621077 - kind: conda name: llvm-openmp - version: 19.1.3 - build: hb52a8e5_0 + version: 19.1.4 + build: hdb05f8b_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.3-hb52a8e5_0.conda - sha256: 49a8940e727aa82ee034fa9a60b3fcababec41b3192d955772aab635a5374b82 - md5: dd695d23e78d1ca4fecce969b1e1db61 + url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.4-hdb05f8b_0.conda + sha256: dfdcd8de37899d984326f9734b28f46f80b88c068e44c562933a8b3117f2401a + md5: 76ca179ec970bea6e275e2fa477c2d3c depends: - __osx >=11.0 constrains: - - openmp 19.1.3|19.1.3.* + - openmp 19.1.4|19.1.4.* license: Apache-2.0 WITH LLVM-exception - license_family: APACHE - size: 280488 - timestamp: 1730364082380 + size: 281554 + timestamp: 1732102484807 - kind: conda name: lz4-c version: 1.9.4 @@ -5379,76 +5379,76 @@ packages: timestamp: 1729351534830 - kind: conda name: max - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024111816-release.conda - sha256: fa56e98447bb9722c73e114e668327474621732929a3b3bf03d706558c0b41df - md5: 099bfd8c69724fb21c86aa6440b07ed4 - depends: - - max-core ==24.6.0.dev2024111816 release - - max-python >=24.6.0.dev2024111816,<25.0a0 - - mojo-jupyter ==24.6.0.dev2024111816 release - - mblack ==24.6.0.dev2024111816 release + url: https://conda.modular.com/max-nightly/noarch/max-24.6.0.dev2024112020-release.conda + sha256: c6e86f0fbbd57d65c245b58c9a39f64301c769c587f75aa550f0a3f64629cbec + md5: f8203ce4409d971e909d91b10bf2fa89 + depends: + - max-core ==24.6.0.dev2024112020 release + - max-python >=24.6.0.dev2024112020,<25.0a0 + - mojo-jupyter ==24.6.0.dev2024112020 release + - mblack ==24.6.0.dev2024112020 release license: LicenseRef-Modular-Proprietary - size: 9924 - timestamp: 1731949226511 + size: 9918 + timestamp: 1732136899196 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024111816-release.conda - sha256: 4bbaf8418f56808a9a7ed147755de1fd9ff479bb5db60e0b0060f501007a6d03 - md5: 9239cc63963a1e4a15ce32f6ec8fa36c + url: https://conda.modular.com/max-nightly/linux-64/max-core-24.6.0.dev2024112020-release.conda + sha256: 540fd3163a864bf60fae9a2afd86f111b54afd76f6dfb59aae9299d8189ea220 + md5: 85cd4cfe4bed145b377b9379319c39fc depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 271464508 - timestamp: 1731949226509 + size: 270965073 + timestamp: 1732136835508 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024111816-release.conda - sha256: 232a2ca14f07fc562bddb44ecec6848e31f026cfa93267737fd329c51cb26a66 - md5: 9b6d01a1fe29a43ded2016a8c6a6a2c0 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-24.6.0.dev2024112020-release.conda + sha256: 4e3e1104c4b2c3f26134bf4b865fef2af26cd33aa453244c59cbc27bf58340d6 + md5: 1b76c22a75e2f55fdd8ec123cdfb82aa depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 275099918 - timestamp: 1731949126926 + size: 274655105 + timestamp: 1732136899194 - kind: conda name: max-core - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024111816-release.conda - sha256: e8fc65d3b90b8557a6f64e0aa7700b97f4d00a2e2d2bbee651f918986dacb9cb - md5: fd415a5af0a193bfa9241e17eaf3747d + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-24.6.0.dev2024112020-release.conda + sha256: ae86df0b9d20d20756d16a0b66e0d2f12427a496e28d639589fba76c8e508cd7 + md5: 582615e4dae591fac5d708eaec594ebc depends: - - mblack ==24.6.0.dev2024111816 release + - mblack ==24.6.0.dev2024112020 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 233285763 - timestamp: 1731949312758 + size: 233689138 + timestamp: 1732137063646 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024111816-3.12release.conda - sha256: a625852f27ef5a5f3ad3142199eab2bd81c66e44d5b46bddcfd4f68001372eda - md5: a4f8b2d1c96022cac3bff1a1e2de7770 + url: https://conda.modular.com/max-nightly/linux-64/max-python-24.6.0.dev2024112020-3.12release.conda + sha256: 9211cfb8440bf028cce5ec4554f1377ef2524e5bc2532b26029d5072a01a59b4 + md5: 83c7b6adf2b7567243a2e8682f7f33a2 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5468,18 +5468,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 136809568 - timestamp: 1731949226522 + size: 137376849 + timestamp: 1732136835521 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024111816-3.12release.conda - sha256: cd12e22f775075932eb6aee4d8654fad445ecf08fef09f08fec259d08a8b93fe - md5: dd91853ef7d888e133cca3368f8651bc + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-24.6.0.dev2024112020-3.12release.conda + sha256: 21914b325dbf1015b5cb5fef142789721d64fd5ac2f7c6b15b4192a4bb02ae4d + md5: 8b47d04ff478a6b4a66defe8226da80a depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5499,18 +5499,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 140331334 - timestamp: 1731949126939 + size: 140907571 + timestamp: 1732136899208 - kind: conda name: max-python - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024111816-3.12release.conda - sha256: 6b96a0d537f247fe3fa9851d5147d57733038ef4ba245510e75d8362b5e5aabf - md5: 6ed7307847e8d9a0592b8bc08c31cf80 + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-24.6.0.dev2024112020-3.12release.conda + sha256: bbbbf91f30719bc4a51bc0317c91b9e1716d024b3721a95b37bd058ca1c66d5e + md5: 4893fb00ccdf17ce31d56617288c15f6 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python 3.12.* - fastapi - numpy >=1.18,<2.0 @@ -5530,17 +5530,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 125415344 - timestamp: 1731949312762 + size: 125944186 + timestamp: 1732137063649 - kind: conda name: mblack - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024111816-release.conda - sha256: 49cab69b1c9539336534907a415e6404b791290bccba5ed61b50b92be7278b6e - md5: 9e7f2d795645d6a04620718dfb10d39c + url: https://conda.modular.com/max-nightly/noarch/mblack-24.6.0.dev2024112020-release.conda + sha256: d684315cf58ea23860f16a1e305bfc9b8a2c7e39554a6d40d46411a5d6fd50cf + md5: bf7e67dddae76fd3bb6a2f623642b200 depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -5550,8 +5550,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130612 - timestamp: 1731949226516 + size: 130610 + timestamp: 1732136899202 - kind: conda name: mdurl version: 0.1.2 @@ -5569,21 +5569,21 @@ packages: timestamp: 1704317789138 - kind: conda name: mojo-jupyter - version: 24.6.0.dev2024111816 + version: 24.6.0.dev2024112020 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024111816-release.conda - sha256: db5710960cab7c1d1c63ecf6916652cc07fdb8cda80528773d410141b3db0076 - md5: 1959b4bee271c31390854e23a85a7815 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-24.6.0.dev2024112020-release.conda + sha256: 65ee90ebd5d6250b6f12d6e78fea39c287b82f14949aba8df0f47c4cbdbc0be0 + md5: 5f30ae7817d94671df319b612c290550 depends: - - max-core ==24.6.0.dev2024111816 release + - max-core ==24.6.0.dev2024112020 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary size: 22941 - timestamp: 1731949226517 + timestamp: 1732136899203 - kind: conda name: multidict version: 6.1.0 @@ -5868,61 +5868,58 @@ packages: timestamp: 1731377666602 - kind: conda name: opentelemetry-api - version: 1.27.0 + version: 1.28.2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.27.0-pyhd8ed1ab_0.conda - sha256: ed8350db9d8f177f2e0eefb4df24c1134f1b39f7ef3e20ac42725a3b860309cd - md5: 947b016e29819585f8f3f82dbb7ede91 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.28.2-pyhd8ed1ab_0.conda + sha256: e267ed59ea8f357c3471defef796ce4f4555eacd9ee0ed2d47d3dd539ee7ee2f + md5: f1307fb38a8fd2220def45ec1691a21c depends: - deprecated >=1.2.6 - importlib-metadata >=6.0.0,<7.1.0 - python >=3.8 - setuptools >=16.0 license: Apache-2.0 - license_family: APACHE - size: 43708 - timestamp: 1724916819673 + size: 44014 + timestamp: 1731985724169 - kind: conda name: opentelemetry-exporter-otlp-proto-common - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.27.0-pyhd8ed1ab_0.conda - sha256: 6ec5cc984ad9c0faef329a1a1507d4431f08812b9053be42a2a736ae081dc3c5 - md5: 00e6c03b1437fa6bf3a775bc8f89f677 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.28.2-pyhff2d567_0.conda + sha256: 838525f5a35f130eb3e6ccf06700ab7574467e8abe19da91e6f0de3b399e77c2 + md5: b00b3a8f0d25d5b18979c73ec051c313 depends: - backoff >=1.10.0,<3.0.0 - - opentelemetry-proto 1.27.0 - - python >=3.8 + - opentelemetry-proto 1.28.2 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 18221 - timestamp: 1724929505617 + size: 18838 + timestamp: 1731991715474 - kind: conda name: opentelemetry-exporter-otlp-proto-http - version: 1.27.0 + version: 1.28.2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.27.0-pyhd8ed1ab_0.conda - sha256: b5b86f0f819b5dd05bf0e67ddaa763086194a751aa534bed44fdbf089b317142 - md5: 3caeb0419f4d0f9ac0538c799df15612 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.28.2-pyhd8ed1ab_0.conda + sha256: d89b7b0f28dca5ed84d8c3421e3b16683f764c9eebde66cc8858fc183751af69 + md5: 73810c011d2d60914ce8f92fe99564a0 depends: - deprecated >=1.2.6 - googleapis-common-protos ~=1.52 - - opentelemetry-api 1.27.0 - - opentelemetry-exporter-otlp-proto-common 1.27.0 - - opentelemetry-proto 1.27.0 - - opentelemetry-sdk 1.27.0 + - opentelemetry-api ~=1.15 + - opentelemetry-exporter-otlp-proto-common 1.28.2 + - opentelemetry-proto 1.28.2 + - opentelemetry-sdk ~=1.28.2 - python >=3.8 - requests ~=2.7 license: Apache-2.0 - license_family: APACHE - size: 16982 - timestamp: 1724969540619 + size: 17007 + timestamp: 1732094238214 - kind: conda name: opentelemetry-exporter-prometheus version: 1.12.0rc1 @@ -5943,139 +5940,136 @@ packages: timestamp: 1695214221489 - kind: conda name: opentelemetry-instrumentation - version: 0.48b0 - build: pyhd8ed1ab_0 + version: 0.49b2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.48b0-pyhd8ed1ab_0.conda - sha256: e7466998c0a6e5ecc9b8681312617c5d6d85afe3902a03fa7c755eb1a08c3db8 - md5: 5cd186b5587efdc79c6b24f06b2b1726 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-0.49b2-pyhff2d567_0.conda + sha256: ee20ad159bc040642fcbce1b25f8a9fc1d788b53c6bf593a0891bf7887ec7c5f + md5: 13d714acd504cd0141688c908521c0b9 depends: - opentelemetry-api ~=1.4 - - python >=3.7 + - opentelemetry-semantic-conventions 0.49b2 + - packaging >=18.0 + - python >=3.9 - setuptools >=16.0 - wrapt <2.0.0,>=1.0.0 license: Apache-2.0 - license_family: APACHE - size: 30783 - timestamp: 1724896532781 + size: 31616 + timestamp: 1732070359772 - kind: conda name: opentelemetry-instrumentation-asgi - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.48b0-pyhd8ed1ab_0.conda - sha256: 563634bfbb54093812aabcc9bb36b1430c462c02350d114967862188d66fddec - md5: e337134c68bfa548019f83593164cdfd + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-asgi-0.49b2-pyhd8ed1ab_0.conda + sha256: 7b2b4da037baa506a82c5e3e711905f34448441e069a6e3affb0e4917b3ee5e0 + md5: 482ad6cdc507689d5c33eb22aa16d83e depends: - asgiref ~=3.0 - opentelemetry-api ~=1.12 - - opentelemetry-instrumentation 0.48b0 - - opentelemetry-semantic-conventions 0.48b0 - - opentelemetry-util-http 0.48b0 + - opentelemetry-instrumentation 0.49b2 + - opentelemetry-semantic-conventions 0.49b2 + - opentelemetry-util-http 0.49b2 - python >=3.7 license: Apache-2.0 - license_family: APACHE - size: 23429 - timestamp: 1724943803444 + size: 23749 + timestamp: 1732086813641 - kind: conda name: opentelemetry-instrumentation-fastapi - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.48b0-pyhd8ed1ab_0.conda - sha256: 5c9195c089446241590001cfbcbc12421a2b89a0a23dd3691cd45fe9f77d5c93 - md5: e844191ea9b60804c57fb0978698407b + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-instrumentation-fastapi-0.49b2-pyhd8ed1ab_0.conda + sha256: e853f62b4c56e308f349a3f360cf4d6aa814a9dc926e727c25effcf4121af68c + md5: 59c01fcead989ba58c5dc79e3ac3aab3 depends: - opentelemetry-api ~=1.12 - - opentelemetry-instrumentation 0.48b0 - - opentelemetry-instrumentation-asgi 0.48b0 - - opentelemetry-semantic-conventions 0.48b0 - - opentelemetry-util-http 0.48b0 + - opentelemetry-instrumentation 0.49b2 + - opentelemetry-instrumentation-asgi 0.49b2 + - opentelemetry-semantic-conventions 0.49b2 + - opentelemetry-util-http 0.49b2 - python >=3.7 license: Apache-2.0 - license_family: APACHE - size: 19806 - timestamp: 1724987641159 + size: 20288 + timestamp: 1732093785486 - kind: conda name: opentelemetry-proto - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.27.0-pyhd8ed1ab_0.conda - sha256: ca0480de7f33511dc983aeaf7de23f49c3a258b185588543f85abcf08b10d000 - md5: 3de386ea142a50514f6bba04c3fb48c0 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.28.2-pyhff2d567_0.conda + sha256: e68320a465b45e05f569c440a20735db9a0fd7cdb9e52300506660a924d17caf + md5: 54ac33b32171ce2205b6639da1a1ac54 depends: - - protobuf >=3.19,<5.0 - - python >=3.8 + - protobuf <6.0,>=5.0 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 37620 - timestamp: 1724925809921 + size: 37108 + timestamp: 1731988686996 - kind: conda name: opentelemetry-sdk - version: 1.27.0 - build: pyhd8ed1ab_0 + version: 1.28.2 + build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.27.0-pyhd8ed1ab_0.conda - sha256: fb0e4f664166d168edf455f744d827c2342b4b1e99d035cd2e47721863d845e5 - md5: 1a16e734cd0ebb70d3b79265403beb13 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.28.2-pyhff2d567_0.conda + sha256: 67c5be0f2b81b329d273f1f24f985a53e000b4b42b8338b56375d75aa8da5bb1 + md5: 742115714b2cbfa599e9f78495233d1a depends: - - opentelemetry-api 1.27.0 - - opentelemetry-semantic-conventions 0.48b0 - - python >=3.8 + - opentelemetry-api 1.28.2 + - opentelemetry-semantic-conventions 0.49b2 + - python >=3.9 - typing-extensions >=3.7.4 + - typing_extensions >=3.7.4 license: Apache-2.0 - license_family: APACHE - size: 73814 - timestamp: 1724923174196 + size: 78017 + timestamp: 1732070451972 - kind: conda name: opentelemetry-semantic-conventions - version: 0.48b0 - build: pyhd8ed1ab_0 + version: 0.49b2 + build: pyh10f6f8f_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.48b0-pyhd8ed1ab_0.conda - sha256: e2f9a4dbb4eef97e5ab04a73b3898c0f186d57705eae66c6991452385f987e9c - md5: eefd5ed55046af15c08051afb6b0eb6b + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.49b2-pyh10f6f8f_0.conda + sha256: 5e3869ad66082b16d56bab8219fad0c8c09090ec93eb866327eed788fe5c9340 + md5: d95dd6e8a70417e394bb16dad5cff408 depends: - - opentelemetry-api 1.27.0 - - python >=3.8 + - deprecated >=1.2.6 + - opentelemetry-api 1.28.2 + - python >=3.9 license: Apache-2.0 - license_family: APACHE - size: 76393 - timestamp: 1724919708207 + size: 81534 + timestamp: 1732067304518 - kind: conda name: opentelemetry-util-http - version: 0.48b0 + version: 0.49b2 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.48b0-pyhd8ed1ab_0.conda - sha256: 9bc1dbb9d258d6e6c25d96b85d58d049e325971270d42439b5cff88777ce7bc7 - md5: 4fe36ba8135c7fb262d0f7721aa01b05 + url: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-util-http-0.49b2-pyhd8ed1ab_0.conda + sha256: 73bb1cbb640b0732c1a04764a9704bb048ab77d6cb9c6439eb50ec0ecf926ede + md5: f267c60fc629a9bd1aa388f6ed8ea0ab depends: - python >=3.8 license: Apache-2.0 - license_family: APACHE - size: 19163 - timestamp: 1724929864899 + size: 19241 + timestamp: 1732081026829 - kind: conda name: orc - version: 2.0.2 - build: h383807c_0 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.2-h383807c_0.conda - sha256: 04cc6054199bdbc2649f1ee1afde87d6274ce9dc6f2c2f22da42810b9c8f323a - md5: e910dc97dc0ce4ab1e1a87f49aff89fd + version: 2.0.3 + build: h121fd32_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h121fd32_0.conda + sha256: 4759fd0c3f06c035146100e22ee36a312c9a8226654bd2973e9ca9ac5de5cf1f + md5: 39995f7406b949c1bef74f0c7277afb3 depends: - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 + - __osx >=11.0 + - libcxx >=18 + - libprotobuf >=5.28.2,<5.28.3.0a0 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -6083,21 +6077,20 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 1046461 - timestamp: 1723760657143 + size: 438254 + timestamp: 1731665228473 - kind: conda name: orc - version: 2.0.2 - build: h669347b_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.2-h669347b_0.conda - sha256: 8a126e0be7f87c499f0a9b5229efa4321e60fc4ae46abdec9b13240631cb1746 - md5: 1e6c10f7d749a490612404efeb179eb8 + version: 2.0.3 + build: h90de224_0 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h90de224_0.conda + sha256: 7969db50268b65c2edb14be2e22bfff5656f36336eb5421d53030d29c037fec1 + md5: c07ba3025fe20ccbab9cd7c615953d6f depends: - - __glibc >=2.17,<3.0.a0 - - libgcc-ng >=12 - - libprotobuf >=4.25.3,<4.25.4.0a0 - - libstdcxx-ng >=12 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -6105,20 +6098,21 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 1066349 - timestamp: 1723760593232 + size: 1170439 + timestamp: 1731665024334 - kind: conda name: orc - version: 2.0.2 - build: h75dedd0_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.2-h75dedd0_0.conda - sha256: a23f3a88a6b16363bd13f964b4abd12be1576abac460126f3269cbed12d04840 - md5: 9c89e09cede143716b479c5eacc924fb + version: 2.0.3 + build: he039a57_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-he039a57_0.conda + sha256: 9657ae19d6541fe67a61ef0c26ba1012ec508920b49afa897962c7d4b263ba35 + md5: 052499acd6d6b79952197a13b23e2600 depends: - - __osx >=11.0 - - libcxx >=16 - - libprotobuf >=4.25.3,<4.25.4.0a0 + - __glibc >=2.17,<3.0.a0 + - libgcc >=13 + - libprotobuf >=5.28.2,<5.28.3.0a0 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - lz4-c >=1.9.3,<1.10.0a0 - snappy >=1.2.1,<1.3.0a0 @@ -6126,8 +6120,8 @@ packages: - zstd >=1.5.6,<1.6.0a0 license: Apache-2.0 license_family: Apache - size: 436164 - timestamp: 1723760750932 + size: 1187593 + timestamp: 1731664886527 - kind: conda name: packaging version: '24.2' @@ -6317,211 +6311,199 @@ packages: timestamp: 1728546155066 - kind: conda name: protobuf - version: 4.25.3 - build: py312h83439f5_1 - build_number: 1 + version: 5.28.2 + build: py312h2ec8cdc_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-4.25.3-py312h83439f5_1.conda - sha256: 30d212eca5e25d0b0260dd0fff18f917386bfe046e425d627847aaed642a0aa4 - md5: 7bbcc35ebf7e3d8c59e472f1bf0e65fc + url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda + sha256: 4884f8161602f0148ebbc1af8d3176cec80b96c83243f68aafd651986b573817 + md5: 586bead4a9dfa46faf88deb7d3a742bb depends: - __glibc >=2.17,<3.0.a0 - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - libstdcxx >=13 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 390590 - timestamp: 1725018571385 + size: 464548 + timestamp: 1728669645013 - kind: conda name: protobuf - version: 4.25.3 - build: py312h8a04735_1 - build_number: 1 + version: 5.28.2 + build: py312h6f74592_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-4.25.3-py312h8a04735_1.conda - sha256: 1a79bd9813b6ca59329549c5831f86031668dff8c31339cb1199b5aef38e36ab - md5: 0f527d01f72f363ee35a4bc874f235ba + url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda + sha256: f874ffd38b9ae2b810e9d2e43fd8d3b778cdeaf7dea4a3e6ee4adeafe2d936cf + md5: 4b9b22bd7c53d938b207f9d0f79db183 depends: - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - libgcc >=13 - - libprotobuf >=4.25.3,<4.25.4.0a0 - libstdcxx >=13 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 392015 - timestamp: 1725018625494 + size: 472764 + timestamp: 1728669483611 - kind: conda name: protobuf - version: 4.25.3 - build: py312he4aa971_1 - build_number: 1 + version: 5.28.2 + build: py312hf02c72a_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-4.25.3-py312he4aa971_1.conda - sha256: 1eb7f6c300be7a727ceaa01b009b9af14aac5112f685e8ef38238dbc8f4ad4dc - md5: 5feb2cb13c6b7c2b2365ee5307e4b2db + url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda + sha256: dbcec117510ced5c12097e3eb06ebbf4512dc255733a9ace33c4249fb7e6a364 + md5: 6fda46c82abd0a080ca33de7d16ca877 depends: - __osx >=11.0 - - libabseil * cxx17* - - libabseil >=20240116.2,<20240117.0a0 - libcxx >=17 - - libprotobuf >=4.25.3,<4.25.4.0a0 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 - - setuptools + constrains: + - libprotobuf 5.28.2 license: BSD-3-Clause license_family: BSD - size: 373218 - timestamp: 1725018824150 + size: 447369 + timestamp: 1728669902591 - kind: conda name: pyarrow - version: 17.0.0 - build: py312h55cb1a1_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-17.0.0-py312h55cb1a1_2.conda - sha256: 83d34c5bd373ab01402e2350ed5b1e836a3ac25a715d399621ce3610d8685339 - md5: da93169f2deb8623e266c71ca9b0bac6 - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + version: 18.0.0 + build: py312h1f38498_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.0.0-py312h1f38498_1.conda + sha256: c411c8bf7c22113a1d4ceac1c8df638a223ffcec9b4e5fc528631b64f3df7ccd + md5: 4510221533398449a8f707bda652dd27 + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 25737 - timestamp: 1730169570576 + size: 25409 + timestamp: 1731058762728 - kind: conda name: pyarrow - version: 17.0.0 - build: py312h9cebb41_2 - build_number: 2 + version: 18.0.0 + build: py312h7900ff3_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-17.0.0-py312h9cebb41_2.conda - sha256: 9e1baddd1199e244f4f8be10c7250691088948583ab3955c510b90eb71c91a2c - md5: 5f7d505626cb057e1320bbd46dd02ef2 - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.0.0-py312h7900ff3_1.conda + sha256: 948514cde269fb6874a3945c8b2c26666588ac7835eb19fa7ec11c0547250b8d + md5: ea33ac754057779cd2df785661486310 + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 25538 - timestamp: 1730169714708 + size: 25161 + timestamp: 1731058699977 - kind: conda name: pyarrow - version: 17.0.0 - build: py312ha814d7c_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-17.0.0-py312ha814d7c_2.conda - sha256: d6433c343120e723cad92b52ea05c16e05096845489275a697201ce0a50fc568 - md5: 04a90c4ce691f2e289658dd475f69631 - depends: - - libarrow-acero 17.0.0.* - - libarrow-dataset 17.0.0.* - - libarrow-substrait 17.0.0.* - - libparquet 17.0.0.* - - numpy >=1.19,<3 - - pyarrow-core 17.0.0 *_2_* + version: 18.0.0 + build: py312h8025657_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.0.0-py312h8025657_1.conda + sha256: ec1bace4edb04a2cb0bca92c378044260bf798a42aefc5ac1156826b3a4c79c8 + md5: be32cb6508ecd041d0468be137a9c60b + depends: + - libarrow-acero 18.0.0.* + - libarrow-dataset 18.0.0.* + - libarrow-substrait 18.0.0.* + - libparquet 18.0.0.* + - pyarrow-core 18.0.0 *_1_* - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 license: Apache-2.0 license_family: APACHE - size: 25811 - timestamp: 1730169125041 + size: 25338 + timestamp: 1731059175489 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py312h01725c0_2_cpu - build_number: 2 + version: 18.0.0 + build: py312h01725c0_1_cpu + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-17.0.0-py312h01725c0_2_cpu.conda - sha256: e5ed32ee7664a6322263e446d3504a35ff6f5452b17f1161bce7922d03f3cbd4 - md5: add603bfa43d9bf3f06783f780e1a817 + url: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.0.0-py312h01725c0_1_cpu.conda + sha256: 240ab4328ebbfd81fe4f93cacd24fc44cd9e58edf9a95acc492e1025525f9a82 + md5: c8ae967c39337603035d59c8994c23f9 depends: - __glibc >=2.17,<3.0.a0 - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.12,<3.13.0a0 - python_abi 3.12.* *_cp312 constrains: - apache-arrow-proc =*=cpu + - numpy >=1.21,<3 license: Apache-2.0 license_family: APACHE - size: 4607408 - timestamp: 1730169265797 + size: 4578590 + timestamp: 1731058358731 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py312h66f7834_2_cpu - build_number: 2 + version: 18.0.0 + build: py312h66f7834_1_cpu + build_number: 1 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-17.0.0-py312h66f7834_2_cpu.conda - sha256: 239ac3e62ef11c6e0acc16a4b1a8e3029ed11c5aec771a98f08b7f2fc3a79945 - md5: 77b54d42cacd19af257ed402fb936f9c + url: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.0.0-py312h66f7834_1_cpu.conda + sha256: ded4bd91b1e0f6eaee9bdd4cba76efb424a3279d69946aec8fc65671fae213eb + md5: 8d857df755335de36fc7d10f897ac7c5 depends: - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 constrains: + - numpy >=1.21,<3 - apache-arrow-proc =*=cpu license: Apache-2.0 license_family: APACHE - size: 4460462 - timestamp: 1730169449471 + size: 4408381 + timestamp: 1731058794401 - kind: conda name: pyarrow-core - version: 17.0.0 - build: py312hc40f475_2_cpu - build_number: 2 + version: 18.0.0 + build: py312hc40f475_1_cpu + build_number: 1 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-17.0.0-py312hc40f475_2_cpu.conda - sha256: 708488e602a159fa38a7fd5fa4466e9f093761dc4a8538661f06be3df42f30a5 - md5: bc617fed2854d65a16760d2bf02a475c + url: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.0.0-py312hc40f475_1_cpu.conda + sha256: afa1d9cfb76ab37ae837c6a68f9a79e0a25f96da826c373be9728fed152eaec9 + md5: 801f7771b21af9ca4016d9c2f9ff2a08 depends: - __osx >=11.0 - - libarrow 17.0.0.* *cpu + - libarrow 18.0.0.* *cpu - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - - numpy >=1.19,<3 - python >=3.12,<3.13.0a0 - python >=3.12,<3.13.0a0 *_cpython - python_abi 3.12.* *_cp312 constrains: - apache-arrow-proc =*=cpu + - numpy >=1.21,<3 license: Apache-2.0 license_family: APACHE - size: 3990396 - timestamp: 1730169098217 + size: 3915622 + timestamp: 1731058726842 - kind: conda name: pycparser version: '2.22' @@ -7115,49 +7097,49 @@ packages: timestamp: 1728642457661 - kind: conda name: re2 - version: 2023.09.01 - build: h4cba328_2 - build_number: 2 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2023.09.01-h4cba328_2.conda - sha256: 0e0d44414381c39a7e6f3da442cb41c637df0dcb383a07425f19c19ccffa0118 - md5: 0342882197116478a42fa4ea35af79c1 + version: 2024.07.02 + build: h2d3a13d_1 + build_number: 1 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda + sha256: 55e7be480bfb979fa8595a16d7f2adea3a5ac9a77b2e97cd0f7ac40e989edb6c + md5: 83f4e47229834c895a92c18383e1cd9d depends: - - libre2-11 2023.09.01 h7b2c953_2 + - libre2-11 2024.07.02 h18dbdb1_1 license: BSD-3-Clause license_family: BSD - size: 26770 - timestamp: 1708947220914 + size: 26747 + timestamp: 1728778986331 - kind: conda name: re2 - version: 2023.09.01 - build: h7f4b329_2 - build_number: 2 + version: 2024.07.02 + build: h77b4e00_1 + build_number: 1 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/re2-2023.09.01-h7f4b329_2.conda - sha256: f0f520f57e6b58313e8c41abc7dfa48742a05f1681f05654558127b667c769a8 - md5: 8f70e36268dea8eb666ef14c29bd3cda + url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda + sha256: c1721cb80f7201652fc9801f49c214c88aee835d957f2376e301bd40a8415742 + md5: 01093ff37c1b5e6bf9f17c0116747d11 depends: - - libre2-11 2023.09.01 h5a48ba9_2 + - libre2-11 2024.07.02 hbbce691_1 license: BSD-3-Clause license_family: BSD - size: 26617 - timestamp: 1708946796423 + size: 26665 + timestamp: 1728778975855 - kind: conda name: re2 - version: 2023.09.01 - build: h9caee61_2 - build_number: 2 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2023.09.01-h9caee61_2.conda - sha256: 31db9c598bfa7586ac2e3ba06681d676caa5d252b5b68f4b6173edc71f70681e - md5: a9667ab785e1686d53313364c695f58e + version: 2024.07.02 + build: hcd0e937_1 + build_number: 1 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda + sha256: eebddde6cb10b146507810b701ef6df122d5309cd5151a39d0828aa44dc53725 + md5: 19e29f2ccc9168eb0a39dc40c04c0e21 depends: - - libre2-11 2023.09.01 h9d008c2_2 + - libre2-11 2024.07.02 h2348fd5_1 license: BSD-3-Clause license_family: BSD - size: 26726 - timestamp: 1708946863063 + size: 26860 + timestamp: 1728779123653 - kind: conda name: readline version: '8.2' @@ -7297,35 +7279,35 @@ packages: timestamp: 1730592349978 - kind: conda name: s2n - version: 1.5.5 - build: h3931f03_0 + version: 1.5.9 + build: h0fd0ee4_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.5-h3931f03_0.conda - sha256: a6fa0afa836f8f26dea0abc180ca2549bb517932d9a88a121e707135d4bcb715 - md5: 334dba9982ab9f5d62033c61698a8683 + url: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.9-h0fd0ee4_0.conda + sha256: f2c8e55d6caa8d87a482b1f133963c184de1ccb2303b77cc8ca86c794253f151 + md5: f472432f3753c5ca763d2497e2ea30bf depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 353081 - timestamp: 1728534228471 + size: 355568 + timestamp: 1731541963573 - kind: conda name: s2n - version: 1.5.5 - build: hc6ade00_0 + version: 1.5.9 + build: h636ded1_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.5-hc6ade00_0.conda - sha256: 47e9783a3c2b44b2f718e7cda74c0170e6a8c145688eee76a4395ac06f6e5393 - md5: 7238fdea17af79b5f6928ff278c70d52 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.9-h636ded1_0.conda + sha256: 51572714743f836266af564c5b26b37599478131c4379a0d11778f04e647d070 + md5: bf4f84136d9ddb7be1855754a9ac4bb9 depends: - libgcc >=13 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 349557 - timestamp: 1728534230496 + size: 352546 + timestamp: 1731542018427 - kind: conda name: safetensors version: 0.4.5 @@ -7508,21 +7490,21 @@ packages: timestamp: 1722520112550 - kind: conda name: starlette - version: 0.41.2 - build: pyha770c72_0 + version: 0.41.3 + build: pyh7900ff3_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.2-pyha770c72_0.conda - sha256: 02206e5369944e0fd29e4f5c8e9b51dd926a74a46b621a73323669ad404f1081 - md5: 287492bb6e159da4357a10a2bd05c13c + url: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyh7900ff3_0.conda + sha256: 33986032cb0515f7e9f6647d07006b7dc49b3f373b73d5a1826e6979c661b27a + md5: 0889c5a3e95d8c382cff7556757aedb0 depends: - anyio >=3.4.0,<5 - - python >=3.8 + - python >=3.9 - typing_extensions >=3.10.0 license: BSD-3-Clause license_family: BSD - size: 59059 - timestamp: 1730305803101 + size: 59069 + timestamp: 1732037161800 - kind: conda name: tk version: 8.6.13 @@ -7719,13 +7701,13 @@ packages: timestamp: 1713535244513 - kind: conda name: transformers - version: 4.46.2 + version: 4.46.3 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.2-pyhd8ed1ab_0.conda - sha256: e654adbaa80a65ffa2209465d23e136dee2d8b1ded3da425c1f8c3a9c3be56a6 - md5: 587e2e9014d6efc236029e9acd8332c2 + url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.46.3-pyhd8ed1ab_0.conda + sha256: 6ae73c0d1197812d8fd6a2c64309fe9abe822feb66b2d330cc61ce9fa60dee0c + md5: 457af723774f077a128515a6fdd536a2 depends: - datasets !=2.5.0 - filelock @@ -7741,62 +7723,62 @@ packages: - tqdm >=4.27 license: Apache-2.0 license_family: APACHE - size: 3659906 - timestamp: 1730868580651 + size: 3622494 + timestamp: 1731981383171 - kind: conda name: typer - version: 0.13.0 + version: 0.13.1 build: pyhd8ed1ab_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.0-pyhd8ed1ab_0.conda - sha256: f3661edc36aaf69c03323f0a2b71bbbfdf3c11ed1fe1c9c6f486ac1b53e11aa1 - md5: 0d2754390dab3d584823f497d1ab8704 + url: https://conda.anaconda.org/conda-forge/noarch/typer-0.13.1-pyhd8ed1ab_0.conda + sha256: 2f12a5af13d440aa75970e3d0d1ea3192916848473967b4ecb483627c01333cb + md5: 82a4704166144f27e9c83803bff5bf53 depends: - python >=3.9 - - typer-slim-standard 0.13.0 hd8ed1ab_0 + - typer-slim-standard 0.13.1 hd8ed1ab_0 license: MIT license_family: MIT - size: 54855 - timestamp: 1731015674090 + size: 55352 + timestamp: 1732084066966 - kind: conda name: typer-slim - version: 0.13.0 + version: 0.13.1 build: pyhff2d567_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.0-pyhff2d567_0.conda - sha256: 6e23932ebef6b09b68a9667596952af4f81167b4b50a182ac70316ec224322fc - md5: 5fcd867cf0b4498002731d44621c0b58 + url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.13.1-pyhff2d567_0.conda + sha256: b190bcd5f341ba8843f2f1ce43b5e8dae770bb84d49e2ce5b346e4d8098367a1 + md5: 85283fb942fa2604c3db03483027ced2 depends: - click >=8.0.0 - python >=3.9 - typing_extensions >=3.7.4.3 constrains: - - typer >=0.13.0,<0.13.1.0a0 - shellingham >=1.3.0 + - typer >=0.13.1,<0.13.2.0a0 - rich >=10.11.0 license: MIT license_family: MIT - size: 43166 - timestamp: 1731015659531 + size: 43463 + timestamp: 1732084053693 - kind: conda name: typer-slim-standard - version: 0.13.0 + version: 0.13.1 build: hd8ed1ab_0 subdir: noarch noarch: generic - url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.0-hd8ed1ab_0.conda - sha256: 402d1c872adb1dda436d563e03280750419367fb808a9ee7811f1335f218e8bc - md5: fe8bb6071bf1c47b38bc65f848847059 + url: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.13.1-hd8ed1ab_0.conda + sha256: 14ac72d0533bc2f37f8dc85b90b45a91ca28ee0995c520b16a40f34629749c7a + md5: a9bf95ed3c65bf936292d944bf3df36d depends: - rich - shellingham - - typer-slim 0.13.0 pyhff2d567_0 + - typer-slim 0.13.1 pyhff2d567_0 license: MIT license_family: MIT - size: 48480 - timestamp: 1731015660139 + size: 48744 + timestamp: 1732084054211 - kind: conda name: typing-extensions version: 4.12.2