diff --git a/docs/changelog-released.md b/docs/changelog-released.md index 44376a6153..a0d9609952 100644 --- a/docs/changelog-released.md +++ b/docs/changelog-released.md @@ -28,15 +28,20 @@ Here's a brief summary of some of the major changes in this release, with more detailed information in the following sections: - The `inout` and `borrowed` argument conventions have been renamed to `mut` - and `read`, respectively. See Language changes for details. + and `read`, respectively. A new `out` convention has been added for the `self` + argument in constructors and for named results. See + [Language changes](#24-6-language-changes) for details. -- `Lifetime` and related types have been renamed to `Origin` in the standard - library to better clarify that parameters of this type indicate where a - reference is derived from, not the more complicated notion of where a variable - is initialized and destroyed. As a consequence the `__lifetime_of()` operator - is now named `__origin_of()`. There are also a number of other origin-related - improvements in this release, described under Language changes and Standard - library changes below. +- `Lifetime` and related types in the standard library have been renamed to + [`Origin`](/mojo/stdlib/builtin/type_aliases/Origin) to better clarify that + parameters of this type indicate where a reference is derived from, not the + more complicated notion of where a variable is initialized and destroyed. As a + consequence the `__lifetime_of()` operator is now named `__origin_of()`. + + There are also a number of other origin-related improvements in this release, + including being able to specify a union of origins by listing multiple values + in the `__origin_of()` operator or inside the `ref` origin specifier + (`ref [a, b]`). For details, see [Language changes](#24-6-language-changes). For background information and rationale on the name change see [the proposal](https://github.com/modularml/mojo/issues/3623). For more @@ -44,70 +49,92 @@ detailed information in the following sections: [Lifetimes, origins and references](/mojo/manual/values/lifetimes) in the Mojo Manual. -- Implicit conversions are now opt-in using the `@implicit` decorator. See - Language changes for details. +- Implicit conversions are now opt-in using the + [`@implicit`](/mojo/manual/decorators/implicit) decorator. See + [Language changes](#24-6-language-changes) for details. + +- The standard library has added several new types, including + [`Deque`](/mojo/stdlib/collections/deque/Deque) (a double-ended queue) and + [`OwnedPointer`](/mojo/stdlib/memory/owned_pointer/OwnedPointer) (safe, + single-owner, non-nullable smart pointer). See + [Standard library changes](#standard-library-changes-24-6-standard-library-changes) + for details. + +- The VS Code extension now supports setting data breakpoints and function + breakpoints, and the Mojo LLDB debugger supports symbol breakpoints, such + as `b main` or `b my_module::main`. -- Lots of new docs, including a brand new +- We've made a number of improvement to how information is displayed in error + messages, LSP, and generated API documentation. For details, see + [Tooling changes](#24-6-tooling-changes). + +- And we've added a number of new docs, including a brand new [Mojo tutorial](/mojo/manual/get-started), new pages on [operators and expressions](/mojo/manual/operators), [error handling](/mojo/manual/errors), and [pointers](/mojo/manual/pointers/), and many smaller additions and improvements. -### Language changes +### Language changes {#24-6-language-changes} -- The `inout` and `borrowed` argument conventions have been renamed to the `mut` - and `read` argument conventions (respectively). These verbs reflect - declaratively what the callee can do to the argument value passed into the - caller, without tying in the requirement for the programmer to know about - advanced features like references. +- Argument convention changes: -- The argument convention for the `self` argument in `__init__()`, - `__copyinit__()`, and `__moveinit__()` methods has been changed from `inout` - to `out`, reflecting that a constructor method initializes its `self` value - without reading from it. This also enables spelling the type of an initializer - correctly, which was not supported before: + - The `inout` and `borrowed` argument conventions have been renamed to `mut` + (for "mutate") and `read`, respectively. These verbs reflect what the callee + can do to the argument value passed in by the caller, without requiring the + programmer to know about advanced features like references. - ```mojo - struct Foo: - fn __init__(out self): pass + For information on Mojo's argument conventions, see + [Argument conventions](/mojo/manual/values/ownership/#argument-conventions) + in the Mojo Manual. - fn test(): - # This works now - var fnPtr : fn(out x: Foo)->None = Foo.__init__ + - The argument convention for the `self` argument in the `__init__()`, + `__copyinit__()`, and `__moveinit__()` methods has been changed from `inout` + to `out`, reflecting that a constructor method initializes its `self` value + without reading from it. This also enables spelling the type of an + initializer correctly, which was not supported before: - var someFoo : Foo - fnPtr(someFoo) # initializes someFoo. - ``` + ```mojo + struct Foo: + fn __init__(out self): pass + + fn test(): + # This works now + var fnPtr : fn(out x: Foo)->None = Foo.__init__ - The previous `fn __init__(inout self)` syntax is still supported in this - release of Mojo, but will be removed in the future. Please migrate to the - new syntax. + var someFoo : Foo + fnPtr(someFoo) # initializes someFoo. + ``` -- Similarly, the spelling of "named functions results" has switched to use `out` - syntax instead of `-> T as name`. Functions may have at most one named result - or return type specified with the usual `->` syntax. `out` arguments may - occur anywhere in the argument list, but are typically last (except for - `__init__` methods, where they are typically first). + The previous `fn __init__(inout self)` syntax is still supported in this + release of Mojo, but will be removed in the future. Please migrate to the + new syntax. - ```mojo - # This function has type "fn() -> String" - fn example(out result: String): - result = "foo" - ``` + - Similarly, the spelling of named results has switched to use + `out` syntax instead of `-> T as name`. Functions may have at most one named + result or return type specified with the usual `->` syntax. `out` arguments + may occur anywhere in the argument list, but are typically last (except for + `__init__` methods, where they are typically first). - The parser still accepts the old syntax as a synonym for this, but that will - eventually be deprecated and removed. + ```mojo + # This function has type "fn() -> String" + fn example(out result: String): + result = "foo" + ``` - This was [discussed extensively in a public - proposal](https://github.com/modularml/mojo/issues/3623). For more - information, see - [Named results](/nightly/mojo/manual/functions#named-results) in the Mojo - Manual. + The parser still accepts the old syntax as a synonym for this, but that will + eventually be deprecated and removed. + + This was [discussed extensively in a public + proposal](https://github.com/modularml/mojo/issues/3623). For more + information, see + [Named results](/nightly/mojo/manual/functions#named-results) in the Mojo + Manual. -- Single argument constructors now require a `@implicit` decorator to allow - for implicit conversions. Previously you could define an `__init__` that - takes a single argument: +- Single argument constructors now require the + [`@implicit`](/mojo/manual/decorators/implicit) decorator to allow for + implicit conversions. Previously you could define an `__init__` that takes a + single argument: ```mojo struct Foo: @@ -152,85 +179,117 @@ detailed information in the following sections: [Constructors and implicit conversion](/mojo/manual/lifecycle/life#constructors-and-implicit-conversion) in the Mojo Manual. -- Various improvements to origin handling and syntax have landed, including - support for the ternary operator and allowing multiple arguments in a `ref` - specifier (which are implicitly unions). This enables expression of simple - algorithms cleanly: +- Origin-related changes: - ```mojo - fn my_min[T: Comparable](ref a: T, ref b: T) -> ref [a, b] T: - return a if a < b else b - ``` + - The `AnyLifetime` type (useful for declaring origin types as parameters) has + has been renamed to [`Origin`](/mojo/stdlib/builtin/type_aliases/Origin) and + the `__lifetime_of()` operator renamed to `__origin_of()`. - It is also nice that `my_min` automatically and implicitly propagates the - mutability of its arguments, so things like `my_min(str1, str2) += "foo"` is - valid. + - `Origin` is now a complete wrapper around the MLIR origin type. -- `Origin` is now a complete wrapper around the MLIR origin type. + - The `Origin.type` alias has been renamed to `_mlir_origin`. In parameter + lists, you can now write just `Origin[..]`, instead of `Origin[..].type`. - - The `Origin.type` alias has been renamed to `_mlir_origin`. In parameter - lists, you can now write just `Origin[..]`, instead of `Origin[..].type`. + - `ImmutableOrigin` and `MutableOrigin` are now, respectively, just aliases + for `Origin[False]` and `Origin[True]`. - - `ImmutableOrigin` and `MutableOrigin` are now, respectively, just aliases - for `Origin[False]` and `Origin[True]`. + - `Origin` struct values are now supported in the origin specifier of a + `ref [..]` argument. - - `Origin` struct values are now supported in the brackets of a `ref [..]` - argument. + - Added `Origin.cast_from` for casting the mutability of an origin value. - - Added `Origin.cast_from` for casting the mutability of an origin value. + - `ref` arguments and results now allow for providing a memory value + directly in the origin specifier, rather than requiring the use of + `__origin_of()`. It is still fine to use `__origin_of()` explicitly though, + and this is required when specifying origins for parameters (e.g. to the + `Pointer` type). For example, this is now valid without `__origin_of()`: -- `ref` argument and result specifiers now allow providing a memory value - directly in the origin specifier, rather than requiring the use of - `__origin_of()`. It is still fine to use `__origin_of()` explicitly though, - and this is required when specifying origins for parameters (e.g. to the - `Pointer` type). For example, this is now valid without `__origin_of()`: + ```mojo + fn return_ref(a: String) -> ref [a] String: + return a + ``` - ```mojo - fn return_ref(a: String) -> ref [a] String: - return a - ``` + - Various improvements to origin handling and syntax have landed, including + support for the ternary operator and allowing multiple arguments in a `ref` + specifier (which are implicitly unions). This enables expression of simple + algorithms cleanly: -- `ref` function arguments without an origin clause are now treated as - `ref [_]`, which is more syntactically convenient and consistent: + ```mojo + fn my_min[T: Comparable](ref a: T, ref b: T) -> ref [a, b] T: + return a if a < b else b + ``` - ```mojo - fn takes_and_return_ref(ref a: String) -> ref [a] String: - return a - ``` + It is also nice that `my_min` automatically and implicitly propagates the + mutability of its arguments, so things like `my_min(str1, str2) += "foo"` is + valid. -- The `__type_of(x)` and `__origin_of(x)` operators are much more general now: - they allow arbitrary expressions inside of them, allow referring to dynamic - values in parameter contexts, and even allow referring to raising functions - in non-raising contexts. These operations never evaluate their expression, so - any side effects that occur in the expression are never evaluated at runtime, - eliminating concerns about `__type_of(expensive())` being a problem. + - `ref` function arguments without an origin clause are now treated as + `ref [_]`, which is more syntactically convenient and consistent: -- The destructor insertion logic in Mojo is now aware that types that take an - `MutableAnyOrigin` or `ImmutableAnyOrigin` as part of their signature could - potentially access any live value that destructor insertion is tracking, - eliminating a significant usability issue with unsafe APIs like - `UnsafePointer`. Consider a typical example working with strings before this - change: + ```mojo + fn takes_and_return_ref(ref a: String) -> ref [a] String: + return a + ``` - ```mojo - var str = String(...) - var ptr = str.unsafe_ptr() - some_low_level_api(ptr) - _ = str^ # OLD HACK: Explicitly keep string alive until here! - ``` + - The `__type_of(x)` and `__origin_of(x)` operators are much more general now: + they allow arbitrary expressions inside of them, allow referring to dynamic + values in parameter contexts, and even allow referring to raising functions + in non-raising contexts. These operations never evaluate their expression, + so any side effects that occur in the expression are never evaluated at + runtime, eliminating concerns about `__type_of(expensive())` being a + problem. + + - The destructor insertion logic in Mojo is now aware that types that take an + `MutableAnyOrigin` or `ImmutableAnyOrigin` as part of their signature could + potentially access any live value that destructor insertion is tracking, + eliminating a significant usability issue with unsafe APIs like + [`UnsafePointer`](/mojo/stdlib/memory/unsafe_pointer/UnsafePointer). + Consider a typical example working with strings before this change: - The `_ = str^` pattern was formerly required because the Mojo compiler has no - idea what "ptr" might reference. As a consequence, it had no idea that - `some_low_level_api()` might access `str` and therefore thought it was ok to - destroy the `String` before the call - this is why the explicit lifetime - extension was required. + ```mojo + var str = String(...) + var ptr = str.unsafe_ptr() + some_low_level_api(ptr) + _ = str^ # OLD HACK: Explicitly keep string alive until here! + ``` + + The `_ = str^` pattern was formerly required because the Mojo compiler has + no idea what "ptr" might reference. As a consequence, it had no idea that + `some_low_level_api()` might access `str` and therefore thought it was ok to + destroy the `String` before the call - this is why the explicit lifetime + extension was required. + + Mojo now knows that + [`UnsafePointer`](/mojo/stdlib/memory/unsafe_pointer/UnsafePointer) may + access the `MutableAnyOrigin` origin, and now assumes that any API that uses + that origin could use live values. In this case, it assumes that + `some_low_level_api()` might access `str` and because it might be using it, + it cannot destroy `str` until after the call. The consequence of this is + that the old hack is no longer needed for these cases! + + - Function types now accept an origin set parameter. This parameter represents + the origins of values captured by a parameter closure. The compiler + automatically tags parameter closures with the right set of origins. This + enables lifetimes and parameter closures to correctly compose. + + ```mojo + fn call_it[f: fn() capturing [_] -> None](): + f() + + fn test(): + var msg = String("hello world") + + @parameter + fn say_hi(): + print(msg) + + call_it[say_hi]() + # no longer need to write `_ = msg^`!! + ``` - Mojo now knows that `UnsafePointer` may access the `MutableAnyOrigin` origin, - and now assumes that any API that uses that origin could use live values. - In this case, it assumes that `some_low_level_api()` might access `str` and - because it might be using it, it cannot destroy `str` until after the call. - The consequence of this is that the old hack is no longer needed for these - cases! + Note that this only works for higher-order functions which have explicitly + added `[_]` as the capture origins. By default, the compiler still assumes + a `capturing` closure does not reference any origins. This will soon change. - Infer-only parameters may now be explicitly bound with keywords, enabling some important patterns in the standard library: @@ -243,6 +302,38 @@ detailed information in the following sections: fn take_imm_slice(a: ImmStringSlice): ... ``` +- The flag for turning on asserts has changed, e.g. to enable all checks: + + ```bash + mojo -D ASSERT=all main.mojo + ``` + + The levels are: + + - `none`: all assertions off + - `warn`: print assertion errors e.g. for multithreaded tests (previously `-D + ASSERT_WARNING`) + - `safe`: the default mode for standard CPU safety assertions + - `all`: turn on all assertions (previously `-D MOJO_ENABLE_ASSERTIONS`) + + You can now also pass `Stringable` args to format a message, which will have + no runtime penalty or IR bloat cost when assertions are off. Previously you + had to: + + ```mojo + x = -1 + debug_assert( + x > 0, String.format_sequence(“expected x to be more than 0 but got: ”, x) + ) + ``` + + Which can't be optimized away by the compiler in release builds, you can now + pass multiple args for a formatted message at no runtime cost: + + ```mojo + debug_assert(x > 0, “expected x to be more than 0 but got: ”, x) + ``` + - Automatic parameterization of parameters is now supported. Specifying a parameterized type with unbound parameters causes them to be implicitly added to the function signature as infer-only parameters. @@ -256,30 +347,6 @@ detailed information in the following sections: pass ``` -- Function types now accept an origin set parameter. This parameter represents - the origins of values captured by a parameter closure. The compiler - automatically tags parameter closures with the right set of origins. This - enables lifetimes and parameter closures to correctly compose. - - ```mojo - fn call_it[f: fn() capturing [_] -> None](): - f() - - fn test(): - var msg = String("hello world") - - @parameter - fn say_hi(): - print(msg) - - call_it[say_hi]() - # no longer need to write `_ = msg^`!! - ``` - - Note that this only works for higher-order functions which have explicitly - added `[_]` as the capture origins. By default, the compiler still assumes - a `capturing` closure does not reference any origins. This will soon change. - - Mojo can now interpret simple LLVM intrinsics in parameter expressions, enabling things like `count_leading_zeros` to work at compile time: [Issue #933](https://github.com/modularml/mojo/issues/933). @@ -295,102 +362,10 @@ detailed information in the following sections: ### Standard library changes {#24-6-standard-library-changes} -- Add the `Floatable` and `FloatableRaising` traits to denote types that can - be converted to a `Float64` value using the builtin `float` function. - - Make `SIMD` and `FloatLiteral` conform to the `Floatable` trait. - - ```mojo - fn foo[F: Floatable](v: F): - ... - - var f = float(Int32(45)) - ``` - - ([PR #3163](https://github.com/modularml/mojo/pull/3163)) - -- Add `DLHandle.get_symbol()`, for getting a pointer to a symbol in a dynamic - library. This is more general purpose than the existing methods for getting - function pointers. - -- Introduce `TypedPythonObject` as a light-weight way to annotate `PythonObject` - values with static type information. This design will likely evolve and - change significantly. - - - Added `TypedPythonObject["Tuple].__getitem__` for accessing the elements of - a Python tuple. - -- Added `Python.add_object()`, to add a named `PythonObject` value to a Python - 'module' object instance. - -- Added `Python.unsafe_get_python_exception()`, as an efficient low-level - utility to get the Mojo `Error` equivalent of the current CPython error state. - -- Add `PythonObject.from_borrowed_ptr()`, to simplify the construction of - `PythonObject` values from CPython 'borrowed reference' pointers. - - The existing `PythonObject.__init__(PyObjectPtr)` should continue to be used - for the more common case of constructing a `PythonObject` from a - 'strong reference' pointer. - -- The `rebind` standard library function now works with memory-only types in - addition to `@register_passable("trivial")` ones, without requiring a copy. - -- Introduce `random.shuffle` for `List`. - ([PR #3327](https://github.com/modularml/mojo/pull/3327)) - - Example: - - ```mojo - from random import shuffle - - var l = List[Int](1, 2, 3, 4, 5) - shuffle(l) - ``` - -- The `Dict.__getitem__` method now returns a reference instead of a copy of - the value (or raises). This improves the performance of common code that - uses `Dict` by allowing borrows from the `Dict` elements. - -- `Slice.step` is now an `Optional[Int]`, matching the optionality of - `slice.step` in Python. - ([PR #3160](https://github.com/modularml/mojo/pull/3160)) - -- `StringRef` now implements `split()` which can be used to split a - `StringRef` into a `List[StringRef]` by a delimiter. - ([PR #2705](https://github.com/modularml/mojo/pull/2705)) - -- Support for multi-dimensional indexing for `PythonObject` - ([PR #3583](https://github.com/modularml/mojo/pull/3583)). - -- Support for multi-dimensional indexing and slicing for `PythonObject` - (PR [#3549](https://github.com/modularml/mojo/pull/3549), - PR [#3583](https://github.com/modularml/mojo/pull/3583)). - - ```mojo - var np = Python.import_module("numpy") - var a = np.array(PythonObject([1,2,3,4,5,6])).reshape(2,3) - print((a[0, 1])) # 2 - print((a[1][::-1])) # [6 5 4] - ``` - - Note, that the syntax, `a[1, ::-1]`, is currently not supported. - -- There is now a [`Byte`](/mojo/stdlib/builtin/simd/Byte) alias to better - express intent when working with a pack of bits. - ([PR #3670](https://github.com/modularml/mojo/pull/3670)). - -- Expanded `os.path` with new functions (by [@thatstoasty](https://github.com/thatstoasty)): - - `os.path.expandvars`: Expands environment variables in a path ([PR #3735](https://github.com/modularml/mojo/pull/3735)). - - `os.path.splitroot`: Split a path into drive, root and tail. - ([PR #3780](https://github.com/modularml/mojo/pull/3780)). - -- Added a `reserve` method and new constructor to the `String` struct to - allocate additional capacity. - ([PR #3755](https://github.com/modularml/mojo/pull/3755)). - -- 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. +- Introduced a new [`Deque`](/mojo/stdlib/collections/deque/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. @@ -401,92 +376,15 @@ detailed information in the following sections: memory allocation and performance. These options allow for optimized memory usage and reduced buffer reallocations, providing flexibility based on application requirements. -- A new `StringLiteral.get[some_stringable]()` method is available. It - allows forming a runtime-constant StringLiteral from a compile-time-dynamic - `Stringable` value. - -- `Span` now implements `__reversed__`. This means that one can get a - reverse iterator over a `Span` using `reversed(my_span)`. Users should - currently prefer this method over `my_span[::-1]`. - -- `StringSlice` now implements `strip`, `rstrip`, and `lstrip`. - -- `StringRef` is now representable so `repr(StringRef("hello"))` will return - `StringRef('hello')`. - -- The `UnsafePointer` type now has an `origin` parameter that can be used when - the `UnsafePointer` is known to point to a value with a known origin. This - origin is propagated through the `ptr[]` indirection operation. - -- You can now index into `UnsafePointer` using SIMD scalar integral types: - - ```mojo - p = UnsafePointer[Int].alloc(1) - i = UInt8(1) - p[i] = 42 - print(p[i]) - ``` - -- `UnsafePointer` parameters (other than the type) are now keyword-only. - -- Added a new [`OwnedPointer`](/mojo/stdlib/memory/owned_pointer/OwnedPointer) - type as a safe, single-owner, non-nullable smart pointer with similar - semantics to Rust's - [`Box<>`](https://doc.rust-lang.org/std/boxed/struct.Box.html) and C++'s - [`std::unique_ptr`](https://en.cppreference.com/w/cpp/memory/unique_ptr). - ([PR #3524](https://github.com/modularml/mojo/pull/3524)) - -- `Arc` has been renamed to [`ArcPointer`](/mojo/stdlib/memory/arc/ArcPointer), - for consistency with `OwnedPointer`. - -- [`ArcPointer`](/mojo/stdlib/memory/arc/ArcPointer) now implements - [`Identifiable`](/mojo/stdlib/builtin/identifiable/Identifiable), and can be - compared for pointer equivalence using `a is b`. - -- Added `PythonObject.__contains__`. - ([PR #3101](https://github.com/modularml/mojo/pull/3101)) - - Example usage: - - ```mojo - x = PythonObject([1,2,3]) - if 1 in x: - print("1 in x") - -- `Span` has moved from the `utils` module to the `memory` module. - - - More things have been removed from the auto-exported set of entities in the - `prelude` module from the Mojo standard library: - - `UnsafePointer` has been removed. Please explicitly import it via - `from memory import UnsafePointer`. - - `StringRef` has been removed. Please explicitly import it via - `from utils import StringRef`. - -- The `Reference` type has been renamed to `Pointer`: a memory safe complement - to `UnsafePointer`. This change is motivated by the fact that `Pointer` - is assignable and requires an explicit dereference with `ptr[]`. Renaming - to `Pointer` clarifies that "references" means `ref` arguments and results, - and gives us a model that is more similar to what the C++ community would - expect. - -- A new `as_noalias_ptr` method as been added to `UnsafePointer`. This method - specifies to the compiler that the resultant pointer is a distinct - identifiable object that does not alias any other memory in the local scope. - -- The `AnyLifetime` type (useful for declaring origin types as parameters) has - been renamed to `Origin`. - -- Restored implicit copyability of `Tuple` and `ListLiteral`. - -- The aliases for C FFI have been renamed: `C_int` -> `c_int`, `C_long` -> `c_long` - and so on. - -- The `Formatter` struct has changed to a `Writer` trait to enable buffered IO, +- The `Formatter` struct has been replaced with a + [`Writer`](/mojo/stdlib/utils/write/Writer) trait to enable buffered IO, increasing print and file writing perf to the same speed as C. It's now more general purpose and can write any `Span[Byte]`. To align with this the - `Formattable` trait is now named `Writable`, and the `String.format_sequence` - static methods to initialize a new `String` have been renamed to - `String.write`. Here's an example of using all the changes: + `Formattable` trait is now named + [`Writable`](/mojo/stdlib/utils/write/Writable), and the + `String.format_sequence()` static method to initialize a new `String` has been + renamed to [`String.write()`](/mojo/stdlib/collections/string/String/#write). + Here's an example of using all of the changes: ```mojo from memory import Span @@ -534,49 +432,239 @@ detailed information in the following sections: print(new_string) ``` + ```output Point(1, 2) Point(3, 4) + ``` + +- Python interop changes: + + - Introduced + [`TypedPythonObject`](/mojo/stdlib/python/python_object/TypedPythonObject) + as a light-weight way to annotate + [`PythonObject`](/mojo/stdlib/python/python_object/PythonObject) values with + static type information. This design will likely evolve and change + significantly. + + - Added `TypedPythonObject["Tuple].__getitem__()` for accessing the elements + of a Python tuple. + + - Added + [`Python.add_object()`](/mojo/stdlib/python/python/Python#add_object), to + add a named `PythonObject` value to a Python 'module' object instance. + + - Added + [`Python.unsafe_get_python_exception()`](/mojo/stdlib/python/python/Python#unsafe_get_python_exception), + as an efficient low-level utility to get the Mojo `Error` equivalent of the + current CPython error state. -- You can now use the `+=` and `*` operators on a `StringLiteral` at compile - time using the `alias` keyword: + - Add + [`PythonObject.from_borrowed_ptr()`](/mojo/stdlib/python/python_object/PythonObject#from_borrowed_ptr), + to simplify the construction of `PythonObject` values from CPython 'borrowed + reference' pointers. + + The existing `PythonObject.__init__(PyObjectPtr)` should continue to be used + for the more common case of constructing a `PythonObject` from a + 'strong reference' pointer. + + - Support for multi-dimensional indexing and slicing for `PythonObject` + (PR [#3549](https://github.com/modularml/mojo/pull/3549), + PR [#3583](https://github.com/modularml/mojo/pull/3583)). + + ```mojo + var np = Python.import_module("numpy") + var a = np.array(PythonObject([1,2,3,4,5,6])).reshape(2,3) + print((a[0, 1])) # 2 + print((a[1][::-1])) # [6 5 4] + ``` + + Note that the syntax, `a[1, ::-1]`, is currently not supported. + + - Added + [`PythonObject.__contains__()`](/mojo/stdlib/python/python_object/PythonObject#__contains__). + ([PR #3101](https://github.com/modularml/mojo/pull/3101)) + + Example usage: + + ```mojo + x = PythonObject([1,2,3]) + if 1 in x: + print("1 in x") + ``` + +- Pointer related changes: + + - The [`UnsafePointer`](/mojo/stdlib/memory/unsafe_pointer/UnsafePointer) type + now has an `origin` parameter that can be used when the `UnsafePointer` + points to a value with a known origin. This origin is propagated through the + `ptr[]` indirection operation. This parameter and other `UnsafePointer` + parameters (other than the type) are now keyword-only. + + - You can now index into `UnsafePointer` using `SIMD` scalar integral types: + + ```mojo + p = UnsafePointer[Int].alloc(1) + i = UInt8(1) + p[i] = 42 + print(p[i]) + ``` + + - Added a new [`OwnedPointer`](/mojo/stdlib/memory/owned_pointer/OwnedPointer) + type as a safe, single-owner, non-nullable smart pointer with similar + semantics to Rust's + [`Box<>`](https://doc.rust-lang.org/std/boxed/struct.Box.html) and C++'s + [`std::unique_ptr`](https://en.cppreference.com/w/cpp/memory/unique_ptr). + ([PR #3524](https://github.com/modularml/mojo/pull/3524)) + + - `Arc` has been renamed to [`ArcPointer`](/mojo/stdlib/memory/arc/ArcPointer), + for consistency with `OwnedPointer`. + + - [`ArcPointer`](/mojo/stdlib/memory/arc/ArcPointer) now implements + [`Identifiable`](/mojo/stdlib/builtin/identifiable/Identifiable), and can be + compared for pointer equivalence using `a is b`. + + - The `Reference` type has been renamed to + [`Pointer`](/mojo/stdlib/memory/pointer/Pointer): a memory safe complement + to `UnsafePointer`. This change is motivated by the fact that `Pointer` is + assignable and requires an explicit dereference with `ptr[]`. Renaming to + `Pointer` clarifies that "references" means `ref` arguments and results, and + gives us a model that is more similar to what the C++ community would + expect. + + For an overview of Mojo's pointer types, see the new + [Intro to pointers](/mojo/manual/pointers/) page in the Mojo Manual. + + - A new + [`as_noalias_ptr()`](/mojo/stdlib/memory/unsafe_pointer/UnsafePointer#as_noalias_ptr) + method as been added to `UnsafePointer`. This method specifies to the + compiler that the resultant pointer is a distinct identifiable object that + does not alias any other memory in the local scope. + +- Added the [`Floatable`](/mojo/stdlib/builtin/floatable/Floatable) and + [`FloatableRaising`](/mojo/stdlib/builtin/floatable/FloatableRaising) traits to + denote types that can be converted to a `Float64` value using the builtin + `float` function. Made `SIMD` and `FloatLiteral` conform to the `Floatable` + trait. ([PR #3163](https://github.com/modularml/mojo/pull/3163)) ```mojo - alias original = "mojo" - alias concat = original * 3 - assert_equal("mojomojomojo", concat) + fn foo[F: Floatable](v: F): + ... + + var f = float(Int32(45)) ``` - Or inside a `fn` that is being evaluated at compile time: +- The [`rebind()`](/mojo/stdlib/builtin/rebind/rebind) standard library function + now works with memory-only types in addition to + `@register_passable("trivial")` ones, without requiring a copy. For more + information, see + [The `rebind()` builtin](/mojo/manual/parameters/#the-rebind-builtin) in the + Mojo Manual. - ```mojo - fn add_literal( - owned original: StringLiteral, add: StringLiteral, n: Int - ) -> StringLiteral: - for _ in range(n): - original += add - return original +- Introduced the [`random.shuffle()`](/mojo/stdlib/random/random/shuffle) + function for randomizing the elements of a `List`. + ([PR #3327](https://github.com/modularml/mojo/pull/3327)) + Example: - fn main(): - alias original = "mojo" - alias concat = add_literal(original, "!", 4) - assert_equal("mojo!!!!", concat) + ```mojo + from random import shuffle + + var l = List[Int](1, 2, 3, 4, 5) + shuffle(l) ``` - These operators can't be evaluated at runtime, as a `StringLiteral` must be - written into the binary during compilation. +- The [`Dict.__getitem__()`](/mojo/stdlib/collections/dict/Dict#__getitem__) + method now returns a reference instead of a copy of the value (or raises). + This improves the performance of common code that uses `Dict` by allowing + borrows from the `Dict` elements. + +- [`Slice.step`](/mojo/stdlib/builtin/builtin_slice/Slice#fields) is now an + `Optional[Int]`, matching the optionality of `slice.step` in Python. + ([PR #3160](https://github.com/modularml/mojo/pull/3160)) + +- There is now a [`Byte`](/mojo/stdlib/builtin/simd/#aliases) alias to better + express intent when working with a pack of bits. + ([PR #3670](https://github.com/modularml/mojo/pull/3670)). + +- Expanded [`os.path`](/mojo/stdlib/os/path/path/) with new functions: + - `os.path.expandvars()`: Expands environment variables in a path ([PR #3735](https://github.com/modularml/mojo/pull/3735)). + - `os.path.splitroot()`: Split a path into drive, root and tail. + ([PR #3780](https://github.com/modularml/mojo/pull/3780)). + +- Added a [`reserve()`](/mojo/stdlib/collections/string/String#reserve) method + and new constructor to the `String` struct to allocate additional capacity. + ([PR #3755](https://github.com/modularml/mojo/pull/3755)). + +- A new + [`StringLiteral.get[some_stringable]()`](/mojo/stdlib/builtin/string_literal/StringLiteral#get) + method is available. It allows forming a runtime-constant `StringLiteral` from + a compile-time-dynamic `Stringable` value. + +- [`Span`](/mojo/stdlib/memory/span/Span) has moved from the `utils` module to + the `memory` module. + +- [`Span`](/mojo/stdlib/memory/span/Span) now implements `__reversed__()`. This + means that one can get a reverse iterator over a `Span` using + `reversed(my_span)`. Users should currently prefer this method over + `my_span[::-1]`. + +- A new [`AsBytes`](/mojo/stdlib/memory/span/AsBytes) trait has been added to + enable taking a `Span[Byte]` from any type that implements `as_bytes()`. + `String.as_bytes()` and `String.as_bytes_slice()` have been consolidated under + `String.as_bytes()` to return a `Span[Byte]`. If you require a copy, you can + convert the `Span` to a `List` with `List(my_string.as_bytes())`. + +- [`StringSlice`](/mojo/stdlib/utils/string_slice/StringSlice) now implements + `strip()`, `rstrip()`, and `lstrip()`. + +- [`StringRef`](/mojo/stdlib/utils/stringref/StringRef) now implements `split()` + which can be used to split a `StringRef` into a `List[StringRef]` by a + delimiter. ([PR #2705](https://github.com/modularml/mojo/pull/2705)) + +- [`StringRef`](/mojo/stdlib/utils/stringref/StringRef) is now representable so + `repr(StringRef("hello"))` will return `StringRef('hello')`. + +- More things have been removed from the auto-exported set of entities in the + `prelude` module from the Mojo standard library: + - `UnsafePointer` has been removed. Please explicitly import it via + `from memory import UnsafePointer`. + - `StringRef` has been removed. Please explicitly import it via + `from utils import StringRef`. + +- Restored implicit copyability of [`Tuple`](/mojo/stdlib/builtin/tuple/Tuple) + and [`ListLiteral`](/mojo/stdlib/builtin/builtin_list/ListLiteral). + +- The + [aliases for C foreign function interface (FFI)](/mojo/stdlib/sys/ffi/#aliases) + have been renamed: `C_int` -> `c_int`, `C_long` -> `c_long` and so on. + +- `Float32` and `Float64` are now printed and converted to strings with + roundtrip guarantee and shortest representation: + + ```plaintext + Value Old New + Float64(0.3) 0.29999999999999999 0.3 + Float32(0.3) 0.30000001192092896 0.3 + Float64(0.0001) 0.0001 0.0001 + Float32(0.0001) 9.9999997473787516e-05 0.0001 + Float64(-0.00001) -1.0000000000000001e-05 -1e-05 + Float32(-0.00001) -9.9999997473787516e-06 -1e-05 + Float32(0.00001234) 1.2339999557298142e-05 1.234e-05 + Float32(-0.00000123456) -1.2345600453045336e-06 -1.23456e-06 + Float64(1.1234567e-320) 1.1235052786429946e-320 1.1235e-320 + Float64(1.234 * 10**16) 12340000000000000.0 1.234e+16 + ``` - The `StaticIntTuple` data structure in the `utils` package has been renamed to - `IndexList`. The data structure now allows one to specify the index bitwidth - of the elements along with whether the underlying indices are signed or - unsigned. + [`IndexList`](/mojo/stdlib/utils/index_/IndexList). The data structure now + allows one to specify the index bitwidth of the elements along with whether + the underlying indices are signed or unsigned. -- A new `AsBytes` trait has been added to enable taking a `Span[Byte]` of a - type with `s.as_bytes()`. `String.as_bytes` and `String.as_bytes_slice` have - been consolidated under `s.as_bytes` to return a `Span[Byte]`, you can convert - it to a `List` if you require a copy with `List(s.as_bytes())`. +- Added [`DLHandle.get_symbol()`](/mojo/stdlib/sys/ffi/DLHandle#get_symbol), for + getting a pointer to a symbol in a dynamic library. This is more general + purpose than the existing methods for getting function pointers. -### Tooling changes +### Tooling changes {#24-6-tooling-changes} - The VS Code Mojo Debugger now has a `buildArgs` JSON debug configuration setting that can be used in conjunction with `mojoFile` to define the build @@ -597,11 +685,37 @@ detailed information in the following sections: determining a default SDK to use. The user can select the default SDK to use with the `Mojo: Select the default MAX SDK` command. -- The VS Code extension now supports setting [data breakpoints](https://code.visualstudio.com/docs/editor/debugging#_data-breakpoints) - as well as [function breakpoints](https://code.visualstudio.com/docs/editor/debugging#_function-breakpoints). +- The VS Code extension now supports setting + [data breakpoints](https://code.visualstudio.com/docs/editor/debugging#_data-breakpoints) + as well as + [function breakpoints](https://code.visualstudio.com/docs/editor/debugging#_function-breakpoints). + +- The Mojo LLDB debugger now supports symbol breakpoints, for example, `b main` + or `b my_module::main`. + +- Error messages that include type names no longer include inferred or defaulted + parameters when they aren't needed. For example, previously Mojo complained + about things like: + + ```plaintext + ... cannot be converted from 'UnsafePointer[UInt, 0, _default_alignment::AnyType](), MutableAnyOrigin]' to 'UnsafePointer[Int, 0, _default_alignment[::AnyType](), MutableAnyOrigin]' + ``` + + it now complains more helpfully that: -- The Mojo LLDB debugger now supports symbol breakpoints, e.g. `b main` or - `b my_module::main`. + ```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. + +- The Mojo Language Server and generated documentation now print parametric + result types correctly, e.g. showing `SIMD[type, simd_width]` instead of + `SIMD[$0, $1]`. + +- Generated API documentation now shows the signatures for structs, and + identifies `@register_passable` and `@register_passable("trivial")` types. - The VS Code extension now allows cancelling the installation of its private MAX SDK. @@ -619,59 +733,10 @@ detailed information in the following sections: - The VS Code extension now allows selecting a default SDK when multiple are available. -- The flag for turning on asserts has changed, e.g. to enable all checks: - - ```bash - mojo -D ASSERT=all main.mojo - ``` - - The levels are: - - - `none`: all assertions off - - `warn`: print assertion errors e.g. for multithreaded tests (previously `-D - ASSERT_WARNING`) - - `safe`: the default mode for standard CPU safety assertions - - `all`: turn on all assertions (previously `-D MOJO_ENABLE_ASSERTIONS`) - - You can now also pass `Stringable` args to format a message, which will have - no runtime penalty or IR bloat cost when assertions are off. Previously you - had to: - - ```mojo - x = -1 - debug_assert( - x > 0, String.format_sequence(“expected x to be more than 0 but got: ”, x) - ) - ``` - - Which can't be optimized away by the compiler in release builds, you can now - pass multiple args for a formatted message at no runtime cost: - - ```mojo - debug_assert(x > 0, “expected x to be more than 0 but got: ”, x) - ``` - -- Float32 and Float64 are now printed and converted to strings with roundtrip - guarantee and shortest representation: - - ```plaintext - Value Old New - Float64(0.3) 0.29999999999999999 0.3 - Float32(0.3) 0.30000001192092896 0.3 - Float64(0.0001) 0.0001 0.0001 - Float32(0.0001) 9.9999997473787516e-05 0.0001 - Float64(-0.00001) -1.0000000000000001e-05 -1e-05 - Float32(-0.00001) -9.9999997473787516e-06 -1e-05 - Float32(0.00001234) 1.2339999557298142e-05 1.234e-05 - Float32(-0.00000123456) -1.2345600453045336e-06 -1.23456e-06 - Float64(1.1234567e-320) 1.1235052786429946e-320 1.1235e-320 - Float64(1.234 * 10**16) 12340000000000000.0 1.234e+16 - ``` - ### ❌ 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. +- 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 @@ -719,31 +784,11 @@ detailed information in the following sections: - The variadic initializer for `SIMD` now works in parameter expressions. - The VS Code extension now downloads its private copy of the MAX SDK in a way - that prevents ETXTBSY errors on Linux. + that prevents `ETXTBSY` errors on Linux. - The VS Code extension now allows invoking a mojo formatter from SDK installations that contain white spaces in their path. -- Error messages that include type names no longer include inferred or defaulted - parameters when they aren't needed. For example, previously Mojo complained - about things like: - - ```plaintext - ... cannot be converted from 'UnsafePointer[UInt, 0, _default_alignment::AnyType](), MutableAnyOrigin]' to 'UnsafePointer[Int, 0, _default_alignment[::AnyType](), MutableAnyOrigin]' - ``` - - it now complains more helpfully that: - - ```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. - -- The LSP and generated documentation now print parametric result types - correctly, e.g. showing `SIMD[type, simd_width]` instead of `SIMD[$0, $1]`. - ### Special thanks Special thanks to our community contributors: diff --git a/docs/changelog.md b/docs/changelog.md index cbae1be090..6babee4c83 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -22,11 +22,66 @@ what we publish. ### Standard library changes +- `UnsafePointer` is now parameterized on mutability. Previously, + `UnsafePointer` could only represent mutable pointers. + + The new `mut` parameter can be used to restrict an `UnsafePointer` to a + specific mutability: `UnsafePointer[T, mut=False]` represents a pointer to + an immutable `T` value. This is analogous to a `const *` pointer in C++. + + - `UnsafePointer.address_of()` will now infer the origin and mutability + of the resulting pointer from the argument. For example: + + ```mojo + var local = 10 + # Constructs a mutable pointer, because `local` is a mutable memory location + var ptr = UnsafePointer.address_of(local) + ``` + + To force the construction of an immutable pointer to an otherwise mutable + memory location, use a cast: + + ```mojo + var local = 10 + # Cast the mutable pointer to be immutable. + var ptr = UnsafePointer.address_of(local).bitcast[mut=False]() + ``` + + - The `unsafe_ptr()` method on several standard library collection types have + been updated to use parametric mutability: they will return an `UnsafePointer` + whose mutability is inherited from the mutability of the `ref self` of the + receiver at the call site. For example, `ptr1` will be immutable, while + `ptr2` will be mutable: + + ```mojo + fn take_lists(read list1: List[Int], mut list2: List[Int]): + # Immutable pointer, since receiver is immutable `read` reference + var ptr1 = list1.unsafe_ptr() + + # Mutable pointer, since receiver is mutable `mut` reference + var ptr2 = list2.unsafe_ptr() + ``` + ### Tooling changes - mblack (aka `mojo format`) no longer formats non-mojo files. This prevents unexpected formatting of python files. +- Full struct signature information is now exposed in the documentation + generator, and in the symbol outline and hover markdown via the Mojo Language + Server. + ### ❌ Removed +- `StringRef` is being deprecated. Use `StringSlice` instead. + - removed `StringRef.startswith()` and `StringRef.endswith()` + ### 🛠️ Fixed + +- The Mojo Kernel for Jupyter Notebooks is working again on nightly releases. + +- The command `mojo debug --vscode` now sets the current working directory + properly. + +- The Mojo Language Server doesn't crash anymore on empty **init**.mojo files. + [Issue #3826](https://github.com/modularml/mojo/issues/3826). diff --git a/docs/manual/functions.mdx b/docs/manual/functions.mdx index 071255ec24..46cd3f5aaa 100644 --- a/docs/manual/functions.mdx +++ b/docs/manual/functions.mdx @@ -552,7 +552,7 @@ Thus, you can also pass a `StringLiteral` to a function that expects a `String`. When resolving an overloaded function call, the Mojo compiler tries each candidate function and uses the one that works (if only one version works), or it picks the closest match (if it can determine a close match), or it reports -that the call is ambiguous (if it can’t figure out which one to pick). +that the call is ambiguous (if it can't figure out which one to pick). If the compiler can't figure out which function to use, you can resolve the ambiguity by explicitly casting your value to a supported argument type. For diff --git a/docs/manual/lifecycle/death.mdx b/docs/manual/lifecycle/death.mdx index 2f7ee808f7..864f06e365 100644 --- a/docs/manual/lifecycle/death.mdx +++ b/docs/manual/lifecycle/death.mdx @@ -105,7 +105,7 @@ the end of the code scope to destroy values): because the destructor call always happens before the tail call. Additionally, Mojo's ASAP destruction works great within Python-style `def` -functions. That's because Python doesn’t really provide scopes beyond a +functions. That's because Python doesn't really provide scopes beyond a function scope, so the Python garbage collector cleans up resources more often than a scope-based destruction policy would. However, Mojo does not use a garbage collector, so the ASAP destruction policy provides destruction @@ -276,7 +276,7 @@ object. Mojo's policy here is powerful and intentionally straight-forward: fields can be temporarily transferred, but the "whole object" must be constructed with the -aggregate type’s initializer and destroyed with the aggregate destructor. This +aggregate type's initializer and destroyed with the aggregate destructor. This means it's impossible to create an object by initializing only its fields, and it's likewise impossible to destroy an object by destroying only its fields. @@ -316,7 +316,7 @@ to a new instance (read more about the [move constructor](/mojo/manual/lifecycle/life#move-constructor)), while `__del__()` implements the deletion logic for its `self`. As such, they both need to own and transform elements of the `owned` value, and they -definitely don’t want the original `owned` value's destructor to also run—that +definitely don't want the original `owned` value's destructor to also run—that could result in a double-free error, and in the case of the `__del__()` method, it would become an infinite loop. diff --git a/docs/manual/lifecycle/life.mdx b/docs/manual/lifecycle/life.mdx index 360ec57c33..dbdd5f11cd 100644 --- a/docs/manual/lifecycle/life.mdx +++ b/docs/manual/lifecycle/life.mdx @@ -656,7 +656,7 @@ things like a single integer or floating point number. We call these types and destroyed without invoking any custom lifecycle methods. Trivial types are the most common types that surround us, and from a language -perspective, Mojo doesn’t need special support for these written in a struct. +perspective, Mojo doesn't need special support for these written in a struct. Usually, these values are so tiny that they should be passed around in CPU registers, not indirectly through memory. diff --git a/docs/manual/pointers/index.mdx b/docs/manual/pointers/index.mdx index 075fa33ea5..a254c77bc5 100644 --- a/docs/manual/pointers/index.mdx +++ b/docs/manual/pointers/index.mdx @@ -45,7 +45,7 @@ print(ptr[]) ## Pointer terminology -Before we jump into the pointer types, here are a few terms you’ll run across. Some +Before we jump into the pointer types, here are a few terms you'll run across. Some of them may already be familiar to you. - **Safe pointers**: are designed to prevent memory errors. Unless you use one @@ -54,7 +54,7 @@ of them may already be familiar to you. use-after-free. - **Nullable pointers**: can point to an invalid memory location (typically 0, -or a “null pointer”). Safe pointers aren’t nullable. +or a “null pointer”). Safe pointers aren't nullable. - **Smart pointers**: own their pointees, which means that the value they point to may be deallocated when the pointer itself is destroyed. Non-owning @@ -66,10 +66,10 @@ or a “null pointer”). Safe pointers aren’t nullable. allocation can either be implicit (that is, performed automatically when initializing a pointer with a value) or explicit. -- **Uninitialized memory**: refers to memory locations that haven’t been +- **Uninitialized memory**: refers to memory locations that haven't been initialized with a value, which may therefore contain random data. - Newly-allocated memory is uninitialized. The safe pointer types don’t allow - users to access memory that’s uninitialized. Unsafe pointers can allocate a + Newly-allocated memory is uninitialized. The safe pointer types don't allow + users to access memory that's uninitialized. Unsafe pointers can allocate a block of uninitialized memory locations and then initialize them one at a time. Being able to access uninitialized memory is unsafe by definition. @@ -93,7 +93,7 @@ The Mojo standard library includes several pointer types with different characteristics: - [`Pointer`](/mojo/stdlib/memory/pointer/Pointer) is a safe pointer that points - to a single value that it doesn’t own. + to a single value that it doesn't own. - [`OwnedPointer`](/mojo/stdlib/memory/owned_pointer/OwnedPointer) is a smart pointer that points to a single value, and maintains exclusive ownership of @@ -139,10 +139,10 @@ The following sections provide more details on each pointer type. ## `Pointer` The [`Pointer`](/mojo/stdlib/memory/pointer/Pointer) type is a safe pointer that -points to a initialized value that it doesn’t own. Some example use cases for a +points to a initialized value that it doesn't own. Some example use cases for a `Pointer` include: -- Storing a reference to a related type. For example, a list’s iterator object +- Storing a reference to a related type. For example, a list's iterator object might hold a `Pointer` back to the original list. - Passing the memory location for a single value to external code via @@ -181,11 +181,11 @@ either `Movable`, `Copyable`, or `ExplicitlyCopyable`. Since an `OwnedPointer` is designed to enforce single ownership, the pointer itself can be moved, but not copied. -Note: Currently, you can’t create an `Optional[OwnedPointer[T]]` because the +Note: Currently, you can't create an `Optional[OwnedPointer[T]]` because the `Optional` type only works with types that are both movable and copyable. This restricts some use cases that would otherwise be a natural fit for`OwnedPointer`, including self-referential data structures like linked lists -and trees. (Until this use case is supported for `OwnedPointer`, it’s possible +and trees. (Until this use case is supported for `OwnedPointer`, it's possible to use`ArcPointer` where you need a smart pointer that can be `Optional`.) ## `ArcPointer` @@ -241,19 +241,19 @@ def main(): Note: The reference count is stored using an [`Atomic`]([/mojo/stdlib/os/atomic/Atomic](https://docs.modular-staging.com/mojo/stdlib/os/atomic/Atomic)) value to ensure that updates to the reference count are thread-safe. However, -Mojo doesn’t currently enforce exclusive access across thread boundaries, so -it’s possible to form race conditions. +Mojo doesn't currently enforce exclusive access across thread boundaries, so +it's possible to form race conditions. ## UnsafePointer [`UnsafePointer`](/mojo/stdlib/memory/unsafe_pointer/UnsafePointer) is a low-level pointer that can access a block of contiguous memory locations, which -might be uninitialized. It’s analogous to a raw pointer in the C and C++ +might be uninitialized. It's analogous to a raw pointer in the C and C++ programming languages. `UnsafePointer` provides unsafe methods for initializing -and destroying stored values, as well as for accessing the values once they’re +and destroying stored values, as well as for accessing the values once they're initialized. -As the name suggests, `UnsafePointer` doesn’t provide any memory safety +As the name suggests, `UnsafePointer` doesn't provide any memory safety guarantees, so you should reserve it for cases when none of the other pointer types will do the job. Here are some use cases where you might want to use an `UnsafePointer`: diff --git a/docs/manual/structs.mdx b/docs/manual/structs.mdx index 7a32bb323d..818058ba4c 100644 --- a/docs/manual/structs.mdx +++ b/docs/manual/structs.mdx @@ -195,15 +195,15 @@ Syntactically, the biggest difference compared to a Python class is that all fields in a struct must be explicitly declared with `var`. In Mojo, the structure and contents of a struct are set at compile time and -can’t be changed while the program is running. Unlike in Python, where you can -add, remove, or change attributes of an object on the fly, Mojo doesn’t allow +can't be changed while the program is running. Unlike in Python, where you can +add, remove, or change attributes of an object on the fly, Mojo doesn't allow that for structs. However, the static nature of structs helps Mojo run your code faster. The -program knows exactly where to find the struct’s information and how to use it +program knows exactly where to find the struct's information and how to use it without any extra steps or delays at runtime. -Mojo’s structs also work really well with features you might already know from +Mojo's structs also work really well with features you might already know from Python, like operator overloading (which lets you change how math symbols like `+` and `-` work with your own data, using [special methods](#special-methods)). diff --git a/docs/manual/types.mdx b/docs/manual/types.mdx index 4f276c82f9..ee6ddcf586 100644 --- a/docs/manual/types.mdx +++ b/docs/manual/types.mdx @@ -16,7 +16,7 @@ There are a some types that aren't defined as structs: signal "no value." Mojo comes with a standard library that provides a number of useful types and -utility functions. These standard types aren’t privileged. Each of the standard +utility functions. These standard types aren't privileged. Each of the standard library types is defined just like user-defined types—even basic types like [`Int`](/mojo/stdlib/builtin/int/Int) and [`String`](/mojo/stdlib/collections/string/String). But these standard library diff --git a/docs/tools/debugging.mdx b/docs/tools/debugging.mdx index 8631b5cc71..6672ded32d 100644 --- a/docs/tools/debugging.mdx +++ b/docs/tools/debugging.mdx @@ -341,7 +341,7 @@ The debugger currently has the following limitations: * When stepping out of a function, the returned value is not displayed. -* LLDB doesn’t support stopping or resuming individual threads. +* LLDB doesn't support stopping or resuming individual threads. ### Breakpoints diff --git a/docs/tools/testing.mdx b/docs/tools/testing.mdx index ef10b459cf..287e40c690 100644 --- a/docs/tools/testing.mdx +++ b/docs/tools/testing.mdx @@ -14,7 +14,7 @@ consists of a set of assertions defined as part of the ## Get started -Let’s start with a simple example of writing and running Mojo tests. +Let's start with a simple example of writing and running Mojo tests. ### 1. Write tests @@ -106,7 +106,7 @@ its error message. The Mojo standard library includes a [`testing`](/mojo/stdlib/testing/testing/) module that defines several assertion functions for implementing tests. Each -assertion returns `None` if its condition is met or raises an error if it isn’t. +assertion returns `None` if its condition is met or raises an error if it isn't. * [`assert_true()`](/mojo/stdlib/testing/testing/assert_true): Asserts that the input value is `True`. @@ -597,8 +597,8 @@ a += 1 Test suite scopes do *not* nest. In other words, the test suite scope of a module is completely independent of the test suite scope of a function or struct -defined within that module. For example, this means that if a module’s test -suite creates a variable, that variable is *not* accessible to a function’s test +defined within that module. For example, this means that if a module's test +suite creates a variable, that variable is *not* accessible to a function's test suite within the same module. ::: diff --git a/examples/life/magic.lock b/examples/life/magic.lock index 9fa015dd3f..c9b212466d 100644 --- a/examples/life/magic.lock +++ b/examples/life/magic.lock @@ -17,19 +17,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/aom-3.9.1-hac33072_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/attr-2.5.1-h166bdaf_1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h8c8080f_14.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h0f28dba_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.5-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h9cc6398_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-hf811eff_10.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hce7dc5d_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hfd54f12_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-ha3c2ba9_11.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.5-h55e9418_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h9cc6398_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h9cc6398_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hed26007_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-h571fd1c_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb921021_15.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h1a47875_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.6-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h4e1184b_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h7959bf6_11.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hefd7a92_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hbf5b6a4_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h11f4f37_12.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.7-hf454442_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h4e1184b_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h4e1184b_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hd92328a_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-hc430e4a_4.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 @@ -113,7 +113,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libcap-2.71-h39aace5_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libdb-6.2.32-h9c3ff4c_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.22-hb9d3cd8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 @@ -170,12 +170,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/mpg123-1.32.9-hc50e24c_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py312h98912ed_1.conda @@ -212,7 +212,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.1-py312h12e396e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pygame-2.6.1-py312h4fcb14b_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pyinstrument-5.0.0-py312h66e93f0_0.conda @@ -254,7 +254,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -265,7 +265,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.21.0-py312h66e93f0_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.0-py312h12e396e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.3-py312h12e396e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/websockets-14.1-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.0-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libice-1.1.1-hb9d3cd8_1.conda @@ -294,19 +294,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aom-3.9.1-hcccb83c_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/attr-2.5.1-h4e544f5_1.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hb4dd4bb_14.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h1aca5b9_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.5-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h10558d5_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-ha9733bd_10.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h53134c8_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h8aa8d47_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h2f8d747_11.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.5-h757e810_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h10558d5_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h10558d5_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-hc8d91e0_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h2d3f608_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-h2cb9fb3_15.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h740c5af_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.6-h86ecc28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h0f0193d_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-hcbd8f92_11.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h3df160d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h92bf595_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h5f50e26_12.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.7-h2080895_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h0f0193d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h0f0193d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-h8a4e35f_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h849ce1a_4.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 @@ -390,7 +390,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcap-2.71-h51d75a7_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.11.1-h6702fde_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdb-6.2.32-h01db608_0.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.22-h86ecc28_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 @@ -447,12 +447,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/mpg123-1.32.9-h65af167_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py312hdd3e373_1.conda @@ -489,7 +489,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.1-py312h8cbf658_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pygame-2.6.1-py312hb2c8110_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyinstrument-5.0.0-py312hb2c0f52_0.conda @@ -531,7 +531,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4.2-py312h52516f5_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -542,7 +542,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/uvloop-0.21.0-py312hb2c0f52_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.0-py312h8cbf658_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.3-py312h8cbf658_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/websockets-14.1-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/wrapt-1.17.0-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libice-1.1.1-h57736b2_1.conda @@ -568,19 +568,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aom-3.9.1-h7bae524_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h93897a1_14.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-h4d88cd7_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.5-h5505292_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h4d88cd7_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h9fa824c_10.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-hc68443d_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-h66499f2_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-hd073cef_11.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.5-hb201fd0_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h4d88cd7_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h4d88cd7_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-hb9a023b_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-h39838b8_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h8bc59a9_15.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-hc8a0bd2_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.6-h5505292_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-hc8a0bd2_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h54f970a_11.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-h96aa502_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-haba67d1_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h24f418c_12.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.7-h1be5864_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-hc8a0bd2_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-hc8a0bd2_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-h19a973c_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-he0ff2e4_4.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 @@ -658,7 +658,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda - 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/libcurl-8.11.1-h73640d1_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.5-ha82da77_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.22-hd74edd7_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 @@ -707,12 +707,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312h998013c_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/mpg123-1.32.9-hf642e45_0.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 @@ -748,7 +748,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.1-py312hcd83bfe_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pygame-2.6.1-py312hb14fe3b_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyinstrument-5.0.0-py312h0bf5046_0.conda @@ -789,7 +789,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.2-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -800,7 +800,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.21.0-py312h0bf5046_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.0-py312hcd83bfe_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.3-py312hcd83bfe_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/websockets-14.1-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.17.0-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hd74edd7_1.conda @@ -1126,469 +1126,465 @@ packages: - kind: conda name: aws-c-auth version: 0.8.0 - build: h8c8080f_14 - build_number: 14 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h8c8080f_14.conda - sha256: 7a9f7763e3a151ae1008ead51458f9b889b657f388266d53c6f7fa383dbb2481 - md5: a9284141081982473ebf41b92566bbcb + build: h2cb9fb3_15 + build_number: 15 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-h2cb9fb3_15.conda + sha256: 4ce859dc9ff128bf5515604c43f33fb511386022fc9765ca077990f2a3f23df5 + md5: e524686ace966acefb5b8cbc6e8b3daa depends: - - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 107775 - timestamp: 1733709347751 + size: 111854 + timestamp: 1734021745104 - kind: conda name: aws-c-auth version: 0.8.0 - build: h93897a1_14 - build_number: 14 + build: h8bc59a9_15 + build_number: 15 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h93897a1_14.conda - sha256: 3ec33500c5def035acb9ba406161f5452e39b1b818c67d8a56103d6def47bda6 - md5: 061e221dc5cca62be8fab49a16bfb99d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h8bc59a9_15.conda + sha256: 0e41e56b662e76e024182adebcd91d09a4d38a83b35217c84e4967354dfff9a2 + md5: f688b8893c20ad9477a19e7ce614014a depends: - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 license: Apache-2.0 license_family: Apache - size: 92250 - timestamp: 1733709418870 + size: 92507 + timestamp: 1734021831330 - kind: conda name: aws-c-auth version: 0.8.0 - build: hb4dd4bb_14 - build_number: 14 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hb4dd4bb_14.conda - sha256: a9622ac836bbe4a24310e0e77a42ef0a17e5fa0703276f8bbbef945deaca337c - md5: a5b86123507e184fb4463e1f8890b398 + build: hb921021_15 + build_number: 15 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb921021_15.conda + sha256: 537006ad6d5097c134494166a6a1dc1451d5d050878d7b82cef498bfda40ba8a + md5: c79d50f64cffa5ad51ecc1a81057962f depends: + - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 111975 - timestamp: 1733709317063 + size: 107614 + timestamp: 1734021692519 - kind: conda name: aws-c-cal version: 0.8.1 - build: h0f28dba_2 - build_number: 2 + build: h1a47875_3 + build_number: 3 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h0f28dba_2.conda - sha256: 023fa0d0618b652b0be5eac73d92fd47136351da7d331334c45d5dd1ee760401 - md5: 94faebd978282d2a4a8514141daec756 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h1a47875_3.conda + sha256: 095ac824ea9303eff67e04090ae531d9eb33d2bf8f82eaade39b839c421e16e8 + md5: 55a8561fdbbbd34f50f57d9be12ed084 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 47694 - timestamp: 1733390870810 + size: 47601 + timestamp: 1733991564405 - kind: conda name: aws-c-cal version: 0.8.1 - build: h1aca5b9_2 - build_number: 2 + build: h740c5af_3 + build_number: 3 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h1aca5b9_2.conda - sha256: df203473e8675fc27ae5cb62bc09e336fe92655df0a0056e73087cb22aed287e - md5: 31d9e82aac5cd3fe399535bcec0f2975 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h740c5af_3.conda + sha256: c5c7961d48ca7320ed3560c036f7aa5244df4b85d9657f70aacc5faba3e1509a + md5: 57ed2c445d7ef01d121b9bcea0522913 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 49822 - timestamp: 1733390907734 + size: 50036 + timestamp: 1733991581303 - kind: conda name: aws-c-cal version: 0.8.1 - build: h4d88cd7_2 - build_number: 2 + build: hc8a0bd2_3 + build_number: 3 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-h4d88cd7_2.conda - sha256: 30e6bc4feea78a280553b084a960515e550dabfae0e63ba511be773c3a9f6b5a - md5: 3cb07f08e5aabe657b0b5fb13945e79a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-hc8a0bd2_3.conda + sha256: 1f44be36e1daa17b4b081debb8aee492d13571084f38b503ad13e869fef24fe4 + md5: 8b0ce61384e5a33d2b301a64f3d22ac5 depends: - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 39878 - timestamp: 1733390962202 + size: 39925 + timestamp: 1733991649383 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: h5505292_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.5-h5505292_0.conda - sha256: 54554886028d25b5c752369e7ae8321852e875fdc780ff9357b72a31f3e5d5b4 - md5: 49f049f8b10cf8c2c5a26660854fd21a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.6-h5505292_0.conda + sha256: 3bde135c8e74987c0f79ecd4fa17ec9cff0d658b3090168727ca1af3815ae57a + md5: 145e5b4c9702ed279d7d68aaf096f77d depends: - __osx >=11.0 license: Apache-2.0 license_family: Apache - size: 222184 - timestamp: 1733324871298 + size: 221863 + timestamp: 1733975576886 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: h86ecc28_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.5-h86ecc28_0.conda - sha256: bdea66b7be9acd463bbfd583d2f80ff676d376c60480a2d3f9f7de7b4bf6d2b2 - md5: fcd238b0cc98927742a96aa411123e32 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.6-h86ecc28_0.conda + sha256: 57288ec5df35781bea8fc6a8c9099cad6695b747784fc1b8862a0f9e5b3bf5ab + md5: fef806a0f6de853670c746bbece01966 depends: - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 258257 - timestamp: 1733324684433 + size: 259031 + timestamp: 1733975520465 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: hb9d3cd8_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.5-hb9d3cd8_0.conda - sha256: 93e83e2a31f41bac2aa5eae8fbc7f1d31449a04a3df8a64ebcac2433f52a86ad - md5: d8288fbad9d809b9ca139b8beb6553ef + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.6-hb9d3cd8_0.conda + sha256: 496e92f2150fdc351eacf6e236015deedb3d0d3114f8e5954341cbf9f3dda257 + md5: d7d4680337a14001b0e043e96529409b depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 237114 - timestamp: 1733324723318 + size: 236574 + timestamp: 1733975453350 - kind: conda name: aws-c-compression version: 0.3.0 - build: h10558d5_4 - build_number: 4 + build: h0f0193d_5 + build_number: 5 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h10558d5_4.conda - sha256: 45ea74461b6a5453325db2201ba9f728f20e89ead17730e93ddd7411a833c058 - md5: 8ceaf4396978c33bc695129425f12734 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h0f0193d_5.conda + sha256: 3f05d19f68ef800f33d44ea2a4211003124076516c8469abc7d432236344df53 + md5: 3a1421d12435df5b4c412cc4c8fac64d depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 19742 - timestamp: 1733391062884 + size: 19740 + timestamp: 1733991625201 - kind: conda name: aws-c-compression version: 0.3.0 - build: h4d88cd7_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h4d88cd7_4.conda - sha256: b6900e82b553d18d5528322de236af3a7f64ccb3df08e8320142894144a5c716 - md5: 8c67ff0c68aea28be3efec6f8d799a19 + build: h4e1184b_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h4e1184b_5.conda + sha256: 62ca84da83585e7814a40240a1e750b1563b2680b032a471464eccc001c3309b + md5: 3f4c1197462a6df2be6dc8241828fe93 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 18219 - timestamp: 1733391126008 + size: 19086 + timestamp: 1733991637424 - kind: conda name: aws-c-compression version: 0.3.0 - build: h9cc6398_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h9cc6398_4.conda - sha256: 045a3231b0aacb544ea9e348c22f863d96631f14a3a2b59413a72f61259a32a4 - md5: 076717670d5406e90070120314ff9b4f + build: hc8a0bd2_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-hc8a0bd2_5.conda + sha256: 47b2813f652ce7e64ac442f771b2a5f7d4af4ad0d07ff51f6075ea80ed2e3f09 + md5: a8b6c17732d14ed49d0e9b59c43186bc depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 19029 - timestamp: 1733390975089 + size: 18068 + timestamp: 1733991869211 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: h9fa824c_10 - build_number: 10 + build: h54f970a_11 + build_number: 11 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h9fa824c_10.conda - sha256: 12f2ccc71bb993934cc489af359cb7399f671c3111f64fe2be9c8231819e11bd - md5: 9f6a7984f9ce3c6149fa36865060928a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h54f970a_11.conda + sha256: f0667935f4e0d4c25e0e51da035640310b5ceeb8f723156734439bde8b848d7d + md5: ba41238f8e653998d7d2f42e3a8db054 depends: - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 47460 - timestamp: 1733696263921 + size: 47078 + timestamp: 1734024749727 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: ha9733bd_10 - build_number: 10 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-ha9733bd_10.conda - sha256: e8189bdd1af1a3f68a460bcb3c852193cfdf7afa2f1a82d687d30055242b20e2 - md5: cb0877c6fcc93454f221ba4eba798cfc + build: h7959bf6_11 + build_number: 11 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h7959bf6_11.conda + sha256: 10d7240c7db0c941fb1a59c4f8ea6689a434b03309ee7b766fa15a809c553c02 + md5: 9b3fb60fe57925a92f399bc3fc42eccf depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 55066 - timestamp: 1733696212604 + size: 54003 + timestamp: 1734024480949 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: hf811eff_10 - build_number: 10 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-hf811eff_10.conda - sha256: 3fbc86e70b543f26cc485f98714b7f789c4ece05128046458681893f43b7f5f1 - md5: 5046c78dd139a333b6acd7376a10e0a7 + build: hcbd8f92_11 + build_number: 11 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-hcbd8f92_11.conda + sha256: 79aa363c71c891a27496c0498f8d498b2ddc87b3ccb3b6c9da5b50b05936ebb8 + md5: e0772c59af4243a9b2565baa5d79e5b6 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 53973 - timestamp: 1733696170256 + size: 55207 + timestamp: 1734024546663 - kind: conda name: aws-c-http version: 0.9.2 - build: h53134c8_3 - build_number: 3 + build: h3df160d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h53134c8_3.conda - sha256: a4d217f89ad0e9326da57b2d9bd4cd5cb0a95423d092be7ed81e88fb075d4dbe - md5: 2ffd03180381a92332b673cefc602234 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h3df160d_4.conda + sha256: 3a1d2d332945306be9d49e569b95e4cc172d825f10e88715513a172f28ebb59e + md5: 28f00aa7fd9556c4c461328cf146c20b depends: - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 189812 - timestamp: 1733683248290 + size: 190586 + timestamp: 1734008442362 - kind: conda name: aws-c-http version: 0.9.2 - build: hc68443d_3 - build_number: 3 + build: h96aa502_4 + build_number: 4 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-hc68443d_3.conda - sha256: 71be93cd1d8dfa5858939ba53431abaee859fbc98bdf9f5033bfa41af76b140a - md5: 6353604cb9803e63fce359388201514e + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-h96aa502_4.conda + sha256: 22e4737c8a885995b7c1ae1d79c1f6e78d489e16ec079615980fdde067aeaf76 + md5: 495c93a4f08b17deb3c04894512330e6 depends: - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 license: Apache-2.0 license_family: Apache - size: 153237 - timestamp: 1733683327609 + size: 152983 + timestamp: 1734008451473 - kind: conda name: aws-c-http version: 0.9.2 - build: hce7dc5d_3 - build_number: 3 + build: hefd7a92_4 + build_number: 4 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hce7dc5d_3.conda - sha256: 7e864b6d4255c4edbd1b2c0f519849017d2a48e54b282748eaa8f9f0fc98a6f4 - md5: c0f54e8975ad42d2864f4b1918356b3b + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hefd7a92_4.conda + sha256: 4a330206bd51148f6c13ca0b7a4db40f29a46f090642ebacdeb88b8a4abd7f99 + md5: 5ce4df662d32d3123ea8da15571b6f51 depends: - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 197506 - timestamp: 1733683203582 + size: 197731 + timestamp: 1734008380764 - kind: conda name: aws-c-io version: 0.15.3 - build: h66499f2_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-h66499f2_3.conda - sha256: 86ff175fa5dced16cf41bcc5c353de080314fcb81f4aed326f29b9f22add9aad - md5: e64159c5b106a0365544cfe9d4ef79ec + build: h92bf595_4 + build_number: 4 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h92bf595_4.conda + sha256: ffa2fc1ddb01f4b8ac038ab70a5533306119754ba438b23399f2a82a38cf27bf + md5: 539df02c00c506c78aebdf6c0fc75743 depends: - - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 136845 - timestamp: 1733588465582 + size: 161836 + timestamp: 1733997573790 - kind: conda name: aws-c-io version: 0.15.3 - build: h8aa8d47_3 - build_number: 3 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h8aa8d47_3.conda - sha256: cb08b2e9258637e810ac283600b7de2d7a68f55a61e67226e9cce2537f36a06b - md5: 8ece20a51dafae96444e90c7ddaac41a + build: haba67d1_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-haba67d1_4.conda + sha256: 2d0859b57439cd98e854577aa3e07eb171b590098d51a8c908bab5ec497a3d38 + md5: 74eace4fab8675263a848075e991d380 depends: + - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 - - s2n >=1.5.9,<1.5.10.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 161513 - timestamp: 1733588480960 + size: 136213 + timestamp: 1733997647724 - kind: conda name: aws-c-io version: 0.15.3 - build: hfd54f12_3 - build_number: 3 + build: hbf5b6a4_4 + build_number: 4 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hfd54f12_3.conda - sha256: 6d0bd78d5c7d3ec586691d54c8aebc79d089358ff9e793f0cac857a1f977a1a0 - md5: c0b9f79cd2f5797b913415511bfa2cd6 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hbf5b6a4_4.conda + sha256: 3195fe431d3c43d6ecf749796d3acb093645c9d0de9998616641dada4b5fa2a6 + md5: ad3a6713063c18b9232c48e89ada03ac depends: - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 158115 - timestamp: 1733588386529 + size: 157886 + timestamp: 1733997507332 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: h2f8d747_11 - build_number: 11 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h2f8d747_11.conda - sha256: b66de0de359bfaec5084bdc78fda6dfbd8cf8e71c68a76dcd7b74e8a00ec6052 - md5: f4ccd7c1e73c662fd9a795147ca8ca9f + build: h11f4f37_12 + build_number: 12 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h11f4f37_12.conda + sha256: 512d3969426152d9d5fd886e27b13706122dc3fa90eb08c37b0d51a33d7bb14a + md5: 96c3e0221fa2da97619ee82faa341a73 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 168898 - timestamp: 1733739548597 + size: 194672 + timestamp: 1734025626798 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: ha3c2ba9_11 - build_number: 11 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-ha3c2ba9_11.conda - sha256: 187787bb41e7b616c9317c12c32a5027aae784d1f9335f9d6d34a3fa7ebcb1ec - md5: 93c5070d6f9b4cb2ed9de52ce247cebb + build: h24f418c_12 + build_number: 12 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h24f418c_12.conda + sha256: 96575ea1dd2a9ea94763882e40a66dcbff9c41f702bf37c9514c4c719b3c11dd + md5: c072045a6206f88015d02fcba1705ea1 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 193829 - timestamp: 1733740033267 + size: 134371 + timestamp: 1734025379525 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: hd073cef_11 - build_number: 11 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-hd073cef_11.conda - sha256: d2ee2cdc651250a38f67b84ec65de3ba5493c760821d22c01edb8defd6393dc9 - md5: 0c1deb6e00f80b4aedcb2c4fcfea6407 + build: h5f50e26_12 + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h5f50e26_12.conda + sha256: ffeb9100cc8fd4093e1a6fdfd938bc4a396dd77480b7fb17aa42855a4d5e2c70 + md5: 031ca33115d4b1eeb43f435d6215778c depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 134556 - timestamp: 1733739661152 + size: 169516 + timestamp: 1734025167885 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: h55e9418_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.5-h55e9418_4.conda - sha256: 04d7fd3574fa76c184f04630125a760afa4ae5d4109eec36f22fe127cc85e164 - md5: faec629f0eb306cfe17ed1615249e188 + version: 0.7.7 + build: h1be5864_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.7-h1be5864_0.conda + sha256: 22966164d63808689fffd35945f57756c95337327e28099b5d77b29fc6a56ecc + md5: a37bba7acb62dd70492ee01eacca3b8f depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - - libgcc >=13 - - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 113811 - timestamp: 1733717653326 + size: 97598 + timestamp: 1734146239038 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: h757e810_4 - build_number: 4 + version: 0.7.7 + build: h2080895_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.5-h757e810_4.conda - sha256: 3da5e1b88d68c5cb2eb1dd898a7c6192be9e1df0bd2733d39d6c0ffe9fc546a2 - md5: 96a657e5856e9e92755170630067f63c + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.7-h2080895_0.conda + sha256: 20bc2dd60e6518d9b8215c2b652ab5c52ee8a997d3b9a5f69e2dabd28cbf26b2 + md5: ae223efa63fbb4262a2d85c3ab3bc4f5 depends: - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 @@ -1596,273 +1592,274 @@ packages: - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 117478 - timestamp: 1733717680655 + size: 117641 + timestamp: 1734146239779 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: hb201fd0_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.5-hb201fd0_4.conda - sha256: c25c62173770b681083962b497a927f306e7f3d05b459dd59e4c12eaf49e9f0b - md5: 83b9775bbe5419cf4916e646e870b87a + version: 0.7.7 + build: hf454442_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.7-hf454442_0.conda + sha256: c2f205a7bf64c5f40eea373b3a0a7c363c9aa9246a13dd7f3d9c6a4434c4fe2d + md5: 947c82025693bebd557f782bb5d6b469 depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 + - libgcc >=13 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 97441 - timestamp: 1733717822438 + size: 114156 + timestamp: 1734146123386 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h10558d5_3 - build_number: 3 + build: h0f0193d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h10558d5_3.conda - sha256: 0f6a15d711bc4d6b2d2b8451ad46bf78af6876235ad56bf142644a4ce2240f52 - md5: 1ba505fc4243ad75507efa8976e1790f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h0f0193d_4.conda + sha256: ede8e782467c87ac80ceb9c9af9e917d121b7d8b8c698186d18e3cecd36f2210 + md5: 53e798d720dd78b78847a7b2fdb05fc9 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 58123 - timestamp: 1733398238726 + size: 58621 + timestamp: 1733994421495 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h4d88cd7_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h4d88cd7_3.conda - sha256: a94ecde4e61de8effd9c93ba3527eb010773b5422d2d079ffdcd796ec77fcd4e - md5: 5ec333d73530fbfc2db670eeb6911bff + build: h4e1184b_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h4e1184b_4.conda + sha256: df586f42210af1134b1c88ff4c278c3cb6d6c807c84eac48860062464b28554d + md5: a5126a90e74ac739b00564a4c7ddcc36 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 49739 - timestamp: 1733398400904 + size: 56094 + timestamp: 1733994449690 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h9cc6398_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h9cc6398_3.conda - sha256: 917f679da38f162e191c5d6817b35fbf2ae0584b1d335bc229fd01e6077108ee - md5: 10bdb7fc3763760dcea1cd908ece6b2b + build: hc8a0bd2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-hc8a0bd2_4.conda + sha256: de98343ce42d2e569b3380292d20f47bf39bda08aadabcbb8e650d3f38fd742f + md5: 22f72f8cd7ead211304ac17d337d96e0 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 55864 - timestamp: 1733398187914 + size: 49664 + timestamp: 1733994553014 - kind: conda name: aws-checksums version: 0.2.2 - build: h10558d5_3 - build_number: 3 + build: h0f0193d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h10558d5_3.conda - sha256: 108860ae5d61a4dc0b0d91282d0171ba7fd69686c11b4bcbdcd3f8b8efc98adb - md5: 1ded47669f79301e4a3d1d3d469494c0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h0f0193d_4.conda + sha256: 9f1e3635a587bcf92b61d88c7af7d24cd89c147c6d0ae58afbde08e65bcf48da + md5: 3bd35b0adab3d743f09e0252cc441d6b depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72203 - timestamp: 1733398350602 + size: 72154 + timestamp: 1733994384415 - kind: conda name: aws-checksums version: 0.2.2 - build: h4d88cd7_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h4d88cd7_3.conda - sha256: 7d0d71e399fa6b0a1e686470d4a982396a9d0d29be29bf07591d83739cc29a0a - md5: 45409e27b510588196b9f116f86c2d51 + build: h4e1184b_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h4e1184b_4.conda + sha256: 1ed9a332d06ad595694907fad2d6d801082916c27cd5076096fda4061e6d24a8 + md5: 74e8c3e4df4ceae34aa2959df4b28101 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 70160 - timestamp: 1733398484776 + size: 72762 + timestamp: 1733994347547 - kind: conda name: aws-checksums version: 0.2.2 - build: h9cc6398_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h9cc6398_3.conda - sha256: a3aea2fc8ccf85ae64c5ce9c4e507be37173b94909191480e5151c482a220e40 - md5: d6dd8b87b95195d8d26893611d94ba3b + build: hc8a0bd2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-hc8a0bd2_4.conda + sha256: 215086d95e8ff1d3fcb0197ada116cc9d7db1fdae7573f5e810d20fa9215b47c + md5: e70e88a357a3749b67679c0788c5b08a depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 72681 - timestamp: 1733398331530 + size: 70186 + timestamp: 1733994496998 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hb9a023b_5 - build_number: 5 + build: h19a973c_7 + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-hb9a023b_5.conda - sha256: d1d89918a1f6e08f16275d82218b2f73012cee2def3ad8f1a8d28af7497e66cc - md5: 70a976e616535dbab5e1f354734a238a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-h19a973c_7.conda + sha256: 8269e6746eb3a5d15b732a3983888bf98dfc1f6594e95250fc8d16b43cfd5ff9 + md5: 95714136bef3e917bd5a2942d4682b20 depends: - __osx >=11.0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 236182 - timestamp: 1733767086227 + size: 236249 + timestamp: 1734178020924 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hc8d91e0_5 - build_number: 5 + build: h8a4e35f_7 + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-hc8d91e0_5.conda - sha256: c3be4f3f77ac7ba716228df1099eb68a5e7a4cbbe386a4732a28f33d6b780cc4 - md5: 8f14e3d651a08c9b2f85c6e5d359e250 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-h8a4e35f_7.conda + sha256: 5ba9188e0cb4e3faff9bc96774febb040aa3b802aedba29d847e00e7b5eab84e + md5: d77a9e3d7ce15399903e92825fd651b5 depends: - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 284313 - timestamp: 1733766768643 + size: 283154 + timestamp: 1734177845248 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hed26007_5 - build_number: 5 + build: hd92328a_7 + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hed26007_5.conda - sha256: f996cb94f3ef212792f288a0f7c5201ac7f00bb43502702b76e408e50d80132f - md5: 7c64e4ac7a484fc525a4ce7b9baf709a + url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hd92328a_7.conda + sha256: 094cd81f1e5ba713e9e7a272ee52b5dde3ccc4842ea90f19c0354a00bbdac3d9 + md5: 02b95564257d5c3db9c06beccf711f95 depends: - __glibc >=2.17,<3.0.a0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 354783 - timestamp: 1733766766977 + size: 354703 + timestamp: 1734177883319 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h2d3f608_3 - build_number: 3 + build: h849ce1a_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h2d3f608_3.conda - sha256: b335dfee7b04117ddae857564300ed6795718e2305141c7d631dcc434503a261 - md5: 57bdfac803ce58e3a3256752d7e5aa6e + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h849ce1a_4.conda + sha256: 51b9e9df8cbab4a13a1b9d39d6ef5ed162aaa29c09a745810e00bbe92e1045c1 + md5: cda7747f4398be8d1fb37362815917a7 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 + - libcurl >=8.11.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2896174 - timestamp: 1733808114676 + size: 2920625 + timestamp: 1734093552712 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h39838b8_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-h39838b8_3.conda - sha256: b5ef3a956937d61b59b9dd4b8c23eeb0bc254c37a97028a50c3ff6c8df399deb - md5: 3a6c8f65692febdf791bece561b371c8 + build: hc430e4a_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-hc430e4a_4.conda + sha256: 2dc09f6f9c49127b5f96e7535b64a9c521b944d76d8b7d03d48ae80257ac1cea + md5: aeefac461bea1f126653c1285cf5af08 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 - - libcxx >=18 + - libcurl >=8.11.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2837854 - timestamp: 1733808787914 + size: 3060561 + timestamp: 1734093737431 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h571fd1c_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-h571fd1c_3.conda - sha256: c2f38374a6f4dd804f76c8a071bc7f7d37dfb43e194eb93a473ff789460c011b - md5: 374cf1add8af327b15b1b1e4873f4955 + build: he0ff2e4_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-he0ff2e4_4.conda + sha256: 535b970aaa13be45f8cab8205c59f044b17364111c41a227f061775a5c834e18 + md5: 0981ed87098b149bdb7d99a4a3fd0e58 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 - - libgcc >=13 - - libstdcxx >=13 + - libcurl >=8.11.1,<9.0a0 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 3062994 - timestamp: 1733808211748 + size: 2826534 + timestamp: 1734094018287 - kind: conda name: azure-core-cpp version: 1.14.0 @@ -4960,65 +4957,65 @@ packages: timestamp: 1633683992603 - kind: conda name: libcurl - version: 8.10.1 - build: h13a7ad3_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda - sha256: 983a977c5627f975a930542c8aabb46089ec6ea72f28d9c4d3ee8eafaf2fc25a - md5: d84030d0863ffe7dea00b9a807fee961 + version: 8.11.1 + build: h332b0f4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda + sha256: 3cd4075b2a7b5562e46c8ec626f6f9ca57aeecaa94ff7df57eca26daa94c9906 + md5: 2b3e0081006dc21e8bf53a91c83a055c depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - krb5 >=1.21.3,<1.22.0a0 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libgcc >=13 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 379948 - timestamp: 1726660033582 + size: 423011 + timestamp: 1733999897624 - kind: conda name: libcurl - version: 8.10.1 - build: h3ec0cbf_0 + version: 8.11.1 + build: h6702fde_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda - sha256: 7c4983001c727f713b4448280ed4803d301087c184cd2819ba0b788ca62b73d1 - md5: f43539295c4e0cd15202d41bc72b8a26 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.11.1-h6702fde_0.conda + sha256: 9fc65d21a58f4aad1bc39dfb94a178893aeb035850c5cf0ed9736674279f390b + md5: 7dec1cd271c403d1636bda5aa388a55d depends: - krb5 >=1.21.3,<1.22.0a0 - libgcc >=13 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 439171 - timestamp: 1726659843118 + size: 440737 + timestamp: 1733999835504 - kind: conda name: libcurl - version: 8.10.1 - build: hbbe4b11_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda - sha256: 54e6114dfce566c3a22ad3b7b309657e3600cdb668398e95f1301360d5d52c99 - md5: 6e801c50a40301f6978c53976917b277 + version: 8.11.1 + build: h73640d1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.11.1-h73640d1_0.conda + sha256: f47c35938144c23278987c7d12096f6a42d7c850ffc277222b032073412383b6 + md5: 46d7524cabfdd199bffe63f8f19a552b depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - krb5 >=1.21.3,<1.22.0a0 - - libgcc >=13 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 424900 - timestamp: 1726659794676 + size: 385098 + timestamp: 1734000160270 - kind: conda name: libcxx version: 19.1.5 @@ -7684,76 +7681,76 @@ packages: timestamp: 1733219945697 - kind: conda name: max - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - sha256: c53b72587f9fa54a9b0f5cb5345e772711cb0779610100ab4389b1f312a7ebc7 - md5: b91bff8456bcd2fd2aada4bafa51a358 - depends: - - max-core ==25.1.0.dev2024121105 release - - max-python >=25.1.0.dev2024121105,<26.0a0 - - mojo-jupyter ==25.1.0.dev2024121105 release - - mblack ==25.1.0.dev2024121105 release + url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + sha256: 6bacaa1d4f27d255a4c3907c28929865eeef5d45d64d61c3991b526aee14766d + md5: 1aec535b4731af73dd1b43472e7b6fa0 + depends: + - max-core ==25.1.0.dev2024121405 release + - max-python >=25.1.0.dev2024121405,<26.0a0 + - mojo-jupyter ==25.1.0.dev2024121405 release + - mblack ==25.1.0.dev2024121405 release license: LicenseRef-Modular-Proprietary - size: 9923 - timestamp: 1733894234676 + size: 9921 + timestamp: 1734153430066 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121105-release.conda - sha256: 23a9b3a31eddf232c2d91b45362eb79b0a8dfd4842e7d41f2719aa40bc53c37a - md5: c95a33b823ca2f36431033c1122212ba + url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121405-release.conda + sha256: 14f953430105c8f2bb8f3bdf1e3fb7e9acbb20613ad47c9ac1e88462e0cc804d + md5: d88d69b1696ed9d5795c8d346bbd4311 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 247768202 - timestamp: 1733894244133 + size: 245597032 + timestamp: 1734153445516 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121105-release.conda - sha256: 22bb680d1e11a3640ae28b9d9faafa089b92a2fd6474ebdcc6b5c0e4da618664 - md5: 6e976d732a16860852a22686f7334ce4 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121405-release.conda + sha256: e3936f8021fc72f7f2673e2653e7bbd3d325fb44818b868bb49c24e5c1766eaf + md5: ea674f5d9232d89046ad99090cc195a7 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 251679560 - timestamp: 1733894234674 + size: 249408423 + timestamp: 1734153430064 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121105-release.conda - sha256: 5733d843377af66e94de2dd91cd8872d8f49baac81c6120ce2294a866d2f227f - md5: 84d6da2eb7585c49e1f71deec028c11a + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121405-release.conda + sha256: b6bb97d20f0f7371a647778d18fe78f839e37eef423542ae3f4e75b018ffd8db + md5: 0e2d8c487ef68866164af9dff49f5119 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 212215227 - timestamp: 1733894448570 + size: 214323771 + timestamp: 1734153633668 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: ad71429b6fa8d4e972a20a0a8f684420b6f162fdb1b22d36c32758a4f0f35d54 - md5: b7acc92cf44907a4c460026ad9c2cc45 + url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: 7ebdc67f58946084f7f4a657f0661899e61707b055f2046d9c18033f21f97008 + md5: 5a8cbae9c5257545459bfe7a262b62a6 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -7776,18 +7773,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 123912464 - timestamp: 1733894244143 + size: 122834581 + timestamp: 1734153445526 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: 26f0f84532443a5e78098c17127dd0a04ca05a7c107e50aebc6b92abc9fe8a9f - md5: c4908b0138b01e14f9a8002624b42e25 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: b74a5c8945a97210778cda3cd9fe98f7404d2c9ff0b1a03738c77af6429b1523 + md5: 099dc5d1f85e4f883e72caef6f0c6e52 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -7810,18 +7807,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 127580719 - timestamp: 1733894234684 + size: 126606485 + timestamp: 1734153430075 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: 42e409756f37919fdfda6e86d45e1814f68c102f23a8be42dd88b4f3dd816fae - md5: 4a180f1ab8a83b78d7282baf60e9280b + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: 24a7ab99d936e5c28f597413e9e643fe34c46ba55916c1febcbe658e79a2ea9f + md5: 661ce5968d3cc1b11a67dfbf77e986b8 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -7844,17 +7841,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 112620525 - timestamp: 1733894448573 + size: 113414908 + timestamp: 1734153633671 - kind: conda name: mblack - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda - sha256: ee5c623d7908731bc5c42079cbb5d7ac461481c5bcaf615e25c4c8263f041793 - md5: 1271b7b52a8cc538e26ffbdd22743d3a + url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda + sha256: ea23ea9fdb019aa4dc05bcb1d1f526f77ce90a94baa3130d26ce71cad0a3647b + md5: 425b85251efa151234c9db33428ee55c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -7864,8 +7861,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130789 - timestamp: 1733894234681 + size: 130792 + timestamp: 1734153430070 - kind: conda name: mdurl version: 0.1.2 @@ -7884,21 +7881,21 @@ packages: timestamp: 1733255681319 - kind: conda name: mojo-jupyter - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda - sha256: c59130a6e8190e55b8881bd43429377da5368df6afed78b04c8df236d253a047 - md5: 35cc55bad72e3b9d0d490ff7af58c446 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda + sha256: b232fe63e84736d519137d4c98067c886f8acc1cc38a6620a062f4eb079e751a + md5: b7d7fe85425c5120a665795eb2097aa9 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22932 - timestamp: 1733894234682 + size: 22934 + timestamp: 1734153430071 - kind: conda name: mpg123 version: 1.32.9 @@ -9360,22 +9357,20 @@ packages: timestamp: 1732254359451 - kind: conda name: pydantic-settings - version: 2.6.1 - build: pyh3cfb1c2_1 - build_number: 1 + version: 2.7.0 + build: pyh3cfb1c2_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda - sha256: 8cc37e827f0098d07743f57f968283cefce6c11562d9241aba990acc23aedb56 - md5: deabf8afc8d987f20174ef0d8d9b549e + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda + sha256: dd1ac7c8b6a189c8aa18f6c7df019d8f6df495300a259e3fbebdb542fc955c3b + md5: d9f19a7c4199249fa229891b573b6f9b depends: - pydantic >=2.7.0 - python >=3.9 - python-dotenv >=0.21.0 license: MIT - license_family: MIT - size: 30832 - timestamp: 1733851937909 + size: 31426 + timestamp: 1734127929720 - kind: conda name: pygame version: 2.6.1 @@ -10911,19 +10906,20 @@ packages: - kind: conda name: transformers version: 4.47.0 - build: pyhd8ed1ab_0 + build: pyhd8ed1ab_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda - sha256: b9cf6ae5fcd6c78dcaa24ebfd41580a4a10b0649ac726a44d3521f70fdece218 - md5: 495745078b8e18fe2dcc3267f4baae0d + url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda + sha256: d31821081219a0ede5c1f356b65a61ce98ac11e2df78b0eaa684c17c73389fbf + md5: 6d2ec1ddee8057d2d724a0ab0bb578a0 depends: - datasets !=2.5.0 - filelock - huggingface_hub >=0.23.0,<1.0 - numpy >=1.17 - packaging >=20.0 - - python >=3.8 + - python >=3.9 - pyyaml >=5.1 - regex !=2019.12.17 - requests @@ -10932,8 +10928,8 @@ packages: - tqdm >=4.27 license: Apache-2.0 license_family: APACHE - size: 3721837 - timestamp: 1733708797762 + size: 3726957 + timestamp: 1733948063517 - kind: conda name: typer version: 0.15.1 @@ -11151,12 +11147,12 @@ packages: timestamp: 1730214606664 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312h12e396e_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.0-py312h12e396e_0.conda - sha256: a2a11a751d3fdd2bec79d876687136cee81d0125be40cebd3518042e1e15c349 - md5: b53a91a5cc50cf07f690a5d3b9f91db5 + url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.3-py312h12e396e_0.conda + sha256: c89755d8e8f6384b3ba13e41dcabb40bf690c38b9d61512e963129badb1ad332 + md5: b76a5ad00856af6e74da9c3e85fed0cc depends: - __glibc >=2.17,<3.0.a0 - anyio >=3.0.0 @@ -11167,16 +11163,16 @@ packages: - __glibc >=2.17 license: MIT license_family: MIT - size: 409700 - timestamp: 1732689603044 + size: 410432 + timestamp: 1733998892675 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312h8cbf658_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.0-py312h8cbf658_0.conda - sha256: 1d7fde47edacf01a81c0d9ac3f284d4d30982d33686c505374bfa2c7b02bbf8d - md5: 9ecaaf340ad422209a04fcf854fb4a3f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.3-py312h8cbf658_0.conda + sha256: 9be9569c279dc6e7881e9b45fe9f0368218538c660641e2f8b0e023e72a6571c + md5: 3465c1a19634233abc2d1832ac01fd31 depends: - anyio >=3.0.0 - libgcc >=13 @@ -11187,16 +11183,16 @@ packages: - __glibc >=2.17 license: MIT license_family: MIT - size: 404235 - timestamp: 1732689685476 + size: 404239 + timestamp: 1733998941045 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312hcd83bfe_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.0-py312hcd83bfe_0.conda - sha256: 554c4550813b744794fc70451c87d540d38138e6dc901993e85515ffa91087d2 - md5: 0eb2c3f65788f61f905d31ac062fe4b6 + url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.3-py312hcd83bfe_0.conda + sha256: b64b78a7d6384bf72a878256802c783c692fe641ab4b806fd7e9f45e18a5e3b4 + md5: 13b89e1aa72aa773806b1f59ec018b67 depends: - __osx >=11.0 - anyio >=3.0.0 @@ -11207,8 +11203,8 @@ packages: - __osx >=11.0 license: MIT license_family: MIT - size: 356744 - timestamp: 1732689860624 + size: 363162 + timestamp: 1733999215646 - kind: conda name: websockets version: '14.1' diff --git a/examples/magic.lock b/examples/magic.lock index 0294201855..009cc7c7f1 100644 --- a/examples/magic.lock +++ b/examples/magic.lock @@ -14,19 +14,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h8c8080f_14.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h0f28dba_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.5-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h9cc6398_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-hf811eff_10.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hce7dc5d_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hfd54f12_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-ha3c2ba9_11.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.5-h55e9418_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h9cc6398_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h9cc6398_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hed26007_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-h571fd1c_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb921021_15.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h1a47875_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.6-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h4e1184b_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h7959bf6_11.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hefd7a92_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hbf5b6a4_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h11f4f37_12.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.7-hf454442_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h4e1184b_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h4e1184b_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hd92328a_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-hc430e4a_4.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 @@ -87,7 +87,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.22-hb9d3cd8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda @@ -131,12 +131,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py311h2dc5d0c_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121105-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121405-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py311h2dc5d0c_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py311h459d7ec_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -166,7 +166,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.1-py311h9e33e62_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - 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-pyha55dd90_7.conda @@ -201,7 +201,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py311h9ecbd09_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -212,7 +212,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.21.0-py311h9ecbd09_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.0-py311h9e33e62_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.3-py311h9e33e62_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/websockets-14.1-py311h9ecbd09_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.0-py311h9ecbd09_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hb9d3cd8_1.conda @@ -232,19 +232,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hb4dd4bb_14.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h1aca5b9_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.5-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h10558d5_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-ha9733bd_10.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h53134c8_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h8aa8d47_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h2f8d747_11.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.5-h757e810_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h10558d5_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h10558d5_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-hc8d91e0_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h2d3f608_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-h2cb9fb3_15.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h740c5af_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.6-h86ecc28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h0f0193d_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-hcbd8f92_11.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h3df160d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h92bf595_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h5f50e26_12.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.7-h2080895_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h0f0193d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h0f0193d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-h8a4e35f_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h849ce1a_4.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 @@ -306,7 +306,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.11.1-h6702fde_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.22-h86ecc28_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda @@ -350,12 +350,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py311ha09ea12_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121105-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121405-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py311h58d527c_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py311hcd402e7_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -385,7 +385,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.1-py311h0ca61a2_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - 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-pyha55dd90_7.conda @@ -420,7 +420,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4.2-py311h5487e9b_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -431,7 +431,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/uvloop-0.21.0-py311ha879c10_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.0-py311h0ca61a2_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.3-py311h0ca61a2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/websockets-14.1-py311ha879c10_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/wrapt-1.17.0-py311ha879c10_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.11-h86ecc28_1.conda @@ -450,19 +450,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h93897a1_14.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-h4d88cd7_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.5-h5505292_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h4d88cd7_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h9fa824c_10.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-hc68443d_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-h66499f2_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-hd073cef_11.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.5-hb201fd0_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h4d88cd7_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h4d88cd7_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-hb9a023b_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-h39838b8_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h8bc59a9_15.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-hc8a0bd2_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.6-h5505292_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-hc8a0bd2_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h54f970a_11.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-h96aa502_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-haba67d1_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h24f418c_12.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.7-h1be5864_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-hc8a0bd2_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-hc8a0bd2_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-h19a973c_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-he0ff2e4_4.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 @@ -522,7 +522,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda - 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/libcurl-8.11.1-h73640d1_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.5-ha82da77_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.22-hd74edd7_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 @@ -560,12 +560,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py311h4921393_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121105-3.11release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121405-3.11release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-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/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -595,7 +595,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.1-py311h3ff9189_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - 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-pyha55dd90_7.conda @@ -629,7 +629,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.2-py311h917b07b_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -640,7 +640,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.21.0-py311hae2e1ce_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.0-py311h3ff9189_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.3-py311h3ff9189_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/websockets-14.1-py311h917b07b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.17.0-py311h917b07b_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hd74edd7_1.conda @@ -862,469 +862,465 @@ packages: - kind: conda name: aws-c-auth version: 0.8.0 - build: h8c8080f_14 - build_number: 14 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h8c8080f_14.conda - sha256: 7a9f7763e3a151ae1008ead51458f9b889b657f388266d53c6f7fa383dbb2481 - md5: a9284141081982473ebf41b92566bbcb + build: h2cb9fb3_15 + build_number: 15 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-h2cb9fb3_15.conda + sha256: 4ce859dc9ff128bf5515604c43f33fb511386022fc9765ca077990f2a3f23df5 + md5: e524686ace966acefb5b8cbc6e8b3daa depends: - - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 107775 - timestamp: 1733709347751 + size: 111854 + timestamp: 1734021745104 - kind: conda name: aws-c-auth version: 0.8.0 - build: h93897a1_14 - build_number: 14 + build: h8bc59a9_15 + build_number: 15 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h93897a1_14.conda - sha256: 3ec33500c5def035acb9ba406161f5452e39b1b818c67d8a56103d6def47bda6 - md5: 061e221dc5cca62be8fab49a16bfb99d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h8bc59a9_15.conda + sha256: 0e41e56b662e76e024182adebcd91d09a4d38a83b35217c84e4967354dfff9a2 + md5: f688b8893c20ad9477a19e7ce614014a depends: - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 license: Apache-2.0 license_family: Apache - size: 92250 - timestamp: 1733709418870 + size: 92507 + timestamp: 1734021831330 - kind: conda name: aws-c-auth version: 0.8.0 - build: hb4dd4bb_14 - build_number: 14 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hb4dd4bb_14.conda - sha256: a9622ac836bbe4a24310e0e77a42ef0a17e5fa0703276f8bbbef945deaca337c - md5: a5b86123507e184fb4463e1f8890b398 + build: hb921021_15 + build_number: 15 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb921021_15.conda + sha256: 537006ad6d5097c134494166a6a1dc1451d5d050878d7b82cef498bfda40ba8a + md5: c79d50f64cffa5ad51ecc1a81057962f depends: + - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 111975 - timestamp: 1733709317063 + size: 107614 + timestamp: 1734021692519 - kind: conda name: aws-c-cal version: 0.8.1 - build: h0f28dba_2 - build_number: 2 + build: h1a47875_3 + build_number: 3 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h0f28dba_2.conda - sha256: 023fa0d0618b652b0be5eac73d92fd47136351da7d331334c45d5dd1ee760401 - md5: 94faebd978282d2a4a8514141daec756 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h1a47875_3.conda + sha256: 095ac824ea9303eff67e04090ae531d9eb33d2bf8f82eaade39b839c421e16e8 + md5: 55a8561fdbbbd34f50f57d9be12ed084 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 47694 - timestamp: 1733390870810 + size: 47601 + timestamp: 1733991564405 - kind: conda name: aws-c-cal version: 0.8.1 - build: h1aca5b9_2 - build_number: 2 + build: h740c5af_3 + build_number: 3 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h1aca5b9_2.conda - sha256: df203473e8675fc27ae5cb62bc09e336fe92655df0a0056e73087cb22aed287e - md5: 31d9e82aac5cd3fe399535bcec0f2975 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h740c5af_3.conda + sha256: c5c7961d48ca7320ed3560c036f7aa5244df4b85d9657f70aacc5faba3e1509a + md5: 57ed2c445d7ef01d121b9bcea0522913 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 49822 - timestamp: 1733390907734 + size: 50036 + timestamp: 1733991581303 - kind: conda name: aws-c-cal version: 0.8.1 - build: h4d88cd7_2 - build_number: 2 + build: hc8a0bd2_3 + build_number: 3 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-h4d88cd7_2.conda - sha256: 30e6bc4feea78a280553b084a960515e550dabfae0e63ba511be773c3a9f6b5a - md5: 3cb07f08e5aabe657b0b5fb13945e79a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-hc8a0bd2_3.conda + sha256: 1f44be36e1daa17b4b081debb8aee492d13571084f38b503ad13e869fef24fe4 + md5: 8b0ce61384e5a33d2b301a64f3d22ac5 depends: - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 39878 - timestamp: 1733390962202 + size: 39925 + timestamp: 1733991649383 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: h5505292_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.5-h5505292_0.conda - sha256: 54554886028d25b5c752369e7ae8321852e875fdc780ff9357b72a31f3e5d5b4 - md5: 49f049f8b10cf8c2c5a26660854fd21a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.6-h5505292_0.conda + sha256: 3bde135c8e74987c0f79ecd4fa17ec9cff0d658b3090168727ca1af3815ae57a + md5: 145e5b4c9702ed279d7d68aaf096f77d depends: - __osx >=11.0 license: Apache-2.0 license_family: Apache - size: 222184 - timestamp: 1733324871298 + size: 221863 + timestamp: 1733975576886 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: h86ecc28_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.5-h86ecc28_0.conda - sha256: bdea66b7be9acd463bbfd583d2f80ff676d376c60480a2d3f9f7de7b4bf6d2b2 - md5: fcd238b0cc98927742a96aa411123e32 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.6-h86ecc28_0.conda + sha256: 57288ec5df35781bea8fc6a8c9099cad6695b747784fc1b8862a0f9e5b3bf5ab + md5: fef806a0f6de853670c746bbece01966 depends: - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 258257 - timestamp: 1733324684433 + size: 259031 + timestamp: 1733975520465 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: hb9d3cd8_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.5-hb9d3cd8_0.conda - sha256: 93e83e2a31f41bac2aa5eae8fbc7f1d31449a04a3df8a64ebcac2433f52a86ad - md5: d8288fbad9d809b9ca139b8beb6553ef + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.6-hb9d3cd8_0.conda + sha256: 496e92f2150fdc351eacf6e236015deedb3d0d3114f8e5954341cbf9f3dda257 + md5: d7d4680337a14001b0e043e96529409b depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 237114 - timestamp: 1733324723318 + size: 236574 + timestamp: 1733975453350 - kind: conda name: aws-c-compression version: 0.3.0 - build: h10558d5_4 - build_number: 4 + build: h0f0193d_5 + build_number: 5 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h10558d5_4.conda - sha256: 45ea74461b6a5453325db2201ba9f728f20e89ead17730e93ddd7411a833c058 - md5: 8ceaf4396978c33bc695129425f12734 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h0f0193d_5.conda + sha256: 3f05d19f68ef800f33d44ea2a4211003124076516c8469abc7d432236344df53 + md5: 3a1421d12435df5b4c412cc4c8fac64d depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 19742 - timestamp: 1733391062884 + size: 19740 + timestamp: 1733991625201 - kind: conda name: aws-c-compression version: 0.3.0 - build: h4d88cd7_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h4d88cd7_4.conda - sha256: b6900e82b553d18d5528322de236af3a7f64ccb3df08e8320142894144a5c716 - md5: 8c67ff0c68aea28be3efec6f8d799a19 + build: h4e1184b_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h4e1184b_5.conda + sha256: 62ca84da83585e7814a40240a1e750b1563b2680b032a471464eccc001c3309b + md5: 3f4c1197462a6df2be6dc8241828fe93 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 18219 - timestamp: 1733391126008 + size: 19086 + timestamp: 1733991637424 - kind: conda name: aws-c-compression version: 0.3.0 - build: h9cc6398_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h9cc6398_4.conda - sha256: 045a3231b0aacb544ea9e348c22f863d96631f14a3a2b59413a72f61259a32a4 - md5: 076717670d5406e90070120314ff9b4f + build: hc8a0bd2_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-hc8a0bd2_5.conda + sha256: 47b2813f652ce7e64ac442f771b2a5f7d4af4ad0d07ff51f6075ea80ed2e3f09 + md5: a8b6c17732d14ed49d0e9b59c43186bc depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 19029 - timestamp: 1733390975089 + size: 18068 + timestamp: 1733991869211 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: h9fa824c_10 - build_number: 10 + build: h54f970a_11 + build_number: 11 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h9fa824c_10.conda - sha256: 12f2ccc71bb993934cc489af359cb7399f671c3111f64fe2be9c8231819e11bd - md5: 9f6a7984f9ce3c6149fa36865060928a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h54f970a_11.conda + sha256: f0667935f4e0d4c25e0e51da035640310b5ceeb8f723156734439bde8b848d7d + md5: ba41238f8e653998d7d2f42e3a8db054 depends: - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 47460 - timestamp: 1733696263921 + size: 47078 + timestamp: 1734024749727 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: ha9733bd_10 - build_number: 10 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-ha9733bd_10.conda - sha256: e8189bdd1af1a3f68a460bcb3c852193cfdf7afa2f1a82d687d30055242b20e2 - md5: cb0877c6fcc93454f221ba4eba798cfc + build: h7959bf6_11 + build_number: 11 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h7959bf6_11.conda + sha256: 10d7240c7db0c941fb1a59c4f8ea6689a434b03309ee7b766fa15a809c553c02 + md5: 9b3fb60fe57925a92f399bc3fc42eccf depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 55066 - timestamp: 1733696212604 + size: 54003 + timestamp: 1734024480949 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: hf811eff_10 - build_number: 10 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-hf811eff_10.conda - sha256: 3fbc86e70b543f26cc485f98714b7f789c4ece05128046458681893f43b7f5f1 - md5: 5046c78dd139a333b6acd7376a10e0a7 + build: hcbd8f92_11 + build_number: 11 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-hcbd8f92_11.conda + sha256: 79aa363c71c891a27496c0498f8d498b2ddc87b3ccb3b6c9da5b50b05936ebb8 + md5: e0772c59af4243a9b2565baa5d79e5b6 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 53973 - timestamp: 1733696170256 + size: 55207 + timestamp: 1734024546663 - kind: conda name: aws-c-http version: 0.9.2 - build: h53134c8_3 - build_number: 3 + build: h3df160d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h53134c8_3.conda - sha256: a4d217f89ad0e9326da57b2d9bd4cd5cb0a95423d092be7ed81e88fb075d4dbe - md5: 2ffd03180381a92332b673cefc602234 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h3df160d_4.conda + sha256: 3a1d2d332945306be9d49e569b95e4cc172d825f10e88715513a172f28ebb59e + md5: 28f00aa7fd9556c4c461328cf146c20b depends: - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 189812 - timestamp: 1733683248290 + size: 190586 + timestamp: 1734008442362 - kind: conda name: aws-c-http version: 0.9.2 - build: hc68443d_3 - build_number: 3 + build: h96aa502_4 + build_number: 4 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-hc68443d_3.conda - sha256: 71be93cd1d8dfa5858939ba53431abaee859fbc98bdf9f5033bfa41af76b140a - md5: 6353604cb9803e63fce359388201514e + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-h96aa502_4.conda + sha256: 22e4737c8a885995b7c1ae1d79c1f6e78d489e16ec079615980fdde067aeaf76 + md5: 495c93a4f08b17deb3c04894512330e6 depends: - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 license: Apache-2.0 license_family: Apache - size: 153237 - timestamp: 1733683327609 + size: 152983 + timestamp: 1734008451473 - kind: conda name: aws-c-http version: 0.9.2 - build: hce7dc5d_3 - build_number: 3 + build: hefd7a92_4 + build_number: 4 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hce7dc5d_3.conda - sha256: 7e864b6d4255c4edbd1b2c0f519849017d2a48e54b282748eaa8f9f0fc98a6f4 - md5: c0f54e8975ad42d2864f4b1918356b3b + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hefd7a92_4.conda + sha256: 4a330206bd51148f6c13ca0b7a4db40f29a46f090642ebacdeb88b8a4abd7f99 + md5: 5ce4df662d32d3123ea8da15571b6f51 depends: - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 197506 - timestamp: 1733683203582 + size: 197731 + timestamp: 1734008380764 - kind: conda name: aws-c-io version: 0.15.3 - build: h66499f2_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-h66499f2_3.conda - sha256: 86ff175fa5dced16cf41bcc5c353de080314fcb81f4aed326f29b9f22add9aad - md5: e64159c5b106a0365544cfe9d4ef79ec + build: h92bf595_4 + build_number: 4 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h92bf595_4.conda + sha256: ffa2fc1ddb01f4b8ac038ab70a5533306119754ba438b23399f2a82a38cf27bf + md5: 539df02c00c506c78aebdf6c0fc75743 depends: - - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 136845 - timestamp: 1733588465582 + size: 161836 + timestamp: 1733997573790 - kind: conda name: aws-c-io version: 0.15.3 - build: h8aa8d47_3 - build_number: 3 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h8aa8d47_3.conda - sha256: cb08b2e9258637e810ac283600b7de2d7a68f55a61e67226e9cce2537f36a06b - md5: 8ece20a51dafae96444e90c7ddaac41a + build: haba67d1_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-haba67d1_4.conda + sha256: 2d0859b57439cd98e854577aa3e07eb171b590098d51a8c908bab5ec497a3d38 + md5: 74eace4fab8675263a848075e991d380 depends: + - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 - - s2n >=1.5.9,<1.5.10.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 161513 - timestamp: 1733588480960 + size: 136213 + timestamp: 1733997647724 - kind: conda name: aws-c-io version: 0.15.3 - build: hfd54f12_3 - build_number: 3 + build: hbf5b6a4_4 + build_number: 4 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hfd54f12_3.conda - sha256: 6d0bd78d5c7d3ec586691d54c8aebc79d089358ff9e793f0cac857a1f977a1a0 - md5: c0b9f79cd2f5797b913415511bfa2cd6 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hbf5b6a4_4.conda + sha256: 3195fe431d3c43d6ecf749796d3acb093645c9d0de9998616641dada4b5fa2a6 + md5: ad3a6713063c18b9232c48e89ada03ac depends: - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 158115 - timestamp: 1733588386529 + size: 157886 + timestamp: 1733997507332 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: h2f8d747_11 - build_number: 11 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h2f8d747_11.conda - sha256: b66de0de359bfaec5084bdc78fda6dfbd8cf8e71c68a76dcd7b74e8a00ec6052 - md5: f4ccd7c1e73c662fd9a795147ca8ca9f + build: h11f4f37_12 + build_number: 12 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h11f4f37_12.conda + sha256: 512d3969426152d9d5fd886e27b13706122dc3fa90eb08c37b0d51a33d7bb14a + md5: 96c3e0221fa2da97619ee82faa341a73 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 168898 - timestamp: 1733739548597 + size: 194672 + timestamp: 1734025626798 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: ha3c2ba9_11 - build_number: 11 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-ha3c2ba9_11.conda - sha256: 187787bb41e7b616c9317c12c32a5027aae784d1f9335f9d6d34a3fa7ebcb1ec - md5: 93c5070d6f9b4cb2ed9de52ce247cebb + build: h24f418c_12 + build_number: 12 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h24f418c_12.conda + sha256: 96575ea1dd2a9ea94763882e40a66dcbff9c41f702bf37c9514c4c719b3c11dd + md5: c072045a6206f88015d02fcba1705ea1 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 193829 - timestamp: 1733740033267 + size: 134371 + timestamp: 1734025379525 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: hd073cef_11 - build_number: 11 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-hd073cef_11.conda - sha256: d2ee2cdc651250a38f67b84ec65de3ba5493c760821d22c01edb8defd6393dc9 - md5: 0c1deb6e00f80b4aedcb2c4fcfea6407 + build: h5f50e26_12 + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h5f50e26_12.conda + sha256: ffeb9100cc8fd4093e1a6fdfd938bc4a396dd77480b7fb17aa42855a4d5e2c70 + md5: 031ca33115d4b1eeb43f435d6215778c depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 134556 - timestamp: 1733739661152 + size: 169516 + timestamp: 1734025167885 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: h55e9418_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.5-h55e9418_4.conda - sha256: 04d7fd3574fa76c184f04630125a760afa4ae5d4109eec36f22fe127cc85e164 - md5: faec629f0eb306cfe17ed1615249e188 + version: 0.7.7 + build: h1be5864_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.7-h1be5864_0.conda + sha256: 22966164d63808689fffd35945f57756c95337327e28099b5d77b29fc6a56ecc + md5: a37bba7acb62dd70492ee01eacca3b8f depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - - libgcc >=13 - - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 113811 - timestamp: 1733717653326 + size: 97598 + timestamp: 1734146239038 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: h757e810_4 - build_number: 4 + version: 0.7.7 + build: h2080895_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.5-h757e810_4.conda - sha256: 3da5e1b88d68c5cb2eb1dd898a7c6192be9e1df0bd2733d39d6c0ffe9fc546a2 - md5: 96a657e5856e9e92755170630067f63c + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.7-h2080895_0.conda + sha256: 20bc2dd60e6518d9b8215c2b652ab5c52ee8a997d3b9a5f69e2dabd28cbf26b2 + md5: ae223efa63fbb4262a2d85c3ab3bc4f5 depends: - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 @@ -1332,273 +1328,274 @@ packages: - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 117478 - timestamp: 1733717680655 + size: 117641 + timestamp: 1734146239779 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: hb201fd0_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.5-hb201fd0_4.conda - sha256: c25c62173770b681083962b497a927f306e7f3d05b459dd59e4c12eaf49e9f0b - md5: 83b9775bbe5419cf4916e646e870b87a + version: 0.7.7 + build: hf454442_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.7-hf454442_0.conda + sha256: c2f205a7bf64c5f40eea373b3a0a7c363c9aa9246a13dd7f3d9c6a4434c4fe2d + md5: 947c82025693bebd557f782bb5d6b469 depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 + - libgcc >=13 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 97441 - timestamp: 1733717822438 + size: 114156 + timestamp: 1734146123386 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h10558d5_3 - build_number: 3 + build: h0f0193d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h10558d5_3.conda - sha256: 0f6a15d711bc4d6b2d2b8451ad46bf78af6876235ad56bf142644a4ce2240f52 - md5: 1ba505fc4243ad75507efa8976e1790f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h0f0193d_4.conda + sha256: ede8e782467c87ac80ceb9c9af9e917d121b7d8b8c698186d18e3cecd36f2210 + md5: 53e798d720dd78b78847a7b2fdb05fc9 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 58123 - timestamp: 1733398238726 + size: 58621 + timestamp: 1733994421495 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h4d88cd7_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h4d88cd7_3.conda - sha256: a94ecde4e61de8effd9c93ba3527eb010773b5422d2d079ffdcd796ec77fcd4e - md5: 5ec333d73530fbfc2db670eeb6911bff + build: h4e1184b_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h4e1184b_4.conda + sha256: df586f42210af1134b1c88ff4c278c3cb6d6c807c84eac48860062464b28554d + md5: a5126a90e74ac739b00564a4c7ddcc36 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 49739 - timestamp: 1733398400904 + size: 56094 + timestamp: 1733994449690 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h9cc6398_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h9cc6398_3.conda - sha256: 917f679da38f162e191c5d6817b35fbf2ae0584b1d335bc229fd01e6077108ee - md5: 10bdb7fc3763760dcea1cd908ece6b2b + build: hc8a0bd2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-hc8a0bd2_4.conda + sha256: de98343ce42d2e569b3380292d20f47bf39bda08aadabcbb8e650d3f38fd742f + md5: 22f72f8cd7ead211304ac17d337d96e0 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 55864 - timestamp: 1733398187914 + size: 49664 + timestamp: 1733994553014 - kind: conda name: aws-checksums version: 0.2.2 - build: h10558d5_3 - build_number: 3 + build: h0f0193d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h10558d5_3.conda - sha256: 108860ae5d61a4dc0b0d91282d0171ba7fd69686c11b4bcbdcd3f8b8efc98adb - md5: 1ded47669f79301e4a3d1d3d469494c0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h0f0193d_4.conda + sha256: 9f1e3635a587bcf92b61d88c7af7d24cd89c147c6d0ae58afbde08e65bcf48da + md5: 3bd35b0adab3d743f09e0252cc441d6b depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72203 - timestamp: 1733398350602 + size: 72154 + timestamp: 1733994384415 - kind: conda name: aws-checksums version: 0.2.2 - build: h4d88cd7_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h4d88cd7_3.conda - sha256: 7d0d71e399fa6b0a1e686470d4a982396a9d0d29be29bf07591d83739cc29a0a - md5: 45409e27b510588196b9f116f86c2d51 + build: h4e1184b_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h4e1184b_4.conda + sha256: 1ed9a332d06ad595694907fad2d6d801082916c27cd5076096fda4061e6d24a8 + md5: 74e8c3e4df4ceae34aa2959df4b28101 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 70160 - timestamp: 1733398484776 + size: 72762 + timestamp: 1733994347547 - kind: conda name: aws-checksums version: 0.2.2 - build: h9cc6398_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h9cc6398_3.conda - sha256: a3aea2fc8ccf85ae64c5ce9c4e507be37173b94909191480e5151c482a220e40 - md5: d6dd8b87b95195d8d26893611d94ba3b + build: hc8a0bd2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-hc8a0bd2_4.conda + sha256: 215086d95e8ff1d3fcb0197ada116cc9d7db1fdae7573f5e810d20fa9215b47c + md5: e70e88a357a3749b67679c0788c5b08a depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 72681 - timestamp: 1733398331530 + size: 70186 + timestamp: 1733994496998 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hb9a023b_5 - build_number: 5 + build: h19a973c_7 + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-hb9a023b_5.conda - sha256: d1d89918a1f6e08f16275d82218b2f73012cee2def3ad8f1a8d28af7497e66cc - md5: 70a976e616535dbab5e1f354734a238a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-h19a973c_7.conda + sha256: 8269e6746eb3a5d15b732a3983888bf98dfc1f6594e95250fc8d16b43cfd5ff9 + md5: 95714136bef3e917bd5a2942d4682b20 depends: - __osx >=11.0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 236182 - timestamp: 1733767086227 + size: 236249 + timestamp: 1734178020924 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hc8d91e0_5 - build_number: 5 + build: h8a4e35f_7 + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-hc8d91e0_5.conda - sha256: c3be4f3f77ac7ba716228df1099eb68a5e7a4cbbe386a4732a28f33d6b780cc4 - md5: 8f14e3d651a08c9b2f85c6e5d359e250 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-h8a4e35f_7.conda + sha256: 5ba9188e0cb4e3faff9bc96774febb040aa3b802aedba29d847e00e7b5eab84e + md5: d77a9e3d7ce15399903e92825fd651b5 depends: - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 284313 - timestamp: 1733766768643 + size: 283154 + timestamp: 1734177845248 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hed26007_5 - build_number: 5 + build: hd92328a_7 + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hed26007_5.conda - sha256: f996cb94f3ef212792f288a0f7c5201ac7f00bb43502702b76e408e50d80132f - md5: 7c64e4ac7a484fc525a4ce7b9baf709a + url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hd92328a_7.conda + sha256: 094cd81f1e5ba713e9e7a272ee52b5dde3ccc4842ea90f19c0354a00bbdac3d9 + md5: 02b95564257d5c3db9c06beccf711f95 depends: - __glibc >=2.17,<3.0.a0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 354783 - timestamp: 1733766766977 + size: 354703 + timestamp: 1734177883319 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h2d3f608_3 - build_number: 3 + build: h849ce1a_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h2d3f608_3.conda - sha256: b335dfee7b04117ddae857564300ed6795718e2305141c7d631dcc434503a261 - md5: 57bdfac803ce58e3a3256752d7e5aa6e + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h849ce1a_4.conda + sha256: 51b9e9df8cbab4a13a1b9d39d6ef5ed162aaa29c09a745810e00bbe92e1045c1 + md5: cda7747f4398be8d1fb37362815917a7 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 + - libcurl >=8.11.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2896174 - timestamp: 1733808114676 + size: 2920625 + timestamp: 1734093552712 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h39838b8_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-h39838b8_3.conda - sha256: b5ef3a956937d61b59b9dd4b8c23eeb0bc254c37a97028a50c3ff6c8df399deb - md5: 3a6c8f65692febdf791bece561b371c8 + build: hc430e4a_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-hc430e4a_4.conda + sha256: 2dc09f6f9c49127b5f96e7535b64a9c521b944d76d8b7d03d48ae80257ac1cea + md5: aeefac461bea1f126653c1285cf5af08 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 - - libcxx >=18 + - libcurl >=8.11.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2837854 - timestamp: 1733808787914 + size: 3060561 + timestamp: 1734093737431 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h571fd1c_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-h571fd1c_3.conda - sha256: c2f38374a6f4dd804f76c8a071bc7f7d37dfb43e194eb93a473ff789460c011b - md5: 374cf1add8af327b15b1b1e4873f4955 + build: he0ff2e4_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-he0ff2e4_4.conda + sha256: 535b970aaa13be45f8cab8205c59f044b17364111c41a227f061775a5c834e18 + md5: 0981ed87098b149bdb7d99a4a3fd0e58 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 - - libgcc >=13 - - libstdcxx >=13 + - libcurl >=8.11.1,<9.0a0 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 3062994 - timestamp: 1733808211748 + size: 2826534 + timestamp: 1734094018287 - kind: conda name: azure-core-cpp version: 1.14.0 @@ -3795,65 +3792,65 @@ packages: timestamp: 1633683992603 - kind: conda name: libcurl - version: 8.10.1 - build: h13a7ad3_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda - sha256: 983a977c5627f975a930542c8aabb46089ec6ea72f28d9c4d3ee8eafaf2fc25a - md5: d84030d0863ffe7dea00b9a807fee961 + version: 8.11.1 + build: h332b0f4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda + sha256: 3cd4075b2a7b5562e46c8ec626f6f9ca57aeecaa94ff7df57eca26daa94c9906 + md5: 2b3e0081006dc21e8bf53a91c83a055c depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - krb5 >=1.21.3,<1.22.0a0 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libgcc >=13 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 379948 - timestamp: 1726660033582 + size: 423011 + timestamp: 1733999897624 - kind: conda name: libcurl - version: 8.10.1 - build: h3ec0cbf_0 + version: 8.11.1 + build: h6702fde_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda - sha256: 7c4983001c727f713b4448280ed4803d301087c184cd2819ba0b788ca62b73d1 - md5: f43539295c4e0cd15202d41bc72b8a26 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.11.1-h6702fde_0.conda + sha256: 9fc65d21a58f4aad1bc39dfb94a178893aeb035850c5cf0ed9736674279f390b + md5: 7dec1cd271c403d1636bda5aa388a55d depends: - krb5 >=1.21.3,<1.22.0a0 - libgcc >=13 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 439171 - timestamp: 1726659843118 + size: 440737 + timestamp: 1733999835504 - kind: conda name: libcurl - version: 8.10.1 - build: hbbe4b11_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda - sha256: 54e6114dfce566c3a22ad3b7b309657e3600cdb668398e95f1301360d5d52c99 - md5: 6e801c50a40301f6978c53976917b277 + version: 8.11.1 + build: h73640d1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.11.1-h73640d1_0.conda + sha256: f47c35938144c23278987c7d12096f6a42d7c850ffc277222b032073412383b6 + md5: 46d7524cabfdd199bffe63f8f19a552b depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - krb5 >=1.21.3,<1.22.0a0 - - libgcc >=13 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 424900 - timestamp: 1726659794676 + size: 385098 + timestamp: 1734000160270 - kind: conda name: libcxx version: 19.1.5 @@ -5905,76 +5902,76 @@ packages: timestamp: 1733220925299 - kind: conda name: max - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - sha256: c53b72587f9fa54a9b0f5cb5345e772711cb0779610100ab4389b1f312a7ebc7 - md5: b91bff8456bcd2fd2aada4bafa51a358 - depends: - - max-core ==25.1.0.dev2024121105 release - - max-python >=25.1.0.dev2024121105,<26.0a0 - - mojo-jupyter ==25.1.0.dev2024121105 release - - mblack ==25.1.0.dev2024121105 release + url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + sha256: 6bacaa1d4f27d255a4c3907c28929865eeef5d45d64d61c3991b526aee14766d + md5: 1aec535b4731af73dd1b43472e7b6fa0 + depends: + - max-core ==25.1.0.dev2024121405 release + - max-python >=25.1.0.dev2024121405,<26.0a0 + - mojo-jupyter ==25.1.0.dev2024121405 release + - mblack ==25.1.0.dev2024121405 release license: LicenseRef-Modular-Proprietary - size: 9923 - timestamp: 1733894234676 + size: 9921 + timestamp: 1734153430066 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121105-release.conda - sha256: 23a9b3a31eddf232c2d91b45362eb79b0a8dfd4842e7d41f2719aa40bc53c37a - md5: c95a33b823ca2f36431033c1122212ba + url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121405-release.conda + sha256: 14f953430105c8f2bb8f3bdf1e3fb7e9acbb20613ad47c9ac1e88462e0cc804d + md5: d88d69b1696ed9d5795c8d346bbd4311 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 247768202 - timestamp: 1733894244133 + size: 245597032 + timestamp: 1734153445516 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121105-release.conda - sha256: 22bb680d1e11a3640ae28b9d9faafa089b92a2fd6474ebdcc6b5c0e4da618664 - md5: 6e976d732a16860852a22686f7334ce4 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121405-release.conda + sha256: e3936f8021fc72f7f2673e2653e7bbd3d325fb44818b868bb49c24e5c1766eaf + md5: ea674f5d9232d89046ad99090cc195a7 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 251679560 - timestamp: 1733894234674 + size: 249408423 + timestamp: 1734153430064 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121105-release.conda - sha256: 5733d843377af66e94de2dd91cd8872d8f49baac81c6120ce2294a866d2f227f - md5: 84d6da2eb7585c49e1f71deec028c11a + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121405-release.conda + sha256: b6bb97d20f0f7371a647778d18fe78f839e37eef423542ae3f4e75b018ffd8db + md5: 0e2d8c487ef68866164af9dff49f5119 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 212215227 - timestamp: 1733894448570 + size: 214323771 + timestamp: 1734153633668 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.11release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121105-3.11release.conda - sha256: 904ca17c0fee00733ca99428389e1710336ac34e0241a226ffc8d32bc5c54865 - md5: 3db74bf0ad5e48aeda0116f6206891f7 + url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121405-3.11release.conda + sha256: 502b2762fa8c3c8323c0bc808d20b0b362625e4f14774092b14e059e839553f7 + md5: 4a6c3363d9f3bd1ae8bee0c6f6aa055d depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.11.* - fastapi - httpx @@ -5997,18 +5994,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 123931619 - timestamp: 1733894244140 + size: 122849243 + timestamp: 1734153445523 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.11release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121105-3.11release.conda - sha256: db33e9554a5f4cfe9260b8e32c5abee2f58cf32ec62daecc737c57212ca95eae - md5: 6cbaa5d456908961d8c7de2d6f2f8e0d + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121405-3.11release.conda + sha256: e44d87b086bfeb4de11ba726e3798bb1378c4aaeaca827c286b5f5863bd4bf35 + md5: c4ba0fecf0e7f2c6ccdd888380279c3e depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.11.* - fastapi - httpx @@ -6031,18 +6028,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 127581438 - timestamp: 1733894234682 + size: 126602880 + timestamp: 1734153430072 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.11release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121105-3.11release.conda - sha256: 38151b14b19c0b000215b4360f445afbeddf072eb65440b73a52d2e74f33a787 - md5: aa8ff7f500e2668163a295dffb7a51cb + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121405-3.11release.conda + sha256: 9200599e66ff284e1a8c5dada708e38514aec5765d4e3877203dc467e547f786 + md5: 8bba2a833d2fc758ff8ede3428fa9595 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.11.* - fastapi - httpx @@ -6065,17 +6062,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 112583374 - timestamp: 1733894448572 + size: 113433542 + timestamp: 1734153633670 - kind: conda name: mblack - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda - sha256: ee5c623d7908731bc5c42079cbb5d7ac461481c5bcaf615e25c4c8263f041793 - md5: 1271b7b52a8cc538e26ffbdd22743d3a + url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda + sha256: ea23ea9fdb019aa4dc05bcb1d1f526f77ce90a94baa3130d26ce71cad0a3647b + md5: 425b85251efa151234c9db33428ee55c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -6085,8 +6082,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130789 - timestamp: 1733894234681 + size: 130792 + timestamp: 1734153430070 - kind: conda name: mdurl version: 0.1.2 @@ -6105,21 +6102,21 @@ packages: timestamp: 1733255681319 - kind: conda name: mojo-jupyter - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda - sha256: c59130a6e8190e55b8881bd43429377da5368df6afed78b04c8df236d253a047 - md5: 35cc55bad72e3b9d0d490ff7af58c446 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda + sha256: b232fe63e84736d519137d4c98067c886f8acc1cc38a6620a062f4eb079e751a + md5: b7d7fe85425c5120a665795eb2097aa9 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22932 - timestamp: 1733894234682 + size: 22934 + timestamp: 1734153430071 - kind: conda name: multidict version: 6.1.0 @@ -7246,22 +7243,20 @@ packages: timestamp: 1732254154568 - kind: conda name: pydantic-settings - version: 2.6.1 - build: pyh3cfb1c2_1 - build_number: 1 + version: 2.7.0 + build: pyh3cfb1c2_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda - sha256: 8cc37e827f0098d07743f57f968283cefce6c11562d9241aba990acc23aedb56 - md5: deabf8afc8d987f20174ef0d8d9b549e + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda + sha256: dd1ac7c8b6a189c8aa18f6c7df019d8f6df495300a259e3fbebdb542fc955c3b + md5: d9f19a7c4199249fa229891b573b6f9b depends: - pydantic >=2.7.0 - python >=3.9 - python-dotenv >=0.21.0 license: MIT - license_family: MIT - size: 30832 - timestamp: 1733851937909 + size: 31426 + timestamp: 1734127929720 - kind: conda name: pygments version: 2.18.0 @@ -8385,19 +8380,20 @@ packages: - kind: conda name: transformers version: 4.47.0 - build: pyhd8ed1ab_0 + build: pyhd8ed1ab_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda - sha256: b9cf6ae5fcd6c78dcaa24ebfd41580a4a10b0649ac726a44d3521f70fdece218 - md5: 495745078b8e18fe2dcc3267f4baae0d + url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda + sha256: d31821081219a0ede5c1f356b65a61ce98ac11e2df78b0eaa684c17c73389fbf + md5: 6d2ec1ddee8057d2d724a0ab0bb578a0 depends: - datasets !=2.5.0 - filelock - huggingface_hub >=0.23.0,<1.0 - numpy >=1.17 - packaging >=20.0 - - python >=3.8 + - python >=3.9 - pyyaml >=5.1 - regex !=2019.12.17 - requests @@ -8406,8 +8402,8 @@ packages: - tqdm >=4.27 license: Apache-2.0 license_family: APACHE - size: 3721837 - timestamp: 1733708797762 + size: 3726957 + timestamp: 1733948063517 - kind: conda name: typer version: 0.15.1 @@ -8625,12 +8621,12 @@ packages: timestamp: 1730214665776 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py311h0ca61a2_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.0-py311h0ca61a2_0.conda - sha256: f47575a2e455d12bd0471a2447cb2a514d183ed84bbc12a2250a9ad87484b682 - md5: a1f03b837b9b1be1cff6765e3002e983 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.3-py311h0ca61a2_0.conda + sha256: acf468cfad74bc894c0f7263c7390b7b2dfe7f72c7f698a698caad2deb532c7d + md5: 02d887d09e56a37b7416c2c1da6ef8c9 depends: - anyio >=3.0.0 - libgcc >=13 @@ -8641,16 +8637,16 @@ packages: - __glibc >=2.17 license: MIT license_family: MIT - size: 405692 - timestamp: 1732689662727 + size: 404921 + timestamp: 1733998940737 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py311h3ff9189_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.0-py311h3ff9189_0.conda - sha256: cf1514bb697ac6db69a1b9a3e43a8789054cf02df3baefa1a5ea946296552ca5 - md5: 2a2e657bc8ef45ccd757e432d81e209d + url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.3-py311h3ff9189_0.conda + sha256: 86f7ebe3cfb503fb2c80f040e03d039e3b552ac5893cd8e82225c966bac07c44 + md5: bd5b2b35eb23cfcb48be31527ff49944 depends: - __osx >=11.0 - anyio >=3.0.0 @@ -8661,16 +8657,16 @@ packages: - __osx >=11.0 license: MIT license_family: MIT - size: 357633 - timestamp: 1732689799347 + size: 366312 + timestamp: 1733999050046 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py311h9e33e62_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.0-py311h9e33e62_0.conda - sha256: a34479c60b23b7b9465aa547891d9e18bffec5b6e56e9f24634491bc71d3c5a5 - md5: 02aaa195aada560b5402a45e5bbece96 + url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.3-py311h9e33e62_0.conda + sha256: 066f5725b576dca7a1f5dfafca055836a199f9db97435e2ceca84e6296fc8358 + md5: 558a9c46ef5db2f3a6f425228bc77d43 depends: - __glibc >=2.17,<3.0.a0 - anyio >=3.0.0 @@ -8681,8 +8677,8 @@ packages: - __glibc >=2.17 license: MIT license_family: MIT - size: 409759 - timestamp: 1732689546491 + size: 410904 + timestamp: 1733998882176 - kind: conda name: websockets version: '14.1' diff --git a/examples/notebooks/magic.lock b/examples/notebooks/magic.lock index 7661304812..1d42a623d1 100644 --- a/examples/notebooks/magic.lock +++ b/examples/notebooks/magic.lock @@ -19,19 +19,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h8c8080f_14.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h0f28dba_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.5-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h9cc6398_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-hf811eff_10.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hce7dc5d_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hfd54f12_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-ha3c2ba9_11.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.5-h55e9418_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h9cc6398_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h9cc6398_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hed26007_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-h571fd1c_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb921021_15.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h1a47875_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.6-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h4e1184b_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h7959bf6_11.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hefd7a92_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hbf5b6a4_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h11f4f37_12.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.7-hf454442_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h4e1184b_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h4e1184b_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hd92328a_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-hc430e4a_4.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 @@ -54,7 +54,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.9-py312h2ec8cdc_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.11-py312h2ec8cdc_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_1.conda - 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.15-pyhd8ed1ab_1.conda @@ -121,7 +121,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.22-hb9d3cd8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda @@ -166,13 +166,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py312h98912ed_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -218,7 +218,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.1-py312h12e396e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - 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-pyha55dd90_7.conda @@ -264,7 +264,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -278,7 +278,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.21.0-py312h66e93f0_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.0-py312h12e396e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.3-py312h12e396e_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda @@ -308,19 +308,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hb4dd4bb_14.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h1aca5b9_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.5-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h10558d5_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-ha9733bd_10.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h53134c8_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h8aa8d47_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h2f8d747_11.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.5-h757e810_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h10558d5_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h10558d5_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-hc8d91e0_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h2d3f608_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-h2cb9fb3_15.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h740c5af_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.6-h86ecc28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h0f0193d_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-hcbd8f92_11.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h3df160d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h92bf595_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h5f50e26_12.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.7-h2080895_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h0f0193d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h0f0193d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-h8a4e35f_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h849ce1a_4.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 @@ -343,7 +343,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.9-py312h6f74592_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.11-py312h6f74592_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_1.conda - 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.15-pyhd8ed1ab_1.conda @@ -411,7 +411,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.11.1-h6702fde_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.22-h86ecc28_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda @@ -456,13 +456,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py312hdd3e373_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -508,7 +508,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.1-py312h8cbf658_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - 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-pyha55dd90_7.conda @@ -554,7 +554,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4.2-py312h52516f5_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -568,7 +568,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/uvloop-0.21.0-py312hb2c0f52_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.0-py312h8cbf658_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.3-py312h8cbf658_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda @@ -598,19 +598,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/asttokens-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/async-lru-2.0.4-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h93897a1_14.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-h4d88cd7_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.5-h5505292_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h4d88cd7_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h9fa824c_10.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-hc68443d_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-h66499f2_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-hd073cef_11.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.5-hb201fd0_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h4d88cd7_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h4d88cd7_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-hb9a023b_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-h39838b8_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h8bc59a9_15.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-hc8a0bd2_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.6-h5505292_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-hc8a0bd2_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h54f970a_11.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-h96aa502_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-haba67d1_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h24f418c_12.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.7-h1be5864_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-hc8a0bd2_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-hc8a0bd2_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-h19a973c_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-he0ff2e4_4.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 @@ -633,7 +633,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/comm-0.2.2-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/datasets-2.14.4-pyhd8ed1ab_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.9-py312hd8f9ff3_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.11-py312hd8f9ff3_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/decorator-5.1.1-pyhd8ed1ab_1.conda - 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.15-pyhd8ed1ab_1.conda @@ -699,7 +699,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda - 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/libcurl-8.11.1-h73640d1_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.5-ha82da77_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.22-hd74edd7_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 @@ -738,13 +738,13 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312h998013c_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/matplotlib-inline-0.1.7-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-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/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -790,7 +790,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.1-py312hcd83bfe_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyinstrument-5.0.0-py312h0bf5046_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-core-10.3.2-py312hb9d441b_0.conda @@ -837,7 +837,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.2-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -851,7 +851,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.21.0-py312h0bf5046_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.0-py312hcd83bfe_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.3-py312hcd83bfe_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/wcwidth-0.2.13-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/webcolors-24.11.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/webencodings-0.5.1-pyhd8ed1ab_3.conda @@ -1224,469 +1224,465 @@ packages: - kind: conda name: aws-c-auth version: 0.8.0 - build: h8c8080f_14 - build_number: 14 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h8c8080f_14.conda - sha256: 7a9f7763e3a151ae1008ead51458f9b889b657f388266d53c6f7fa383dbb2481 - md5: a9284141081982473ebf41b92566bbcb + build: h2cb9fb3_15 + build_number: 15 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-h2cb9fb3_15.conda + sha256: 4ce859dc9ff128bf5515604c43f33fb511386022fc9765ca077990f2a3f23df5 + md5: e524686ace966acefb5b8cbc6e8b3daa depends: - - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 107775 - timestamp: 1733709347751 + size: 111854 + timestamp: 1734021745104 - kind: conda name: aws-c-auth version: 0.8.0 - build: h93897a1_14 - build_number: 14 + build: h8bc59a9_15 + build_number: 15 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h93897a1_14.conda - sha256: 3ec33500c5def035acb9ba406161f5452e39b1b818c67d8a56103d6def47bda6 - md5: 061e221dc5cca62be8fab49a16bfb99d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h8bc59a9_15.conda + sha256: 0e41e56b662e76e024182adebcd91d09a4d38a83b35217c84e4967354dfff9a2 + md5: f688b8893c20ad9477a19e7ce614014a depends: - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 license: Apache-2.0 license_family: Apache - size: 92250 - timestamp: 1733709418870 + size: 92507 + timestamp: 1734021831330 - kind: conda name: aws-c-auth version: 0.8.0 - build: hb4dd4bb_14 - build_number: 14 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hb4dd4bb_14.conda - sha256: a9622ac836bbe4a24310e0e77a42ef0a17e5fa0703276f8bbbef945deaca337c - md5: a5b86123507e184fb4463e1f8890b398 + build: hb921021_15 + build_number: 15 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb921021_15.conda + sha256: 537006ad6d5097c134494166a6a1dc1451d5d050878d7b82cef498bfda40ba8a + md5: c79d50f64cffa5ad51ecc1a81057962f depends: + - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 111975 - timestamp: 1733709317063 + size: 107614 + timestamp: 1734021692519 - kind: conda name: aws-c-cal version: 0.8.1 - build: h0f28dba_2 - build_number: 2 + build: h1a47875_3 + build_number: 3 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h0f28dba_2.conda - sha256: 023fa0d0618b652b0be5eac73d92fd47136351da7d331334c45d5dd1ee760401 - md5: 94faebd978282d2a4a8514141daec756 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h1a47875_3.conda + sha256: 095ac824ea9303eff67e04090ae531d9eb33d2bf8f82eaade39b839c421e16e8 + md5: 55a8561fdbbbd34f50f57d9be12ed084 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 47694 - timestamp: 1733390870810 + size: 47601 + timestamp: 1733991564405 - kind: conda name: aws-c-cal version: 0.8.1 - build: h1aca5b9_2 - build_number: 2 + build: h740c5af_3 + build_number: 3 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h1aca5b9_2.conda - sha256: df203473e8675fc27ae5cb62bc09e336fe92655df0a0056e73087cb22aed287e - md5: 31d9e82aac5cd3fe399535bcec0f2975 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h740c5af_3.conda + sha256: c5c7961d48ca7320ed3560c036f7aa5244df4b85d9657f70aacc5faba3e1509a + md5: 57ed2c445d7ef01d121b9bcea0522913 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 49822 - timestamp: 1733390907734 + size: 50036 + timestamp: 1733991581303 - kind: conda name: aws-c-cal version: 0.8.1 - build: h4d88cd7_2 - build_number: 2 + build: hc8a0bd2_3 + build_number: 3 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-h4d88cd7_2.conda - sha256: 30e6bc4feea78a280553b084a960515e550dabfae0e63ba511be773c3a9f6b5a - md5: 3cb07f08e5aabe657b0b5fb13945e79a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-hc8a0bd2_3.conda + sha256: 1f44be36e1daa17b4b081debb8aee492d13571084f38b503ad13e869fef24fe4 + md5: 8b0ce61384e5a33d2b301a64f3d22ac5 depends: - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 39878 - timestamp: 1733390962202 + size: 39925 + timestamp: 1733991649383 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: h5505292_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.5-h5505292_0.conda - sha256: 54554886028d25b5c752369e7ae8321852e875fdc780ff9357b72a31f3e5d5b4 - md5: 49f049f8b10cf8c2c5a26660854fd21a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.6-h5505292_0.conda + sha256: 3bde135c8e74987c0f79ecd4fa17ec9cff0d658b3090168727ca1af3815ae57a + md5: 145e5b4c9702ed279d7d68aaf096f77d depends: - __osx >=11.0 license: Apache-2.0 license_family: Apache - size: 222184 - timestamp: 1733324871298 + size: 221863 + timestamp: 1733975576886 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: h86ecc28_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.5-h86ecc28_0.conda - sha256: bdea66b7be9acd463bbfd583d2f80ff676d376c60480a2d3f9f7de7b4bf6d2b2 - md5: fcd238b0cc98927742a96aa411123e32 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.6-h86ecc28_0.conda + sha256: 57288ec5df35781bea8fc6a8c9099cad6695b747784fc1b8862a0f9e5b3bf5ab + md5: fef806a0f6de853670c746bbece01966 depends: - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 258257 - timestamp: 1733324684433 + size: 259031 + timestamp: 1733975520465 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: hb9d3cd8_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.5-hb9d3cd8_0.conda - sha256: 93e83e2a31f41bac2aa5eae8fbc7f1d31449a04a3df8a64ebcac2433f52a86ad - md5: d8288fbad9d809b9ca139b8beb6553ef + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.6-hb9d3cd8_0.conda + sha256: 496e92f2150fdc351eacf6e236015deedb3d0d3114f8e5954341cbf9f3dda257 + md5: d7d4680337a14001b0e043e96529409b depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 237114 - timestamp: 1733324723318 + size: 236574 + timestamp: 1733975453350 - kind: conda name: aws-c-compression version: 0.3.0 - build: h10558d5_4 - build_number: 4 + build: h0f0193d_5 + build_number: 5 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h10558d5_4.conda - sha256: 45ea74461b6a5453325db2201ba9f728f20e89ead17730e93ddd7411a833c058 - md5: 8ceaf4396978c33bc695129425f12734 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h0f0193d_5.conda + sha256: 3f05d19f68ef800f33d44ea2a4211003124076516c8469abc7d432236344df53 + md5: 3a1421d12435df5b4c412cc4c8fac64d depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 19742 - timestamp: 1733391062884 + size: 19740 + timestamp: 1733991625201 - kind: conda name: aws-c-compression version: 0.3.0 - build: h4d88cd7_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h4d88cd7_4.conda - sha256: b6900e82b553d18d5528322de236af3a7f64ccb3df08e8320142894144a5c716 - md5: 8c67ff0c68aea28be3efec6f8d799a19 + build: h4e1184b_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h4e1184b_5.conda + sha256: 62ca84da83585e7814a40240a1e750b1563b2680b032a471464eccc001c3309b + md5: 3f4c1197462a6df2be6dc8241828fe93 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 18219 - timestamp: 1733391126008 + size: 19086 + timestamp: 1733991637424 - kind: conda name: aws-c-compression version: 0.3.0 - build: h9cc6398_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h9cc6398_4.conda - sha256: 045a3231b0aacb544ea9e348c22f863d96631f14a3a2b59413a72f61259a32a4 - md5: 076717670d5406e90070120314ff9b4f + build: hc8a0bd2_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-hc8a0bd2_5.conda + sha256: 47b2813f652ce7e64ac442f771b2a5f7d4af4ad0d07ff51f6075ea80ed2e3f09 + md5: a8b6c17732d14ed49d0e9b59c43186bc depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 19029 - timestamp: 1733390975089 + size: 18068 + timestamp: 1733991869211 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: h9fa824c_10 - build_number: 10 + build: h54f970a_11 + build_number: 11 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h9fa824c_10.conda - sha256: 12f2ccc71bb993934cc489af359cb7399f671c3111f64fe2be9c8231819e11bd - md5: 9f6a7984f9ce3c6149fa36865060928a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h54f970a_11.conda + sha256: f0667935f4e0d4c25e0e51da035640310b5ceeb8f723156734439bde8b848d7d + md5: ba41238f8e653998d7d2f42e3a8db054 depends: - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 47460 - timestamp: 1733696263921 + size: 47078 + timestamp: 1734024749727 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: ha9733bd_10 - build_number: 10 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-ha9733bd_10.conda - sha256: e8189bdd1af1a3f68a460bcb3c852193cfdf7afa2f1a82d687d30055242b20e2 - md5: cb0877c6fcc93454f221ba4eba798cfc + build: h7959bf6_11 + build_number: 11 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h7959bf6_11.conda + sha256: 10d7240c7db0c941fb1a59c4f8ea6689a434b03309ee7b766fa15a809c553c02 + md5: 9b3fb60fe57925a92f399bc3fc42eccf depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 55066 - timestamp: 1733696212604 + size: 54003 + timestamp: 1734024480949 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: hf811eff_10 - build_number: 10 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-hf811eff_10.conda - sha256: 3fbc86e70b543f26cc485f98714b7f789c4ece05128046458681893f43b7f5f1 - md5: 5046c78dd139a333b6acd7376a10e0a7 + build: hcbd8f92_11 + build_number: 11 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-hcbd8f92_11.conda + sha256: 79aa363c71c891a27496c0498f8d498b2ddc87b3ccb3b6c9da5b50b05936ebb8 + md5: e0772c59af4243a9b2565baa5d79e5b6 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 53973 - timestamp: 1733696170256 + size: 55207 + timestamp: 1734024546663 - kind: conda name: aws-c-http version: 0.9.2 - build: h53134c8_3 - build_number: 3 + build: h3df160d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h53134c8_3.conda - sha256: a4d217f89ad0e9326da57b2d9bd4cd5cb0a95423d092be7ed81e88fb075d4dbe - md5: 2ffd03180381a92332b673cefc602234 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h3df160d_4.conda + sha256: 3a1d2d332945306be9d49e569b95e4cc172d825f10e88715513a172f28ebb59e + md5: 28f00aa7fd9556c4c461328cf146c20b depends: - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 189812 - timestamp: 1733683248290 + size: 190586 + timestamp: 1734008442362 - kind: conda name: aws-c-http version: 0.9.2 - build: hc68443d_3 - build_number: 3 + build: h96aa502_4 + build_number: 4 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-hc68443d_3.conda - sha256: 71be93cd1d8dfa5858939ba53431abaee859fbc98bdf9f5033bfa41af76b140a - md5: 6353604cb9803e63fce359388201514e + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-h96aa502_4.conda + sha256: 22e4737c8a885995b7c1ae1d79c1f6e78d489e16ec079615980fdde067aeaf76 + md5: 495c93a4f08b17deb3c04894512330e6 depends: - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 license: Apache-2.0 license_family: Apache - size: 153237 - timestamp: 1733683327609 + size: 152983 + timestamp: 1734008451473 - kind: conda name: aws-c-http version: 0.9.2 - build: hce7dc5d_3 - build_number: 3 + build: hefd7a92_4 + build_number: 4 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hce7dc5d_3.conda - sha256: 7e864b6d4255c4edbd1b2c0f519849017d2a48e54b282748eaa8f9f0fc98a6f4 - md5: c0f54e8975ad42d2864f4b1918356b3b + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hefd7a92_4.conda + sha256: 4a330206bd51148f6c13ca0b7a4db40f29a46f090642ebacdeb88b8a4abd7f99 + md5: 5ce4df662d32d3123ea8da15571b6f51 depends: - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 197506 - timestamp: 1733683203582 + size: 197731 + timestamp: 1734008380764 - kind: conda name: aws-c-io version: 0.15.3 - build: h66499f2_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-h66499f2_3.conda - sha256: 86ff175fa5dced16cf41bcc5c353de080314fcb81f4aed326f29b9f22add9aad - md5: e64159c5b106a0365544cfe9d4ef79ec + build: h92bf595_4 + build_number: 4 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h92bf595_4.conda + sha256: ffa2fc1ddb01f4b8ac038ab70a5533306119754ba438b23399f2a82a38cf27bf + md5: 539df02c00c506c78aebdf6c0fc75743 depends: - - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 136845 - timestamp: 1733588465582 + size: 161836 + timestamp: 1733997573790 - kind: conda name: aws-c-io version: 0.15.3 - build: h8aa8d47_3 - build_number: 3 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h8aa8d47_3.conda - sha256: cb08b2e9258637e810ac283600b7de2d7a68f55a61e67226e9cce2537f36a06b - md5: 8ece20a51dafae96444e90c7ddaac41a + build: haba67d1_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-haba67d1_4.conda + sha256: 2d0859b57439cd98e854577aa3e07eb171b590098d51a8c908bab5ec497a3d38 + md5: 74eace4fab8675263a848075e991d380 depends: + - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 - - s2n >=1.5.9,<1.5.10.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 161513 - timestamp: 1733588480960 + size: 136213 + timestamp: 1733997647724 - kind: conda name: aws-c-io version: 0.15.3 - build: hfd54f12_3 - build_number: 3 + build: hbf5b6a4_4 + build_number: 4 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hfd54f12_3.conda - sha256: 6d0bd78d5c7d3ec586691d54c8aebc79d089358ff9e793f0cac857a1f977a1a0 - md5: c0b9f79cd2f5797b913415511bfa2cd6 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hbf5b6a4_4.conda + sha256: 3195fe431d3c43d6ecf749796d3acb093645c9d0de9998616641dada4b5fa2a6 + md5: ad3a6713063c18b9232c48e89ada03ac depends: - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 158115 - timestamp: 1733588386529 + size: 157886 + timestamp: 1733997507332 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: h2f8d747_11 - build_number: 11 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h2f8d747_11.conda - sha256: b66de0de359bfaec5084bdc78fda6dfbd8cf8e71c68a76dcd7b74e8a00ec6052 - md5: f4ccd7c1e73c662fd9a795147ca8ca9f + build: h11f4f37_12 + build_number: 12 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h11f4f37_12.conda + sha256: 512d3969426152d9d5fd886e27b13706122dc3fa90eb08c37b0d51a33d7bb14a + md5: 96c3e0221fa2da97619ee82faa341a73 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 168898 - timestamp: 1733739548597 + size: 194672 + timestamp: 1734025626798 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: ha3c2ba9_11 - build_number: 11 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-ha3c2ba9_11.conda - sha256: 187787bb41e7b616c9317c12c32a5027aae784d1f9335f9d6d34a3fa7ebcb1ec - md5: 93c5070d6f9b4cb2ed9de52ce247cebb + build: h24f418c_12 + build_number: 12 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h24f418c_12.conda + sha256: 96575ea1dd2a9ea94763882e40a66dcbff9c41f702bf37c9514c4c719b3c11dd + md5: c072045a6206f88015d02fcba1705ea1 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 193829 - timestamp: 1733740033267 + size: 134371 + timestamp: 1734025379525 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: hd073cef_11 - build_number: 11 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-hd073cef_11.conda - sha256: d2ee2cdc651250a38f67b84ec65de3ba5493c760821d22c01edb8defd6393dc9 - md5: 0c1deb6e00f80b4aedcb2c4fcfea6407 + build: h5f50e26_12 + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h5f50e26_12.conda + sha256: ffeb9100cc8fd4093e1a6fdfd938bc4a396dd77480b7fb17aa42855a4d5e2c70 + md5: 031ca33115d4b1eeb43f435d6215778c depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 134556 - timestamp: 1733739661152 + size: 169516 + timestamp: 1734025167885 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: h55e9418_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.5-h55e9418_4.conda - sha256: 04d7fd3574fa76c184f04630125a760afa4ae5d4109eec36f22fe127cc85e164 - md5: faec629f0eb306cfe17ed1615249e188 + version: 0.7.7 + build: h1be5864_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.7-h1be5864_0.conda + sha256: 22966164d63808689fffd35945f57756c95337327e28099b5d77b29fc6a56ecc + md5: a37bba7acb62dd70492ee01eacca3b8f depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - - libgcc >=13 - - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 113811 - timestamp: 1733717653326 + size: 97598 + timestamp: 1734146239038 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: h757e810_4 - build_number: 4 + version: 0.7.7 + build: h2080895_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.5-h757e810_4.conda - sha256: 3da5e1b88d68c5cb2eb1dd898a7c6192be9e1df0bd2733d39d6c0ffe9fc546a2 - md5: 96a657e5856e9e92755170630067f63c + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.7-h2080895_0.conda + sha256: 20bc2dd60e6518d9b8215c2b652ab5c52ee8a997d3b9a5f69e2dabd28cbf26b2 + md5: ae223efa63fbb4262a2d85c3ab3bc4f5 depends: - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 @@ -1694,273 +1690,274 @@ packages: - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 117478 - timestamp: 1733717680655 + size: 117641 + timestamp: 1734146239779 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: hb201fd0_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.5-hb201fd0_4.conda - sha256: c25c62173770b681083962b497a927f306e7f3d05b459dd59e4c12eaf49e9f0b - md5: 83b9775bbe5419cf4916e646e870b87a + version: 0.7.7 + build: hf454442_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.7-hf454442_0.conda + sha256: c2f205a7bf64c5f40eea373b3a0a7c363c9aa9246a13dd7f3d9c6a4434c4fe2d + md5: 947c82025693bebd557f782bb5d6b469 depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 + - libgcc >=13 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 97441 - timestamp: 1733717822438 + size: 114156 + timestamp: 1734146123386 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h10558d5_3 - build_number: 3 + build: h0f0193d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h10558d5_3.conda - sha256: 0f6a15d711bc4d6b2d2b8451ad46bf78af6876235ad56bf142644a4ce2240f52 - md5: 1ba505fc4243ad75507efa8976e1790f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h0f0193d_4.conda + sha256: ede8e782467c87ac80ceb9c9af9e917d121b7d8b8c698186d18e3cecd36f2210 + md5: 53e798d720dd78b78847a7b2fdb05fc9 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 58123 - timestamp: 1733398238726 + size: 58621 + timestamp: 1733994421495 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h4d88cd7_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h4d88cd7_3.conda - sha256: a94ecde4e61de8effd9c93ba3527eb010773b5422d2d079ffdcd796ec77fcd4e - md5: 5ec333d73530fbfc2db670eeb6911bff + build: h4e1184b_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h4e1184b_4.conda + sha256: df586f42210af1134b1c88ff4c278c3cb6d6c807c84eac48860062464b28554d + md5: a5126a90e74ac739b00564a4c7ddcc36 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 49739 - timestamp: 1733398400904 + size: 56094 + timestamp: 1733994449690 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h9cc6398_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h9cc6398_3.conda - sha256: 917f679da38f162e191c5d6817b35fbf2ae0584b1d335bc229fd01e6077108ee - md5: 10bdb7fc3763760dcea1cd908ece6b2b + build: hc8a0bd2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-hc8a0bd2_4.conda + sha256: de98343ce42d2e569b3380292d20f47bf39bda08aadabcbb8e650d3f38fd742f + md5: 22f72f8cd7ead211304ac17d337d96e0 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 55864 - timestamp: 1733398187914 + size: 49664 + timestamp: 1733994553014 - kind: conda name: aws-checksums version: 0.2.2 - build: h10558d5_3 - build_number: 3 + build: h0f0193d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h10558d5_3.conda - sha256: 108860ae5d61a4dc0b0d91282d0171ba7fd69686c11b4bcbdcd3f8b8efc98adb - md5: 1ded47669f79301e4a3d1d3d469494c0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h0f0193d_4.conda + sha256: 9f1e3635a587bcf92b61d88c7af7d24cd89c147c6d0ae58afbde08e65bcf48da + md5: 3bd35b0adab3d743f09e0252cc441d6b depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72203 - timestamp: 1733398350602 + size: 72154 + timestamp: 1733994384415 - kind: conda name: aws-checksums version: 0.2.2 - build: h4d88cd7_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h4d88cd7_3.conda - sha256: 7d0d71e399fa6b0a1e686470d4a982396a9d0d29be29bf07591d83739cc29a0a - md5: 45409e27b510588196b9f116f86c2d51 + build: h4e1184b_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h4e1184b_4.conda + sha256: 1ed9a332d06ad595694907fad2d6d801082916c27cd5076096fda4061e6d24a8 + md5: 74e8c3e4df4ceae34aa2959df4b28101 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 70160 - timestamp: 1733398484776 + size: 72762 + timestamp: 1733994347547 - kind: conda name: aws-checksums version: 0.2.2 - build: h9cc6398_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h9cc6398_3.conda - sha256: a3aea2fc8ccf85ae64c5ce9c4e507be37173b94909191480e5151c482a220e40 - md5: d6dd8b87b95195d8d26893611d94ba3b + build: hc8a0bd2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-hc8a0bd2_4.conda + sha256: 215086d95e8ff1d3fcb0197ada116cc9d7db1fdae7573f5e810d20fa9215b47c + md5: e70e88a357a3749b67679c0788c5b08a depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 72681 - timestamp: 1733398331530 + size: 70186 + timestamp: 1733994496998 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hb9a023b_5 - build_number: 5 + build: h19a973c_7 + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-hb9a023b_5.conda - sha256: d1d89918a1f6e08f16275d82218b2f73012cee2def3ad8f1a8d28af7497e66cc - md5: 70a976e616535dbab5e1f354734a238a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-h19a973c_7.conda + sha256: 8269e6746eb3a5d15b732a3983888bf98dfc1f6594e95250fc8d16b43cfd5ff9 + md5: 95714136bef3e917bd5a2942d4682b20 depends: - __osx >=11.0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 236182 - timestamp: 1733767086227 + size: 236249 + timestamp: 1734178020924 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hc8d91e0_5 - build_number: 5 + build: h8a4e35f_7 + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-hc8d91e0_5.conda - sha256: c3be4f3f77ac7ba716228df1099eb68a5e7a4cbbe386a4732a28f33d6b780cc4 - md5: 8f14e3d651a08c9b2f85c6e5d359e250 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-h8a4e35f_7.conda + sha256: 5ba9188e0cb4e3faff9bc96774febb040aa3b802aedba29d847e00e7b5eab84e + md5: d77a9e3d7ce15399903e92825fd651b5 depends: - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 284313 - timestamp: 1733766768643 + size: 283154 + timestamp: 1734177845248 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hed26007_5 - build_number: 5 + build: hd92328a_7 + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hed26007_5.conda - sha256: f996cb94f3ef212792f288a0f7c5201ac7f00bb43502702b76e408e50d80132f - md5: 7c64e4ac7a484fc525a4ce7b9baf709a + url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hd92328a_7.conda + sha256: 094cd81f1e5ba713e9e7a272ee52b5dde3ccc4842ea90f19c0354a00bbdac3d9 + md5: 02b95564257d5c3db9c06beccf711f95 depends: - __glibc >=2.17,<3.0.a0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 354783 - timestamp: 1733766766977 + size: 354703 + timestamp: 1734177883319 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h2d3f608_3 - build_number: 3 + build: h849ce1a_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h2d3f608_3.conda - sha256: b335dfee7b04117ddae857564300ed6795718e2305141c7d631dcc434503a261 - md5: 57bdfac803ce58e3a3256752d7e5aa6e + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h849ce1a_4.conda + sha256: 51b9e9df8cbab4a13a1b9d39d6ef5ed162aaa29c09a745810e00bbe92e1045c1 + md5: cda7747f4398be8d1fb37362815917a7 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 + - libcurl >=8.11.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2896174 - timestamp: 1733808114676 + size: 2920625 + timestamp: 1734093552712 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h39838b8_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-h39838b8_3.conda - sha256: b5ef3a956937d61b59b9dd4b8c23eeb0bc254c37a97028a50c3ff6c8df399deb - md5: 3a6c8f65692febdf791bece561b371c8 + build: hc430e4a_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-hc430e4a_4.conda + sha256: 2dc09f6f9c49127b5f96e7535b64a9c521b944d76d8b7d03d48ae80257ac1cea + md5: aeefac461bea1f126653c1285cf5af08 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 - - libcxx >=18 + - libcurl >=8.11.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2837854 - timestamp: 1733808787914 + size: 3060561 + timestamp: 1734093737431 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h571fd1c_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-h571fd1c_3.conda - sha256: c2f38374a6f4dd804f76c8a071bc7f7d37dfb43e194eb93a473ff789460c011b - md5: 374cf1add8af327b15b1b1e4873f4955 + build: he0ff2e4_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-he0ff2e4_4.conda + sha256: 535b970aaa13be45f8cab8205c59f044b17364111c41a227f061775a5c834e18 + md5: 0981ed87098b149bdb7d99a4a3fd0e58 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 - - libgcc >=13 - - libstdcxx >=13 + - libcurl >=8.11.1,<9.0a0 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 3062994 - timestamp: 1733808211748 + size: 2826534 + timestamp: 1734094018287 - kind: conda name: azure-core-cpp version: 1.14.0 @@ -2690,12 +2687,12 @@ packages: timestamp: 1691593908658 - kind: conda name: debugpy - version: 1.8.9 + version: 1.8.11 build: py312h2ec8cdc_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.9-py312h2ec8cdc_0.conda - sha256: cf79cac70773567382910fcaf7b10bb0f5242d159f8dd93296d8451cd542af9a - md5: c522fd70ca7a0c2fe1a861dd13987a57 + url: https://conda.anaconda.org/conda-forge/linux-64/debugpy-1.8.11-py312h2ec8cdc_0.conda + sha256: 3d800be438a76d8a636219afd63a617737729867af5800d50fc72e71ac4f27f1 + md5: 0235a6da7d128c7e068973c4de62fc7b depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 @@ -2704,16 +2701,16 @@ packages: - python_abi 3.12.* *_cp312 license: MIT license_family: MIT - size: 2605093 - timestamp: 1732236790708 + size: 2668691 + timestamp: 1734159098550 - kind: conda name: debugpy - version: 1.8.9 + version: 1.8.11 build: py312h6f74592_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.9-py312h6f74592_0.conda - sha256: 651761a1bba2af89aeb391ab61391cfb4db67d9031f3bf429720782642873115 - md5: d0238a3a2f6127b05c5144aa383d7081 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/debugpy-1.8.11-py312h6f74592_0.conda + sha256: 8c5f73ea1ef9e88906968b9639be89d861b66aa48c132ec7565405293ca09f90 + md5: 3230587917725d0affd61674e74583d2 depends: - libgcc >=13 - libstdcxx >=13 @@ -2722,16 +2719,16 @@ packages: - python_abi 3.12.* *_cp312 license: MIT license_family: MIT - size: 2596779 - timestamp: 1732236921259 + size: 2609965 + timestamp: 1734159267844 - kind: conda name: debugpy - version: 1.8.9 + version: 1.8.11 build: py312hd8f9ff3_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.9-py312hd8f9ff3_0.conda - sha256: d588943ac0392300f31115d9852a2ff4213ec22856c382ef56f5650576523ec6 - md5: 51085e5bb7f21019186cc88fd9a03164 + url: https://conda.anaconda.org/conda-forge/osx-arm64/debugpy-1.8.11-py312hd8f9ff3_0.conda + sha256: c219e3ba0cf97fdd9fa3d8601f8d37a7fe584cc2f31e199a820fa005649871ea + md5: 0f4c9c498b7ca4f010f7de44463c5403 depends: - __osx >=11.0 - libcxx >=18 @@ -2740,8 +2737,8 @@ packages: - python_abi 3.12.* *_cp312 license: MIT license_family: MIT - size: 2512030 - timestamp: 1732236996277 + size: 2517686 + timestamp: 1734159183809 - kind: conda name: decorator version: 5.1.1 @@ -4823,65 +4820,65 @@ packages: timestamp: 1633683992603 - kind: conda name: libcurl - version: 8.10.1 - build: h13a7ad3_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda - sha256: 983a977c5627f975a930542c8aabb46089ec6ea72f28d9c4d3ee8eafaf2fc25a - md5: d84030d0863ffe7dea00b9a807fee961 + version: 8.11.1 + build: h332b0f4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda + sha256: 3cd4075b2a7b5562e46c8ec626f6f9ca57aeecaa94ff7df57eca26daa94c9906 + md5: 2b3e0081006dc21e8bf53a91c83a055c depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - krb5 >=1.21.3,<1.22.0a0 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libgcc >=13 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 379948 - timestamp: 1726660033582 + size: 423011 + timestamp: 1733999897624 - kind: conda name: libcurl - version: 8.10.1 - build: h3ec0cbf_0 + version: 8.11.1 + build: h6702fde_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda - sha256: 7c4983001c727f713b4448280ed4803d301087c184cd2819ba0b788ca62b73d1 - md5: f43539295c4e0cd15202d41bc72b8a26 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.11.1-h6702fde_0.conda + sha256: 9fc65d21a58f4aad1bc39dfb94a178893aeb035850c5cf0ed9736674279f390b + md5: 7dec1cd271c403d1636bda5aa388a55d depends: - krb5 >=1.21.3,<1.22.0a0 - libgcc >=13 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 439171 - timestamp: 1726659843118 + size: 440737 + timestamp: 1733999835504 - kind: conda name: libcurl - version: 8.10.1 - build: hbbe4b11_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda - sha256: 54e6114dfce566c3a22ad3b7b309657e3600cdb668398e95f1301360d5d52c99 - md5: 6e801c50a40301f6978c53976917b277 + version: 8.11.1 + build: h73640d1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.11.1-h73640d1_0.conda + sha256: f47c35938144c23278987c7d12096f6a42d7c850ffc277222b032073412383b6 + md5: 46d7524cabfdd199bffe63f8f19a552b depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - krb5 >=1.21.3,<1.22.0a0 - - libgcc >=13 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 424900 - timestamp: 1726659794676 + size: 385098 + timestamp: 1734000160270 - kind: conda name: libcxx version: 19.1.5 @@ -6950,76 +6947,76 @@ packages: timestamp: 1733417051523 - kind: conda name: max - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - sha256: c53b72587f9fa54a9b0f5cb5345e772711cb0779610100ab4389b1f312a7ebc7 - md5: b91bff8456bcd2fd2aada4bafa51a358 + url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + sha256: 6bacaa1d4f27d255a4c3907c28929865eeef5d45d64d61c3991b526aee14766d + md5: 1aec535b4731af73dd1b43472e7b6fa0 depends: - - max-core ==25.1.0.dev2024121105 release - - max-python >=25.1.0.dev2024121105,<26.0a0 - - mojo-jupyter ==25.1.0.dev2024121105 release - - mblack ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release + - max-python >=25.1.0.dev2024121405,<26.0a0 + - mojo-jupyter ==25.1.0.dev2024121405 release + - mblack ==25.1.0.dev2024121405 release license: LicenseRef-Modular-Proprietary - size: 9923 - timestamp: 1733894234676 + size: 9921 + timestamp: 1734153430066 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121105-release.conda - sha256: 23a9b3a31eddf232c2d91b45362eb79b0a8dfd4842e7d41f2719aa40bc53c37a - md5: c95a33b823ca2f36431033c1122212ba + url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121405-release.conda + sha256: 14f953430105c8f2bb8f3bdf1e3fb7e9acbb20613ad47c9ac1e88462e0cc804d + md5: d88d69b1696ed9d5795c8d346bbd4311 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 247768202 - timestamp: 1733894244133 + size: 245597032 + timestamp: 1734153445516 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121105-release.conda - sha256: 22bb680d1e11a3640ae28b9d9faafa089b92a2fd6474ebdcc6b5c0e4da618664 - md5: 6e976d732a16860852a22686f7334ce4 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121405-release.conda + sha256: e3936f8021fc72f7f2673e2653e7bbd3d325fb44818b868bb49c24e5c1766eaf + md5: ea674f5d9232d89046ad99090cc195a7 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 251679560 - timestamp: 1733894234674 + size: 249408423 + timestamp: 1734153430064 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121105-release.conda - sha256: 5733d843377af66e94de2dd91cd8872d8f49baac81c6120ce2294a866d2f227f - md5: 84d6da2eb7585c49e1f71deec028c11a + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121405-release.conda + sha256: b6bb97d20f0f7371a647778d18fe78f839e37eef423542ae3f4e75b018ffd8db + md5: 0e2d8c487ef68866164af9dff49f5119 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 212215227 - timestamp: 1733894448570 + size: 214323771 + timestamp: 1734153633668 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: ad71429b6fa8d4e972a20a0a8f684420b6f162fdb1b22d36c32758a4f0f35d54 - md5: b7acc92cf44907a4c460026ad9c2cc45 + url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: 7ebdc67f58946084f7f4a657f0661899e61707b055f2046d9c18033f21f97008 + md5: 5a8cbae9c5257545459bfe7a262b62a6 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -7042,18 +7039,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 123912464 - timestamp: 1733894244143 + size: 122834581 + timestamp: 1734153445526 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: 26f0f84532443a5e78098c17127dd0a04ca05a7c107e50aebc6b92abc9fe8a9f - md5: c4908b0138b01e14f9a8002624b42e25 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: b74a5c8945a97210778cda3cd9fe98f7404d2c9ff0b1a03738c77af6429b1523 + md5: 099dc5d1f85e4f883e72caef6f0c6e52 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -7076,18 +7073,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 127580719 - timestamp: 1733894234684 + size: 126606485 + timestamp: 1734153430075 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: 42e409756f37919fdfda6e86d45e1814f68c102f23a8be42dd88b4f3dd816fae - md5: 4a180f1ab8a83b78d7282baf60e9280b + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: 24a7ab99d936e5c28f597413e9e643fe34c46ba55916c1febcbe658e79a2ea9f + md5: 661ce5968d3cc1b11a67dfbf77e986b8 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -7110,17 +7107,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 112620525 - timestamp: 1733894448573 + size: 113414908 + timestamp: 1734153633671 - kind: conda name: mblack - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda - sha256: ee5c623d7908731bc5c42079cbb5d7ac461481c5bcaf615e25c4c8263f041793 - md5: 1271b7b52a8cc538e26ffbdd22743d3a + url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda + sha256: ea23ea9fdb019aa4dc05bcb1d1f526f77ce90a94baa3130d26ce71cad0a3647b + md5: 425b85251efa151234c9db33428ee55c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -7130,8 +7127,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130789 - timestamp: 1733894234681 + size: 130792 + timestamp: 1734153430070 - kind: conda name: mdurl version: 0.1.2 @@ -7166,21 +7163,21 @@ packages: timestamp: 1733258822603 - kind: conda name: mojo-jupyter - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda - sha256: c59130a6e8190e55b8881bd43429377da5368df6afed78b04c8df236d253a047 - md5: 35cc55bad72e3b9d0d490ff7af58c446 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda + sha256: b232fe63e84736d519137d4c98067c886f8acc1cc38a6620a062f4eb079e751a + md5: b7d7fe85425c5120a665795eb2097aa9 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22932 - timestamp: 1733894234682 + size: 22934 + timestamp: 1734153430071 - kind: conda name: multidict version: 6.1.0 @@ -8622,22 +8619,20 @@ packages: timestamp: 1732254359451 - kind: conda name: pydantic-settings - version: 2.6.1 - build: pyh3cfb1c2_1 - build_number: 1 + version: 2.7.0 + build: pyh3cfb1c2_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda - sha256: 8cc37e827f0098d07743f57f968283cefce6c11562d9241aba990acc23aedb56 - md5: deabf8afc8d987f20174ef0d8d9b549e + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda + sha256: dd1ac7c8b6a189c8aa18f6c7df019d8f6df495300a259e3fbebdb542fc955c3b + md5: d9f19a7c4199249fa229891b573b6f9b depends: - pydantic >=2.7.0 - python >=3.9 - python-dotenv >=0.21.0 license: MIT - license_family: MIT - size: 30832 - timestamp: 1733851937909 + size: 31426 + timestamp: 1734127929720 - kind: conda name: pygments version: 2.18.0 @@ -10059,19 +10054,20 @@ packages: - kind: conda name: transformers version: 4.47.0 - build: pyhd8ed1ab_0 + build: pyhd8ed1ab_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda - sha256: b9cf6ae5fcd6c78dcaa24ebfd41580a4a10b0649ac726a44d3521f70fdece218 - md5: 495745078b8e18fe2dcc3267f4baae0d + url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda + sha256: d31821081219a0ede5c1f356b65a61ce98ac11e2df78b0eaa684c17c73389fbf + md5: 6d2ec1ddee8057d2d724a0ab0bb578a0 depends: - datasets !=2.5.0 - filelock - huggingface_hub >=0.23.0,<1.0 - numpy >=1.17 - packaging >=20.0 - - python >=3.8 + - python >=3.9 - pyyaml >=5.1 - regex !=2019.12.17 - requests @@ -10080,8 +10076,8 @@ packages: - tqdm >=4.27 license: Apache-2.0 license_family: APACHE - size: 3721837 - timestamp: 1733708797762 + size: 3726957 + timestamp: 1733948063517 - kind: conda name: typer version: 0.15.1 @@ -10345,12 +10341,12 @@ packages: timestamp: 1730214606664 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312h12e396e_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.0-py312h12e396e_0.conda - sha256: a2a11a751d3fdd2bec79d876687136cee81d0125be40cebd3518042e1e15c349 - md5: b53a91a5cc50cf07f690a5d3b9f91db5 + url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.3-py312h12e396e_0.conda + sha256: c89755d8e8f6384b3ba13e41dcabb40bf690c38b9d61512e963129badb1ad332 + md5: b76a5ad00856af6e74da9c3e85fed0cc depends: - __glibc >=2.17,<3.0.a0 - anyio >=3.0.0 @@ -10361,16 +10357,16 @@ packages: - __glibc >=2.17 license: MIT license_family: MIT - size: 409700 - timestamp: 1732689603044 + size: 410432 + timestamp: 1733998892675 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312h8cbf658_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.0-py312h8cbf658_0.conda - sha256: 1d7fde47edacf01a81c0d9ac3f284d4d30982d33686c505374bfa2c7b02bbf8d - md5: 9ecaaf340ad422209a04fcf854fb4a3f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.3-py312h8cbf658_0.conda + sha256: 9be9569c279dc6e7881e9b45fe9f0368218538c660641e2f8b0e023e72a6571c + md5: 3465c1a19634233abc2d1832ac01fd31 depends: - anyio >=3.0.0 - libgcc >=13 @@ -10381,16 +10377,16 @@ packages: - __glibc >=2.17 license: MIT license_family: MIT - size: 404235 - timestamp: 1732689685476 + size: 404239 + timestamp: 1733998941045 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312hcd83bfe_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.0-py312hcd83bfe_0.conda - sha256: 554c4550813b744794fc70451c87d540d38138e6dc901993e85515ffa91087d2 - md5: 0eb2c3f65788f61f905d31ac062fe4b6 + url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.3-py312hcd83bfe_0.conda + sha256: b64b78a7d6384bf72a878256802c783c692fe641ab4b806fd7e9f45e18a5e3b4 + md5: 13b89e1aa72aa773806b1f59ec018b67 depends: - __osx >=11.0 - anyio >=3.0.0 @@ -10401,8 +10397,8 @@ packages: - __osx >=11.0 license: MIT license_family: MIT - size: 356744 - timestamp: 1732689860624 + size: 363162 + timestamp: 1733999215646 - kind: conda name: wcwidth version: 0.2.13 diff --git a/examples/operators/magic.lock b/examples/operators/magic.lock index 7d43e54e0f..8dbf0058e9 100644 --- a/examples/operators/magic.lock +++ b/examples/operators/magic.lock @@ -14,19 +14,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h8c8080f_14.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h0f28dba_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.5-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h9cc6398_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-hf811eff_10.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hce7dc5d_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hfd54f12_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-ha3c2ba9_11.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.5-h55e9418_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h9cc6398_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h9cc6398_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hed26007_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-h571fd1c_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb921021_15.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h1a47875_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.6-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h4e1184b_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h7959bf6_11.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hefd7a92_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hbf5b6a4_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h11f4f37_12.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.7-hf454442_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h4e1184b_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h4e1184b_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hd92328a_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-hc430e4a_4.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 @@ -87,7 +87,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.22-hb9d3cd8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda @@ -131,12 +131,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py312h98912ed_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -166,7 +166,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.1-py312h12e396e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - 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-pyha55dd90_7.conda @@ -201,7 +201,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -212,7 +212,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.21.0-py312h66e93f0_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.0-py312h12e396e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.3-py312h12e396e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/websockets-14.1-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.0-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hb9d3cd8_1.conda @@ -232,19 +232,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hb4dd4bb_14.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h1aca5b9_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.5-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h10558d5_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-ha9733bd_10.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h53134c8_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h8aa8d47_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h2f8d747_11.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.5-h757e810_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h10558d5_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h10558d5_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-hc8d91e0_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h2d3f608_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-h2cb9fb3_15.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h740c5af_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.6-h86ecc28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h0f0193d_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-hcbd8f92_11.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h3df160d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h92bf595_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h5f50e26_12.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.7-h2080895_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h0f0193d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h0f0193d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-h8a4e35f_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h849ce1a_4.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 @@ -306,7 +306,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.11.1-h6702fde_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.22-h86ecc28_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda @@ -350,12 +350,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py312hdd3e373_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -385,7 +385,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.1-py312h8cbf658_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - 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-pyha55dd90_7.conda @@ -420,7 +420,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4.2-py312h52516f5_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -431,7 +431,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/uvloop-0.21.0-py312hb2c0f52_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.0-py312h8cbf658_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.3-py312h8cbf658_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/websockets-14.1-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/wrapt-1.17.0-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.11-h86ecc28_1.conda @@ -450,19 +450,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h93897a1_14.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-h4d88cd7_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.5-h5505292_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h4d88cd7_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h9fa824c_10.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-hc68443d_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-h66499f2_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-hd073cef_11.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.5-hb201fd0_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h4d88cd7_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h4d88cd7_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-hb9a023b_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-h39838b8_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h8bc59a9_15.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-hc8a0bd2_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.6-h5505292_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-hc8a0bd2_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h54f970a_11.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-h96aa502_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-haba67d1_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h24f418c_12.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.7-h1be5864_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-hc8a0bd2_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-hc8a0bd2_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-h19a973c_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-he0ff2e4_4.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 @@ -522,7 +522,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda - 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/libcurl-8.11.1-h73640d1_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.5-ha82da77_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.22-hd74edd7_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 @@ -560,12 +560,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312h998013c_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-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/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -595,7 +595,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.1-py312hcd83bfe_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - 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-pyha55dd90_7.conda @@ -629,7 +629,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.2-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -640,7 +640,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.21.0-py312h0bf5046_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.0-py312hcd83bfe_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.3-py312hcd83bfe_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/websockets-14.1-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.17.0-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hd74edd7_1.conda @@ -862,469 +862,465 @@ packages: - kind: conda name: aws-c-auth version: 0.8.0 - build: h8c8080f_14 - build_number: 14 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h8c8080f_14.conda - sha256: 7a9f7763e3a151ae1008ead51458f9b889b657f388266d53c6f7fa383dbb2481 - md5: a9284141081982473ebf41b92566bbcb + build: h2cb9fb3_15 + build_number: 15 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-h2cb9fb3_15.conda + sha256: 4ce859dc9ff128bf5515604c43f33fb511386022fc9765ca077990f2a3f23df5 + md5: e524686ace966acefb5b8cbc6e8b3daa depends: - - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 107775 - timestamp: 1733709347751 + size: 111854 + timestamp: 1734021745104 - kind: conda name: aws-c-auth version: 0.8.0 - build: h93897a1_14 - build_number: 14 + build: h8bc59a9_15 + build_number: 15 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h93897a1_14.conda - sha256: 3ec33500c5def035acb9ba406161f5452e39b1b818c67d8a56103d6def47bda6 - md5: 061e221dc5cca62be8fab49a16bfb99d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h8bc59a9_15.conda + sha256: 0e41e56b662e76e024182adebcd91d09a4d38a83b35217c84e4967354dfff9a2 + md5: f688b8893c20ad9477a19e7ce614014a depends: - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 license: Apache-2.0 license_family: Apache - size: 92250 - timestamp: 1733709418870 + size: 92507 + timestamp: 1734021831330 - kind: conda name: aws-c-auth version: 0.8.0 - build: hb4dd4bb_14 - build_number: 14 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hb4dd4bb_14.conda - sha256: a9622ac836bbe4a24310e0e77a42ef0a17e5fa0703276f8bbbef945deaca337c - md5: a5b86123507e184fb4463e1f8890b398 + build: hb921021_15 + build_number: 15 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb921021_15.conda + sha256: 537006ad6d5097c134494166a6a1dc1451d5d050878d7b82cef498bfda40ba8a + md5: c79d50f64cffa5ad51ecc1a81057962f depends: + - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 111975 - timestamp: 1733709317063 + size: 107614 + timestamp: 1734021692519 - kind: conda name: aws-c-cal version: 0.8.1 - build: h0f28dba_2 - build_number: 2 + build: h1a47875_3 + build_number: 3 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h0f28dba_2.conda - sha256: 023fa0d0618b652b0be5eac73d92fd47136351da7d331334c45d5dd1ee760401 - md5: 94faebd978282d2a4a8514141daec756 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h1a47875_3.conda + sha256: 095ac824ea9303eff67e04090ae531d9eb33d2bf8f82eaade39b839c421e16e8 + md5: 55a8561fdbbbd34f50f57d9be12ed084 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 47694 - timestamp: 1733390870810 + size: 47601 + timestamp: 1733991564405 - kind: conda name: aws-c-cal version: 0.8.1 - build: h1aca5b9_2 - build_number: 2 + build: h740c5af_3 + build_number: 3 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h1aca5b9_2.conda - sha256: df203473e8675fc27ae5cb62bc09e336fe92655df0a0056e73087cb22aed287e - md5: 31d9e82aac5cd3fe399535bcec0f2975 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h740c5af_3.conda + sha256: c5c7961d48ca7320ed3560c036f7aa5244df4b85d9657f70aacc5faba3e1509a + md5: 57ed2c445d7ef01d121b9bcea0522913 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 49822 - timestamp: 1733390907734 + size: 50036 + timestamp: 1733991581303 - kind: conda name: aws-c-cal version: 0.8.1 - build: h4d88cd7_2 - build_number: 2 + build: hc8a0bd2_3 + build_number: 3 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-h4d88cd7_2.conda - sha256: 30e6bc4feea78a280553b084a960515e550dabfae0e63ba511be773c3a9f6b5a - md5: 3cb07f08e5aabe657b0b5fb13945e79a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-hc8a0bd2_3.conda + sha256: 1f44be36e1daa17b4b081debb8aee492d13571084f38b503ad13e869fef24fe4 + md5: 8b0ce61384e5a33d2b301a64f3d22ac5 depends: - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 39878 - timestamp: 1733390962202 + size: 39925 + timestamp: 1733991649383 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: h5505292_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.5-h5505292_0.conda - sha256: 54554886028d25b5c752369e7ae8321852e875fdc780ff9357b72a31f3e5d5b4 - md5: 49f049f8b10cf8c2c5a26660854fd21a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.6-h5505292_0.conda + sha256: 3bde135c8e74987c0f79ecd4fa17ec9cff0d658b3090168727ca1af3815ae57a + md5: 145e5b4c9702ed279d7d68aaf096f77d depends: - __osx >=11.0 license: Apache-2.0 license_family: Apache - size: 222184 - timestamp: 1733324871298 + size: 221863 + timestamp: 1733975576886 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: h86ecc28_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.5-h86ecc28_0.conda - sha256: bdea66b7be9acd463bbfd583d2f80ff676d376c60480a2d3f9f7de7b4bf6d2b2 - md5: fcd238b0cc98927742a96aa411123e32 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.6-h86ecc28_0.conda + sha256: 57288ec5df35781bea8fc6a8c9099cad6695b747784fc1b8862a0f9e5b3bf5ab + md5: fef806a0f6de853670c746bbece01966 depends: - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 258257 - timestamp: 1733324684433 + size: 259031 + timestamp: 1733975520465 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: hb9d3cd8_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.5-hb9d3cd8_0.conda - sha256: 93e83e2a31f41bac2aa5eae8fbc7f1d31449a04a3df8a64ebcac2433f52a86ad - md5: d8288fbad9d809b9ca139b8beb6553ef + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.6-hb9d3cd8_0.conda + sha256: 496e92f2150fdc351eacf6e236015deedb3d0d3114f8e5954341cbf9f3dda257 + md5: d7d4680337a14001b0e043e96529409b depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 237114 - timestamp: 1733324723318 + size: 236574 + timestamp: 1733975453350 - kind: conda name: aws-c-compression version: 0.3.0 - build: h10558d5_4 - build_number: 4 + build: h0f0193d_5 + build_number: 5 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h10558d5_4.conda - sha256: 45ea74461b6a5453325db2201ba9f728f20e89ead17730e93ddd7411a833c058 - md5: 8ceaf4396978c33bc695129425f12734 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h0f0193d_5.conda + sha256: 3f05d19f68ef800f33d44ea2a4211003124076516c8469abc7d432236344df53 + md5: 3a1421d12435df5b4c412cc4c8fac64d depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 19742 - timestamp: 1733391062884 + size: 19740 + timestamp: 1733991625201 - kind: conda name: aws-c-compression version: 0.3.0 - build: h4d88cd7_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h4d88cd7_4.conda - sha256: b6900e82b553d18d5528322de236af3a7f64ccb3df08e8320142894144a5c716 - md5: 8c67ff0c68aea28be3efec6f8d799a19 + build: h4e1184b_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h4e1184b_5.conda + sha256: 62ca84da83585e7814a40240a1e750b1563b2680b032a471464eccc001c3309b + md5: 3f4c1197462a6df2be6dc8241828fe93 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 18219 - timestamp: 1733391126008 + size: 19086 + timestamp: 1733991637424 - kind: conda name: aws-c-compression version: 0.3.0 - build: h9cc6398_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h9cc6398_4.conda - sha256: 045a3231b0aacb544ea9e348c22f863d96631f14a3a2b59413a72f61259a32a4 - md5: 076717670d5406e90070120314ff9b4f + build: hc8a0bd2_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-hc8a0bd2_5.conda + sha256: 47b2813f652ce7e64ac442f771b2a5f7d4af4ad0d07ff51f6075ea80ed2e3f09 + md5: a8b6c17732d14ed49d0e9b59c43186bc depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 19029 - timestamp: 1733390975089 + size: 18068 + timestamp: 1733991869211 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: h9fa824c_10 - build_number: 10 + build: h54f970a_11 + build_number: 11 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h9fa824c_10.conda - sha256: 12f2ccc71bb993934cc489af359cb7399f671c3111f64fe2be9c8231819e11bd - md5: 9f6a7984f9ce3c6149fa36865060928a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h54f970a_11.conda + sha256: f0667935f4e0d4c25e0e51da035640310b5ceeb8f723156734439bde8b848d7d + md5: ba41238f8e653998d7d2f42e3a8db054 depends: - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 47460 - timestamp: 1733696263921 + size: 47078 + timestamp: 1734024749727 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: ha9733bd_10 - build_number: 10 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-ha9733bd_10.conda - sha256: e8189bdd1af1a3f68a460bcb3c852193cfdf7afa2f1a82d687d30055242b20e2 - md5: cb0877c6fcc93454f221ba4eba798cfc + build: h7959bf6_11 + build_number: 11 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h7959bf6_11.conda + sha256: 10d7240c7db0c941fb1a59c4f8ea6689a434b03309ee7b766fa15a809c553c02 + md5: 9b3fb60fe57925a92f399bc3fc42eccf depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 55066 - timestamp: 1733696212604 + size: 54003 + timestamp: 1734024480949 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: hf811eff_10 - build_number: 10 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-hf811eff_10.conda - sha256: 3fbc86e70b543f26cc485f98714b7f789c4ece05128046458681893f43b7f5f1 - md5: 5046c78dd139a333b6acd7376a10e0a7 + build: hcbd8f92_11 + build_number: 11 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-hcbd8f92_11.conda + sha256: 79aa363c71c891a27496c0498f8d498b2ddc87b3ccb3b6c9da5b50b05936ebb8 + md5: e0772c59af4243a9b2565baa5d79e5b6 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 53973 - timestamp: 1733696170256 + size: 55207 + timestamp: 1734024546663 - kind: conda name: aws-c-http version: 0.9.2 - build: h53134c8_3 - build_number: 3 + build: h3df160d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h53134c8_3.conda - sha256: a4d217f89ad0e9326da57b2d9bd4cd5cb0a95423d092be7ed81e88fb075d4dbe - md5: 2ffd03180381a92332b673cefc602234 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h3df160d_4.conda + sha256: 3a1d2d332945306be9d49e569b95e4cc172d825f10e88715513a172f28ebb59e + md5: 28f00aa7fd9556c4c461328cf146c20b depends: - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 189812 - timestamp: 1733683248290 + size: 190586 + timestamp: 1734008442362 - kind: conda name: aws-c-http version: 0.9.2 - build: hc68443d_3 - build_number: 3 + build: h96aa502_4 + build_number: 4 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-hc68443d_3.conda - sha256: 71be93cd1d8dfa5858939ba53431abaee859fbc98bdf9f5033bfa41af76b140a - md5: 6353604cb9803e63fce359388201514e + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-h96aa502_4.conda + sha256: 22e4737c8a885995b7c1ae1d79c1f6e78d489e16ec079615980fdde067aeaf76 + md5: 495c93a4f08b17deb3c04894512330e6 depends: - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 license: Apache-2.0 license_family: Apache - size: 153237 - timestamp: 1733683327609 + size: 152983 + timestamp: 1734008451473 - kind: conda name: aws-c-http version: 0.9.2 - build: hce7dc5d_3 - build_number: 3 + build: hefd7a92_4 + build_number: 4 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hce7dc5d_3.conda - sha256: 7e864b6d4255c4edbd1b2c0f519849017d2a48e54b282748eaa8f9f0fc98a6f4 - md5: c0f54e8975ad42d2864f4b1918356b3b + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hefd7a92_4.conda + sha256: 4a330206bd51148f6c13ca0b7a4db40f29a46f090642ebacdeb88b8a4abd7f99 + md5: 5ce4df662d32d3123ea8da15571b6f51 depends: - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 197506 - timestamp: 1733683203582 + size: 197731 + timestamp: 1734008380764 - kind: conda name: aws-c-io version: 0.15.3 - build: h66499f2_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-h66499f2_3.conda - sha256: 86ff175fa5dced16cf41bcc5c353de080314fcb81f4aed326f29b9f22add9aad - md5: e64159c5b106a0365544cfe9d4ef79ec + build: h92bf595_4 + build_number: 4 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h92bf595_4.conda + sha256: ffa2fc1ddb01f4b8ac038ab70a5533306119754ba438b23399f2a82a38cf27bf + md5: 539df02c00c506c78aebdf6c0fc75743 depends: - - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 136845 - timestamp: 1733588465582 + size: 161836 + timestamp: 1733997573790 - kind: conda name: aws-c-io version: 0.15.3 - build: h8aa8d47_3 - build_number: 3 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h8aa8d47_3.conda - sha256: cb08b2e9258637e810ac283600b7de2d7a68f55a61e67226e9cce2537f36a06b - md5: 8ece20a51dafae96444e90c7ddaac41a + build: haba67d1_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-haba67d1_4.conda + sha256: 2d0859b57439cd98e854577aa3e07eb171b590098d51a8c908bab5ec497a3d38 + md5: 74eace4fab8675263a848075e991d380 depends: + - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 - - s2n >=1.5.9,<1.5.10.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 161513 - timestamp: 1733588480960 + size: 136213 + timestamp: 1733997647724 - kind: conda name: aws-c-io version: 0.15.3 - build: hfd54f12_3 - build_number: 3 + build: hbf5b6a4_4 + build_number: 4 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hfd54f12_3.conda - sha256: 6d0bd78d5c7d3ec586691d54c8aebc79d089358ff9e793f0cac857a1f977a1a0 - md5: c0b9f79cd2f5797b913415511bfa2cd6 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hbf5b6a4_4.conda + sha256: 3195fe431d3c43d6ecf749796d3acb093645c9d0de9998616641dada4b5fa2a6 + md5: ad3a6713063c18b9232c48e89ada03ac depends: - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 158115 - timestamp: 1733588386529 + size: 157886 + timestamp: 1733997507332 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: h2f8d747_11 - build_number: 11 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h2f8d747_11.conda - sha256: b66de0de359bfaec5084bdc78fda6dfbd8cf8e71c68a76dcd7b74e8a00ec6052 - md5: f4ccd7c1e73c662fd9a795147ca8ca9f + build: h11f4f37_12 + build_number: 12 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h11f4f37_12.conda + sha256: 512d3969426152d9d5fd886e27b13706122dc3fa90eb08c37b0d51a33d7bb14a + md5: 96c3e0221fa2da97619ee82faa341a73 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 168898 - timestamp: 1733739548597 + size: 194672 + timestamp: 1734025626798 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: ha3c2ba9_11 - build_number: 11 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-ha3c2ba9_11.conda - sha256: 187787bb41e7b616c9317c12c32a5027aae784d1f9335f9d6d34a3fa7ebcb1ec - md5: 93c5070d6f9b4cb2ed9de52ce247cebb + build: h24f418c_12 + build_number: 12 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h24f418c_12.conda + sha256: 96575ea1dd2a9ea94763882e40a66dcbff9c41f702bf37c9514c4c719b3c11dd + md5: c072045a6206f88015d02fcba1705ea1 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 193829 - timestamp: 1733740033267 + size: 134371 + timestamp: 1734025379525 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: hd073cef_11 - build_number: 11 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-hd073cef_11.conda - sha256: d2ee2cdc651250a38f67b84ec65de3ba5493c760821d22c01edb8defd6393dc9 - md5: 0c1deb6e00f80b4aedcb2c4fcfea6407 + build: h5f50e26_12 + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h5f50e26_12.conda + sha256: ffeb9100cc8fd4093e1a6fdfd938bc4a396dd77480b7fb17aa42855a4d5e2c70 + md5: 031ca33115d4b1eeb43f435d6215778c depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 134556 - timestamp: 1733739661152 + size: 169516 + timestamp: 1734025167885 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: h55e9418_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.5-h55e9418_4.conda - sha256: 04d7fd3574fa76c184f04630125a760afa4ae5d4109eec36f22fe127cc85e164 - md5: faec629f0eb306cfe17ed1615249e188 + version: 0.7.7 + build: h1be5864_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.7-h1be5864_0.conda + sha256: 22966164d63808689fffd35945f57756c95337327e28099b5d77b29fc6a56ecc + md5: a37bba7acb62dd70492ee01eacca3b8f depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - - libgcc >=13 - - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 113811 - timestamp: 1733717653326 + size: 97598 + timestamp: 1734146239038 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: h757e810_4 - build_number: 4 + version: 0.7.7 + build: h2080895_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.5-h757e810_4.conda - sha256: 3da5e1b88d68c5cb2eb1dd898a7c6192be9e1df0bd2733d39d6c0ffe9fc546a2 - md5: 96a657e5856e9e92755170630067f63c + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.7-h2080895_0.conda + sha256: 20bc2dd60e6518d9b8215c2b652ab5c52ee8a997d3b9a5f69e2dabd28cbf26b2 + md5: ae223efa63fbb4262a2d85c3ab3bc4f5 depends: - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 @@ -1332,273 +1328,274 @@ packages: - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 117478 - timestamp: 1733717680655 + size: 117641 + timestamp: 1734146239779 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: hb201fd0_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.5-hb201fd0_4.conda - sha256: c25c62173770b681083962b497a927f306e7f3d05b459dd59e4c12eaf49e9f0b - md5: 83b9775bbe5419cf4916e646e870b87a + version: 0.7.7 + build: hf454442_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.7-hf454442_0.conda + sha256: c2f205a7bf64c5f40eea373b3a0a7c363c9aa9246a13dd7f3d9c6a4434c4fe2d + md5: 947c82025693bebd557f782bb5d6b469 depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 + - libgcc >=13 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 97441 - timestamp: 1733717822438 + size: 114156 + timestamp: 1734146123386 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h10558d5_3 - build_number: 3 + build: h0f0193d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h10558d5_3.conda - sha256: 0f6a15d711bc4d6b2d2b8451ad46bf78af6876235ad56bf142644a4ce2240f52 - md5: 1ba505fc4243ad75507efa8976e1790f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h0f0193d_4.conda + sha256: ede8e782467c87ac80ceb9c9af9e917d121b7d8b8c698186d18e3cecd36f2210 + md5: 53e798d720dd78b78847a7b2fdb05fc9 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 58123 - timestamp: 1733398238726 + size: 58621 + timestamp: 1733994421495 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h4d88cd7_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h4d88cd7_3.conda - sha256: a94ecde4e61de8effd9c93ba3527eb010773b5422d2d079ffdcd796ec77fcd4e - md5: 5ec333d73530fbfc2db670eeb6911bff + build: h4e1184b_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h4e1184b_4.conda + sha256: df586f42210af1134b1c88ff4c278c3cb6d6c807c84eac48860062464b28554d + md5: a5126a90e74ac739b00564a4c7ddcc36 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 49739 - timestamp: 1733398400904 + size: 56094 + timestamp: 1733994449690 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h9cc6398_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h9cc6398_3.conda - sha256: 917f679da38f162e191c5d6817b35fbf2ae0584b1d335bc229fd01e6077108ee - md5: 10bdb7fc3763760dcea1cd908ece6b2b + build: hc8a0bd2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-hc8a0bd2_4.conda + sha256: de98343ce42d2e569b3380292d20f47bf39bda08aadabcbb8e650d3f38fd742f + md5: 22f72f8cd7ead211304ac17d337d96e0 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 55864 - timestamp: 1733398187914 + size: 49664 + timestamp: 1733994553014 - kind: conda name: aws-checksums version: 0.2.2 - build: h10558d5_3 - build_number: 3 + build: h0f0193d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h10558d5_3.conda - sha256: 108860ae5d61a4dc0b0d91282d0171ba7fd69686c11b4bcbdcd3f8b8efc98adb - md5: 1ded47669f79301e4a3d1d3d469494c0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h0f0193d_4.conda + sha256: 9f1e3635a587bcf92b61d88c7af7d24cd89c147c6d0ae58afbde08e65bcf48da + md5: 3bd35b0adab3d743f09e0252cc441d6b depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72203 - timestamp: 1733398350602 + size: 72154 + timestamp: 1733994384415 - kind: conda name: aws-checksums version: 0.2.2 - build: h4d88cd7_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h4d88cd7_3.conda - sha256: 7d0d71e399fa6b0a1e686470d4a982396a9d0d29be29bf07591d83739cc29a0a - md5: 45409e27b510588196b9f116f86c2d51 + build: h4e1184b_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h4e1184b_4.conda + sha256: 1ed9a332d06ad595694907fad2d6d801082916c27cd5076096fda4061e6d24a8 + md5: 74e8c3e4df4ceae34aa2959df4b28101 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 70160 - timestamp: 1733398484776 + size: 72762 + timestamp: 1733994347547 - kind: conda name: aws-checksums version: 0.2.2 - build: h9cc6398_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h9cc6398_3.conda - sha256: a3aea2fc8ccf85ae64c5ce9c4e507be37173b94909191480e5151c482a220e40 - md5: d6dd8b87b95195d8d26893611d94ba3b + build: hc8a0bd2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-hc8a0bd2_4.conda + sha256: 215086d95e8ff1d3fcb0197ada116cc9d7db1fdae7573f5e810d20fa9215b47c + md5: e70e88a357a3749b67679c0788c5b08a depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 72681 - timestamp: 1733398331530 + size: 70186 + timestamp: 1733994496998 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hb9a023b_5 - build_number: 5 + build: h19a973c_7 + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-hb9a023b_5.conda - sha256: d1d89918a1f6e08f16275d82218b2f73012cee2def3ad8f1a8d28af7497e66cc - md5: 70a976e616535dbab5e1f354734a238a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-h19a973c_7.conda + sha256: 8269e6746eb3a5d15b732a3983888bf98dfc1f6594e95250fc8d16b43cfd5ff9 + md5: 95714136bef3e917bd5a2942d4682b20 depends: - __osx >=11.0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 236182 - timestamp: 1733767086227 + size: 236249 + timestamp: 1734178020924 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hc8d91e0_5 - build_number: 5 + build: h8a4e35f_7 + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-hc8d91e0_5.conda - sha256: c3be4f3f77ac7ba716228df1099eb68a5e7a4cbbe386a4732a28f33d6b780cc4 - md5: 8f14e3d651a08c9b2f85c6e5d359e250 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-h8a4e35f_7.conda + sha256: 5ba9188e0cb4e3faff9bc96774febb040aa3b802aedba29d847e00e7b5eab84e + md5: d77a9e3d7ce15399903e92825fd651b5 depends: - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 284313 - timestamp: 1733766768643 + size: 283154 + timestamp: 1734177845248 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hed26007_5 - build_number: 5 + build: hd92328a_7 + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hed26007_5.conda - sha256: f996cb94f3ef212792f288a0f7c5201ac7f00bb43502702b76e408e50d80132f - md5: 7c64e4ac7a484fc525a4ce7b9baf709a + url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hd92328a_7.conda + sha256: 094cd81f1e5ba713e9e7a272ee52b5dde3ccc4842ea90f19c0354a00bbdac3d9 + md5: 02b95564257d5c3db9c06beccf711f95 depends: - __glibc >=2.17,<3.0.a0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 354783 - timestamp: 1733766766977 + size: 354703 + timestamp: 1734177883319 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h2d3f608_3 - build_number: 3 + build: h849ce1a_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h2d3f608_3.conda - sha256: b335dfee7b04117ddae857564300ed6795718e2305141c7d631dcc434503a261 - md5: 57bdfac803ce58e3a3256752d7e5aa6e + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h849ce1a_4.conda + sha256: 51b9e9df8cbab4a13a1b9d39d6ef5ed162aaa29c09a745810e00bbe92e1045c1 + md5: cda7747f4398be8d1fb37362815917a7 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 + - libcurl >=8.11.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2896174 - timestamp: 1733808114676 + size: 2920625 + timestamp: 1734093552712 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h39838b8_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-h39838b8_3.conda - sha256: b5ef3a956937d61b59b9dd4b8c23eeb0bc254c37a97028a50c3ff6c8df399deb - md5: 3a6c8f65692febdf791bece561b371c8 + build: hc430e4a_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-hc430e4a_4.conda + sha256: 2dc09f6f9c49127b5f96e7535b64a9c521b944d76d8b7d03d48ae80257ac1cea + md5: aeefac461bea1f126653c1285cf5af08 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 - - libcxx >=18 + - libcurl >=8.11.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2837854 - timestamp: 1733808787914 + size: 3060561 + timestamp: 1734093737431 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h571fd1c_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-h571fd1c_3.conda - sha256: c2f38374a6f4dd804f76c8a071bc7f7d37dfb43e194eb93a473ff789460c011b - md5: 374cf1add8af327b15b1b1e4873f4955 + build: he0ff2e4_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-he0ff2e4_4.conda + sha256: 535b970aaa13be45f8cab8205c59f044b17364111c41a227f061775a5c834e18 + md5: 0981ed87098b149bdb7d99a4a3fd0e58 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 - - libgcc >=13 - - libstdcxx >=13 + - libcurl >=8.11.1,<9.0a0 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 3062994 - timestamp: 1733808211748 + size: 2826534 + timestamp: 1734094018287 - kind: conda name: azure-core-cpp version: 1.14.0 @@ -3795,65 +3792,65 @@ packages: timestamp: 1633683992603 - kind: conda name: libcurl - version: 8.10.1 - build: h13a7ad3_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda - sha256: 983a977c5627f975a930542c8aabb46089ec6ea72f28d9c4d3ee8eafaf2fc25a - md5: d84030d0863ffe7dea00b9a807fee961 + version: 8.11.1 + build: h332b0f4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda + sha256: 3cd4075b2a7b5562e46c8ec626f6f9ca57aeecaa94ff7df57eca26daa94c9906 + md5: 2b3e0081006dc21e8bf53a91c83a055c depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - krb5 >=1.21.3,<1.22.0a0 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libgcc >=13 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 379948 - timestamp: 1726660033582 + size: 423011 + timestamp: 1733999897624 - kind: conda name: libcurl - version: 8.10.1 - build: h3ec0cbf_0 + version: 8.11.1 + build: h6702fde_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda - sha256: 7c4983001c727f713b4448280ed4803d301087c184cd2819ba0b788ca62b73d1 - md5: f43539295c4e0cd15202d41bc72b8a26 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.11.1-h6702fde_0.conda + sha256: 9fc65d21a58f4aad1bc39dfb94a178893aeb035850c5cf0ed9736674279f390b + md5: 7dec1cd271c403d1636bda5aa388a55d depends: - krb5 >=1.21.3,<1.22.0a0 - libgcc >=13 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 439171 - timestamp: 1726659843118 + size: 440737 + timestamp: 1733999835504 - kind: conda name: libcurl - version: 8.10.1 - build: hbbe4b11_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda - sha256: 54e6114dfce566c3a22ad3b7b309657e3600cdb668398e95f1301360d5d52c99 - md5: 6e801c50a40301f6978c53976917b277 + version: 8.11.1 + build: h73640d1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.11.1-h73640d1_0.conda + sha256: f47c35938144c23278987c7d12096f6a42d7c850ffc277222b032073412383b6 + md5: 46d7524cabfdd199bffe63f8f19a552b depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - krb5 >=1.21.3,<1.22.0a0 - - libgcc >=13 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 424900 - timestamp: 1726659794676 + size: 385098 + timestamp: 1734000160270 - kind: conda name: libcxx version: 19.1.5 @@ -5905,76 +5902,76 @@ packages: timestamp: 1733219945697 - kind: conda name: max - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - sha256: c53b72587f9fa54a9b0f5cb5345e772711cb0779610100ab4389b1f312a7ebc7 - md5: b91bff8456bcd2fd2aada4bafa51a358 - depends: - - max-core ==25.1.0.dev2024121105 release - - max-python >=25.1.0.dev2024121105,<26.0a0 - - mojo-jupyter ==25.1.0.dev2024121105 release - - mblack ==25.1.0.dev2024121105 release + url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + sha256: 6bacaa1d4f27d255a4c3907c28929865eeef5d45d64d61c3991b526aee14766d + md5: 1aec535b4731af73dd1b43472e7b6fa0 + depends: + - max-core ==25.1.0.dev2024121405 release + - max-python >=25.1.0.dev2024121405,<26.0a0 + - mojo-jupyter ==25.1.0.dev2024121405 release + - mblack ==25.1.0.dev2024121405 release license: LicenseRef-Modular-Proprietary - size: 9923 - timestamp: 1733894234676 + size: 9921 + timestamp: 1734153430066 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121105-release.conda - sha256: 23a9b3a31eddf232c2d91b45362eb79b0a8dfd4842e7d41f2719aa40bc53c37a - md5: c95a33b823ca2f36431033c1122212ba + url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121405-release.conda + sha256: 14f953430105c8f2bb8f3bdf1e3fb7e9acbb20613ad47c9ac1e88462e0cc804d + md5: d88d69b1696ed9d5795c8d346bbd4311 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 247768202 - timestamp: 1733894244133 + size: 245597032 + timestamp: 1734153445516 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121105-release.conda - sha256: 22bb680d1e11a3640ae28b9d9faafa089b92a2fd6474ebdcc6b5c0e4da618664 - md5: 6e976d732a16860852a22686f7334ce4 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121405-release.conda + sha256: e3936f8021fc72f7f2673e2653e7bbd3d325fb44818b868bb49c24e5c1766eaf + md5: ea674f5d9232d89046ad99090cc195a7 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 251679560 - timestamp: 1733894234674 + size: 249408423 + timestamp: 1734153430064 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121105-release.conda - sha256: 5733d843377af66e94de2dd91cd8872d8f49baac81c6120ce2294a866d2f227f - md5: 84d6da2eb7585c49e1f71deec028c11a + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121405-release.conda + sha256: b6bb97d20f0f7371a647778d18fe78f839e37eef423542ae3f4e75b018ffd8db + md5: 0e2d8c487ef68866164af9dff49f5119 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 212215227 - timestamp: 1733894448570 + size: 214323771 + timestamp: 1734153633668 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: ad71429b6fa8d4e972a20a0a8f684420b6f162fdb1b22d36c32758a4f0f35d54 - md5: b7acc92cf44907a4c460026ad9c2cc45 + url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: 7ebdc67f58946084f7f4a657f0661899e61707b055f2046d9c18033f21f97008 + md5: 5a8cbae9c5257545459bfe7a262b62a6 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -5997,18 +5994,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 123912464 - timestamp: 1733894244143 + size: 122834581 + timestamp: 1734153445526 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: 26f0f84532443a5e78098c17127dd0a04ca05a7c107e50aebc6b92abc9fe8a9f - md5: c4908b0138b01e14f9a8002624b42e25 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: b74a5c8945a97210778cda3cd9fe98f7404d2c9ff0b1a03738c77af6429b1523 + md5: 099dc5d1f85e4f883e72caef6f0c6e52 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -6031,18 +6028,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 127580719 - timestamp: 1733894234684 + size: 126606485 + timestamp: 1734153430075 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: 42e409756f37919fdfda6e86d45e1814f68c102f23a8be42dd88b4f3dd816fae - md5: 4a180f1ab8a83b78d7282baf60e9280b + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: 24a7ab99d936e5c28f597413e9e643fe34c46ba55916c1febcbe658e79a2ea9f + md5: 661ce5968d3cc1b11a67dfbf77e986b8 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -6065,17 +6062,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 112620525 - timestamp: 1733894448573 + size: 113414908 + timestamp: 1734153633671 - kind: conda name: mblack - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda - sha256: ee5c623d7908731bc5c42079cbb5d7ac461481c5bcaf615e25c4c8263f041793 - md5: 1271b7b52a8cc538e26ffbdd22743d3a + url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda + sha256: ea23ea9fdb019aa4dc05bcb1d1f526f77ce90a94baa3130d26ce71cad0a3647b + md5: 425b85251efa151234c9db33428ee55c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -6085,8 +6082,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130789 - timestamp: 1733894234681 + size: 130792 + timestamp: 1734153430070 - kind: conda name: mdurl version: 0.1.2 @@ -6105,21 +6102,21 @@ packages: timestamp: 1733255681319 - kind: conda name: mojo-jupyter - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda - sha256: c59130a6e8190e55b8881bd43429377da5368df6afed78b04c8df236d253a047 - md5: 35cc55bad72e3b9d0d490ff7af58c446 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda + sha256: b232fe63e84736d519137d4c98067c886f8acc1cc38a6620a062f4eb079e751a + md5: b7d7fe85425c5120a665795eb2097aa9 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22932 - timestamp: 1733894234682 + size: 22934 + timestamp: 1734153430071 - kind: conda name: multidict version: 6.1.0 @@ -7246,22 +7243,20 @@ packages: timestamp: 1732254359451 - kind: conda name: pydantic-settings - version: 2.6.1 - build: pyh3cfb1c2_1 - build_number: 1 + version: 2.7.0 + build: pyh3cfb1c2_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda - sha256: 8cc37e827f0098d07743f57f968283cefce6c11562d9241aba990acc23aedb56 - md5: deabf8afc8d987f20174ef0d8d9b549e + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda + sha256: dd1ac7c8b6a189c8aa18f6c7df019d8f6df495300a259e3fbebdb542fc955c3b + md5: d9f19a7c4199249fa229891b573b6f9b depends: - pydantic >=2.7.0 - python >=3.9 - python-dotenv >=0.21.0 license: MIT - license_family: MIT - size: 30832 - timestamp: 1733851937909 + size: 31426 + timestamp: 1734127929720 - kind: conda name: pygments version: 2.18.0 @@ -8385,19 +8380,20 @@ packages: - kind: conda name: transformers version: 4.47.0 - build: pyhd8ed1ab_0 + build: pyhd8ed1ab_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda - sha256: b9cf6ae5fcd6c78dcaa24ebfd41580a4a10b0649ac726a44d3521f70fdece218 - md5: 495745078b8e18fe2dcc3267f4baae0d + url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda + sha256: d31821081219a0ede5c1f356b65a61ce98ac11e2df78b0eaa684c17c73389fbf + md5: 6d2ec1ddee8057d2d724a0ab0bb578a0 depends: - datasets !=2.5.0 - filelock - huggingface_hub >=0.23.0,<1.0 - numpy >=1.17 - packaging >=20.0 - - python >=3.8 + - python >=3.9 - pyyaml >=5.1 - regex !=2019.12.17 - requests @@ -8406,8 +8402,8 @@ packages: - tqdm >=4.27 license: Apache-2.0 license_family: APACHE - size: 3721837 - timestamp: 1733708797762 + size: 3726957 + timestamp: 1733948063517 - kind: conda name: typer version: 0.15.1 @@ -8625,12 +8621,12 @@ packages: timestamp: 1730214606664 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312h12e396e_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.0-py312h12e396e_0.conda - sha256: a2a11a751d3fdd2bec79d876687136cee81d0125be40cebd3518042e1e15c349 - md5: b53a91a5cc50cf07f690a5d3b9f91db5 + url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.3-py312h12e396e_0.conda + sha256: c89755d8e8f6384b3ba13e41dcabb40bf690c38b9d61512e963129badb1ad332 + md5: b76a5ad00856af6e74da9c3e85fed0cc depends: - __glibc >=2.17,<3.0.a0 - anyio >=3.0.0 @@ -8641,16 +8637,16 @@ packages: - __glibc >=2.17 license: MIT license_family: MIT - size: 409700 - timestamp: 1732689603044 + size: 410432 + timestamp: 1733998892675 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312h8cbf658_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.0-py312h8cbf658_0.conda - sha256: 1d7fde47edacf01a81c0d9ac3f284d4d30982d33686c505374bfa2c7b02bbf8d - md5: 9ecaaf340ad422209a04fcf854fb4a3f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.3-py312h8cbf658_0.conda + sha256: 9be9569c279dc6e7881e9b45fe9f0368218538c660641e2f8b0e023e72a6571c + md5: 3465c1a19634233abc2d1832ac01fd31 depends: - anyio >=3.0.0 - libgcc >=13 @@ -8661,16 +8657,16 @@ packages: - __glibc >=2.17 license: MIT license_family: MIT - size: 404235 - timestamp: 1732689685476 + size: 404239 + timestamp: 1733998941045 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312hcd83bfe_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.0-py312hcd83bfe_0.conda - sha256: 554c4550813b744794fc70451c87d540d38138e6dc901993e85515ffa91087d2 - md5: 0eb2c3f65788f61f905d31ac062fe4b6 + url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.3-py312hcd83bfe_0.conda + sha256: b64b78a7d6384bf72a878256802c783c692fe641ab4b806fd7e9f45e18a5e3b4 + md5: 13b89e1aa72aa773806b1f59ec018b67 depends: - __osx >=11.0 - anyio >=3.0.0 @@ -8681,8 +8677,8 @@ packages: - __osx >=11.0 license: MIT license_family: MIT - size: 356744 - timestamp: 1732689860624 + size: 363162 + timestamp: 1733999215646 - kind: conda name: websockets version: '14.1' diff --git a/magic.lock b/magic.lock index 912dc45d9a..4a4f517464 100644 --- a/magic.lock +++ b/magic.lock @@ -14,19 +14,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h8c8080f_14.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h0f28dba_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.5-hb9d3cd8_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h9cc6398_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-hf811eff_10.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hce7dc5d_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hfd54f12_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-ha3c2ba9_11.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.5-h55e9418_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h9cc6398_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h9cc6398_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hed26007_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-h571fd1c_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb921021_15.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h1a47875_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.6-hb9d3cd8_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h4e1184b_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h7959bf6_11.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hefd7a92_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hbf5b6a4_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h11f4f37_12.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.7-hf454442_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h4e1184b_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h4e1184b_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hd92328a_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-hc430e4a_4.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 @@ -87,7 +87,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlienc-1.1.0-hb9d3cd8_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-25_linux64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libcrc32c-1.1.2-h9c3ff4c_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.22-hb9d3cd8_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda @@ -132,12 +132,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/lz4-c-1.10.0-h5888daf_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-3.0.2-py312h178313f_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multidict-6.1.0-py312h178313f_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/multiprocess-0.70.15-py312h98912ed_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -167,7 +167,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.1-py312h12e396e_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - 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-pyha55dd90_7.conda @@ -202,7 +202,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-64/tornado-6.4.2-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -213,7 +213,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.21.0-py312h66e93f0_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.0-py312h12e396e_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.3-py312h12e396e_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/websockets-14.1-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/wrapt-1.17.0-py312h66e93f0_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-64/xorg-libxau-1.0.11-hb9d3cd8_1.conda @@ -233,19 +233,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hb4dd4bb_14.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h1aca5b9_2.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.5-h86ecc28_0.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h10558d5_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-ha9733bd_10.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h53134c8_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h8aa8d47_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h2f8d747_11.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.5-h757e810_4.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h10558d5_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h10558d5_3.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-hc8d91e0_5.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h2d3f608_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-h2cb9fb3_15.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h740c5af_3.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.6-h86ecc28_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h0f0193d_5.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-hcbd8f92_11.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h3df160d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h92bf595_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h5f50e26_12.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.7-h2080895_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h0f0193d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h0f0193d_4.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-h8a4e35f_7.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h849ce1a_4.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 @@ -307,7 +307,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlienc-1.1.0-h86ecc28_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcblas-3.9.0-25_linuxaarch64_openblas.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcrc32c-1.1.2-h01db608_0.tar.bz2 - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.11.1-h6702fde_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.22-h86ecc28_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2 - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda @@ -352,12 +352,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lz4-c-1.10.0-h5ad3122_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/markupsafe-3.0.2-py312h74ce7d3_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multidict-6.1.0-py312hcc812fe_2.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/multiprocess-0.70.15-py312hdd3e373_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -387,7 +387,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.1-py312h8cbf658_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - 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-pyha55dd90_7.conda @@ -422,7 +422,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tornado-6.4.2-py312h52516f5_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -433,7 +433,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/uvloop-0.21.0-py312hb2c0f52_1.conda - - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.0-py312h8cbf658_0.conda + - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.3-py312h8cbf658_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/websockets-14.1-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/wrapt-1.17.0-py312hb2c0f52_0.conda - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/xorg-libxau-1.0.11-h86ecc28_1.conda @@ -452,19 +452,19 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/annotated-types-0.7.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.2.0-pyh71513ae_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h93897a1_14.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-h4d88cd7_2.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.5-h5505292_0.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h4d88cd7_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h9fa824c_10.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-hc68443d_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-h66499f2_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-hd073cef_11.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.5-hb201fd0_4.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h4d88cd7_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h4d88cd7_3.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-hb9a023b_5.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-h39838b8_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h8bc59a9_15.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-hc8a0bd2_3.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.6-h5505292_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-hc8a0bd2_5.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h54f970a_11.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-h96aa502_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-haba67d1_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h24f418c_12.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.7-h1be5864_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-hc8a0bd2_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-hc8a0bd2_4.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-h19a973c_7.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-he0ff2e4_4.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 @@ -524,7 +524,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlienc-1.1.0-hd74edd7_2.conda - 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/libcurl-8.11.1-h73640d1_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.5-ha82da77_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.22-hd74edd7_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2 @@ -563,12 +563,12 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/lz4-c-1.10.0-h286801f_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/markdown-it-py-3.0.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-3.0.2-py312h998013c_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121105-release.conda - - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121105-3.12release.conda - - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121405-release.conda + - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121405-3.12release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda - conda: https://conda.anaconda.org/conda-forge/noarch/mdurl-0.1.2-pyhd8ed1ab_1.conda - - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda + - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-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/noarch/mypy_extensions-1.0.0-pyha770c72_1.conda @@ -598,7 +598,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.22-pyh29332c3_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.1-py312hcd83bfe_0.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda - 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-pyha55dd90_7.conda @@ -632,7 +632,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/osx-arm64/tornado-6.4.2-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/traitlets-5.14.3-pyhd8ed1ab_1.conda - - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda + - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-0.15.1-pyhd8ed1ab_0.conda - conda: https://conda.anaconda.org/conda-forge/noarch/typer-slim-standard-0.15.1-hd8ed1ab_0.conda @@ -643,7 +643,7 @@ environments: - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.32.1-pyh31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.32.1-h31011fe_1.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.21.0-py312h0bf5046_1.conda - - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.0-py312hcd83bfe_0.conda + - conda: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.3-py312hcd83bfe_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/websockets-14.1-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/wrapt-1.17.0-py312hea69d52_0.conda - conda: https://conda.anaconda.org/conda-forge/osx-arm64/xorg-libxau-1.0.11-hd74edd7_1.conda @@ -865,469 +865,465 @@ packages: - kind: conda name: aws-c-auth version: 0.8.0 - build: h8c8080f_14 - build_number: 14 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-h8c8080f_14.conda - sha256: 7a9f7763e3a151ae1008ead51458f9b889b657f388266d53c6f7fa383dbb2481 - md5: a9284141081982473ebf41b92566bbcb + build: h2cb9fb3_15 + build_number: 15 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-h2cb9fb3_15.conda + sha256: 4ce859dc9ff128bf5515604c43f33fb511386022fc9765ca077990f2a3f23df5 + md5: e524686ace966acefb5b8cbc6e8b3daa depends: - - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 107775 - timestamp: 1733709347751 + size: 111854 + timestamp: 1734021745104 - kind: conda name: aws-c-auth version: 0.8.0 - build: h93897a1_14 - build_number: 14 + build: h8bc59a9_15 + build_number: 15 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h93897a1_14.conda - sha256: 3ec33500c5def035acb9ba406161f5452e39b1b818c67d8a56103d6def47bda6 - md5: 061e221dc5cca62be8fab49a16bfb99d + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h8bc59a9_15.conda + sha256: 0e41e56b662e76e024182adebcd91d09a4d38a83b35217c84e4967354dfff9a2 + md5: f688b8893c20ad9477a19e7ce614014a depends: - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 license: Apache-2.0 license_family: Apache - size: 92250 - timestamp: 1733709418870 + size: 92507 + timestamp: 1734021831330 - kind: conda name: aws-c-auth version: 0.8.0 - build: hb4dd4bb_14 - build_number: 14 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-auth-0.8.0-hb4dd4bb_14.conda - sha256: a9622ac836bbe4a24310e0e77a42ef0a17e5fa0703276f8bbbef945deaca337c - md5: a5b86123507e184fb4463e1f8890b398 + build: hb921021_15 + build_number: 15 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-auth-0.8.0-hb921021_15.conda + sha256: 537006ad6d5097c134494166a6a1dc1451d5d050878d7b82cef498bfda40ba8a + md5: c79d50f64cffa5ad51ecc1a81057962f depends: + - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 111975 - timestamp: 1733709317063 + size: 107614 + timestamp: 1734021692519 - kind: conda name: aws-c-cal version: 0.8.1 - build: h0f28dba_2 - build_number: 2 + build: h1a47875_3 + build_number: 3 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h0f28dba_2.conda - sha256: 023fa0d0618b652b0be5eac73d92fd47136351da7d331334c45d5dd1ee760401 - md5: 94faebd978282d2a4a8514141daec756 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-cal-0.8.1-h1a47875_3.conda + sha256: 095ac824ea9303eff67e04090ae531d9eb33d2bf8f82eaade39b839c421e16e8 + md5: 55a8561fdbbbd34f50f57d9be12ed084 depends: - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 47694 - timestamp: 1733390870810 + size: 47601 + timestamp: 1733991564405 - kind: conda name: aws-c-cal version: 0.8.1 - build: h1aca5b9_2 - build_number: 2 + build: h740c5af_3 + build_number: 3 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h1aca5b9_2.conda - sha256: df203473e8675fc27ae5cb62bc09e336fe92655df0a0056e73087cb22aed287e - md5: 31d9e82aac5cd3fe399535bcec0f2975 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-cal-0.8.1-h740c5af_3.conda + sha256: c5c7961d48ca7320ed3560c036f7aa5244df4b85d9657f70aacc5faba3e1509a + md5: 57ed2c445d7ef01d121b9bcea0522913 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 49822 - timestamp: 1733390907734 + size: 50036 + timestamp: 1733991581303 - kind: conda name: aws-c-cal version: 0.8.1 - build: h4d88cd7_2 - build_number: 2 + build: hc8a0bd2_3 + build_number: 3 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-h4d88cd7_2.conda - sha256: 30e6bc4feea78a280553b084a960515e550dabfae0e63ba511be773c3a9f6b5a - md5: 3cb07f08e5aabe657b0b5fb13945e79a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-cal-0.8.1-hc8a0bd2_3.conda + sha256: 1f44be36e1daa17b4b081debb8aee492d13571084f38b503ad13e869fef24fe4 + md5: 8b0ce61384e5a33d2b301a64f3d22ac5 depends: - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - openssl >=3.3.1,<4.0a0 license: Apache-2.0 license_family: Apache - size: 39878 - timestamp: 1733390962202 + size: 39925 + timestamp: 1733991649383 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: h5505292_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.5-h5505292_0.conda - sha256: 54554886028d25b5c752369e7ae8321852e875fdc780ff9357b72a31f3e5d5b4 - md5: 49f049f8b10cf8c2c5a26660854fd21a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-common-0.10.6-h5505292_0.conda + sha256: 3bde135c8e74987c0f79ecd4fa17ec9cff0d658b3090168727ca1af3815ae57a + md5: 145e5b4c9702ed279d7d68aaf096f77d depends: - __osx >=11.0 license: Apache-2.0 license_family: Apache - size: 222184 - timestamp: 1733324871298 + size: 221863 + timestamp: 1733975576886 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: h86ecc28_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.5-h86ecc28_0.conda - sha256: bdea66b7be9acd463bbfd583d2f80ff676d376c60480a2d3f9f7de7b4bf6d2b2 - md5: fcd238b0cc98927742a96aa411123e32 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-common-0.10.6-h86ecc28_0.conda + sha256: 57288ec5df35781bea8fc6a8c9099cad6695b747784fc1b8862a0f9e5b3bf5ab + md5: fef806a0f6de853670c746bbece01966 depends: - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 258257 - timestamp: 1733324684433 + size: 259031 + timestamp: 1733975520465 - kind: conda name: aws-c-common - version: 0.10.5 + version: 0.10.6 build: hb9d3cd8_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.5-hb9d3cd8_0.conda - sha256: 93e83e2a31f41bac2aa5eae8fbc7f1d31449a04a3df8a64ebcac2433f52a86ad - md5: d8288fbad9d809b9ca139b8beb6553ef + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-common-0.10.6-hb9d3cd8_0.conda + sha256: 496e92f2150fdc351eacf6e236015deedb3d0d3114f8e5954341cbf9f3dda257 + md5: d7d4680337a14001b0e043e96529409b depends: - __glibc >=2.17,<3.0.a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 237114 - timestamp: 1733324723318 + size: 236574 + timestamp: 1733975453350 - kind: conda name: aws-c-compression version: 0.3.0 - build: h10558d5_4 - build_number: 4 + build: h0f0193d_5 + build_number: 5 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h10558d5_4.conda - sha256: 45ea74461b6a5453325db2201ba9f728f20e89ead17730e93ddd7411a833c058 - md5: 8ceaf4396978c33bc695129425f12734 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-compression-0.3.0-h0f0193d_5.conda + sha256: 3f05d19f68ef800f33d44ea2a4211003124076516c8469abc7d432236344df53 + md5: 3a1421d12435df5b4c412cc4c8fac64d depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 19742 - timestamp: 1733391062884 + size: 19740 + timestamp: 1733991625201 - kind: conda name: aws-c-compression version: 0.3.0 - build: h4d88cd7_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-h4d88cd7_4.conda - sha256: b6900e82b553d18d5528322de236af3a7f64ccb3df08e8320142894144a5c716 - md5: 8c67ff0c68aea28be3efec6f8d799a19 + build: h4e1184b_5 + build_number: 5 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h4e1184b_5.conda + sha256: 62ca84da83585e7814a40240a1e750b1563b2680b032a471464eccc001c3309b + md5: 3f4c1197462a6df2be6dc8241828fe93 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 18219 - timestamp: 1733391126008 + size: 19086 + timestamp: 1733991637424 - kind: conda name: aws-c-compression version: 0.3.0 - build: h9cc6398_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-compression-0.3.0-h9cc6398_4.conda - sha256: 045a3231b0aacb544ea9e348c22f863d96631f14a3a2b59413a72f61259a32a4 - md5: 076717670d5406e90070120314ff9b4f + build: hc8a0bd2_5 + build_number: 5 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-compression-0.3.0-hc8a0bd2_5.conda + sha256: 47b2813f652ce7e64ac442f771b2a5f7d4af4ad0d07ff51f6075ea80ed2e3f09 + md5: a8b6c17732d14ed49d0e9b59c43186bc depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 19029 - timestamp: 1733390975089 + size: 18068 + timestamp: 1733991869211 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: h9fa824c_10 - build_number: 10 + build: h54f970a_11 + build_number: 11 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h9fa824c_10.conda - sha256: 12f2ccc71bb993934cc489af359cb7399f671c3111f64fe2be9c8231819e11bd - md5: 9f6a7984f9ce3c6149fa36865060928a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-event-stream-0.5.0-h54f970a_11.conda + sha256: f0667935f4e0d4c25e0e51da035640310b5ceeb8f723156734439bde8b848d7d + md5: ba41238f8e653998d7d2f42e3a8db054 depends: - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 47460 - timestamp: 1733696263921 + size: 47078 + timestamp: 1734024749727 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: ha9733bd_10 - build_number: 10 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-ha9733bd_10.conda - sha256: e8189bdd1af1a3f68a460bcb3c852193cfdf7afa2f1a82d687d30055242b20e2 - md5: cb0877c6fcc93454f221ba4eba798cfc + build: h7959bf6_11 + build_number: 11 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-h7959bf6_11.conda + sha256: 10d7240c7db0c941fb1a59c4f8ea6689a434b03309ee7b766fa15a809c553c02 + md5: 9b3fb60fe57925a92f399bc3fc42eccf depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 55066 - timestamp: 1733696212604 + size: 54003 + timestamp: 1734024480949 - kind: conda name: aws-c-event-stream version: 0.5.0 - build: hf811eff_10 - build_number: 10 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-event-stream-0.5.0-hf811eff_10.conda - sha256: 3fbc86e70b543f26cc485f98714b7f789c4ece05128046458681893f43b7f5f1 - md5: 5046c78dd139a333b6acd7376a10e0a7 + build: hcbd8f92_11 + build_number: 11 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-event-stream-0.5.0-hcbd8f92_11.conda + sha256: 79aa363c71c891a27496c0498f8d498b2ddc87b3ccb3b6c9da5b50b05936ebb8 + md5: e0772c59af4243a9b2565baa5d79e5b6 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 53973 - timestamp: 1733696170256 + size: 55207 + timestamp: 1734024546663 - kind: conda name: aws-c-http version: 0.9.2 - build: h53134c8_3 - build_number: 3 + build: h3df160d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h53134c8_3.conda - sha256: a4d217f89ad0e9326da57b2d9bd4cd5cb0a95423d092be7ed81e88fb075d4dbe - md5: 2ffd03180381a92332b673cefc602234 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-http-0.9.2-h3df160d_4.conda + sha256: 3a1d2d332945306be9d49e569b95e4cc172d825f10e88715513a172f28ebb59e + md5: 28f00aa7fd9556c4c461328cf146c20b depends: - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 189812 - timestamp: 1733683248290 + size: 190586 + timestamp: 1734008442362 - kind: conda name: aws-c-http version: 0.9.2 - build: hc68443d_3 - build_number: 3 + build: h96aa502_4 + build_number: 4 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-hc68443d_3.conda - sha256: 71be93cd1d8dfa5858939ba53431abaee859fbc98bdf9f5033bfa41af76b140a - md5: 6353604cb9803e63fce359388201514e + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-http-0.9.2-h96aa502_4.conda + sha256: 22e4737c8a885995b7c1ae1d79c1f6e78d489e16ec079615980fdde067aeaf76 + md5: 495c93a4f08b17deb3c04894512330e6 depends: - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 license: Apache-2.0 license_family: Apache - size: 153237 - timestamp: 1733683327609 + size: 152983 + timestamp: 1734008451473 - kind: conda name: aws-c-http version: 0.9.2 - build: hce7dc5d_3 - build_number: 3 + build: hefd7a92_4 + build_number: 4 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hce7dc5d_3.conda - sha256: 7e864b6d4255c4edbd1b2c0f519849017d2a48e54b282748eaa8f9f0fc98a6f4 - md5: c0f54e8975ad42d2864f4b1918356b3b + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-http-0.9.2-hefd7a92_4.conda + sha256: 4a330206bd51148f6c13ca0b7a4db40f29a46f090642ebacdeb88b8a4abd7f99 + md5: 5ce4df662d32d3123ea8da15571b6f51 depends: - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-compression >=0.3.0,<0.3.1.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 197506 - timestamp: 1733683203582 + size: 197731 + timestamp: 1734008380764 - kind: conda name: aws-c-io version: 0.15.3 - build: h66499f2_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-h66499f2_3.conda - sha256: 86ff175fa5dced16cf41bcc5c353de080314fcb81f4aed326f29b9f22add9aad - md5: e64159c5b106a0365544cfe9d4ef79ec + build: h92bf595_4 + build_number: 4 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h92bf595_4.conda + sha256: ffa2fc1ddb01f4b8ac038ab70a5533306119754ba438b23399f2a82a38cf27bf + md5: 539df02c00c506c78aebdf6c0fc75743 depends: - - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 + - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 136845 - timestamp: 1733588465582 + size: 161836 + timestamp: 1733997573790 - kind: conda name: aws-c-io version: 0.15.3 - build: h8aa8d47_3 - build_number: 3 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-io-0.15.3-h8aa8d47_3.conda - sha256: cb08b2e9258637e810ac283600b7de2d7a68f55a61e67226e9cce2537f36a06b - md5: 8ece20a51dafae96444e90c7ddaac41a + build: haba67d1_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-io-0.15.3-haba67d1_4.conda + sha256: 2d0859b57439cd98e854577aa3e07eb171b590098d51a8c908bab5ec497a3d38 + md5: 74eace4fab8675263a848075e991d380 depends: + - __osx >=11.0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 - - s2n >=1.5.9,<1.5.10.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 161513 - timestamp: 1733588480960 + size: 136213 + timestamp: 1733997647724 - kind: conda name: aws-c-io version: 0.15.3 - build: hfd54f12_3 - build_number: 3 + build: hbf5b6a4_4 + build_number: 4 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hfd54f12_3.conda - sha256: 6d0bd78d5c7d3ec586691d54c8aebc79d089358ff9e793f0cac857a1f977a1a0 - md5: c0b9f79cd2f5797b913415511bfa2cd6 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-io-0.15.3-hbf5b6a4_4.conda + sha256: 3195fe431d3c43d6ecf749796d3acb093645c9d0de9998616641dada4b5fa2a6 + md5: ad3a6713063c18b9232c48e89ada03ac depends: - __glibc >=2.17,<3.0.a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 - s2n >=1.5.9,<1.5.10.0a0 license: Apache-2.0 license_family: Apache - size: 158115 - timestamp: 1733588386529 + size: 157886 + timestamp: 1733997507332 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: h2f8d747_11 - build_number: 11 - subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h2f8d747_11.conda - sha256: b66de0de359bfaec5084bdc78fda6dfbd8cf8e71c68a76dcd7b74e8a00ec6052 - md5: f4ccd7c1e73c662fd9a795147ca8ca9f + build: h11f4f37_12 + build_number: 12 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-h11f4f37_12.conda + sha256: 512d3969426152d9d5fd886e27b13706122dc3fa90eb08c37b0d51a33d7bb14a + md5: 96c3e0221fa2da97619ee82faa341a73 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 168898 - timestamp: 1733739548597 + size: 194672 + timestamp: 1734025626798 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: ha3c2ba9_11 - build_number: 11 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-mqtt-0.11.0-ha3c2ba9_11.conda - sha256: 187787bb41e7b616c9317c12c32a5027aae784d1f9335f9d6d34a3fa7ebcb1ec - md5: 93c5070d6f9b4cb2ed9de52ce247cebb + build: h24f418c_12 + build_number: 12 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-h24f418c_12.conda + sha256: 96575ea1dd2a9ea94763882e40a66dcbff9c41f702bf37c9514c4c719b3c11dd + md5: c072045a6206f88015d02fcba1705ea1 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 193829 - timestamp: 1733740033267 + size: 134371 + timestamp: 1734025379525 - kind: conda name: aws-c-mqtt version: 0.11.0 - build: hd073cef_11 - build_number: 11 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-mqtt-0.11.0-hd073cef_11.conda - sha256: d2ee2cdc651250a38f67b84ec65de3ba5493c760821d22c01edb8defd6393dc9 - md5: 0c1deb6e00f80b4aedcb2c4fcfea6407 + build: h5f50e26_12 + build_number: 12 + subdir: linux-aarch64 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-mqtt-0.11.0-h5f50e26_12.conda + sha256: ffeb9100cc8fd4093e1a6fdfd938bc4a396dd77480b7fb17aa42855a4d5e2c70 + md5: 031ca33115d4b1eeb43f435d6215778c depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 134556 - timestamp: 1733739661152 + size: 169516 + timestamp: 1734025167885 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: h55e9418_4 - build_number: 4 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.5-h55e9418_4.conda - sha256: 04d7fd3574fa76c184f04630125a760afa4ae5d4109eec36f22fe127cc85e164 - md5: faec629f0eb306cfe17ed1615249e188 + version: 0.7.7 + build: h1be5864_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.7-h1be5864_0.conda + sha256: 22966164d63808689fffd35945f57756c95337327e28099b5d77b29fc6a56ecc + md5: a37bba7acb62dd70492ee01eacca3b8f depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 - - libgcc >=13 - - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 113811 - timestamp: 1733717653326 + size: 97598 + timestamp: 1734146239038 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: h757e810_4 - build_number: 4 + version: 0.7.7 + build: h2080895_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.5-h757e810_4.conda - sha256: 3da5e1b88d68c5cb2eb1dd898a7c6192be9e1df0bd2733d39d6c0ffe9fc546a2 - md5: 96a657e5856e9e92755170630067f63c + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-s3-0.7.7-h2080895_0.conda + sha256: 20bc2dd60e6518d9b8215c2b652ab5c52ee8a997d3b9a5f69e2dabd28cbf26b2 + md5: ae223efa63fbb4262a2d85c3ab3bc4f5 depends: - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 @@ -1335,273 +1331,274 @@ packages: - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 117478 - timestamp: 1733717680655 + size: 117641 + timestamp: 1734146239779 - kind: conda name: aws-c-s3 - version: 0.7.5 - build: hb201fd0_4 - build_number: 4 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-s3-0.7.5-hb201fd0_4.conda - sha256: c25c62173770b681083962b497a927f306e7f3d05b459dd59e4c12eaf49e9f0b - md5: 83b9775bbe5419cf4916e646e870b87a + version: 0.7.7 + build: hf454442_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-s3-0.7.7-hf454442_0.conda + sha256: c2f205a7bf64c5f40eea373b3a0a7c363c9aa9246a13dd7f3d9c6a4434c4fe2d + md5: 947c82025693bebd557f782bb5d6b469 depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-checksums >=0.2.2,<0.2.3.0a0 + - libgcc >=13 + - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 97441 - timestamp: 1733717822438 + size: 114156 + timestamp: 1734146123386 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h10558d5_3 - build_number: 3 + build: h0f0193d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h10558d5_3.conda - sha256: 0f6a15d711bc4d6b2d2b8451ad46bf78af6876235ad56bf142644a4ce2240f52 - md5: 1ba505fc4243ad75507efa8976e1790f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-c-sdkutils-0.2.1-h0f0193d_4.conda + sha256: ede8e782467c87ac80ceb9c9af9e917d121b7d8b8c698186d18e3cecd36f2210 + md5: 53e798d720dd78b78847a7b2fdb05fc9 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 58123 - timestamp: 1733398238726 + size: 58621 + timestamp: 1733994421495 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h4d88cd7_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-h4d88cd7_3.conda - sha256: a94ecde4e61de8effd9c93ba3527eb010773b5422d2d079ffdcd796ec77fcd4e - md5: 5ec333d73530fbfc2db670eeb6911bff + build: h4e1184b_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h4e1184b_4.conda + sha256: df586f42210af1134b1c88ff4c278c3cb6d6c807c84eac48860062464b28554d + md5: a5126a90e74ac739b00564a4c7ddcc36 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 49739 - timestamp: 1733398400904 + size: 56094 + timestamp: 1733994449690 - kind: conda name: aws-c-sdkutils version: 0.2.1 - build: h9cc6398_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-c-sdkutils-0.2.1-h9cc6398_3.conda - sha256: 917f679da38f162e191c5d6817b35fbf2ae0584b1d335bc229fd01e6077108ee - md5: 10bdb7fc3763760dcea1cd908ece6b2b + build: hc8a0bd2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-sdkutils-0.2.1-hc8a0bd2_4.conda + sha256: de98343ce42d2e569b3380292d20f47bf39bda08aadabcbb8e650d3f38fd742f + md5: 22f72f8cd7ead211304ac17d337d96e0 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 55864 - timestamp: 1733398187914 + size: 49664 + timestamp: 1733994553014 - kind: conda name: aws-checksums version: 0.2.2 - build: h10558d5_3 - build_number: 3 + build: h0f0193d_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h10558d5_3.conda - sha256: 108860ae5d61a4dc0b0d91282d0171ba7fd69686c11b4bcbdcd3f8b8efc98adb - md5: 1ded47669f79301e4a3d1d3d469494c0 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-checksums-0.2.2-h0f0193d_4.conda + sha256: 9f1e3635a587bcf92b61d88c7af7d24cd89c147c6d0ae58afbde08e65bcf48da + md5: 3bd35b0adab3d743f09e0252cc441d6b depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 72203 - timestamp: 1733398350602 + size: 72154 + timestamp: 1733994384415 - kind: conda name: aws-checksums version: 0.2.2 - build: h4d88cd7_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-h4d88cd7_3.conda - sha256: 7d0d71e399fa6b0a1e686470d4a982396a9d0d29be29bf07591d83739cc29a0a - md5: 45409e27b510588196b9f116f86c2d51 + build: h4e1184b_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h4e1184b_4.conda + sha256: 1ed9a332d06ad595694907fad2d6d801082916c27cd5076096fda4061e6d24a8 + md5: 74e8c3e4df4ceae34aa2959df4b28101 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 + - libgcc >=13 license: Apache-2.0 license_family: Apache - size: 70160 - timestamp: 1733398484776 + size: 72762 + timestamp: 1733994347547 - kind: conda name: aws-checksums version: 0.2.2 - build: h9cc6398_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-checksums-0.2.2-h9cc6398_3.conda - sha256: a3aea2fc8ccf85ae64c5ce9c4e507be37173b94909191480e5151c482a220e40 - md5: d6dd8b87b95195d8d26893611d94ba3b + build: hc8a0bd2_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-checksums-0.2.2-hc8a0bd2_4.conda + sha256: 215086d95e8ff1d3fcb0197ada116cc9d7db1fdae7573f5e810d20fa9215b47c + md5: e70e88a357a3749b67679c0788c5b08a depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 - - libgcc >=13 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.0a0 license: Apache-2.0 license_family: Apache - size: 72681 - timestamp: 1733398331530 + size: 70186 + timestamp: 1733994496998 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hb9a023b_5 - build_number: 5 + build: h19a973c_7 + build_number: 7 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-hb9a023b_5.conda - sha256: d1d89918a1f6e08f16275d82218b2f73012cee2def3ad8f1a8d28af7497e66cc - md5: 70a976e616535dbab5e1f354734a238a + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-crt-cpp-0.29.7-h19a973c_7.conda + sha256: 8269e6746eb3a5d15b732a3983888bf98dfc1f6594e95250fc8d16b43cfd5ff9 + md5: 95714136bef3e917bd5a2942d4682b20 depends: - __osx >=11.0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libcxx >=18 license: Apache-2.0 license_family: Apache - size: 236182 - timestamp: 1733767086227 + size: 236249 + timestamp: 1734178020924 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hc8d91e0_5 - build_number: 5 + build: h8a4e35f_7 + build_number: 7 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-hc8d91e0_5.conda - sha256: c3be4f3f77ac7ba716228df1099eb68a5e7a4cbbe386a4732a28f33d6b780cc4 - md5: 8f14e3d651a08c9b2f85c6e5d359e250 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-crt-cpp-0.29.7-h8a4e35f_7.conda + sha256: 5ba9188e0cb4e3faff9bc96774febb040aa3b802aedba29d847e00e7b5eab84e + md5: d77a9e3d7ce15399903e92825fd651b5 depends: - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 284313 - timestamp: 1733766768643 + size: 283154 + timestamp: 1734177845248 - kind: conda name: aws-crt-cpp version: 0.29.7 - build: hed26007_5 - build_number: 5 + build: hd92328a_7 + build_number: 7 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hed26007_5.conda - sha256: f996cb94f3ef212792f288a0f7c5201ac7f00bb43502702b76e408e50d80132f - md5: 7c64e4ac7a484fc525a4ce7b9baf709a + url: https://conda.anaconda.org/conda-forge/linux-64/aws-crt-cpp-0.29.7-hd92328a_7.conda + sha256: 094cd81f1e5ba713e9e7a272ee52b5dde3ccc4842ea90f19c0354a00bbdac3d9 + md5: 02b95564257d5c3db9c06beccf711f95 depends: - __glibc >=2.17,<3.0.a0 - aws-c-auth >=0.8.0,<0.8.1.0a0 - aws-c-cal >=0.8.1,<0.8.2.0a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.0a0 - aws-c-event-stream >=0.5.0,<0.5.1.0a0 - aws-c-http >=0.9.2,<0.9.3.0a0 - aws-c-io >=0.15.3,<0.15.4.0a0 - aws-c-mqtt >=0.11.0,<0.11.1.0a0 - - aws-c-s3 >=0.7.5,<0.7.6.0a0 + - aws-c-s3 >=0.7.7,<0.7.8.0a0 - aws-c-sdkutils >=0.2.1,<0.2.2.0a0 - libgcc >=13 - libstdcxx >=13 license: Apache-2.0 license_family: Apache - size: 354783 - timestamp: 1733766766977 + size: 354703 + timestamp: 1734177883319 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h2d3f608_3 - build_number: 3 + build: h849ce1a_4 + build_number: 4 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h2d3f608_3.conda - sha256: b335dfee7b04117ddae857564300ed6795718e2305141c7d631dcc434503a261 - md5: 57bdfac803ce58e3a3256752d7e5aa6e + url: https://conda.anaconda.org/conda-forge/linux-aarch64/aws-sdk-cpp-1.11.458-h849ce1a_4.conda + sha256: 51b9e9df8cbab4a13a1b9d39d6ef5ed162aaa29c09a745810e00bbe92e1045c1 + md5: cda7747f4398be8d1fb37362815917a7 depends: - - aws-c-common >=0.10.5,<0.10.6.0a0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 + - libcurl >=8.11.1,<9.0a0 - libgcc >=13 - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2896174 - timestamp: 1733808114676 + size: 2920625 + timestamp: 1734093552712 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h39838b8_3 - build_number: 3 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-h39838b8_3.conda - sha256: b5ef3a956937d61b59b9dd4b8c23eeb0bc254c37a97028a50c3ff6c8df399deb - md5: 3a6c8f65692febdf791bece561b371c8 + build: hc430e4a_4 + build_number: 4 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-hc430e4a_4.conda + sha256: 2dc09f6f9c49127b5f96e7535b64a9c521b944d76d8b7d03d48ae80257ac1cea + md5: aeefac461bea1f126653c1285cf5af08 depends: - - __osx >=11.0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __glibc >=2.17,<3.0.a0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 - - libcxx >=18 + - libcurl >=8.11.1,<9.0a0 + - libgcc >=13 + - libstdcxx >=13 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 2837854 - timestamp: 1733808787914 + size: 3060561 + timestamp: 1734093737431 - kind: conda name: aws-sdk-cpp version: 1.11.458 - build: h571fd1c_3 - build_number: 3 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/aws-sdk-cpp-1.11.458-h571fd1c_3.conda - sha256: c2f38374a6f4dd804f76c8a071bc7f7d37dfb43e194eb93a473ff789460c011b - md5: 374cf1add8af327b15b1b1e4873f4955 + build: he0ff2e4_4 + build_number: 4 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/aws-sdk-cpp-1.11.458-he0ff2e4_4.conda + sha256: 535b970aaa13be45f8cab8205c59f044b17364111c41a227f061775a5c834e18 + md5: 0981ed87098b149bdb7d99a4a3fd0e58 depends: - - __glibc >=2.17,<3.0.a0 - - aws-c-common >=0.10.5,<0.10.6.0a0 + - __osx >=11.0 + - aws-c-common >=0.10.6,<0.10.7.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.7,<0.29.8.0a0 - - libcurl >=8.10.1,<9.0a0 - - libgcc >=13 - - libstdcxx >=13 + - libcurl >=8.11.1,<9.0a0 + - libcxx >=18 - libzlib >=1.3.1,<2.0a0 - openssl >=3.4.0,<4.0a0 license: Apache-2.0 license_family: Apache - size: 3062994 - timestamp: 1733808211748 + size: 2826534 + timestamp: 1734094018287 - kind: conda name: azure-core-cpp version: 1.14.0 @@ -3798,65 +3795,65 @@ packages: timestamp: 1633683992603 - kind: conda name: libcurl - version: 8.10.1 - build: h13a7ad3_0 - subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.10.1-h13a7ad3_0.conda - sha256: 983a977c5627f975a930542c8aabb46089ec6ea72f28d9c4d3ee8eafaf2fc25a - md5: d84030d0863ffe7dea00b9a807fee961 + version: 8.11.1 + build: h332b0f4_0 + subdir: linux-64 + url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.11.1-h332b0f4_0.conda + sha256: 3cd4075b2a7b5562e46c8ec626f6f9ca57aeecaa94ff7df57eca26daa94c9906 + md5: 2b3e0081006dc21e8bf53a91c83a055c depends: - - __osx >=11.0 + - __glibc >=2.17,<3.0.a0 - krb5 >=1.21.3,<1.22.0a0 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libgcc >=13 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 379948 - timestamp: 1726660033582 + size: 423011 + timestamp: 1733999897624 - kind: conda name: libcurl - version: 8.10.1 - build: h3ec0cbf_0 + version: 8.11.1 + build: h6702fde_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.10.1-h3ec0cbf_0.conda - sha256: 7c4983001c727f713b4448280ed4803d301087c184cd2819ba0b788ca62b73d1 - md5: f43539295c4e0cd15202d41bc72b8a26 + url: https://conda.anaconda.org/conda-forge/linux-aarch64/libcurl-8.11.1-h6702fde_0.conda + sha256: 9fc65d21a58f4aad1bc39dfb94a178893aeb035850c5cf0ed9736674279f390b + md5: 7dec1cd271c403d1636bda5aa388a55d depends: - krb5 >=1.21.3,<1.22.0a0 - libgcc >=13 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 439171 - timestamp: 1726659843118 + size: 440737 + timestamp: 1733999835504 - kind: conda name: libcurl - version: 8.10.1 - build: hbbe4b11_0 - subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.10.1-hbbe4b11_0.conda - sha256: 54e6114dfce566c3a22ad3b7b309657e3600cdb668398e95f1301360d5d52c99 - md5: 6e801c50a40301f6978c53976917b277 + version: 8.11.1 + build: h73640d1_0 + subdir: osx-arm64 + url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.11.1-h73640d1_0.conda + sha256: f47c35938144c23278987c7d12096f6a42d7c850ffc277222b032073412383b6 + md5: 46d7524cabfdd199bffe63f8f19a552b depends: - - __glibc >=2.17,<3.0.a0 + - __osx >=11.0 - krb5 >=1.21.3,<1.22.0a0 - - libgcc >=13 - - libnghttp2 >=1.58.0,<2.0a0 - - libssh2 >=1.11.0,<2.0a0 + - libnghttp2 >=1.64.0,<2.0a0 + - libssh2 >=1.11.1,<2.0a0 - libzlib >=1.3.1,<2.0a0 - - openssl >=3.3.2,<4.0a0 + - openssl >=3.4.0,<4.0a0 - zstd >=1.5.6,<1.6.0a0 license: curl license_family: MIT - size: 424900 - timestamp: 1726659794676 + size: 385098 + timestamp: 1734000160270 - kind: conda name: libcxx version: 19.1.5 @@ -5923,76 +5920,76 @@ packages: timestamp: 1733219945697 - kind: conda name: max - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121105-release.conda - sha256: c53b72587f9fa54a9b0f5cb5345e772711cb0779610100ab4389b1f312a7ebc7 - md5: b91bff8456bcd2fd2aada4bafa51a358 - depends: - - max-core ==25.1.0.dev2024121105 release - - max-python >=25.1.0.dev2024121105,<26.0a0 - - mojo-jupyter ==25.1.0.dev2024121105 release - - mblack ==25.1.0.dev2024121105 release + url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121405-release.conda + sha256: 6bacaa1d4f27d255a4c3907c28929865eeef5d45d64d61c3991b526aee14766d + md5: 1aec535b4731af73dd1b43472e7b6fa0 + depends: + - max-core ==25.1.0.dev2024121405 release + - max-python >=25.1.0.dev2024121405,<26.0a0 + - mojo-jupyter ==25.1.0.dev2024121405 release + - mblack ==25.1.0.dev2024121405 release license: LicenseRef-Modular-Proprietary - size: 9923 - timestamp: 1733894234676 + size: 9921 + timestamp: 1734153430066 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121105-release.conda - sha256: 23a9b3a31eddf232c2d91b45362eb79b0a8dfd4842e7d41f2719aa40bc53c37a - md5: c95a33b823ca2f36431033c1122212ba + url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121405-release.conda + sha256: 14f953430105c8f2bb8f3bdf1e3fb7e9acbb20613ad47c9ac1e88462e0cc804d + md5: d88d69b1696ed9d5795c8d346bbd4311 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 247768202 - timestamp: 1733894244133 + size: 245597032 + timestamp: 1734153445516 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121105-release.conda - sha256: 22bb680d1e11a3640ae28b9d9faafa089b92a2fd6474ebdcc6b5c0e4da618664 - md5: 6e976d732a16860852a22686f7334ce4 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121405-release.conda + sha256: e3936f8021fc72f7f2673e2653e7bbd3d325fb44818b868bb49c24e5c1766eaf + md5: ea674f5d9232d89046ad99090cc195a7 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 251679560 - timestamp: 1733894234674 + size: 249408423 + timestamp: 1734153430064 - kind: conda name: max-core - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121105-release.conda - sha256: 5733d843377af66e94de2dd91cd8872d8f49baac81c6120ce2294a866d2f227f - md5: 84d6da2eb7585c49e1f71deec028c11a + url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121405-release.conda + sha256: b6bb97d20f0f7371a647778d18fe78f839e37eef423542ae3f4e75b018ffd8db + md5: 0e2d8c487ef68866164af9dff49f5119 depends: - - mblack ==25.1.0.dev2024121105 release + - mblack ==25.1.0.dev2024121405 release arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 212215227 - timestamp: 1733894448570 + size: 214323771 + timestamp: 1734153633668 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: linux-64 - url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: ad71429b6fa8d4e972a20a0a8f684420b6f162fdb1b22d36c32758a4f0f35d54 - md5: b7acc92cf44907a4c460026ad9c2cc45 + url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: 7ebdc67f58946084f7f4a657f0661899e61707b055f2046d9c18033f21f97008 + md5: 5a8cbae9c5257545459bfe7a262b62a6 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -6015,18 +6012,18 @@ packages: arch: x86_64 platform: linux license: LicenseRef-Modular-Proprietary - size: 123912464 - timestamp: 1733894244143 + size: 122834581 + timestamp: 1734153445526 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: linux-aarch64 - url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: 26f0f84532443a5e78098c17127dd0a04ca05a7c107e50aebc6b92abc9fe8a9f - md5: c4908b0138b01e14f9a8002624b42e25 + url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: b74a5c8945a97210778cda3cd9fe98f7404d2c9ff0b1a03738c77af6429b1523 + md5: 099dc5d1f85e4f883e72caef6f0c6e52 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -6049,18 +6046,18 @@ packages: arch: aarch64 platform: linux license: LicenseRef-Modular-Proprietary - size: 127580719 - timestamp: 1733894234684 + size: 126606485 + timestamp: 1734153430075 - kind: conda name: max-python - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: 3.12release subdir: osx-arm64 - url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121105-3.12release.conda - sha256: 42e409756f37919fdfda6e86d45e1814f68c102f23a8be42dd88b4f3dd816fae - md5: 4a180f1ab8a83b78d7282baf60e9280b + url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121405-3.12release.conda + sha256: 24a7ab99d936e5c28f597413e9e643fe34c46ba55916c1febcbe658e79a2ea9f + md5: 661ce5968d3cc1b11a67dfbf77e986b8 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python 3.12.* - fastapi - httpx @@ -6083,17 +6080,17 @@ packages: arch: arm64 platform: osx license: LicenseRef-Modular-Proprietary - size: 112620525 - timestamp: 1733894448573 + size: 113414908 + timestamp: 1734153633671 - kind: conda name: mblack - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121105-release.conda - sha256: ee5c623d7908731bc5c42079cbb5d7ac461481c5bcaf615e25c4c8263f041793 - md5: 1271b7b52a8cc538e26ffbdd22743d3a + url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121405-release.conda + sha256: ea23ea9fdb019aa4dc05bcb1d1f526f77ce90a94baa3130d26ce71cad0a3647b + md5: 425b85251efa151234c9db33428ee55c depends: - python >=3.9,<3.13 - click >=8.0.0 @@ -6103,8 +6100,8 @@ packages: - platformdirs >=2 - python license: MIT - size: 130789 - timestamp: 1733894234681 + size: 130792 + timestamp: 1734153430070 - kind: conda name: mdurl version: 0.1.2 @@ -6123,21 +6120,21 @@ packages: timestamp: 1733255681319 - kind: conda name: mojo-jupyter - version: 25.1.0.dev2024121105 + version: 25.1.0.dev2024121405 build: release subdir: noarch noarch: python - url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121105-release.conda - sha256: c59130a6e8190e55b8881bd43429377da5368df6afed78b04c8df236d253a047 - md5: 35cc55bad72e3b9d0d490ff7af58c446 + url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121405-release.conda + sha256: b232fe63e84736d519137d4c98067c886f8acc1cc38a6620a062f4eb079e751a + md5: b7d7fe85425c5120a665795eb2097aa9 depends: - - max-core ==25.1.0.dev2024121105 release + - max-core ==25.1.0.dev2024121405 release - python >=3.9,<3.13 - jupyter_client >=8.6.2,<8.7 - python license: LicenseRef-Modular-Proprietary - size: 22932 - timestamp: 1733894234682 + size: 22934 + timestamp: 1734153430071 - kind: conda name: multidict version: 6.1.0 @@ -7264,22 +7261,20 @@ packages: timestamp: 1732254359451 - kind: conda name: pydantic-settings - version: 2.6.1 - build: pyh3cfb1c2_1 - build_number: 1 + version: 2.7.0 + build: pyh3cfb1c2_0 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.6.1-pyh3cfb1c2_1.conda - sha256: 8cc37e827f0098d07743f57f968283cefce6c11562d9241aba990acc23aedb56 - md5: deabf8afc8d987f20174ef0d8d9b549e + url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda + sha256: dd1ac7c8b6a189c8aa18f6c7df019d8f6df495300a259e3fbebdb542fc955c3b + md5: d9f19a7c4199249fa229891b573b6f9b depends: - pydantic >=2.7.0 - python >=3.9 - python-dotenv >=0.21.0 license: MIT - license_family: MIT - size: 30832 - timestamp: 1733851937909 + size: 31426 + timestamp: 1734127929720 - kind: conda name: pygments version: 2.18.0 @@ -8403,19 +8398,20 @@ packages: - kind: conda name: transformers version: 4.47.0 - build: pyhd8ed1ab_0 + build: pyhd8ed1ab_1 + build_number: 1 subdir: noarch noarch: python - url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_0.conda - sha256: b9cf6ae5fcd6c78dcaa24ebfd41580a4a10b0649ac726a44d3521f70fdece218 - md5: 495745078b8e18fe2dcc3267f4baae0d + url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda + sha256: d31821081219a0ede5c1f356b65a61ce98ac11e2df78b0eaa684c17c73389fbf + md5: 6d2ec1ddee8057d2d724a0ab0bb578a0 depends: - datasets !=2.5.0 - filelock - huggingface_hub >=0.23.0,<1.0 - numpy >=1.17 - packaging >=20.0 - - python >=3.8 + - python >=3.9 - pyyaml >=5.1 - regex !=2019.12.17 - requests @@ -8424,8 +8420,8 @@ packages: - tqdm >=4.27 license: Apache-2.0 license_family: APACHE - size: 3721837 - timestamp: 1733708797762 + size: 3726957 + timestamp: 1733948063517 - kind: conda name: typer version: 0.15.1 @@ -8643,12 +8639,12 @@ packages: timestamp: 1730214606664 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312h12e396e_0 subdir: linux-64 - url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.0-py312h12e396e_0.conda - sha256: a2a11a751d3fdd2bec79d876687136cee81d0125be40cebd3518042e1e15c349 - md5: b53a91a5cc50cf07f690a5d3b9f91db5 + url: https://conda.anaconda.org/conda-forge/linux-64/watchfiles-1.0.3-py312h12e396e_0.conda + sha256: c89755d8e8f6384b3ba13e41dcabb40bf690c38b9d61512e963129badb1ad332 + md5: b76a5ad00856af6e74da9c3e85fed0cc depends: - __glibc >=2.17,<3.0.a0 - anyio >=3.0.0 @@ -8659,16 +8655,16 @@ packages: - __glibc >=2.17 license: MIT license_family: MIT - size: 409700 - timestamp: 1732689603044 + size: 410432 + timestamp: 1733998892675 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312h8cbf658_0 subdir: linux-aarch64 - url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.0-py312h8cbf658_0.conda - sha256: 1d7fde47edacf01a81c0d9ac3f284d4d30982d33686c505374bfa2c7b02bbf8d - md5: 9ecaaf340ad422209a04fcf854fb4a3f + url: https://conda.anaconda.org/conda-forge/linux-aarch64/watchfiles-1.0.3-py312h8cbf658_0.conda + sha256: 9be9569c279dc6e7881e9b45fe9f0368218538c660641e2f8b0e023e72a6571c + md5: 3465c1a19634233abc2d1832ac01fd31 depends: - anyio >=3.0.0 - libgcc >=13 @@ -8679,16 +8675,16 @@ packages: - __glibc >=2.17 license: MIT license_family: MIT - size: 404235 - timestamp: 1732689685476 + size: 404239 + timestamp: 1733998941045 - kind: conda name: watchfiles - version: 1.0.0 + version: 1.0.3 build: py312hcd83bfe_0 subdir: osx-arm64 - url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.0-py312hcd83bfe_0.conda - sha256: 554c4550813b744794fc70451c87d540d38138e6dc901993e85515ffa91087d2 - md5: 0eb2c3f65788f61f905d31ac062fe4b6 + url: https://conda.anaconda.org/conda-forge/osx-arm64/watchfiles-1.0.3-py312hcd83bfe_0.conda + sha256: b64b78a7d6384bf72a878256802c783c692fe641ab4b806fd7e9f45e18a5e3b4 + md5: 13b89e1aa72aa773806b1f59ec018b67 depends: - __osx >=11.0 - anyio >=3.0.0 @@ -8699,8 +8695,8 @@ packages: - __osx >=11.0 license: MIT license_family: MIT - size: 356744 - timestamp: 1732689860624 + size: 363162 + timestamp: 1733999215646 - kind: conda name: websockets version: '14.1' diff --git a/stdlib/src/builtin/io.mojo b/stdlib/src/builtin/io.mojo index bb15718f20..fc363fc15c 100644 --- a/stdlib/src/builtin/io.mojo +++ b/stdlib/src/builtin/io.mojo @@ -35,7 +35,6 @@ from memory import UnsafePointer, memcpy from utils import ( StaticString, StringRef, - StringSlice, write_args, write_buffered, ) diff --git a/stdlib/src/builtin/simd.mojo b/stdlib/src/builtin/simd.mojo index 18a87f1903..7bb4c061b6 100644 --- a/stdlib/src/builtin/simd.mojo +++ b/stdlib/src/builtin/simd.mojo @@ -52,7 +52,7 @@ from builtin.io import _snprintf from documentation import doc_private from memory import UnsafePointer, bitcast, Span -from utils import IndexList, StaticTuple, StringSlice +from utils import IndexList, StaticTuple from utils._visualizers import lldb_formatter_wrapping_type from utils.numerics import FPUtils from utils.numerics import isnan as _isnan diff --git a/stdlib/src/builtin/string_literal.mojo b/stdlib/src/builtin/string_literal.mojo index 727ac65555..581e21de5e 100644 --- a/stdlib/src/builtin/string_literal.mojo +++ b/stdlib/src/builtin/string_literal.mojo @@ -487,7 +487,7 @@ struct StringLiteral( @always_inline("nodebug") fn unsafe_ptr( self, - ) -> UnsafePointer[Byte, is_mutable=False, origin=StaticConstantOrigin]: + ) -> UnsafePointer[Byte, mut=False, origin=StaticConstantOrigin]: """Get raw pointer to the underlying data. Returns: @@ -498,14 +498,12 @@ struct StringLiteral( # TODO(MSTDL-555): # Remove bitcast after changing pop.string.address # return type. - return ptr.bitcast[ - Byte, is_mutable=False, origin=StaticConstantOrigin - ]() + return ptr.bitcast[Byte, mut=False, origin=StaticConstantOrigin]() @always_inline fn unsafe_cstr_ptr( self, - ) -> UnsafePointer[c_char, is_mutable=False, origin=StaticConstantOrigin]: + ) -> UnsafePointer[c_char, mut=False, origin=StaticConstantOrigin]: """Retrieves a C-string-compatible pointer to the underlying memory. The returned pointer is guaranteed to be NUL terminated, and not null. diff --git a/stdlib/src/collections/list.mojo b/stdlib/src/collections/list.mojo index a3a64643a3..f0bc3d0c6a 100644 --- a/stdlib/src/collections/list.mojo +++ b/stdlib/src/collections/list.mojo @@ -927,7 +927,7 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False]( ref self, ) -> UnsafePointer[ T, - is_mutable = Origin(__origin_of(self)).is_mutable, + mut = Origin(__origin_of(self)).is_mutable, origin = __origin_of(self), ]: """Retrieves a pointer to the underlying memory. diff --git a/stdlib/src/collections/string.mojo b/stdlib/src/collections/string.mojo index 43369b16d3..16bc0a852b 100644 --- a/stdlib/src/collections/string.mojo +++ b/stdlib/src/collections/string.mojo @@ -396,7 +396,7 @@ fn _str_to_base_error(base: Int, str_slice: StringSlice) -> String: ) -fn _identify_base(str_slice: StringSlice[_], start: Int) -> Tuple[Int, Int]: +fn _identify_base(str_slice: StringSlice, start: Int) -> Tuple[Int, Int]: var length = str_slice.byte_length() # just 1 digit, assume base 10 if start == (length - 1): @@ -468,11 +468,11 @@ fn atol(str: String, base: Int = 10) raises -> Int: return _atol(str.as_string_slice(), base) -fn _atof_error(str_ref: StringSlice[_]) -> Error: +fn _atof_error(str_ref: StringSlice) -> Error: return Error("String is not convertible to float: '" + str(str_ref) + "'") -fn _atof(str_ref: StringSlice[_]) raises -> Float64: +fn _atof(str_ref: StringSlice) raises -> Float64: """Implementation of `atof` for StringRef inputs. Please see its docstring for details. @@ -1593,7 +1593,7 @@ struct String( ref self, ) -> UnsafePointer[ Byte, - is_mutable = Origin(__origin_of(self)).is_mutable, + mut = Origin(__origin_of(self)).is_mutable, origin = __origin_of(self), ]: """Retrieves a pointer to the underlying memory. diff --git a/stdlib/src/memory/memory.mojo b/stdlib/src/memory/memory.mojo index ed72524482..574c13af04 100644 --- a/stdlib/src/memory/memory.mojo +++ b/stdlib/src/memory/memory.mojo @@ -153,7 +153,7 @@ fn memcmp[ @always_inline fn _memcpy_impl( - dest_data: UnsafePointer[Byte, is_mutable=True, **_], + dest_data: UnsafePointer[Byte, mut=True, **_], src_data: __type_of(dest_data), n: Int, ): diff --git a/stdlib/src/memory/pointer.mojo b/stdlib/src/memory/pointer.mojo index f3833563f3..1ffd5528f8 100644 --- a/stdlib/src/memory/pointer.mojo +++ b/stdlib/src/memory/pointer.mojo @@ -42,7 +42,7 @@ struct _GPUAddressSpace(EqualityComparable): """Shared address space.""" alias CONSTANT = AddressSpace(4) """Constant address space.""" - alias LOCAL = AddressSpace(5) if is_nvidia_gpu() else AddressSpace(3) + alias LOCAL = AddressSpace(5) """Local address space.""" @always_inline("nodebug") diff --git a/stdlib/src/memory/span.mojo b/stdlib/src/memory/span.mojo index 03f860f899..fcdf2d7aa9 100644 --- a/stdlib/src/memory/span.mojo +++ b/stdlib/src/memory/span.mojo @@ -23,6 +23,7 @@ from memory import Span from collections import InlineArray from memory import Pointer, UnsafePointer +from sys.info import simdwidthof trait AsBytes: @@ -45,15 +46,15 @@ trait AsBytes: @value struct _SpanIter[ - is_mutable: Bool, //, + mut: Bool, //, T: CollectionElement, - origin: Origin[is_mutable], + origin: Origin[mut], forward: Bool = True, ]: """Iterator for Span. Parameters: - is_mutable: Whether the reference to the span is mutable. + mut: Whether the reference to the span is mutable. T: The type of the elements in the span. origin: The origin of the Span. forward: The iteration direction. `False` is backwards. @@ -94,20 +95,20 @@ struct _SpanIter[ @value @register_passable("trivial") struct Span[ - is_mutable: Bool, //, + mut: Bool, //, T: CollectionElement, - origin: Origin[is_mutable], + origin: Origin[mut], ](CollectionElementNew): """A non owning view of contiguous data. Parameters: - is_mutable: Whether the span is mutable. + mut: Whether the span is mutable. T: The type of the elements in the span. origin: The origin of the Span. """ # Field - var _data: UnsafePointer[T, is_mutable=is_mutable, origin=origin] + var _data: UnsafePointer[T, mut=mut, origin=origin] var _len: Int # ===------------------------------------------------------------------===# @@ -246,13 +247,47 @@ struct Span[ """ return self._len + fn __contains__[ + type: DType, // + ](self: Span[Scalar[type]], value: Scalar[type]) -> Bool: + """Verify if a given value is present in the Span. + + Parameters: + type: The DType of the scalars stored in the Span. + + Args: + value: The value to find. + + Returns: + True if the value is contained in the list, False otherwise. + """ + + alias widths = InlineArray[Int, 6](256, 128, 64, 32, 16, 8) + var ptr = self.unsafe_ptr() + var length = len(self) + var processed = 0 + + @parameter + for i in range(len(widths)): + alias width = widths[i] + + @parameter + if simdwidthof[type]() >= width: + for _ in range((length - processed) // width): + if value in (ptr + processed).load[width=width](): + return True + processed += width + + for i in range(length - processed): + if ptr[processed + i] == value: + return True + return False + # ===------------------------------------------------------------------===# # Methods # ===------------------------------------------------------------------===# - fn unsafe_ptr( - self, - ) -> UnsafePointer[T, is_mutable=is_mutable, origin=origin]: + fn unsafe_ptr(self) -> UnsafePointer[T, mut=mut, origin=origin]: """Retrieves a pointer to the underlying memory. Returns: diff --git a/stdlib/src/memory/unsafe_pointer.mojo b/stdlib/src/memory/unsafe_pointer.mojo index a5feb34736..e6e3809b64 100644 --- a/stdlib/src/memory/unsafe_pointer.mojo +++ b/stdlib/src/memory/unsafe_pointer.mojo @@ -55,10 +55,8 @@ struct UnsafePointer[ *, address_space: AddressSpace = AddressSpace.GENERIC, alignment: Int = _default_alignment[type](), - is_mutable: Bool = True, - origin: Origin[is_mutable] = Origin[is_mutable] - .cast_from[MutableAnyOrigin] - .result, + mut: Bool = True, + origin: Origin[mut] = Origin[mut].cast_from[MutableAnyOrigin].result, ]( ImplicitlyBoolable, CollectionElement, @@ -84,7 +82,7 @@ struct UnsafePointer[ type: The type the pointer points to. address_space: The address space associated with the UnsafePointer allocated memory. alignment: The minimum alignment of this pointer known statically. - is_mutable: Whether the origin is mutable. + mut: Whether the origin is mutable. origin: The origin of the memory being addressed. """ @@ -164,7 +162,7 @@ struct UnsafePointer[ type, address_space=address_space, alignment=1, - is_mutable = Origin(__origin_of(arg)).is_mutable, + mut = Origin(__origin_of(arg)).is_mutable, origin = __origin_of(arg), ], ): @@ -638,7 +636,7 @@ struct UnsafePointer[ offset: The offset to store to. val: The value to store. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() self.offset(offset)._store[alignment=alignment, volatile=volatile](val) @always_inline @@ -671,7 +669,7 @@ struct UnsafePointer[ offset: The offset to store to. val: The value to store. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() self.offset(offset).store[alignment=alignment, volatile=volatile](val) @always_inline @@ -701,7 +699,7 @@ struct UnsafePointer[ offset: The offset to store to. val: The value to store. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() constrained[offset_type.is_integral(), "offset must be integer"]() self.offset(int(offset))._store[alignment=alignment, volatile=volatile]( val @@ -736,7 +734,7 @@ struct UnsafePointer[ offset: The offset to store to. val: The value to store. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() constrained[offset_type.is_integral(), "offset must be integer"]() self.offset(int(offset))._store[alignment=alignment, volatile=volatile]( val @@ -762,7 +760,7 @@ struct UnsafePointer[ Args: val: The value to store. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() self._store[alignment=alignment, volatile=volatile](val) @always_inline("nodebug") @@ -787,7 +785,7 @@ struct UnsafePointer[ Args: val: The value to store. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() self._store[alignment=alignment, volatile=volatile](val) @always_inline("nodebug") @@ -798,7 +796,7 @@ struct UnsafePointer[ alignment: Int = _default_alignment[type, width](), volatile: Bool = False, ](self: UnsafePointer[Scalar[type], **_], val: SIMD[type, width]): - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() constrained[width > 0, "width must be a positive integer value"]() constrained[ alignment > 0, "alignment must be a positive integer value" @@ -854,7 +852,7 @@ struct UnsafePointer[ val: The SIMD value to store. stride: The stride between stores. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() strided_store(val, self, int(stride), True) @always_inline("nodebug") @@ -954,7 +952,7 @@ struct UnsafePointer[ mask: The SIMD vector of boolean values, indicating for each element whether to store at memory or not. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() constrained[ offset.type.is_integral(), "offset type must be an integral type", @@ -979,15 +977,13 @@ struct UnsafePointer[ address_space: AddressSpace = Self.address_space, alignment: Int = Self.alignment, *, - is_mutable: Bool = Self.is_mutable, - origin: Origin[is_mutable] = Origin[is_mutable] - .cast_from[Self.origin] - .result, + mut: Bool = Self.mut, + origin: Origin[mut] = Origin[mut].cast_from[Self.origin].result, ](self) -> UnsafePointer[ T, address_space=address_space, alignment=alignment, - is_mutable=is_mutable, + mut=mut, origin=origin, ]: """Bitcasts a UnsafePointer to a different type. @@ -996,7 +992,7 @@ struct UnsafePointer[ T: The target type. address_space: The address space of the result. alignment: Alignment of the destination pointer. - is_mutable: Whether the origin is mutable. + mut: Whether the origin is mutable. origin: Origin of the destination pointer. Returns: @@ -1021,7 +1017,7 @@ struct UnsafePointer[ more efficient because it doesn't invoke `__moveinit__`. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() _ = __get_address_as_owned_value(self.address) @always_inline @@ -1044,7 +1040,7 @@ struct UnsafePointer[ Returns: The value at the pointer. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() return __get_address_as_owned_value(self.address) # TODO: Allow overloading on more specific traits @@ -1071,7 +1067,7 @@ struct UnsafePointer[ Args: value: The value to emplace. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() __get_address_as_uninit_lvalue(self.address) = value^ @always_inline @@ -1097,7 +1093,7 @@ struct UnsafePointer[ Args: value: The value to emplace. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() __get_address_as_uninit_lvalue(self.address) = value @always_inline @@ -1124,7 +1120,7 @@ struct UnsafePointer[ Args: value: The value to emplace. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() __get_address_as_uninit_lvalue(self.address) = T(other=value) @always_inline @@ -1159,7 +1155,7 @@ struct UnsafePointer[ Args: dst: Destination pointer that the value will be moved into. """ - constrained[is_mutable, _must_be_mut_err]() + constrained[mut, _must_be_mut_err]() __get_address_as_uninit_lvalue( dst.address ) = __get_address_as_owned_value(self.address) diff --git a/stdlib/src/random/random.mojo b/stdlib/src/random/random.mojo index e64ec3373b..03d2f57275 100644 --- a/stdlib/src/random/random.mojo +++ b/stdlib/src/random/random.mojo @@ -122,7 +122,7 @@ fn randint[ fn rand[ type: DType ]( - ptr: UnsafePointer[Scalar[type], is_mutable=True, **_], + ptr: UnsafePointer[Scalar[type], mut=True, **_], size: Int, /, *, diff --git a/stdlib/src/utils/inline_string.mojo b/stdlib/src/utils/inline_string.mojo index 8c6cfb3166..7ddb0df082 100644 --- a/stdlib/src/utils/inline_string.mojo +++ b/stdlib/src/utils/inline_string.mojo @@ -119,7 +119,7 @@ struct InlineString(Sized, Stringable, CollectionElement, CollectionElementNew): """ self.__iadd__(string.as_string_slice()) - fn __iadd__(mut self, str_slice: StringSlice[_]): + fn __iadd__(mut self, str_slice: StringSlice): """Appends another string to this string. Args: @@ -412,7 +412,7 @@ struct _FixedString[CAP: Int]( self.__iadd__(string.as_string_slice()) @always_inline - fn __iadd__(mut self, str_slice: StringSlice[_]) raises: + fn __iadd__(mut self, str_slice: StringSlice) raises: """Appends another string to this string. Args: diff --git a/stdlib/src/utils/string_slice.mojo b/stdlib/src/utils/string_slice.mojo index 09372e41e1..c465811f1b 100644 --- a/stdlib/src/utils/string_slice.mojo +++ b/stdlib/src/utils/string_slice.mojo @@ -168,14 +168,14 @@ fn _memrmem[ @value struct _StringSliceIter[ - is_mutable: Bool, //, - origin: Origin[is_mutable], + mut: Bool, //, + origin: Origin[mut], forward: Bool = True, ]: """Iterator for `StringSlice` over unicode characters. Parameters: - is_mutable: Whether the slice is mutable. + mut: Whether the slice is mutable. origin: The origin of the underlying string data. forward: The iteration direction. `False` is backwards. """ @@ -234,7 +234,7 @@ struct _StringSliceIter[ @value @register_passable("trivial") -struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable]]( +struct StringSlice[mut: Bool, //, origin: Origin[mut]]( Stringable, Sized, Writable, @@ -245,7 +245,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable]]( """A non-owning view to encoded string data. Parameters: - is_mutable: Whether the slice is mutable. + mut: Whether the slice is mutable. origin: The origin of the underlying string data. Notes: @@ -559,7 +559,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable]]( 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: @@ -765,7 +765,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable]]( @always_inline fn unsafe_ptr( self, - ) -> UnsafePointer[Byte, is_mutable=is_mutable, origin=origin]: + ) -> UnsafePointer[Byte, mut=mut, origin=origin]: """Gets a pointer to the first element of this string slice. Returns: @@ -783,8 +783,22 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable]]( return len(self.as_bytes()) + fn get_immutable( + self, + ) -> StringSlice[ImmutableOrigin.cast_from[origin].result]: + """ + Return an immutable version of this string slice. + + Returns: + A string slice covering the same elements, but without mutability. + """ + return StringSlice[ImmutableOrigin.cast_from[origin].result]( + ptr=self._slice.unsafe_ptr(), + length=len(self), + ) + fn startswith( - self, prefix: StringSlice[_], start: Int = 0, end: Int = -1 + self, prefix: StringSlice, start: Int = 0, end: Int = -1 ) -> Bool: """Verify if the `StringSlice` starts with the specified prefix between start and end positions. @@ -804,7 +818,7 @@ struct StringSlice[is_mutable: Bool, //, origin: Origin[is_mutable]]( ).startswith(prefix) fn endswith( - self, suffix: StringSlice[_], start: Int = 0, end: Int = -1 + self, suffix: StringSlice, start: Int = 0, end: Int = -1 ) -> Bool: """Verify if the `StringSlice` end with the specified suffix between start and end positions. diff --git a/stdlib/src/utils/stringref.mojo b/stdlib/src/utils/stringref.mojo index 75e864b405..4e92e96848 100644 --- a/stdlib/src/utils/stringref.mojo +++ b/stdlib/src/utils/stringref.mojo @@ -650,46 +650,6 @@ struct StringRef( current_offset = loc + len(delimiter) return output - fn startswith( - self, prefix: StringRef, start: Int = 0, end: Int = -1 - ) -> Bool: - """Checks if the StringRef starts with the specified prefix between start - and end positions. Returns True if found and False otherwise. - - Args: - prefix: The prefix to check. - start: The start offset from which to check. - end: The end offset from which to check. - - Returns: - True if the self[start:end] is prefixed by the input prefix. - """ - if end == -1: - return self.find(prefix, start) == start - return StringRef(self.unsafe_ptr() + start, end - start).startswith( - prefix - ) - - fn endswith(self, suffix: StringRef, start: Int = 0, end: Int = -1) -> Bool: - """Checks if the StringRef end with the specified suffix between start - and end positions. Returns True if found and False otherwise. - - Args: - suffix: The suffix to check. - start: The start offset from which to check. - end: The end offset from which to check. - - Returns: - True if the self[start:end] is suffixed by the input suffix. - """ - if len(suffix) > len(self): - return False - if end == -1: - return self.rfind(suffix, start) + len(suffix) == len(self) - return StringRef(self.unsafe_ptr() + start, end - start).endswith( - suffix - ) - # ===-----------------------------------------------------------------------===# # Utilities diff --git a/stdlib/test/collections/test_string.mojo b/stdlib/test/collections/test_string.mojo index ff5da33ee7..4d9151b279 100644 --- a/stdlib/test/collections/test_string.mojo +++ b/stdlib/test/collections/test_string.mojo @@ -1263,7 +1263,7 @@ def test_string_iter(): assert_equal(321, atol(concat)) for v in vs: - v.unsafe_ptr().bitcast[is_mutable=True]()[] = ord("1") + v.unsafe_ptr().bitcast[mut=True]()[] = ord("1") # Borrow immutably for v in vs: diff --git a/stdlib/test/memory/test_span.mojo b/stdlib/test/memory/test_span.mojo index 92c49210c6..4a3b6dd980 100644 --- a/stdlib/test/memory/test_span.mojo +++ b/stdlib/test/memory/test_span.mojo @@ -156,6 +156,15 @@ def test_bool(): assert_true(not s[0:0]) +def test_contains(): + items = List[Byte](1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15) + span = Span(items) + assert_true(0 not in span) + assert_true(16 not in span) + for item in items: + assert_true(item[] in span) + + def test_equality(): var l = InlineArray[String, 7]("a", "b", "c", "d", "e", "f", "g") var l2 = List[String]("a", "b", "c", "d", "e", "f", "g") @@ -208,6 +217,7 @@ def main(): test_span_slice() test_equality() test_bool() + test_contains() test_fill() test_ref() test_reversed() diff --git a/stdlib/test/memory/test_unsafepointer.mojo b/stdlib/test/memory/test_unsafepointer.mojo index 3331764e47..168ffc7bdf 100644 --- a/stdlib/test/memory/test_unsafepointer.mojo +++ b/stdlib/test/memory/test_unsafepointer.mojo @@ -150,15 +150,15 @@ def test_unsafepointer_string(): def test_eq(): var local = 1 - var p1 = UnsafePointer.address_of(local).bitcast[is_mutable=False]() + var p1 = UnsafePointer.address_of(local).bitcast[mut=False]() var p2 = p1 assert_equal(p1, p2) var other_local = 2 - var p3 = UnsafePointer.address_of(other_local).bitcast[is_mutable=False]() + var p3 = UnsafePointer.address_of(other_local).bitcast[mut=False]() assert_not_equal(p1, p3) - var p4 = UnsafePointer.address_of(local).bitcast[is_mutable=False]() + var p4 = UnsafePointer.address_of(local).bitcast[mut=False]() assert_equal(p1, p4) _ = local _ = other_local diff --git a/stdlib/test/utils/test_string_slice.mojo b/stdlib/test/utils/test_string_slice.mojo index dfeb37b12f..f88ed32dbb 100644 --- a/stdlib/test/utils/test_string_slice.mojo +++ b/stdlib/test/utils/test_string_slice.mojo @@ -584,6 +584,46 @@ def test_strip(): assert_true(comp_str4_stripped == "\n mississippimississippi \n") +def test_startswith(): + var empty = StringSlice("") + assert_true(empty.startswith("")) + assert_false(empty.startswith("a")) + assert_false(empty.startswith("ab")) + + var a = StringSlice("a") + assert_true(a.startswith("")) + assert_true(a.startswith("a")) + assert_false(a.startswith("ab")) + + var ab = StringSlice("ab") + assert_true(ab.startswith("")) + assert_true(ab.startswith("a")) + assert_false(ab.startswith("b")) + assert_true(ab.startswith("b", start=1)) + assert_true(ab.startswith("a", end=1)) + assert_true(ab.startswith("ab")) + + +def test_endswith(): + var empty = StringSlice("") + assert_true(empty.endswith("")) + assert_false(empty.endswith("a")) + assert_false(empty.endswith("ab")) + + var a = StringSlice("a") + assert_true(a.endswith("")) + assert_true(a.endswith("a")) + assert_false(a.endswith("ab")) + + var ab = StringSlice("ab") + assert_true(ab.endswith("")) + assert_false(ab.endswith("a")) + assert_true(ab.endswith("b")) + assert_true(ab.endswith("b", start=1)) + assert_true(ab.endswith("a", end=1)) + assert_true(ab.endswith("ab")) + + def main(): test_string_literal_byte_span() test_string_byte_span() @@ -605,3 +645,5 @@ def main(): test_rstrip() test_lstrip() test_strip() + test_startswith() + test_endswith() diff --git a/stdlib/test/utils/test_stringref.mojo b/stdlib/test/utils/test_stringref.mojo index 0dc7686197..67965d22a4 100644 --- a/stdlib/test/utils/test_stringref.mojo +++ b/stdlib/test/utils/test_stringref.mojo @@ -108,26 +108,6 @@ def test_find(): assert_equal(StringRef("").find("abc"), -1) -def test_endswith(): - var empty = StringRef("") - assert_true(empty.endswith("")) - assert_false(empty.endswith("a")) - assert_false(empty.endswith("ab")) - - var a = StringRef("a") - assert_true(a.endswith("")) - assert_true(a.endswith("a")) - assert_false(a.endswith("ab")) - - var ab = StringRef("ab") - assert_true(ab.endswith("")) - assert_false(ab.endswith("a")) - assert_true(ab.endswith("b")) - assert_true(ab.endswith("b", start=1)) - assert_true(ab.endswith("a", end=1)) - assert_true(ab.endswith("ab")) - - fn test_stringref_split() raises: # Reject empty delimiters with assert_raises( @@ -195,5 +175,4 @@ def main(): test_intable() test_indexing() test_find() - test_endswith() test_str_and_ref()