diff --git a/docs/changelog-released.md b/docs/changelog-released.md
index b420128e7e..d20de03317 100644
--- a/docs/changelog-released.md
+++ b/docs/changelog-released.md
@@ -2314,7 +2314,7 @@ Big themes for this release:
([PR 2587#](https://github.com/modularml/mojo/pull/2587))
([PR #2703](https://github.com/modularml/mojo/pull/2703))
- - Added a new [`Span`](/mojo/stdlib/utils/span/Span) type for taking slices of
+ - Added a new [`Span`](/mojo/stdlib/memory/span/Span) type for taking slices of
contiguous collections.
([PR #2595](https://github.com/modularml/mojo/pull/2595))
diff --git a/docs/changelog.md b/docs/changelog.md
index 15a2b2a1e0..86a8b15c41 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -20,8 +20,23 @@ what we publish.
### Language changes
+- Initializers are now treated as static methods that return an instance of
+ `Self`. This means the `out` argument of an initializer is now treated the
+ same as a any other function result or `out` argument. This is generally
+ invisible, except that patterns like `instance.__init__()` and
+ `x.__copyinit__(y)` no longer work. Simply replace them with `instance = T()`
+ and `x = y` respectively.
+
+- The legacy `borrowed`/`inout` keywords and `-> T as foo` syntax now generate
+ a warning. Please move to `read`/`mut`/`out` argument syntax instead.
+
### Standard library changes
+- `UnsafePointer`'s `bitcast` method has now been split into `bitcast`
+ for changing the type, `origin_cast` for changing mutability,
+ `static_alignment_cast` for changing alignment,
+ and `address_space_cast` for changing the address space.
+
- `UnsafePointer` is now parameterized on mutability. Previously,
`UnsafePointer` could only represent mutable pointers.
@@ -44,7 +59,7 @@ what we publish.
```mojo
var local = 10
# Cast the mutable pointer to be immutable.
- var ptr = UnsafePointer.address_of(local).bitcast[mut=False]()
+ var ptr = UnsafePointer.address_of(local).origin_cast[mut=False]()
```
- The `unsafe_ptr()` method on several standard library collection types have
@@ -62,6 +77,74 @@ what we publish.
var ptr2 = list2.unsafe_ptr()
```
+- Added `Optional.copied()` for constructing an owned `Optional[T]` from an
+ `Optional[Pointer[T]]` by copying the pointee value.
+
+- Added `Dict.get_ptr()` which returns an `Optional[Pointer[V]]`. If the given
+ key is present in the dictionary, the optional will hold a pointer to the
+ value. Otherwise, an empty optional is returned.
+
+- Added new `List.extend()` overloads taking `SIMD` and `Span`. These enable
+ growing a `List[Scalar[..]]` by copying the elements of a `SIMD` vector or
+ `Span[Scalar[..]]`, simplifying the writing of some optimized SIMD-aware
+ functionality.
+
+- Added `StringSlice.from_utf()` factor method, for validated construction of
+ a `StringSlice` from a buffer containing UTF-8 encoded data. This method will
+ raise if the buffer contents are not valid UTF-8.
+
+- Several standard library functions have been changed to take `StringSlice`
+ instead of `String`. This generalizes them to be used for any appropriately
+ encoded string in memory, without requiring that the string be heap allocated.
+
+ - `atol()`
+ - `atof()`
+ - `ord()`
+ - `ascii()`
+ - `b64encode()`
+ - Additionally, the `b64encode()` overload that previously took `List` has
+ been changed to
+ take a `Span`.
+ - `b64decode()`
+ - `b16encode()`
+ - `b16decode()`
+
+- Various functionality has moved from `String` and `StringRef` to the more
+ general `StringSlice` type.
+
+ - `StringSlice` now implements `Representable`, and that implementation is now
+ used by `String.__repr__()` and `StringRef.__repr__()`.
+
+- `StringSlice` now implements `EqualityComparable`.
+
+ Up until now, `StringSlice` has implemented a more general `__eq__` and
+ `__ne__` comparision with `StringSlice` types that had arbitrary other
+ origins. However, to satisfy `EqualityComparable`, `StringSlice` now also
+ has narrower comparison methods that support comparing only with
+ `StringSlice`'s with the exact same origin.
+
+- Removed `@implicit` decorator from some standard library initializer methods
+ that perform allocation. This reduces places where Mojo code could implicitly
+ allocate where the user may not be aware.
+
+ Remove `@implicit` from:
+
+ - `String.__init__(out self, StringRef)`
+ - `String.__init__(out self, StringSlice)`
+ - `List.__init__(out self, owned *values: T)`
+ - `List.__init__(out self, span: Span[T])`
+
+- The `ExplicitlyCopyable` trait has changed to require a
+ `fn copy(self) -> Self` method. Previously, an initializer with the signature
+ `fn __init__(out self, *, other: Self)` had been required by
+ `ExplicitlyCopyable`.
+
+ This improves the "greppability" and at-a-glance readability when a programmer
+ is looking for places in their code that may be performing copies
+
+- `bit_ceil` has been renamed to `next_power_of_two`, and `bit_floor` to
+ `prev_power_of_two`. This is to improve readability and clarity in their use.
+
### Tooling changes
- mblack (aka `mojo format`) no longer formats non-mojo files. This prevents
@@ -74,7 +157,10 @@ what we publish.
### ❌ Removed
- `StringRef` is being deprecated. Use `StringSlice` instead.
+ - Changed `sys.argv()` to return list of `StringSlice`.
+ - Added `Path` explicit constructor from `StringSlice`.
- removed `StringRef.startswith()` and `StringRef.endswith()`
+ - removed `StringRef.strip()`
### 🛠️ Fixed
@@ -86,5 +172,11 @@ what we publish.
- [Issue #3796](https://github.com/modularml/mojo/issues/3796) - Compiler crash
handling for-else statement.
+- [Issue #3540](https://github.com/modularml/mojo/issues/3540) - Using named
+ output slot breaks trait conformance
+
+- [Issue #3617](https://github.com/modularml/mojo/issues/3617) - Can't generate
+ the constructors for a type wrapping `!lit.ref`
+
- 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/decorators/parameter.md b/docs/manual/decorators/parameter.md
index 2b9f27e9e0..c7a717e22c 100644
--- a/docs/manual/decorators/parameter.md
+++ b/docs/manual/decorators/parameter.md
@@ -5,10 +5,11 @@ codeTitle: true
---
-You can add the `@parameter` decorator on an `if` statement or on a nested
-function to run that code at compile time.
+You can add the `@parameter` decorator on an `if` or `for` statement to run that
+code at compile time, or on a nested function to create a [parametric
+closure](#parametric-closure).
-## Parametric if statement
+## Parametric `if` statement
You can add `@parameter` to any `if` condition that's based on a valid
parameter expression (it's an expression that evaluates at compile time). This
@@ -27,7 +28,7 @@ else:
this will be included in the binary
```
-## Parametric for statement
+## Parametric `for` statement
You can add the `@parameter` decorator to a `for` loop to create a loop that's
evaluated at compile time. The loop sequence and induction values must be
@@ -39,7 +40,7 @@ This has the effect of "unrolling" the loop.
```mojo
fn parameter_for[max: Int]():
@parameter
- for i in range(max)
+ for i in range(max):
@parameter
if i == 10:
print("found 10!")
@@ -61,8 +62,8 @@ differences when compared to the parametric `for` statement:
(see below) and executes it a specified number of times.
- The parametric `for` statement is more versatile, since you can do anything
- you can do in a `for` statement: including using arbitrary sequences,
- early-exiting from the loop, skipping iterations with `continue` and so on.
+ you can do in a `for` statement including: using arbitrary sequences,
+ early-exiting from the loop, skipping iterations with `continue`, and so on.
By contrast, `unroll()` simply takes a function and a count, and executes
the function the specified number of times.
diff --git a/docs/manual/get-started.mdx b/docs/manual/get-started.mdx
index 469542567d..261a8b7fb4 100644
--- a/docs/manual/get-started.mdx
+++ b/docs/manual/get-started.mdx
@@ -175,9 +175,9 @@ Hello, World!
Let's extend this basic program by prompting the user for their name and
including that in the greeting printed. The built-in
[`input()`](/mojo/stdlib/builtin/io/input) function accepts an optional
-[`String`](/mojo/stdlib/collections/string/String) argument to use as a prompt,
-and returns a `String` consisting of the characters the user entered (with the
-newline character at the end stripped off).
+[`String`](/mojo/stdlib/collections/string/string/String) argument to use as a
+prompt, and returns a `String` consisting of the characters the user entered
+(with the newline character at the end stripped off).
So let's declare a variable, assign the return value from `input()` to it, and
build a customized greeting.
@@ -665,7 +665,7 @@ In the case of `str()`, it requires a type to conform to either the `Stringable`
or `StringableRaising` trait. Each trait requires a conforming type to implement
a `__str__()` method that returns a `String` representation. The only difference
between the two traits is that `Stringable` requires that the method *cannot*
-raise and error, whereas `StringableRaising` indicates that the method *might*
+raise an error, whereas `StringableRaising` indicates that the method *might*
raise an error. (To learn more, read [The `Stringable`, `Representable`, and
`Writable`
traits](/mojo/manual/traits#the-stringable-representable-and-writable-traits).)
@@ -786,8 +786,6 @@ struct Grid(StringableRaising):
Click here to see the complete `gridv1.mojo` so far:
```mojo title="gridv1.mojo"
-import random
-
@value
struct Grid(StringableRaising):
var rows: Int
diff --git a/docs/manual/values/lifetimes.mdx b/docs/manual/values/lifetimes.mdx
index baf5f1e860..3c1871c0d7 100644
--- a/docs/manual/values/lifetimes.mdx
+++ b/docs/manual/values/lifetimes.mdx
@@ -44,7 +44,7 @@ However, in some cases you'll need to interact with origins directly:
* When working with types like
[`Pointer`](/mojo/stdlib/memory/pointer/Pointer) or
- [`Span`](/mojo/stdlib/utils/span/Span) which are parameterized on the
+ [`Span`](/mojo/stdlib/memory/span/Span) which are parameterized on the
origin of the data they refer to.
This section also covers [`ref` arguments](#ref-arguments) and
diff --git a/docs/manual/variables.mdx b/docs/manual/variables.mdx
index 9247ff5c9f..f9e1c5c249 100644
--- a/docs/manual/variables.mdx
+++ b/docs/manual/variables.mdx
@@ -184,10 +184,11 @@ floating-point type, it converts the value instead of giving a compiler error:
```mojo
var number: Float64 = Int(1)
+print(number)
```
```output
-1
+1.0
```
As shown above, value assignment can be converted into a constructor call if the
diff --git a/examples/life/magic.lock b/examples/life/magic.lock
index 5a7928b9c1..3a66c8dfbe 100644
--- a/examples/life/magic.lock
+++ b/examples/life/magic.lock
@@ -9,11 +9,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.10-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.11-py312h178313f_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/alsa-lib-1.2.13-hb9d3cd8_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- 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.3.0-pyh71513ae_0.conda
@@ -43,8 +43,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/cairo-1.18.2-h3394656_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/dav1d-1.2.1-hd590300_0.conda
@@ -69,7 +69,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py312h66e93f0_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.22.5-he02047a_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/gettext-tools-0.22.5-he02047a_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda
@@ -83,13 +83,13 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/httptools-0.6.4-py312h66e93f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/icu-75.1-he02047a_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/jack-1.9.22-h7c63dc7_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
@@ -98,11 +98,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-h44a453e_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h3ee7192_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-hd595efa_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h08228c5_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-0.22.5-he8f35ee_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libasprintf-devel-0.22.5-he8f35ee_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libavif16-1.1.1-h1909e37_2.conda
@@ -116,7 +116,7 @@ environments:
- 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.23-h4ddbbb0_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/libedit-3.1.20240808-pl5321h7949ede_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
@@ -131,10 +131,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libglib-2.82.2-h2ff4ddf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.32.0-h804f50b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.32.0-h0121fbd_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.33.0-h2b5623c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.33.0-h0121fbd_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgpg-error-1.51-hbd13f7d_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-h25350d4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-26_linux64_openblas.conda
@@ -145,24 +145,24 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libogg-1.3.5-h4ab18f5_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libopus-1.3.1-h7f98852_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.45-h943b412_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsndfile-1.2.2-hc60ed4a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.2-hee588c1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-14.2.0-hc0a3c3a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-14.2.0-h4852527_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-256.9-h0b6a36f_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.2-h3dc2cb9_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libthrift-0.21.0-h0e7cc3e_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libtiff-4.7.0-hd9ff511_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.9.0-hb9d3cd8_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.49.2-hb9d3cd8_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libvorbis-1.3.7-h9c3ff4c_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.5-h8d12d68_1.conda
@@ -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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
@@ -183,7 +183,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -192,29 +192,29 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/opusfile-0.12-h3358134_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h97ab989_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h12ee42a_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.44-hba22ea6_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py312h7b63e92_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pixman-0.44.2-h29eaf8c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/portaudio-19.6.0-h7c63dc7_9.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/portmidi-2.0.4-h7c63dc7_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.1-py312h66e93f0_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.3-py312h2ec8cdc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pulseaudio-client-17.0-hb77b528_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.1.0-py312h7900ff3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.1.0-py312h01725c0_0_cpu.conda
- 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.7.0-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.2-py312h12e396e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-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/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.8-h9e4cc4f_1_cpython.conda
@@ -229,38 +229,38 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h66e93f0_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py312hbf22597_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/rav1e-0.6.6-he8a937b_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h9925aae_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/regex-2024.11.6-py312h66e93f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.10-hb5b8611_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.5.1-py312h12e396e_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/sdl2-2.30.10-h63c27ac_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/sdl2_image-2.8.2-h06ee604_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/sdl2_mixer-2.6.3-h8830914_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/sdl2_ttf-2.22.0-h287479f_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/sdl2_ttf-2.24.0-h287479f_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/svt-av1-2.3.0-h5888daf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tokenizers-0.21.0-py312h8360d73_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.21.0-py312h66e93f0_1.conda
@@ -285,11 +285,11 @@ environments:
linux-aarch64:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.10-py312hcc812fe_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.11-py312hcc812fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/alsa-lib-1.2.13-h86ecc28_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- 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.3.0-pyh71513ae_0.conda
@@ -319,8 +319,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cairo-1.18.2-h83712da_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.17.1-py312hac81daf_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/dav1d-1.2.1-h31becfc_0.conda
@@ -345,7 +345,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hf0a5ef3_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.5.0-py312hb2c0f52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gettext-0.22.5-h0a1ffab_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gettext-tools-0.22.5-h0a1ffab_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda
@@ -359,13 +359,13 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/httptools-0.6.4-py312hb2c0f52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/jack-1.9.22-h5c6c0ed_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2
@@ -374,11 +374,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.16-h922389a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-h1b535d6_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h3ffb4b1_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-hb7781cd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h1e9d426_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libasprintf-0.22.5-h87f4aca_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libasprintf-devel-0.22.5-h87f4aca_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libavif16-1.1.1-h3b0c220_2.conda
@@ -392,7 +392,7 @@ environments:
- 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.23-h5e3c512_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/libedit-3.1.20240808-pl5321h976ea20_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.6.4-h5ad3122_0.conda
@@ -407,10 +407,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libglib-2.82.2-hc486b8e_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.32.0-h3888205_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.32.0-hb9b2b65_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.33.0-hccf9d24_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.33.0-hb9b2b65_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgpg-error-1.51-h05609ea_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-hf7ccdd3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-26_linuxaarch64_openblas.conda
@@ -421,24 +421,24 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libogg-1.3.5-h0b9eccb_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.28-pthreads_h9d3fd7e_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopus-1.3.1-hf897c2e_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.45-hec79eb8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsndfile-1.2.2-h79657aa_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.47.2-h5eb1b54_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.1-ha41c0db_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-14.2.0-h3f4de04_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libstdcxx-ng-14.2.0-hf1166c9_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsystemd0-256.9-ha536d29_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsystemd0-257.2-h27834fc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libthrift-0.21.0-h154c74f_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libtiff-4.7.0-h88f7998_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.9.0-h86ecc28_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.49.2-h86ecc28_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libvorbis-1.3.7-h01db608_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.13.5-h2e0c361_1.conda
@@ -446,12 +446,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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
@@ -459,7 +459,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py312h470d778_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.3-h3f56577_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-hd08dc88_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -468,29 +468,29 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/opusfile-0.12-hf55b2d5_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h3c55218_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-hdd485aa_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pcre2-10.44-h070dd5b_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py312h5ab5af3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.1.0-py312h719f0cf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pixman-0.44.2-h86a87f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/portaudio-19.6.0-h5c6c0ed_9.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/portmidi-2.0.4-h5c6c0ed_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/propcache-0.2.1-py312hb2c0f52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.3-py312h6f74592_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pulseaudio-client-17.0-h729494f_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.1.0-py312h8025657_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.1.0-py312h66f7834_0_cpu.conda
- 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.7.0-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.2-py312h8cbf658_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-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/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.12.8-h1683364_1_cpython.conda
@@ -505,38 +505,38 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hb2c0f52_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-26.2.0-py312h2427ae1_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rav1e-0.6.6-h1d8f897_2.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-haa97905_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/regex-2024.11.6-py312hb2c0f52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.10-h5df210e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.5.1-py312h8cbf658_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/sdl2-2.30.10-h93e764a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/sdl2_image-2.8.2-hd95cb85_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/sdl2_mixer-2.6.3-h422cae6_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/sdl2_ttf-2.22.0-hb1608df_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/sdl2_ttf-2.24.0-hb1608df_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-hd4fb6f5_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/svt-av1-2.3.0-h5ad3122_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tokenizers-0.21.0-py312ha0d6ea1_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/uvloop-0.21.0-py312hb2c0f52_1.conda
@@ -560,10 +560,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda
osx-arm64:
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.10-py312h998013c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.11-py312h998013c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.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.3.0-pyh71513ae_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/aws-c-auth-0.8.0-h8bc59a9_15.conda
@@ -592,8 +592,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cairo-1.18.2-h6a3b0d2_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.17.1-py312h0fad829_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/dav1d-1.2.1-hb547adb_0.conda
@@ -616,7 +616,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/fonts-conda-forge-1-0.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py312h0bf5046_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.22.5-h8414b35_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-tools-0.22.5-h8414b35_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda
@@ -630,23 +630,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/httptools-0.6.4-py312hea69d52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lame-3.100-h1a8c8d9_1003.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.16-ha0e7c42_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h4a2f8bd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h86344ea_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h0ad35bc_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h4239455_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-0.22.5-h8414b35_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libasprintf-devel-0.22.5-h8414b35_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libavif16-1.1.1-h45b7238_2.conda
@@ -657,9 +657,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-26_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.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/libcxx-19.1.6-ha82da77_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.23-hec38601_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20240808-pl5321hafb1f1b_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda
@@ -670,9 +670,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.82.2-h07bd6cf_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.32.0-h8d8be31_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.32.0-h7081f7f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.33.0-hdbe95d5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.33.0-h7081f7f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-h0a426d6_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-0.22.5-h8414b35_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libintl-devel-0.22.5-h8414b35_3.conda
@@ -684,10 +684,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libogg-1.3.5-h99b78c6_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.28-openmp_hf332438_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopus-1.3.1-h27ca646_1.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.45-h3783ad8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h07bc746_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsndfile-1.2.2-h9739721_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.47.2-h3f77e49_0.conda
@@ -697,20 +697,20 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.9.0-h5505292_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.49.2-h7ab814d_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libvorbis-1.3.7-h9f76cd9_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-h178c5d8_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.5-hdb05f8b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.6-hdb05f8b_0.conda
- 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
@@ -718,7 +718,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py312h8442bc7_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.3-h8a3d83b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -727,28 +727,28 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/opusfile-0.12-h5643135_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-hbcee414_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h0ff2369_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.44-h297a79d_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py312haf37ca6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pixman-0.44.2-h2f9eb0b_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/portaudio-19.6.0-h13dd4ca_9.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/portmidi-2.0.4-h13dd4ca_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.1-py312hea69d52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.3-py312hd8f9ff3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.1.0-py312h1f38498_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.1.0-py312hc40f475_0_cpu.conda
- 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.7.0-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.2-py312hcd83bfe_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-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/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.8-hc22306f_1_cpython.conda
@@ -763,37 +763,37 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py312h024a12e_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.2.0-py312hf8a1cbd_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rav1e-0.6.6-h69fbcac_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-h6589ca4_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/regex-2024.11.6-py312hea69d52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py312he431725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.5.1-py312hcd83bfe_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2-2.30.10-h994913f_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2_image-2.8.2-h376e2e1_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2_mixer-2.6.3-h4fe3bdc_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2_ttf-2.22.0-h443c5de_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2_ttf-2.24.0-h443c5de_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-h98b9ce2_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/svt-av1-2.3.0-hf24288c_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tokenizers-0.21.0-py312hf3e4074_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.21.0-py312h0bf5046_1.conda
@@ -874,12 +874,12 @@ packages:
timestamp: 1733332029649
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312h178313f_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.10-py312h178313f_0.conda
- sha256: dc8ebdd99e9d7a07454a7063a295cdc7a86264648647fec10b2ceae97478e200
- md5: 3e92784b8e32ab7d0b95ee296ba79a99
+ url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.11-py312h178313f_0.conda
+ sha256: 2e817805e8a4fed33f23f116ff5649f8651af693328e9ed82d9d11a951338693
+ md5: 8219afa093757bbe07b9825eb1973ed9
depends:
- __glibc >=2.17,<3.0.a0
- aiohappyeyeballs >=2.3.0
@@ -894,16 +894,16 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 914378
- timestamp: 1733839626367
+ size: 915358
+ timestamp: 1734597073870
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312h998013c_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.10-py312h998013c_0.conda
- sha256: 69eb9c89dce6a7ae960099172daffba9f77fef39344f37e581685a8e3c5debe6
- md5: 642356223364539ba7ba36556fcf49ee
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.11-py312h998013c_0.conda
+ sha256: 446f078e7a7b892894d7f4851a278b7834ffb4f5632313646a55c3abe13690d4
+ md5: c69c904691364cfb27d15aa7153e9c29
depends:
- __osx >=11.0
- aiohappyeyeballs >=2.3.0
@@ -918,16 +918,16 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 874135
- timestamp: 1733839113411
+ size: 875711
+ timestamp: 1734597277258
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312hcc812fe_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.10-py312hcc812fe_0.conda
- sha256: df694a9fec546e575a4ea7e1c3ac476c0bda53c0fad44c046ad3ebdd5b75a0a8
- md5: a8c9ec59e6323b38418bbf04deaa0c02
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.11-py312hcc812fe_0.conda
+ sha256: f28e81e458d19df4ca0002f8a92d7f647fa25e8179887a8676801dfe44edb1f2
+ md5: 11fa88136d9bf39d2136b2378f7c10be
depends:
- aiohappyeyeballs >=2.3.0
- aiosignal >=1.1.2
@@ -942,8 +942,8 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 900931
- timestamp: 1733839037447
+ size: 902422
+ timestamp: 1734597104529
- kind: conda
name: aiosignal
version: 1.3.2
@@ -1008,13 +1008,13 @@ packages:
timestamp: 1733247158254
- kind: conda
name: anyio
- version: 4.7.0
+ version: 4.8.0
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda
- sha256: 687537ee3af30f8784986bf40cac30e88138770b16e51ca9850c9c23c09aeba1
- md5: c88107912954a983c2caf25f7fd55158
+ url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.8.0-pyhd8ed1ab_0.conda
+ sha256: f1455d2953e3eb6d71bc49881c8558d8e01888469dfd21061dd48afb6183e836
+ md5: 848d25bfbadf020ee4d4ba90e5668252
depends:
- exceptiongroup >=1.0.2
- idna >=2.8
@@ -1026,8 +1026,8 @@ packages:
- uvloop >=0.21
license: MIT
license_family: MIT
- size: 112730
- timestamp: 1733532678437
+ size: 115305
+ timestamp: 1736174485476
- kind: conda
name: aom
version: 3.9.1
@@ -2488,37 +2488,35 @@ packages:
timestamp: 1725561779888
- kind: conda
name: charset-normalizer
- version: 3.4.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 3.4.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- sha256: 63022ee2c6a157a9f980250a66f54bdcdf5abee817348d0f9a74c2441a6fbf0e
- md5: 6581a17bba6b948bb60130026404a9d6
+ url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b
+ md5: e83a31202d1c0a000fce3e9cf3825875
depends:
- python >=3.9
license: MIT
license_family: MIT
- size: 47533
- timestamp: 1733218182393
+ size: 47438
+ timestamp: 1735929811779
- kind: conda
name: click
- version: 8.1.7
- build: unix_pyh707e725_1
- build_number: 1
+ version: 8.1.8
+ build: pyh707e725_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
- sha256: 1cd5fc6ccdd5141378e51252a7a3810b07fd5a7e6934a5b4a7eccba66566224b
- md5: cb8e52f28f5e592598190c562e7b5bf1
+ url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
+ sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab
+ md5: f22f4d4970e09d68a10b922cbb0408d3
depends:
- __unix
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 84513
- timestamp: 1733221925078
+ size: 84705
+ timestamp: 1734858922844
- kind: conda
name: colorama
version: 0.4.6
@@ -3141,20 +3139,19 @@ packages:
timestamp: 1729699642726
- kind: conda
name: fsspec
- version: 2024.10.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2024.12.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
- sha256: 790a50b4f94042951518f911a914a886a837c926094c6a14ed1d9d03ce336807
- md5: 906fe13095e734cb413b57a49116cdc8
+ url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
+ sha256: 3320970c4604989eadf908397a9475f9e6a96a773c185915111399cbfbe47817
+ md5: e041ad4c43ab5e10c74587f95378ebc7
depends:
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 134726
- timestamp: 1733493445080
+ size: 137756
+ timestamp: 1734650349242
- kind: conda
name: gettext
version: 0.22.5
@@ -3635,14 +3632,13 @@ packages:
timestamp: 1733663449209
- kind: conda
name: huggingface_hub
- version: 0.26.5
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 0.27.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
- sha256: 0c75532d914a04c73222be298ed2c6868739dd475b1b1a9137c52abe79873952
- md5: 73937038e21117fe401f8ea64fbaeacc
+ url: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
+ sha256: 4597d7aa720f4acdddacc27b3f9e8d4336cb79477c53aee2d7ab96d136169cdb
+ md5: 8c9a53ecd0c3c278efbdac567dd12ed0
depends:
- filelock
- fsspec >=2023.5.0
@@ -3655,8 +3651,8 @@ packages:
- typing_extensions >=3.7.4.3
license: Apache-2.0
license_family: APACHE
- size: 275466
- timestamp: 1733852454004
+ size: 278363
+ timestamp: 1736350219225
- kind: conda
name: hyperframe
version: 6.0.1
@@ -3791,21 +3787,20 @@ packages:
timestamp: 1693879949990
- kind: conda
name: jinja2
- version: 3.1.4
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 3.1.5
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
- sha256: 85a7169c078b8065bd9d121b0e7b99c8b88c42a411314b6ae5fcd81c48c4710a
- md5: 08cce3151bde4ecad7885bd9fb647532
+ url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
+ sha256: 98977694b9ecaa3218662f843425f39501f81973c450f995eec68f1803ed71c3
+ md5: 2752a6ed44105bfb18c9bef1177d9dcd
depends:
- markupsafe >=2.0
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 110963
- timestamp: 1733217424408
+ size: 112561
+ timestamp: 1734824044952
- kind: conda
name: jupyter_client
version: 8.6.3
@@ -4098,32 +4093,31 @@ packages:
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_h5888daf_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
- sha256: 8f91429091183c26950f1e7ffa730e8632f0627ba35d2fccd71df31628c9b4e5
- md5: e1f604644fe8d78e22660e2fec6756bc
+ build: cxx17_h07bc746_4
+ build_number: 4
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda
+ sha256: 05fa5e5e908962b9c5aba95f962e2ca81d9599c4715aebe5e4ddb72b309d1770
+ md5: c2d95bd7aa8d564a9bd7eca5e571a5b3
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- - libstdcxx >=13
+ - __osx >=11.0
+ - libcxx >=18
constrains:
- libabseil-static =20240722.0=cxx17*
- abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1310521
- timestamp: 1727295454064
+ size: 1178260
+ timestamp: 1736008642885
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_h5ad3122_1
- build_number: 1
+ build: cxx17_h18dbdb1_4
+ build_number: 4
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
- sha256: 590e47dce38031a8893e70491f3b71e214de7781cab53b6f017aa6f6841cb076
- md5: 6fe6b3694c4792a8e26755d3b06f0b80
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda
+ sha256: bb6c5fb3b8de5f90735c5252b57efb3c268ee222c755569dac18065f05147670
+ md5: 633b9fe454ffea2aaf29e191d946a83b
depends:
- libgcc >=13
- libstdcxx >=13
@@ -4132,37 +4126,39 @@ packages:
- libabseil-static =20240722.0=cxx17*
license: Apache-2.0
license_family: Apache
- size: 1328502
- timestamp: 1727295490806
+ size: 1334844
+ timestamp: 1736008472455
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_hf9b8971_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
- sha256: 90bf08a75506dfcf28a70977da8ab050bcf594cd02abd3a9d84a22c9e8161724
- md5: 706da5e791c569a7b9814877098a6a0a
+ build: cxx17_hbbce691_4
+ build_number: 4
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ sha256: 143a586aa67d50622ef703de57b9d43f44945836d6568e0e7aa174bd8c45e0d4
+ md5: 488f260ccda0afaf08acb286db439c2f
depends:
- - __osx >=11.0
- - libcxx >=17
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
constrains:
- libabseil-static =20240722.0=cxx17*
- abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1179072
- timestamp: 1727295571173
+ size: 1311599
+ timestamp: 1736008414161
- kind: conda
name: libarrow
version: 18.1.0
- build: h1b535d6_6_cpu
- build_number: 6
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-h1b535d6_6_cpu.conda
- sha256: 087b579aebf351ca41c54214121d86a15a41c92051cbd432d6f3a3f58a8c31b0
- md5: 4c0ad68efba1113ac5833975c67b565d
+ build: h0ad35bc_7_cpu
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h0ad35bc_7_cpu.conda
+ sha256: 4fbdd8bb89d912bf03f10f9373a8d96a1cdd7a7851e107393418a3d2715bc27e
+ md5: 4ba2173203f44bbf03d19aaba6ed07d3
depends:
+ - __osx >=11.0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -4170,17 +4166,15 @@ packages:
- azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
- azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
- - gflags >=2.2.2,<2.3.0a0
- glog >=0.7.1,<0.8.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libgcc >=13
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libcxx >=18
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
- - libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -4189,24 +4183,23 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - parquet-cpp <0.0a0
- arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
- apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 8040629
- timestamp: 1733810319239
+ size: 5506699
+ timestamp: 1735682962976
- kind: conda
name: libarrow
version: 18.1.0
- build: h44a453e_6_cpu
- build_number: 6
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-h44a453e_6_cpu.conda
- sha256: abf17e99b03356a9d6248e965826c1352ff01b00d3a62cc51393bb0744d72803
- md5: 2cf6d608d6e66506f69797d5c6944c35
+ build: hb7781cd_7_cpu
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-hb7781cd_7_cpu.conda
+ sha256: f6107506bd16788560b47a4d18c1457b4df30a49334364d32613fe3f53ba6cbb
+ md5: 98cf7127ca7b3854c5d1c8bef1ed6e53
depends:
- - __glibc >=2.17,<3.0.a0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -4221,8 +4214,8 @@ packages:
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- libgcc >=13
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
- libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
@@ -4233,24 +4226,24 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - parquet-cpp <0.0a0
- arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
- apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 8786061
- timestamp: 1733810643966
+ size: 8026714
+ timestamp: 1735685336542
- kind: conda
name: libarrow
version: 18.1.0
- build: h4a2f8bd_6_cpu
- build_number: 6
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h4a2f8bd_6_cpu.conda
- sha256: 9ed3ea1bc15005c0df187268ef91407afaa908cf82f36f5acbbf50ac24d7f806
- md5: 835cdd84195b84dc34d128bd5d3580b9
+ build: hd595efa_7_cpu
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-hd595efa_7_cpu.conda
+ sha256: 554ffa338264c1dc34d95adb7eb856d50a2f25e7fa303a1a51e4372301b7c96f
+ md5: 08d4aff5ee6dee9a1b9ab13fca927697
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -4258,15 +4251,17 @@ packages:
- azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
- azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
+ - gflags >=2.2.2,<2.3.0a0
- glog >=0.7.1,<0.8.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libcxx >=18
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libgcc >=13
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
+ - libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -4275,190 +4270,190 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - apache-arrow-proc =*=cpu
- arrow-cpp <0.0a0
- parquet-cpp <0.0a0
+ - apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 5494797
- timestamp: 1733808145854
+ size: 8770256
+ timestamp: 1735684696564
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: h3b568fd_6_cpu
- build_number: 6
+ build: h3b568fd_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_6_cpu.conda
- sha256: fdb70e2499e59b730084ecd53008b361a6f6090b5fb49624feda06b7e84c7b8c
- md5: c50907eefe2ae22d826e7cb2e4d712f5
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_7_cpu.conda
+ sha256: 42cbfc87096f745d565d814d65b7228c82d985f1898859d5e456016d73e81c82
+ md5: 4c1d8c3feea249782148d3cd6a25392e
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
- libgcc >=13
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 578091
- timestamp: 1733810378092
+ size: 578222
+ timestamp: 1735685424850
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: hcb10f89_6_cpu
- build_number: 6
+ build: hcb10f89_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_6_cpu.conda
- sha256: a32fa1d71415afc02b5cf3cd4c0a6ec0af9e749308829cc65ff79689222ce479
- md5: 143f9288b64759a6427563f058c62f2b
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_7_cpu.conda
+ sha256: 87ea5d6a84d922d73975dce8661fccf257e72e755175b12c30e1181a34e37987
+ md5: 12d84228204c56fec6ed113288014d11
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
- libgcc >=13
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 611745
- timestamp: 1733810698469
+ size: 612463
+ timestamp: 1735684749868
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: hf07054f_6_cpu
- build_number: 6
+ build: hf07054f_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_6_cpu.conda
- sha256: e1cae46409927470439ef9ae93ed09b3493d0579501ca9ebfa79ded212ee98d8
- md5: 97fc01254714e1572624baefdd7cc898
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_7_cpu.conda
+ sha256: 86e20cebfdb4f335e98265c1b88f5053bf3e3648768a317856295846bfdbf2b4
+ md5: 3eaf71fe987de13061db795e03bb1a1c
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
- libcxx >=18
license: Apache-2.0
license_family: APACHE
- size: 483713
- timestamp: 1733808246880
+ size: 485185
+ timestamp: 1735683071232
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: h3b568fd_6_cpu
- build_number: 6
+ build: h3b568fd_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_6_cpu.conda
- sha256: 2a08f5a1017ff660c37ae0c24343a119cb2511c6edd69e23d0a5090a0967ea35
- md5: bb1548ad011c4f9107fcc4cc548473bf
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_7_cpu.conda
+ sha256: 13ba7d3d08015aa26569eca9e198e2f8b2a0cd2d9c420e41c78cc2e5d5170f26
+ md5: f39f5d725c2ca94c2e7b19e2717fd4ab
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
- - libarrow-acero 18.1.0 h3b568fd_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
+ - libarrow-acero 18.1.0 h3b568fd_7_cpu
- libgcc >=13
- - libparquet 18.1.0 hfc78867_6_cpu
+ - libparquet 18.1.0 hfc78867_7_cpu
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 559673
- timestamp: 1733810461646
+ size: 560329
+ timestamp: 1735685518922
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: hcb10f89_6_cpu
- build_number: 6
+ build: hcb10f89_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_6_cpu.conda
- sha256: 74eeb178070002842d3ed721769399320e3a68a0843319eaf899a092a31def26
- md5: 20ca46a6bc714a6ab189d5b3f46e66d8
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_7_cpu.conda
+ sha256: 99c12511fba79c7947f78d676eae5857659084f687f375f68bc20bd4cddb0a0e
+ md5: 0a81eb63d7cd150f598c752e86388d57
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
- - libarrow-acero 18.1.0 hcb10f89_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
+ - libarrow-acero 18.1.0 hcb10f89_7_cpu
- libgcc >=13
- - libparquet 18.1.0 h081d1f1_6_cpu
+ - libparquet 18.1.0 h081d1f1_7_cpu
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 586627
- timestamp: 1733810842604
+ size: 587497
+ timestamp: 1735684880531
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: hf07054f_6_cpu
- build_number: 6
+ build: hf07054f_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_6_cpu.conda
- sha256: 6eba942ce926419f74e6e0a7c3994a7d78ab6be47115e6bb70e02136554736be
- md5: 0774276be6659aaa0007f1b0f6ee19b0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_7_cpu.conda
+ sha256: 52c5c4e9cd5f2ac91dcebb6a920ab2536febcea116ff8767e5439329d7da820b
+ md5: 97a2d3606682d94f7d73112e9ad684ae
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
- - libarrow-acero 18.1.0 hf07054f_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
+ - libarrow-acero 18.1.0 hf07054f_7_cpu
- libcxx >=18
- - libparquet 18.1.0 h636d7b7_6_cpu
+ - libparquet 18.1.0 h636d7b7_7_cpu
license: Apache-2.0
license_family: APACHE
- size: 489948
- timestamp: 1733809328231
+ size: 491237
+ timestamp: 1735684688308
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h3ee7192_6_cpu
- build_number: 6
+ build: h08228c5_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h3ee7192_6_cpu.conda
- sha256: bda6728db019dd0c409b1996ad9ef6ab0bcee3a94dc66a8045e8c1049c566055
- md5: aa313b3168caf98d00b3753f5ba27650
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h08228c5_7_cpu.conda
+ sha256: 53ea53a06e137c2f81ebfdff3f978babb8b59e31f705a19b57056ec8754c1abf
+ md5: e128def53c133e8a23ac00cd4a479335
depends:
- __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h44a453e_6_cpu
- - libarrow-acero 18.1.0 hcb10f89_6_cpu
- - libarrow-dataset 18.1.0 hcb10f89_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
+ - libarrow-acero 18.1.0 hcb10f89_7_cpu
+ - libarrow-dataset 18.1.0 hcb10f89_7_cpu
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 519989
- timestamp: 1733810903274
+ size: 521861
+ timestamp: 1735684940668
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h3ffb4b1_6_cpu
- build_number: 6
+ build: h1e9d426_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h3ffb4b1_6_cpu.conda
- sha256: 9f78c55c5d7122e588a6f226cbf7e909c479d66ed18edc633d68324323d386b9
- md5: 5db2e6832397b8ca70a6f7b00e0c3629
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h1e9d426_7_cpu.conda
+ sha256: 252e2a0d8c733f36b50499786480a05a59577d617f291868149c80534c1e8ffc
+ md5: 6da921d9e1c4e2ab2679eeea7cbd4c82
depends:
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h1b535d6_6_cpu
- - libarrow-acero 18.1.0 h3b568fd_6_cpu
- - libarrow-dataset 18.1.0 h3b568fd_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
+ - libarrow-acero 18.1.0 h3b568fd_7_cpu
+ - libarrow-dataset 18.1.0 h3b568fd_7_cpu
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 515928
- timestamp: 1733810503359
+ size: 516014
+ timestamp: 1735685565929
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h86344ea_6_cpu
- build_number: 6
+ build: h4239455_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h86344ea_6_cpu.conda
- sha256: bafd9ca59ebb5ad34b77aff316ef7b59c5fb1eb8a7b6a15de8dcbdf3ce37556d
- md5: c1c162f5bf569cff8bed6def705a899f
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h4239455_7_cpu.conda
+ sha256: a45bbdd6932aed972d6c6ce30a7439aa8ec9d9b8ee5affb350d41e50abdc0127
+ md5: 91927747173f65695e441346c7145e26
depends:
- __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
- - libarrow-acero 18.1.0 hf07054f_6_cpu
- - libarrow-dataset 18.1.0 hf07054f_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
+ - libarrow-acero 18.1.0 hf07054f_7_cpu
+ - libarrow-dataset 18.1.0 hf07054f_7_cpu
- libcxx >=18
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
license: Apache-2.0
license_family: APACHE
- size: 451623
- timestamp: 1733809487176
+ size: 452385
+ timestamp: 1735684993831
- kind: conda
name: libasprintf
version: 0.22.5
@@ -4627,6 +4622,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16393
timestamp: 1734432564346
- kind: conda
@@ -4647,6 +4643,7 @@ packages:
- libcblas 3.9.0 26_linuxaarch64_openblas
- liblapack 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16477
timestamp: 1734432576699
- kind: conda
@@ -4667,6 +4664,7 @@ packages:
- libcblas 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16714
timestamp: 1734433054681
- kind: conda
@@ -4860,6 +4858,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16336
timestamp: 1734432570482
- kind: conda
@@ -4878,6 +4877,7 @@ packages:
- liblapacke 3.9.0 26_linuxaarch64_openblas
- liblapack 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16398
timestamp: 1734432580937
- kind: conda
@@ -4896,6 +4896,7 @@ packages:
- liblapacke 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16628
timestamp: 1734433061517
- kind: conda
@@ -5005,18 +5006,19 @@ packages:
timestamp: 1734000160270
- kind: conda
name: libcxx
- version: 19.1.5
- build: ha82da77_0
+ version: 19.1.6
+ build: ha82da77_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.5-ha82da77_0.conda
- sha256: 7918cc0bb7a6554cdd3eee634c3dc414a1ab8ec49faeca1567367bb92118f9d7
- md5: 3c7be0df28ccda1d193ea6de56dcb5ff
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.6-ha82da77_1.conda
+ sha256: 2b2443404503cd862385fd2f2a2c73f9624686fd1e5a45050b4034cfc06904ec
+ md5: ce5252d8db110cdb4ae4173d0a63c7c5
depends:
- __osx >=11.0
license: Apache-2.0 WITH LLVM-exception
license_family: Apache
- size: 519819
- timestamp: 1733291654212
+ size: 520992
+ timestamp: 1734494699681
- kind: conda
name: libdb
version: 6.2.32
@@ -5059,6 +5061,7 @@ packages:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
license: MIT
+ license_family: MIT
size: 72255
timestamp: 1734373823254
- kind: conda
@@ -5072,6 +5075,7 @@ packages:
depends:
- libgcc >=13
license: MIT
+ license_family: MIT
size: 69862
timestamp: 1734373858306
- kind: conda
@@ -5085,55 +5089,58 @@ packages:
depends:
- __osx >=11.0
license: MIT
+ license_family: MIT
size: 54132
timestamp: 1734373971372
- kind: conda
name: libedit
- version: 3.1.20191231
- build: hc8eb9b7_2
- build_number: 2
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
- sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca
- md5: 30e4362988a2623e9eb34337b83e01f9
+ version: 3.1.20240808
+ build: pl5321h7949ede_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20240808-pl5321h7949ede_0.conda
+ sha256: 4d0d69ddf9cc7d724a1ccf3a9852e44c8aea9825692582bac2c4e8d21ec95ccd
+ md5: 8247f80f3dc464d9322e85007e307fe8
depends:
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 96607
- timestamp: 1597616630749
+ size: 134657
+ timestamp: 1736191912705
- kind: conda
name: libedit
- version: 3.1.20191231
- build: he28a2e2_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf
- md5: 4d331e44109e3f0e19b4cb8f9b82f3e1
+ version: 3.1.20240808
+ build: pl5321h976ea20_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20240808-pl5321h976ea20_0.conda
+ sha256: 031daea98cf278f858b7957ad5dc475f1b5673cd5e718850529401ced64cef2c
+ md5: 0be40129d3dd1a152fff29a85f0785d0
depends:
- - libgcc-ng >=7.5.0
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 123878
- timestamp: 1597616541093
+ size: 148120
+ timestamp: 1736192137151
- kind: conda
name: libedit
- version: 3.1.20191231
- build: he28a2e2_2
- build_number: 2
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- sha256: debc31fb2f07ba2b0363f90e455873670734082822926ba4a9556431ec0bf36d
- md5: 29371161d77933a54fccf1bb66b96529
+ version: 3.1.20240808
+ build: pl5321hafb1f1b_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20240808-pl5321hafb1f1b_0.conda
+ sha256: fb934d7a03279ec8eae4bf1913ac9058fcf6fed35290d8ffa6e04157f396a3b1
+ md5: af89aa84ffb5ee551ce0c137b951a3b5
depends:
- - libgcc-ng >=7.5.0
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - __osx >=11.0
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 134104
- timestamp: 1597617110769
+ size: 107634
+ timestamp: 1736192034117
- kind: conda
name: libev
version: '4.33'
@@ -5755,138 +5762,144 @@ packages:
timestamp: 1729089357313
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h3888205_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.32.0-h3888205_0.conda
- sha256: 36af2844ce8fafd477214d51117746144461132f76759a7d29963b4583b577be
- md5: a40b948bf4eabcc1ce708c40ffd7c06d
+ version: 2.33.0
+ build: h2b5623c_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.33.0-h2b5623c_1.conda
+ sha256: ae48ee93e2c226bf682f1e389c2fd51ae7bf77c2ce4b3aee069764f4be1c63f2
+ md5: 61829a8dd5f4e2327e707572065bae41
depends:
+ - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libgcc >=13
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 1248560
- timestamp: 1733512309504
+ size: 1254656
+ timestamp: 1735648569457
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h804f50b_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.32.0-h804f50b_0.conda
- sha256: 126856add750013390dff664a3c3cd0f6f0cbbc683b0025a7ce9d1618968bc70
- md5: 3d96df4d6b1c88455e05b94ce8a14a53
+ version: 2.33.0
+ build: hccf9d24_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.33.0-hccf9d24_1.conda
+ sha256: d3d4def86d880431928799ba90ca97e57c2f05677c03af8de2337502926c492c
+ md5: a2724014eb04f14bd71d35f45b062dd0
depends:
- - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libgcc >=13
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 1249557
- timestamp: 1733512191906
+ size: 1253019
+ timestamp: 1735649566849
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h8d8be31_0
+ version: 2.33.0
+ build: hdbe95d5_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.32.0-h8d8be31_0.conda
- sha256: 722e49dbdc4486105d9f5b79a7ba4f9064602fe20c4015e97684c898ab8d3386
- md5: d7ab9e0eb7d55eac4943913073de61d7
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.33.0-hdbe95d5_1.conda
+ sha256: ce95aca02451694a4154c7770b6addf4fb859abf17912de6ec947da8469a56ce
+ md5: 91de1fbab8610974c0094c266bc63435
depends:
- __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libcxx >=18
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 876210
- timestamp: 1733512539476
+ size: 877594
+ timestamp: 1735648230965
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: h0121fbd_0
+ version: 2.33.0
+ build: h0121fbd_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.32.0-h0121fbd_0.conda
- sha256: d1b53d17df38b52a4bc6d1fe6af0e611d6480ce10b0af570c84bd38c8aa83b91
- md5: 877a5ec0431a5af83bf0cd0522bfe661
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.33.0-h0121fbd_1.conda
+ sha256: 41022523320ca8633a6c615710823e596efadb50f06d724e1a0c81e27994f257
+ md5: b0cfb5044685a7a9fa43ae669124f0a0
depends:
- __glibc >=2.17,<3.0.a0
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libgcc >=13
- - libgoogle-cloud 2.32.0 h804f50b_0
+ - libgoogle-cloud 2.33.0 h2b5623c_1
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 782108
- timestamp: 1733512329104
+ size: 784357
+ timestamp: 1735648759177
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: h7081f7f_0
+ version: 2.33.0
+ build: h7081f7f_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.32.0-h7081f7f_0.conda
- sha256: 609df2cf376ba66460f40143f835fc567cae4458df80705587cd2efd59c09bf1
- md5: 28f5ab5cf95170dfacd05d2bb301e573
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.33.0-h7081f7f_1.conda
+ sha256: c0524a22064bc17f5c037da09ba54cc9e767741ef645178e499750c44bec2531
+ md5: af8e51382464d4cc2d0054977c40a732
depends:
- __osx >=11.0
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libcxx >=18
- - libgoogle-cloud 2.32.0 h8d8be31_0
+ - libgoogle-cloud 2.33.0 hdbe95d5_1
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 526895
- timestamp: 1733513644846
+ size: 526963
+ timestamp: 1735649222088
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: hb9b2b65_0
+ version: 2.33.0
+ build: hb9b2b65_1
+ build_number: 1
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.32.0-hb9b2b65_0.conda
- sha256: e120e7b6c9c9d25baa8ae903106babdd3c969523ae25278a615ed9de4bd0fc35
- md5: 925ab0ca33baca4fcfee585cecb94169
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.33.0-hb9b2b65_1.conda
+ sha256: 5eda1cbba68709b91b370b3792c9cfd7bec4ac4e2262f0887d12e1f000ae1191
+ md5: 45df2267ff4d8ce532e8d300ce0b0829
depends:
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libgcc >=13
- - libgoogle-cloud 2.32.0 h3888205_0
+ - libgoogle-cloud 2.33.0 hccf9d24_1
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 737964
- timestamp: 1733512457785
+ size: 737518
+ timestamp: 1735649773462
- kind: conda
name: libgpg-error
version: '1.51'
@@ -5923,79 +5936,82 @@ packages:
- kind: conda
name: libgrpc
version: 1.67.1
- build: h36c5df4_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda
- sha256: 1f6673d9d866048c9cf28fd56e6874ffc7e2c53c47d7071cb367d5fc2dde16a7
- md5: b946137e362e98a55a77fdf0b20a7739
+ build: h0a426d6_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-h0a426d6_1.conda
+ sha256: 630edf63981818ff590367cb95fddbed0f5a390464d0952c90ec81de899e84a6
+ md5: 8a3cba079d6ac985e7d73c76a678fbb4
depends:
- - c-ares >=1.32.3,<2.0a0
+ - __osx >=11.0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libcxx >=18
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
- - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 7131846
- timestamp: 1730236305327
+ size: 5311706
+ timestamp: 1735585137716
- kind: conda
name: libgrpc
version: 1.67.1
- build: hc2c308b_0
+ build: h25350d4_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
- sha256: 870550c1faf524e9a695262cd4c31441b18ad542f16893bd3c5dbc93106705f7
- md5: 4606a4647bfe857e3cfe21ca12ac3afb
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-h25350d4_1.conda
+ sha256: 014627485b3cf0ea18e04c0bab07be7fb98722a3aeeb58477acc7e1c3d2f911e
+ md5: 0c6497a760b99a926c7c12b74951a39c
depends:
- __glibc >=2.17,<3.0.a0
- - c-ares >=1.32.3,<2.0a0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 7362336
- timestamp: 1730236333879
+ size: 7792251
+ timestamp: 1735584856826
- kind: conda
name: libgrpc
version: 1.67.1
- build: hc70892a_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda
- sha256: d2393fcd3c3584e5d58da4122f48bcf297567d2f6f14b3d1fcbd34fdd5040694
- md5: 624e27571fde34f8acc2afec840ac435
+ build: hf7ccdd3_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-hf7ccdd3_1.conda
+ sha256: 3fa173dc1d7456aac2b26937daae86a08432a31640e3d6569c62edc661fc9bbe
+ md5: 8fb41a425bebaeb3d0fa568503612e64
depends:
- - __osx >=11.0
- - c-ares >=1.34.2,<2.0a0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libgcc >=13
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 4882208
- timestamp: 1730236299095
+ size: 7430006
+ timestamp: 1735585769731
- kind: conda
name: libiconv
version: '1.17'
@@ -6129,6 +6145,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16338
timestamp: 1734432576650
- kind: conda
@@ -6147,6 +6164,7 @@ packages:
- liblapacke 3.9.0 26_linuxaarch64_openblas
- libcblas 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16403
timestamp: 1734432585123
- kind: conda
@@ -6165,6 +6183,7 @@ packages:
- libcblas 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16624
timestamp: 1734433068120
- kind: conda
@@ -6489,132 +6508,133 @@ packages:
- kind: conda
name: libparquet
version: 18.1.0
- build: h081d1f1_6_cpu
- build_number: 6
+ build: h081d1f1_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_6_cpu.conda
- sha256: c691a59f1ebb6cedbf827f49f6cf414e08b0eec911f589133e6a8321e8ac701c
- md5: 68788df49ce7480187eb6387f15b2b67
+ url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_7_cpu.conda
+ sha256: 55945b761130f60abdecf1551907ecfd05cb4a5958cf74d855b30c005ecb3592
+ md5: b97013ef4e1dd2cf11594f06d5b5e83a
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
- libgcc >=13
- libstdcxx >=13
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 1204535
- timestamp: 1733810811118
+ size: 1205598
+ timestamp: 1735684849150
- kind: conda
name: libparquet
version: 18.1.0
- build: h636d7b7_6_cpu
- build_number: 6
+ build: h636d7b7_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_6_cpu.conda
- sha256: 88c1e810bede65c54f1ebc51c14400f9e8cf0fc1f88a8c0a99210e2f5dfed582
- md5: 9b333c3a38e55f6c1b8733222e22f528
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_7_cpu.conda
+ sha256: bf42e43542a90edd86ba5aa5fd4543671625f1bc35f62be32688f00e18bae990
+ md5: 93de9ba66a20db32a2646d313794b3a8
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
- libcxx >=18
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 873134
- timestamp: 1733809271282
+ size: 873251
+ timestamp: 1735684582558
- kind: conda
name: libparquet
version: 18.1.0
- build: hfc78867_6_cpu
- build_number: 6
+ build: hfc78867_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_6_cpu.conda
- sha256: 38aab34c422519c530d0e9a3e0ffd1624db1c1e163983c46ae341e831b2eb6b5
- md5: 1ab6d4a9a982920b9dc5f2c700777b27
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_7_cpu.conda
+ sha256: 6dff9bbe731dc2cefe96bd9c7981d2cbef2b564a3152840a29c9b6a493ea50d9
+ md5: 184bec7a9392ab6ba8134041e81971d6
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
- libgcc >=13
- libstdcxx >=13
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 1117592
- timestamp: 1733810440129
+ size: 1117825
+ timestamp: 1735685495511
- kind: conda
name: libpng
- version: 1.6.44
- build: hadc24fc_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
- sha256: e5b14f7a01c2db4362d8591f42f82f336ed48d5e4079e4d1f65d0c2a3637ea78
- md5: f4cc49d7aa68316213e4b12be35308d1
+ version: 1.6.45
+ build: h3783ad8_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.45-h3783ad8_0.conda
+ sha256: ddcc81c049b32fb5eb3ac1f9a6d3a589c08325c8ec6f89eb912208b19330d68c
+ md5: d554c806d065b1763cb9e1cb1d25741d
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
+ - __osx >=11.0
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 290661
- timestamp: 1726234747153
+ size: 263151
+ timestamp: 1736339184358
- kind: conda
name: libpng
- version: 1.6.44
- build: hc14010f_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
- sha256: 38f8759a3eb8060deabd4db41f0f023514d853e46ddcbd0ba21768fc4e563bb1
- md5: fb36e93f0ea6a6f5d2b99984f34b049e
+ version: 1.6.45
+ build: h943b412_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.45-h943b412_0.conda
+ sha256: b8f5b5ba9a14dedf7c97c01300de492b1b52b68eacbc3249a13fdbfa82349a2f
+ md5: 85cbdaacad93808395ac295b5667d25b
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 263385
- timestamp: 1726234714421
+ size: 289426
+ timestamp: 1736339058310
- kind: conda
name: libpng
- version: 1.6.44
- build: hc4a20ef_0
+ version: 1.6.45
+ build: hec79eb8_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
- sha256: 23b5ce15cf9c6017641a8396bab00ae807dd9f662718cfa7f61de114d0c97647
- md5: 5d25802b25fcc7419fa13e21affaeb3a
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.45-hec79eb8_0.conda
+ sha256: a06daa523a0d5775acb96e6e3f083adc2ab1383eb8f664513dbc663f439c9cca
+ md5: 9a8716c16b40acc7148263de1d0a403b
depends:
- libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 294907
- timestamp: 1726236639270
+ size: 299051
+ timestamp: 1736344007986
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h029595c_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
- sha256: d8c7b6f851bfc53494d9b8e54d473c4f11ab26483a6e64df6f7967563df166b1
- md5: 538dbe0ad9f248e2e109abb9b6809ea5
+ version: 5.28.3
+ build: h3bd63a1_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda
+ sha256: f58a16b13ad53346903c833e266f83c3d770a43a432659b98710aed85ca885e7
+ md5: bdbfea4cf45ae36652c6bbcc2e7ebe91
depends:
+ - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libstdcxx >=13
+ - libcxx >=18
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2802876
- timestamp: 1728564881988
+ size: 2271580
+ timestamp: 1735576361997
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h5b01275_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
- sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421
- md5: ab0bff36363bec94720275a681af8b83
+ version: 5.28.3
+ build: h44a3b7b_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda
+ sha256: ecb69f2b1668e784b41ba667493be846662d5ef702bef64fb2e013bb1364cdc4
+ md5: 68f807f7cc13951652bbe048253fd405
depends:
- - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libgcc >=13
@@ -6622,75 +6642,77 @@ packages:
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2945348
- timestamp: 1728565355702
+ size: 2788074
+ timestamp: 1735576315676
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h8f0b736_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
- sha256: f732a6fa918428e2d5ba61e78fe11bb44a002cc8f6bb74c94ee5b1297fefcfd8
- md5: d2cb5991f2fb8eb079c80084435e9ce6
+ version: 5.28.3
+ build: h6128344_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda
+ sha256: 51125ebb8b7152e4a4e69fd2398489c4ec8473195c27cde3cbdf1cb6d18c5493
+ md5: d8703f1ffe5a06356f06467f1d0b9464
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
+ - libgcc >=13
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2374965
- timestamp: 1728565334796
+ size: 2960815
+ timestamp: 1735577210663
- kind: conda
name: libre2-11
version: 2024.07.02
- build: h18dbdb1_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda
- sha256: 96d4fdac28d5af38c38f90c22cb0aa9a90affae13ca8ba24bd1eb60b789df8ff
- md5: f1800796b0efc4bbc5b001d845545111
+ build: h07bc746_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h07bc746_2.conda
+ sha256: 112a73ad483353751d4c5d63648c69a4d6fcebf5e1b698a860a3f5124fc3db96
+ md5: 6b1e3624d3488016ca4f1ca0c412efaa
depends:
+ - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libstdcxx >=13
+ - libcxx >=18
constrains:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 203516
- timestamp: 1728778974654
+ size: 167155
+ timestamp: 1735541067807
- kind: conda
name: libre2-11
version: 2024.07.02
- build: h2348fd5_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda
- sha256: 6facca42cfc85a05b33e484a8b0df7857cc092db34806946d022270098d8d20f
- md5: 5a7065309a66097738be6a06fd04b7ef
+ build: h18dbdb1_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_2.conda
+ sha256: 862c20de0120f802e618dcb25913d00c5b82f91f4be60b2d46a774e851adc2f6
+ md5: 9a7dbbaab49f76a6f36e5c9d98e323a7
depends:
- - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
+ - libgcc >=13
+ - libstdcxx >=13
constrains:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 165956
- timestamp: 1728779107218
+ size: 204305
+ timestamp: 1735540986919
- kind: conda
name: libre2-11
version: 2024.07.02
- build: hbbce691_1
- build_number: 1
+ build: hbbce691_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
- sha256: f8ad6a4f6d4fd54ebe3e5e712a01e663222fc57f49d16b6b8b10c30990dafb8f
- md5: 2124de47357b7a516c0a3efd8f88c143
+ url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_2.conda
+ sha256: 4420f8362c71251892ba1eeb957c5e445e4e1596c0c651c28d0d8b415fe120c7
+ md5: b2fede24428726dd867611664fb372e8
depends:
- __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
@@ -6701,8 +6723,8 @@ packages:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 211096
- timestamp: 1728778964655
+ size: 209793
+ timestamp: 1735541054068
- kind: conda
name: libsndfile
version: 1.2.2
@@ -6960,15 +6982,13 @@ packages:
timestamp: 1729089498541
- kind: conda
name: libsystemd0
- version: '256.9'
- build: h0b6a36f_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-256.9-h0b6a36f_2.conda
- sha256: 28e1a3c4bd242e7eb3bd0bcd35e558680d186e7a1d61482d371dde2a0f1bfb42
- md5: 135bbeb376345b6847c065115be4221a
+ version: '257.2'
+ build: h27834fc_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsystemd0-257.2-h27834fc_0.conda
+ sha256: 7b95a42f507479c4e76855dbffe65a3b51fa5f1465649be00a1940dec6cdb9a8
+ md5: 18fbe3093009820c6fb7d6f1c710fd66
depends:
- - __glibc >=2.17,<3.0.a0
- libcap >=2.71,<2.72.0a0
- libgcc >=13
- libgcrypt-lib >=1.11.0,<2.0a0
@@ -6976,18 +6996,18 @@ packages:
- lz4-c >=1.10.0,<1.11.0a0
- zstd >=1.5.6,<1.6.0a0
license: LGPL-2.1-or-later
- size: 410566
- timestamp: 1733679350245
+ size: 512091
+ timestamp: 1736377189744
- kind: conda
name: libsystemd0
- version: '256.9'
- build: ha536d29_2
- build_number: 2
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libsystemd0-256.9-ha536d29_2.conda
- sha256: 2cf3b22760674612fa13ad9748164dffc993d58dd3fc05c343b646ce31375af7
- md5: 5ef220ea7aa46bd59f83ac7afe14910b
+ version: '257.2'
+ build: h3dc2cb9_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libsystemd0-257.2-h3dc2cb9_0.conda
+ sha256: 03f532cae9ca0417b29ead19490a9fa0fa5e6ad73f1bfc7ea0d4d3bd4c41156e
+ md5: 40c12fdd396297db83f789722027f5ed
depends:
+ - __glibc >=2.17,<3.0.a0
- libcap >=2.71,<2.72.0a0
- libgcc >=13
- libgcrypt-lib >=1.11.0,<2.0a0
@@ -6995,8 +7015,8 @@ packages:
- lz4-c >=1.10.0,<1.11.0a0
- zstd >=1.5.6,<1.6.0a0
license: LGPL-2.1-or-later
- size: 432708
- timestamp: 1733679350109
+ size: 487652
+ timestamp: 1736377129372
- kind: conda
name: libthrift
version: 0.21.0
@@ -7285,50 +7305,53 @@ packages:
timestamp: 1610609991029
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: h31becfc_0
+ version: 1.5.0
+ build: h0886dbf_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
- sha256: 10dded60f274e29c573cfacf6e96f5d0fc374ee431250374a44cbd773916ab9d
- md5: 5fd7ab3e5f382c70607fbac6335e6e19
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda
+ sha256: b3d881a0ae08bb07fff7fa8ead506c8d2e0388733182fe4f216f3ec5d61ffcf0
+ md5: 95ef4a689b8cc1b7e18b53784d88f96b
depends:
- - libgcc-ng >=12
+ - libgcc >=13
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 363577
- timestamp: 1713201785160
+ size: 362623
+ timestamp: 1734779054659
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: h93a5062_0
+ version: 1.5.0
+ build: h2471fea_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
- sha256: 0d4bad713a512d79bfeb4d61821f447afab8b0792aca823f505ce6b195e9fde5
- md5: c0af0edfebe780b19940e94871f1a765
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda
+ sha256: f8bdb876b4bc8cb5df47c28af29188de8911c3fea4b799a33743500149de3f4a
+ md5: 569466afeb84f90d5bb88c11cc23d746
+ depends:
+ - __osx >=11.0
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 287750
- timestamp: 1713200194013
+ size: 290013
+ timestamp: 1734777593617
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: hd590300_0
+ version: 1.5.0
+ build: h851e524_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
- sha256: 49bc5f6b1e11cb2babf2a2a731d1a680a5e08a858280876a779dbda06c78c35f
- md5: b26e8aa824079e1be0294e7152ca4559
+ url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
+ sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf
+ md5: 63f790534398730f59e1b899c3644d4a
depends:
- - libgcc-ng >=12
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 438953
- timestamp: 1713199854503
+ size: 429973
+ timestamp: 1734777489810
- kind: conda
name: libxcb
version: 1.17.0
@@ -7521,20 +7544,20 @@ packages:
timestamp: 1727963148474
- kind: conda
name: llvm-openmp
- version: 19.1.5
+ version: 19.1.6
build: hdb05f8b_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.5-hdb05f8b_0.conda
- sha256: e7ba0d8b718925efdcf1309f5e776e3264cc172d3af8d4048b39627c50a1abc0
- md5: f2c2e187a1d2637d282e34dc92021a70
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.6-hdb05f8b_0.conda
+ sha256: a0f3e9139ab16f0a67b9d2bbabc15b78977168f4a5b5503fed4962dcb9a96102
+ md5: 34fdeffa0555a1a56f38839415cc066c
depends:
- __osx >=11.0
constrains:
- - openmp 19.1.5|19.1.5.*
+ - openmp 19.1.6|19.1.6.*
license: Apache-2.0 WITH LLVM-exception
license_family: APACHE
- size: 281120
- timestamp: 1733376089600
+ size: 281251
+ timestamp: 1734520462311
- kind: conda
name: lz4-c
version: 1.10.0
@@ -7662,76 +7685,76 @@ packages:
timestamp: 1733219945697
- kind: conda
name: max
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121705-release.conda
- sha256: 83b2265b29c1ee69ae9d9f639ab04899d0ef15b5abc9114e034e2cd382dcad31
- md5: bd7165d97ebb0458ddb1ce616c146c24
- depends:
- - max-core ==25.1.0.dev2024121705 release
- - max-python >=25.1.0.dev2024121705,<26.0a0
- - mojo-jupyter ==25.1.0.dev2024121705 release
- - mblack ==25.1.0.dev2024121705 release
+ url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ sha256: 4ce81189e26dd06f188129580db0464f8ee9a081e195dad7082b2fa25fcf738e
+ md5: b46d770a5f45597ffc008bd224d8e91c
+ depends:
+ - max-core ==25.1.0.dev2025010817 release
+ - max-python >=25.1.0.dev2025010817,<26.0a0
+ - mojo-jupyter ==25.1.0.dev2025010817 release
+ - mblack ==25.1.0.dev2025010817 release
license: LicenseRef-Modular-Proprietary
- size: 9921
- timestamp: 1734412638047
+ size: 9922
+ timestamp: 1736357145809
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: linux-64
- url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121705-release.conda
- sha256: 15459b8446d3feb608baae398cf2753a3704e02e07cf2a6c02e166068d8a9304
- md5: 4ca65aff37bd7e944cce1697c1fe203e
+ url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 5459a1f6c379b01231649212ca7f5062c49208b5c0b2b17047b55011872727c2
+ md5: 5bbb293b5216b098c424e7602823a460
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: x86_64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 245744992
- timestamp: 1734412638045
+ size: 247646542
+ timestamp: 1736357145807
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: linux-aarch64
- url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121705-release.conda
- sha256: e89be4d7691a354a3f6e5d71e25b49447ca9fd1048fe03355c3bc509a726234d
- md5: acc4b1208feaba5ad08c1b370192e127
+ url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 18715c3fc8071d5eeb9f1893512fe65967919e9900738423958a5cb4f09148da
+ md5: 4a7b6e800f8fdabf0498727c1bff57d3
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: aarch64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 249373255
- timestamp: 1734412698620
+ size: 251608988
+ timestamp: 1736357045232
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: osx-arm64
- url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121705-release.conda
- sha256: edd613b122c086c4d6237c7195a55ce09bff9922ab70e0f1ff7a9662d3de41fe
- md5: d68326deab9bb460f253bf6df7e903f6
+ url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 5a23bdc48d6fe2cfe439097b7a0fc0f1bd2b23be081478638ef4b945267d8015
+ md5: 1f54b615e5199ac268f123c89cfbabda
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: arm64
platform: osx
license: LicenseRef-Modular-Proprietary
- size: 214152137
- timestamp: 1734412888834
+ size: 209267317
+ timestamp: 1736357278969
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: linux-64
- url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: 11296250671f2a7c5951382f89f8e68a1702b0c8aeef200788e71d9e0e1d2955
- md5: f979494f9de5b3853834ffa1adf606c3
+ url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: 7bd73eb5b2c8f796bb2bf947e68b46f9fa0302c1999905321bd18c453be5d410
+ md5: 58d7a8476c07a36c0412fcd983faebfc
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -7754,18 +7777,18 @@ packages:
arch: x86_64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 122755617
- timestamp: 1734412638055
+ size: 124309678
+ timestamp: 1736357145817
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: linux-aarch64
- url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: e4a7ded05f33903034e52feefe65f458975942740cf07dcb30e2e9c1f0af53e6
- md5: 9a51b55d48b861487dbecd7c4abc7b68
+ url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: 1faa8dea2f87c25b20f467758a46589d2d464d8367fda4fa7fa61c73120b62f9
+ md5: be84f3b39ee757dd73d27ac241c37d5a
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -7788,18 +7811,18 @@ packages:
arch: aarch64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 126486411
- timestamp: 1734412698632
+ size: 128047180
+ timestamp: 1736357045243
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: osx-arm64
- url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: 328cee9730cf537d58e6d24b9aa111504271433d724fd47fdcee55b26df222b3
- md5: b1168de7b96e9e7b0fad7c675ecdb426
+ url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: c8b10ed04f57bc9a9e67d447ad97404ea06f3efbc903dced4723f3828c93ab2c
+ md5: aa8c692e6393c51283419173f7cb69a2
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -7822,17 +7845,17 @@ packages:
arch: arm64
platform: osx
license: LicenseRef-Modular-Proprietary
- size: 113391631
- timestamp: 1734412888837
+ size: 110680624
+ timestamp: 1736357278972
- kind: conda
name: mblack
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
- sha256: 44d0c3a0b1242823334d6bad895ad037849719f67bcfbc426c65363c567f80a5
- md5: 93c89483058dabd0282c378812328ba0
+ url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-release.conda
+ sha256: 8bc21a826d3edc5a8719deeeadcee5b3fc8fbd83313ce2c7ebc8c620075608e1
+ md5: ee664fe2390706d36d2d60b1f2bd69df
depends:
- python >=3.9,<3.13
- click >=8.0.0
@@ -7842,8 +7865,8 @@ packages:
- platformdirs >=2
- python
license: MIT
- size: 130801
- timestamp: 1734412638051
+ size: 130813
+ timestamp: 1736357145814
- kind: conda
name: mdurl
version: 0.1.2
@@ -7862,21 +7885,21 @@ packages:
timestamp: 1733255681319
- kind: conda
name: mojo-jupyter
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121705-release.conda
- sha256: 8ef8447f576590d381ccaa82e6c207c530e9355b07ab3174f3df9c9f064d42de
- md5: 4c31e34ff54c71cd9d584d3ab8f1c315
+ url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-release.conda
+ sha256: a92d02809c43a9a92abc363e69396738f6c9802c12d8827cc008d316cea4e107
+ md5: 0533034ac307140f160cf43c5f36b2ed
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python >=3.9,<3.13
- jupyter_client >=8.6.2,<8.7
- python
license: LicenseRef-Modular-Proprietary
- size: 22937
- timestamp: 1734412638052
+ size: 22926
+ timestamp: 1736357145815
- kind: conda
name: mpg123
version: 1.32.9
@@ -8216,49 +8239,52 @@ packages:
- kind: conda
name: openssl
version: 3.4.0
- build: h39f12f2_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
- sha256: bd1d58ced46e75efa3b842c61642fd12272c69e9fe4d7261078bc082153a1d53
- md5: df307bbc703324722df0293c9ca2e418
+ build: h7b32b05_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
+ sha256: f62f6bca4a33ca5109b6d571b052a394d836956d21b25b7ffd03376abf7a481f
+ md5: 4ce6875f75469b2757a65e10a5d05e31
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- ca-certificates
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 2935176
- timestamp: 1731377561525
+ size: 2937158
+ timestamp: 1736086387286
- kind: conda
name: openssl
version: 3.4.0
- build: h86ecc28_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
- sha256: 64dbbdd6384fa56338124783197f7ad9048c989a02264bcd2e07355e3570f113
- md5: b2f202b5bddafac824eb610b65dde98f
+ build: h81ee809_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
+ sha256: 97772762abc70b3a537683ca9fc3ff3d6099eb64e4aba3b9c99e6fce48422d21
+ md5: 22f971393637480bda8c679f374d8861
depends:
+ - __osx >=11.0
- ca-certificates
- - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 3474825
- timestamp: 1731379200886
+ size: 2936415
+ timestamp: 1736086108693
- kind: conda
name: openssl
version: 3.4.0
- build: hb9d3cd8_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
- sha256: 814b9dff1847b132c676ee6cc1a8cb2d427320779b93e1b6d76552275c128705
- md5: 23cc74f77eb99315c0360ec3533147a9
+ build: hd08dc88_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-hd08dc88_1.conda
+ sha256: 60d34454b861501d7355f25a7b39fdb5de8d56fca49b5bcbe8b8142b7d82dce4
+ md5: e21c4767e783a58c373fdb99de6211bf
depends:
- - __glibc >=2.17,<3.0.a0
- ca-certificates
- libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 2947466
- timestamp: 1731377666602
+ size: 3469279
+ timestamp: 1736088141230
- kind: conda
name: opentelemetry-api
version: 1.29.0
@@ -8314,6 +8340,7 @@ packages:
- python >=3.9
- requests >=2.7,<3.dev0
license: Apache-2.0
+ license_family: APACHE
size: 17147
timestamp: 1734345675510
- kind: conda
@@ -8442,16 +8469,16 @@ packages:
- kind: conda
name: orc
version: 2.0.3
- build: h3c55218_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h3c55218_1.conda
- sha256: 154b26bc4d586de33765a155c9b79ebd7f5bb36c2bbf4b8854e1631bca8d21af
- md5: 0a51a3cf028b845c46ec0d1ea2d18629
+ build: h0ff2369_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h0ff2369_2.conda
+ sha256: cca330695f3bdb8c0e46350c29cd4af3345865544e36f1d7c9ba9190ad22f5f4
+ md5: 24b1897c0d24afbb70704ba998793b78
depends:
- - libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
- - libstdcxx >=13
+ - __osx >=11.0
+ - libcxx >=18
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
- snappy >=1.2.1,<1.3.0a0
@@ -8459,21 +8486,21 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 1165179
- timestamp: 1733509923825
+ size: 438520
+ timestamp: 1735630624140
- kind: conda
name: orc
version: 2.0.3
- build: h97ab989_1
- build_number: 1
+ build: h12ee42a_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h97ab989_1.conda
- sha256: 9de7e2746fde57c9b7f08ee87142014f6bb9b2d3a506839ea3e98baa99711576
- md5: 2f46eae652623114e112df13fae311cf
+ url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h12ee42a_2.conda
+ sha256: dff5cc8023905782c86b3459055f26d4b97890e403b0698477c9fed15d8669cc
+ md5: 4f6f9f3f80354ad185e276c120eac3f0
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -8482,21 +8509,21 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 1189462
- timestamp: 1733509801323
+ size: 1188881
+ timestamp: 1735630209320
- kind: conda
name: orc
version: 2.0.3
- build: hbcee414_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-hbcee414_1.conda
- sha256: e5e72438a3cd967ebc774070e8c49500d2d6d4175f349400b327fee75d3bfc05
- md5: e808cf7819eaa1735c8790d7f9f482c7
+ build: hdd485aa_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-hdd485aa_2.conda
+ sha256: b6c67542352a86cdf143c3066d5cda855b74454a156eedcd8958b494c6a32a83
+ md5: d19f01b42e5d6a2908b65df435aff42f
depends:
- - __osx >=11.0
- - libcxx >=18
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libgcc >=13
+ - libprotobuf >=5.28.3,<5.28.4.0a0
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
- snappy >=1.2.1,<1.3.0a0
@@ -8504,8 +8531,8 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 437391
- timestamp: 1733510118673
+ size: 1167714
+ timestamp: 1735630248837
- kind: conda
name: packaging
version: '24.2'
@@ -8664,78 +8691,78 @@ packages:
timestamp: 1723488734144
- kind: conda
name: pillow
- version: 11.0.0
- build: py312h5ab5af3_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py312h5ab5af3_0.conda
- sha256: 3cf43a5eb1f67f3a5f3ef1ec3a685f8767019cce24dbe46c4b76fee8a54fbacf
- md5: 1c4bdfe659cfdedd372685ce2494e97b
+ version: 11.1.0
+ build: py312h50aef2c_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda
+ sha256: b29b7c915053e06a7a5b4118760202c572c9c35d23bd6ce8e73270b6a50e50ee
+ md5: 94d6ba8cd468668a9fb04193b0f4b36e
depends:
+ - __osx >=11.0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
- - libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41756471
- timestamp: 1729068045876
+ size: 42852329
+ timestamp: 1735930118976
- kind: conda
name: pillow
- version: 11.0.0
- build: py312h7b63e92_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py312h7b63e92_0.conda
- sha256: 13a464bea02c0df0199c20ef6bad24a6bc336aaf55bf8d6a133d0fe664463224
- md5: 385f46a4df6f97892503a841121a9acf
+ version: 11.1.0
+ build: py312h719f0cf_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.1.0-py312h719f0cf_0.conda
+ sha256: 7559556ffc44bda777f85c2e5acd6b5756fa5822c0271b329b7b9a3c6bb20349
+ md5: 77e0ec0a6fc847d317f204aa15b59f6b
depends:
- - __glibc >=2.17,<3.0.a0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
- libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41948418
- timestamp: 1729065846594
+ size: 41362848
+ timestamp: 1735932311857
- kind: conda
name: pillow
- version: 11.0.0
- build: py312haf37ca6_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py312haf37ca6_0.conda
- sha256: 727b4c3faecdb6f6809cf20c5f32d2df4af34e0d5b9146b7588383bcba7990e8
- md5: dc9b51fbd2b6f7fea9b5123458864dbb
+ version: 11.1.0
+ build: py312h80c1187_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda
+ sha256: 5c347962202b55ae4d8a463e0555c5c6ca33396266a08284bf1384399894e541
+ md5: d3894405f05b2c0f351d5de3ae26fa9c
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
+ - libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
- - python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41737424
- timestamp: 1729065920347
+ size: 42749785
+ timestamp: 1735929845390
- kind: conda
name: pixman
version: 0.44.2
@@ -8964,12 +8991,12 @@ packages:
timestamp: 1733392308901
- kind: conda
name: protobuf
- version: 5.28.2
+ version: 5.28.3
build: py312h2ec8cdc_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda
- sha256: 4884f8161602f0148ebbc1af8d3176cec80b96c83243f68aafd651986b573817
- md5: 586bead4a9dfa46faf88deb7d3a742bb
+ url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.3-py312h2ec8cdc_0.conda
+ sha256: acb2e0ee948e3941f8ed191cb77f654e06538638aed8ccd71cbc78a15242ebbb
+ md5: 9d7e427d159c1b2d516cc047ff177c48
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -8977,19 +9004,19 @@ packages:
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 464548
- timestamp: 1728669645013
+ size: 464794
+ timestamp: 1731366525051
- kind: conda
name: protobuf
- version: 5.28.2
+ version: 5.28.3
build: py312h6f74592_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda
- sha256: f874ffd38b9ae2b810e9d2e43fd8d3b778cdeaf7dea4a3e6ee4adeafe2d936cf
- md5: 4b9b22bd7c53d938b207f9d0f79db183
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.3-py312h6f74592_0.conda
+ sha256: 9c575d5035c7ecb114ab9e17906c0a54087d9598dd6a2104c02fe33f0a29dd46
+ md5: 06513608c94fb1c1b17136ace77063a9
depends:
- libgcc >=13
- libstdcxx >=13
@@ -8997,31 +9024,31 @@ packages:
- python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 472764
- timestamp: 1728669483611
+ size: 473242
+ timestamp: 1731366577844
- kind: conda
name: protobuf
- version: 5.28.2
- build: py312hf02c72a_0
+ version: 5.28.3
+ build: py312hd8f9ff3_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda
- sha256: dbcec117510ced5c12097e3eb06ebbf4512dc255733a9ace33c4249fb7e6a364
- md5: 6fda46c82abd0a080ca33de7d16ca877
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.3-py312hd8f9ff3_0.conda
+ sha256: 9d572a97419bdace14d7c7cc8cc8c4bf2dcb22b56965dac87a27fbdb5061b926
+ md5: 5afbe52a59f04dd1fe566d0d17590d7e
depends:
- __osx >=11.0
- - libcxx >=17
+ - libcxx >=18
- python >=3.12,<3.13.0a0
- python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 447369
- timestamp: 1728669902591
+ size: 448803
+ timestamp: 1731367010746
- kind: conda
name: pthread-stubs
version: '0.4'
@@ -9256,31 +9283,31 @@ packages:
timestamp: 1733195786147
- kind: conda
name: pydantic
- version: 2.10.3
+ version: 2.10.4
build: pyh3cfb1c2_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda
- sha256: cac9eebd3d5f8d8a497a9025d756257ddc75b8b3393e6737cb45077bd744d4f8
- md5: 194ef7f91286978521350f171b117f01
+ url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ sha256: e68400714532a33f34b44ddaee3e27e8dd6c83c3f31c7892ec10b84d13aa8b59
+ md5: 93bccf4d7a58c9140d59491de21e044b
depends:
- annotated-types >=0.6.0
- - pydantic-core 2.27.1
+ - pydantic-core 2.27.2
- python >=3.9
- typing-extensions >=4.6.1
- typing_extensions >=4.12.2
license: MIT
license_family: MIT
- size: 317037
- timestamp: 1733316963547
+ size: 296557
+ timestamp: 1734609427697
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312h12e396e_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.1-py312h12e396e_0.conda
- sha256: c89741f4eff395f8de70975f42e1f20591f0e0870929d440af35b13399976b09
- md5: 114030cb28527db2c385f07038e914c8
+ url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.2-py312h12e396e_0.conda
+ sha256: 81602a4592ad2ac1a1cb57372fd25214e63b1c477d5818b0c21cde0f1f85c001
+ md5: bae01b2563030c085f5158c518b84e86
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -9291,16 +9318,16 @@ packages:
- __glibc >=2.17
license: MIT
license_family: MIT
- size: 1635156
- timestamp: 1732254225040
+ size: 1641402
+ timestamp: 1734571789895
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312h8cbf658_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.1-py312h8cbf658_0.conda
- sha256: 1f59bc1914f77faed3c95217e4d093310771baee4e93a15c0479359559e3fa19
- md5: d980860b8bf193f53d30a19c5d2bf070
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.2-py312h8cbf658_0.conda
+ sha256: 623e0f3846f15d035ce7ab7ae445fc8d9e547b6684ab55858b6f44510d24b097
+ md5: 9677f6ab4bf27ba3c2aee70d08c7b27c
depends:
- libgcc >=13
- python >=3.12,<3.13.0a0
@@ -9311,16 +9338,16 @@ packages:
- __glibc >=2.17
license: MIT
license_family: MIT
- size: 1503747
- timestamp: 1732254331303
+ size: 1505076
+ timestamp: 1734571966615
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312hcd83bfe_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.1-py312hcd83bfe_0.conda
- sha256: 5bba8de2bbbbdb39390abb1e2aff310e8cfd49646ae5a0e0ea4d6582bd1d52ba
- md5: 3847a96eaf24a877b6091150ff9c4955
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.2-py312hcd83bfe_0.conda
+ sha256: cfa7201f890d5d08ce29ff70e65a96787d5793a1718776733666b44bbd4a1205
+ md5: dcb307e02f17d38c6e1cbfbf8c602852
depends:
- __osx >=11.0
- python >=3.12,<3.13.0a0
@@ -9331,25 +9358,25 @@ packages:
- __osx >=11.0
license: MIT
license_family: MIT
- size: 1449057
- timestamp: 1732254359451
+ size: 1593461
+ timestamp: 1734571986644
- kind: conda
name: pydantic-settings
- version: 2.7.0
+ version: 2.7.1
build: pyh3cfb1c2_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda
- sha256: dd1ac7c8b6a189c8aa18f6c7df019d8f6df495300a259e3fbebdb542fc955c3b
- md5: d9f19a7c4199249fa229891b573b6f9b
+ url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ sha256: 082fb1ec29917d2c9ed6a862cb8eb9beb88c208ea62c9fef1aeb5f4f3e0e0b06
+ md5: d71d76b62bed332b037d7adfc0f3989a
depends:
- pydantic >=2.7.0
- python >=3.9
- python-dotenv >=0.21.0
license: MIT
license_family: MIT
- size: 31426
- timestamp: 1734127929720
+ size: 31822
+ timestamp: 1735650532951
- kind: conda
name: pygame
version: 2.6.1
@@ -9436,20 +9463,19 @@ packages:
timestamp: 1727636776938
- kind: conda
name: pygments
- version: 2.18.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2.19.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda
- sha256: 0d6133545f268b2b89c2617c196fc791f365b538d4057ecd636d658c3b1e885d
- md5: b38dc0206e2a530e5c2cf11dc086b31a
+ url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda
+ sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b
+ md5: 232fb4577b6687b2d503ef8e254270c9
depends:
- python >=3.9
license: BSD-2-Clause
license_family: BSD
- size: 876700
- timestamp: 1733221731178
+ size: 888600
+ timestamp: 1736243563082
- kind: conda
name: pyinstrument
version: 5.0.0
@@ -9968,48 +9994,48 @@ packages:
- kind: conda
name: re2
version: 2024.07.02
- build: h2d3a13d_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda
- sha256: 55e7be480bfb979fa8595a16d7f2adea3a5ac9a77b2e97cd0f7ac40e989edb6c
- md5: 83f4e47229834c895a92c18383e1cd9d
+ build: h6589ca4_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-h6589ca4_2.conda
+ sha256: 4d3799c05f8f662922a0acd129d119774760a3281b883603678e128d1cb307fb
+ md5: 7a8b4ad8c58a3408ca89d78788c78178
depends:
- - libre2-11 2024.07.02 h18dbdb1_1
+ - libre2-11 2024.07.02 h07bc746_2
license: BSD-3-Clause
license_family: BSD
- size: 26747
- timestamp: 1728778986331
+ size: 26861
+ timestamp: 1735541088455
- kind: conda
name: re2
version: 2024.07.02
- build: h77b4e00_1
- build_number: 1
+ build: h9925aae_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
- sha256: c1721cb80f7201652fc9801f49c214c88aee835d957f2376e301bd40a8415742
- md5: 01093ff37c1b5e6bf9f17c0116747d11
+ url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h9925aae_2.conda
+ sha256: d213c44958d49ce7e0d4d5b81afec23640cce5016685dbb2d23571a99caa4474
+ md5: e84ddf12bde691e8ec894b00ea829ddf
depends:
- - libre2-11 2024.07.02 hbbce691_1
+ - libre2-11 2024.07.02 hbbce691_2
license: BSD-3-Clause
license_family: BSD
- size: 26665
- timestamp: 1728778975855
+ size: 26786
+ timestamp: 1735541074034
- kind: conda
name: re2
version: 2024.07.02
- build: hcd0e937_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda
- sha256: eebddde6cb10b146507810b701ef6df122d5309cd5151a39d0828aa44dc53725
- md5: 19e29f2ccc9168eb0a39dc40c04c0e21
+ build: haa97905_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-haa97905_2.conda
+ sha256: 040848655df9119bae5a549fb5c8956a5537120859416c1d9d0712b7bac9f12e
+ md5: 1bf0135339b4a7419a198a795d2d4be0
depends:
- - libre2-11 2024.07.02 h2348fd5_1
+ - libre2-11 2024.07.02 h18dbdb1_2
license: BSD-3-Clause
license_family: BSD
- size: 26860
- timestamp: 1728779123653
+ size: 26830
+ timestamp: 1735540999398
- kind: conda
name: readline
version: '8.2'
@@ -10201,12 +10227,12 @@ packages:
timestamp: 1734415467047
- kind: conda
name: safetensors
- version: 0.4.5
+ version: 0.5.1
build: py312h12e396e_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda
- sha256: e44515f875c10efb5e041efcb250dfd18f2cb66ec3f268237549ead6284c6922
- md5: 3b87a00bcaab069172d6cef8124b7142
+ url: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.5.1-py312h12e396e_0.conda
+ sha256: 61a4a49bc98a7b529c7c9e2af9be1dc3350b8ea1c78f985e8a051543e8845ffa
+ md5: 19b54f64e926aca46d0cc2ff0ecf4f34
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -10216,16 +10242,16 @@ packages:
- __glibc >=2.17
license: Apache-2.0
license_family: APACHE
- size: 402547
- timestamp: 1725632183154
+ size: 424642
+ timestamp: 1736278244485
- kind: conda
name: safetensors
- version: 0.4.5
+ version: 0.5.1
build: py312h8cbf658_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda
- sha256: e83ebeaba4a07bbe4a1d6c7eef0b4f7ae19901ef365bca043808d16e4c8faad8
- md5: 82ef253c37308b082a478fb92924cad6
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.5.1-py312h8cbf658_0.conda
+ sha256: ee66da0efb1d6897ad74156cb115277dfb8ca7f6c8bdfb17bd6a6fb205495622
+ md5: f91072f99af78ed0c1941ba5d6f30cf8
depends:
- libgcc >=13
- python >=3.12,<3.13.0a0
@@ -10235,16 +10261,16 @@ packages:
- __glibc >=2.17
license: Apache-2.0
license_family: APACHE
- size: 400284
- timestamp: 1725632278147
+ size: 409549
+ timestamp: 1736278357702
- kind: conda
name: safetensors
- version: 0.4.5
- build: py312he431725_0
+ version: 0.5.1
+ build: py312hcd83bfe_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py312he431725_0.conda
- sha256: 93a085d0d64237db7f4ff395c446f268c575dc2c324d8e3e5c5d7d836896295e
- md5: ccb978cf1e3151c25a44c4ae65c1f20e
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.5.1-py312hcd83bfe_0.conda
+ sha256: e61cbac0c1b38731543a600e2e40c4cc686e5e565f6c9809d5dcc467e2e8f220
+ md5: d12e134445366752e52acec1a86c845f
depends:
- __osx >=11.0
- python >=3.12,<3.13.0a0
@@ -10254,8 +10280,8 @@ packages:
- __osx >=11.0
license: Apache-2.0
license_family: APACHE
- size: 353606
- timestamp: 1725632294079
+ size: 378562
+ timestamp: 1736278448037
- kind: conda
name: sdl2
version: 2.30.10
@@ -10443,58 +10469,55 @@ packages:
timestamp: 1695761744535
- kind: conda
name: sdl2_ttf
- version: 2.22.0
- build: h287479f_3
- build_number: 3
+ version: 2.24.0
+ build: h287479f_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/sdl2_ttf-2.22.0-h287479f_3.conda
- sha256: 382554ee6135183548ae98adf984b3de31615d429751b497a509724c017d1f1f
- md5: 2ab241725f0baa88ca26d53bb6eff58a
+ url: https://conda.anaconda.org/conda-forge/linux-64/sdl2_ttf-2.24.0-h287479f_0.conda
+ sha256: 431d19b666db6e7a4f09c37c43c83f115176a006b2ac321853ca26bee888c519
+ md5: bccd5b74eb55a523dfcc66b857555714
depends:
- __glibc >=2.17,<3.0.a0
- freetype >=2.12.1,<3.0a0
- harfbuzz >=10.1.0,<11.0a0
- libgcc >=13
- libzlib >=1.3.1,<2.0a0
- - sdl2 >=2.30.7,<3.0a0
+ - sdl2 >=2.30.10,<3.0a0
license: Zlib
- size: 62581
- timestamp: 1733782803716
+ size: 61954
+ timestamp: 1736117956977
- kind: conda
name: sdl2_ttf
- version: 2.22.0
- build: h443c5de_3
- build_number: 3
+ version: 2.24.0
+ build: h443c5de_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2_ttf-2.22.0-h443c5de_3.conda
- sha256: 5325195729d91c0f4f6075cb70a2d4f67db7e42b3e3cf875c9fd4f7e21fdabc4
- md5: add02757e1fa038364df05ba0aaf3ca5
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/sdl2_ttf-2.24.0-h443c5de_0.conda
+ sha256: 5dc56fd1de51dec2f7b63b1a9069ab35ab0494d9cd5af164ab0019cbd9564cf6
+ md5: 3cf5cf83deccb663b4e932d3d4b28f57
depends:
- __osx >=11.0
- freetype >=2.12.1,<3.0a0
- harfbuzz >=10.1.0,<11.0a0
- sdl2 >=2.30.10,<3.0a0
license: Zlib
- size: 46057
- timestamp: 1733782993569
+ size: 45429
+ timestamp: 1736118165229
- kind: conda
name: sdl2_ttf
- version: 2.22.0
- build: hb1608df_3
- build_number: 3
+ version: 2.24.0
+ build: hb1608df_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/sdl2_ttf-2.22.0-hb1608df_3.conda
- sha256: 7bf20660944556420a499c95c46e9bc57f0ed1445218d3899f85478fa8ec367c
- md5: 7ac7f17a1b2bd1ccf6161644ee03ade8
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/sdl2_ttf-2.24.0-hb1608df_0.conda
+ sha256: f9ee162a8efbd9cb0131500c57807e470b95f454aedb921dbf5960176b505ee4
+ md5: 63b580a2a1005d91ffcb06a7e58d75f8
depends:
- freetype >=2.12.1,<3.0a0
- harfbuzz >=10.1.0,<11.0a0
- libgcc >=13
- libzlib >=1.3.1,<2.0a0
- - sdl2 >=2.30.7,<3.0a0
+ - sdl2 >=2.30.10,<3.0a0
license: Zlib
- size: 56134
- timestamp: 1733783877446
+ size: 55411
+ timestamp: 1736119336293
- kind: conda
name: shellingham
version: 1.5.4
@@ -10593,22 +10616,21 @@ packages:
timestamp: 1733244175724
- kind: conda
name: sse-starlette
- version: 2.1.3
+ version: 2.2.1
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
- sha256: 6d671a66333410ec7e5e7858a252565a9001366726d1fe3c3a506d7156169085
- md5: 3918255c942c242ed5599e10329e8d0e
+ url: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
+ sha256: 3c6a476e7afb702d841e23c61a0c4cc491929d2e39376d329e67e94c40a236cc
+ md5: c1ef6bc13dd2caa4b406fb3cb06c2791
depends:
- - anyio
- - python >=3.8
- - starlette
- - uvicorn
+ - anyio >=4.7.0
+ - python >=3.9
+ - starlette >=0.41.3
license: BSD-3-Clause
license_family: BSD
- size: 14712
- timestamp: 1722520112550
+ size: 15324
+ timestamp: 1735126414893
- kind: conda
name: starlette
version: 0.41.3
@@ -10837,18 +10859,19 @@ packages:
- kind: conda
name: tqdm
version: 4.67.1
- build: pyhd8ed1ab_0
+ build: pyhd8ed1ab_1
+ build_number: 1
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
- sha256: 5673b7104350a6998cb86cccf1d0058217d86950e8d6c927d8530606028edb1d
- md5: 4085c9db273a148e149c03627350e22c
+ url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
+ sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40
+ md5: 9efbfdc37242619130ea42b1cc4ed861
depends:
- colorama
- - python >=3.7
+ - python >=3.9
license: MPL-2.0 or MIT
- size: 89484
- timestamp: 1732497312317
+ size: 89498
+ timestamp: 1735661472632
- kind: conda
name: traitlets
version: 5.14.3
@@ -10867,14 +10890,13 @@ packages:
timestamp: 1733367480074
- kind: conda
name: transformers
- version: 4.47.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 4.47.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda
- sha256: d31821081219a0ede5c1f356b65a61ce98ac11e2df78b0eaa684c17c73389fbf
- md5: 6d2ec1ddee8057d2d724a0ab0bb578a0
+ url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.conda
+ sha256: df8238c3cccbb6bb1d5657e6a75977ac0b832ab61155d5e3d8560c1c4f52abeb
+ md5: 931d66db156680c42c62812d6533cbf7
depends:
- datasets !=2.5.0
- filelock
@@ -10890,8 +10912,8 @@ packages:
- tqdm >=4.27
license: Apache-2.0
license_family: APACHE
- size: 3726957
- timestamp: 1733948063517
+ size: 3680276
+ timestamp: 1734499046193
- kind: conda
name: typer
version: 0.15.1
@@ -10992,14 +11014,13 @@ packages:
timestamp: 1728047496079
- kind: conda
name: urllib3
- version: 2.2.3
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2.3.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
- sha256: 416e30a1c3262275f01a3e22e783118d9e9d2872a739a9ed860d06fa9c7593d5
- md5: 4a2d8ef7c37b8808c5b9b750501fffce
+ url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
+ sha256: 114919ffa80c328127dab9c8e7a38f9d563c617691fb81fccb11c1e86763727e
+ md5: 32674f8dbfb7b26410ed580dd3c10a29
depends:
- brotli-python >=1.0.9
- h2 >=4,<5
@@ -11008,8 +11029,8 @@ packages:
- zstandard >=0.18.0
license: MIT
license_family: MIT
- size: 98077
- timestamp: 1733206968917
+ size: 100102
+ timestamp: 1734859520452
- kind: conda
name: uvicorn
version: 0.34.0
diff --git a/examples/magic.lock b/examples/magic.lock
index bbc36e1ea4..f98b64cfd2 100644
--- a/examples/magic.lock
+++ b/examples/magic.lock
@@ -9,10 +9,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.10-py311h2dc5d0c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.11-py311h2dc5d0c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.3.0-pyh71513ae_0.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
@@ -39,8 +39,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.12.14-hbcca054_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py311hf29c0ef_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/noarch/deprecated-1.2.15-pyhd8ed1ab_1.conda
@@ -54,7 +54,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py311h9ecbd09_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -64,11 +64,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/httptools-0.6.4-py311h9ecbd09_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
@@ -76,11 +76,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-h44a453e_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h3ee7192_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-hd595efa_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h08228c5_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-26_linux64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda
@@ -89,7 +89,7 @@ environments:
- 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.11.1-h332b0f4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_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/libedit-3.1.20240808-pl5321h7949ede_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
@@ -99,9 +99,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.32.0-h804f50b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.32.0-h0121fbd_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.33.0-h2b5623c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.33.0-h0121fbd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-h25350d4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-26_linux64_openblas.conda
@@ -109,10 +109,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.45-h943b412_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.2-hee588c1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda
@@ -123,7 +123,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.9.0-hb9d3cd8_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.49.2-hb9d3cd8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.5-h0d44e9d_1.conda
@@ -131,19 +131,19 @@ 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121705-3.11release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2025010817-3.11release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py311h64a7726_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -151,23 +151,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h97ab989_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h12ee42a_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py311h7db5c69_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py311h49e9ac3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.1.0-py311h1322bbf_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.1-py311h9ecbd09_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py311hfdbb021_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.3-py311hfdbb021_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.1.0-py311h38be061_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.1.0-py311h4854187_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.2-py311h9e33e62_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.11-h9e4cc4f_1_cpython.conda
@@ -181,33 +181,33 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py311h9ecbd09_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py311h7deb3e3_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h9925aae_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/regex-2024.11.6-py311h9ecbd09_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.10-hb5b8611_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py311h9e33e62_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.5.1-py311h9e33e62_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tokenizers-0.21.0-py311h182c674_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.21.0-py311h9ecbd09_1.conda
@@ -226,10 +226,10 @@ environments:
linux-aarch64:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.10-py311h58d527c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.11-py311h58d527c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.3.0-pyh71513ae_0.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
@@ -256,8 +256,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2024.12.14-hcefe29a_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.17.1-py311h14e8bb7_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/noarch/deprecated-1.2.15-pyhd8ed1ab_1.conda
@@ -271,7 +271,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hf0a5ef3_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.5.0-py311ha879c10_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -281,12 +281,12 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/httptools-0.6.4-py311ha879c10_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2
@@ -294,11 +294,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.16-h922389a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-h1b535d6_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h3ffb4b1_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-hb7781cd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h1e9d426_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-26_linuxaarch64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda
@@ -307,7 +307,7 @@ environments:
- 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.11.1-h6702fde_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.23-h5e3c512_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/libedit-3.1.20240808-pl5321h976ea20_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.6.4-h5ad3122_0.conda
@@ -317,9 +317,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.32.0-h3888205_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.32.0-hb9b2b65_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.33.0-hccf9d24_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.33.0-hb9b2b65_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-hf7ccdd3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-26_linuxaarch64_openblas.conda
@@ -327,10 +327,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.28-pthreads_h9d3fd7e_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.45-hec79eb8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.47.2-h5eb1b54_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.1-ha41c0db_0.conda
@@ -341,7 +341,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.9.0-h86ecc28_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.49.2-h86ecc28_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.13.5-h2e0c361_1.conda
@@ -349,19 +349,19 @@ 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121705-3.11release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2025010817-3.11release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py311h69ead2a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.3-h3f56577_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-hd08dc88_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -369,23 +369,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h3c55218_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-hdd485aa_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.3-py311h848c333_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py311hb2a0dd2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.1.0-py311ha4eaa5e_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/propcache-0.2.1-py311ha879c10_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py311h89d996e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.3-py311h89d996e_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.1.0-py311hfecb2dc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.1.0-py311ha6d2531_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.2-py311h0ca61a2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.11.11-h1683364_1_cpython.conda
@@ -399,33 +399,33 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.2-py311ha879c10_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-26.2.0-py311h826da9f_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-haa97905_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/regex-2024.11.6-py311ha879c10_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.10-h5df210e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py311h0ca61a2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.5.1-py311h0ca61a2_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-hd4fb6f5_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tokenizers-0.21.0-py311h5e37e04_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/uvloop-0.21.0-py311ha879c10_1.conda
@@ -443,10 +443,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda
osx-arm64:
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.10-py311h4921393_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.11-py311h4921393_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.3.0-pyh71513ae_0.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
@@ -473,8 +473,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.12.14-hf0a4a13_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.17.1-py311h3a79f62_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/noarch/deprecated-1.2.15-pyhd8ed1ab_1.conda
@@ -488,7 +488,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py311hae2e1ce_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -498,22 +498,22 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/httptools-0.6.4-py311h917b07b_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.16-ha0e7c42_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h4a2f8bd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h86344ea_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h0ad35bc_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h4239455_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-26_osxarm64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda
@@ -521,28 +521,28 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-26_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.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/libcxx-19.1.6-ha82da77_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.23-hec38601_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20240808-pl5321hafb1f1b_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.32.0-h8d8be31_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.32.0-h7081f7f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.33.0-hdbe95d5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.33.0-h7081f7f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-h0a426d6_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-26_osxarm64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.6.3-h39f12f2_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.28-openmp_hf332438_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.45-h3783ad8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h07bc746_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.47.2-h3f77e49_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda
@@ -550,27 +550,27 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.0-h551f018_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.9.0-h5505292_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.49.2-h7ab814d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-h178c5d8_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.5-hdb05f8b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.6-hdb05f8b_0.conda
- 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121705-3.11release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2025010817-3.11release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py311h7125741_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.3-h8a3d83b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -578,23 +578,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-hbcee414_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h0ff2369_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py311h9cb3ce9_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py311h3894ae9_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.1.0-py311hb9ba9e9_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.1-py311h917b07b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py311h6885ffc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.3-py311h155a34a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.1.0-py311ha1ab1f8_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.1.0-py311he04fa90_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.2-py311h3ff9189_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.11-hc22306f_1_cpython.conda
@@ -608,32 +608,32 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py311h460d6c5_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.2.0-py311h730b646_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-h6589ca4_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/regex-2024.11.6-py311h917b07b_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py311h481aa64_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.5.1-py311h3ff9189_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-h98b9ce2_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tokenizers-0.21.0-py311h82b0fb8_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.21.0-py311hae2e1ce_1.conda
@@ -714,12 +714,12 @@ packages:
timestamp: 1733332029649
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py311h2dc5d0c_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.10-py311h2dc5d0c_0.conda
- sha256: 387a234321dd956e6b18aa338aae28a42fa804cb121292b5ab767410a92a5dca
- md5: 7ddc4f7d7120a103af3e06cf7f7e7fb1
+ url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.11-py311h2dc5d0c_0.conda
+ sha256: 36f9d3a88ece3048582551435f85f494911c805b188650b2589ffded2b52d74f
+ md5: 098c05da2799d9300eec94c24a7c8bda
depends:
- __glibc >=2.17,<3.0.a0
- aiohappyeyeballs >=2.3.0
@@ -734,16 +734,16 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 921209
- timestamp: 1733839979846
+ size: 922661
+ timestamp: 1734597050134
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py311h4921393_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.10-py311h4921393_0.conda
- sha256: 27867a0d1f300689560328cda025eff7d41d0d8496a9a01631aaa930c6646d3d
- md5: 6fa633c40fb67bf8f957e442a6acaaab
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.11-py311h4921393_0.conda
+ sha256: ab72cf46f71f1a611c0ad9a8abf144b8cfd6d5d49363513d9a9d9c14d97ead97
+ md5: a478957d38ef52e856c11429fd505ec6
depends:
- __osx >=11.0
- aiohappyeyeballs >=2.3.0
@@ -758,16 +758,16 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 880378
- timestamp: 1733839047160
+ size: 881820
+ timestamp: 1734597274648
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py311h58d527c_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.10-py311h58d527c_0.conda
- sha256: ec2384157e169b6ad1e470a4855ed987bf2f19dac69a9156785f19bbb114d33b
- md5: 899276b5c5a33aa77fdb738be26f83ed
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.11-py311h58d527c_0.conda
+ sha256: c2e4d66d513172964276b234f4ce083ced8bbcad66dd587af43712c3c64f0aa8
+ md5: 768cae9a9d28a575e7242f189b5fefb7
depends:
- aiohappyeyeballs >=2.3.0
- aiosignal >=1.1.2
@@ -782,8 +782,8 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 915134
- timestamp: 1733838911893
+ size: 915731
+ timestamp: 1734597110765
- kind: conda
name: aiosignal
version: 1.3.2
@@ -819,13 +819,13 @@ packages:
timestamp: 1733247158254
- kind: conda
name: anyio
- version: 4.7.0
+ version: 4.8.0
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda
- sha256: 687537ee3af30f8784986bf40cac30e88138770b16e51ca9850c9c23c09aeba1
- md5: c88107912954a983c2caf25f7fd55158
+ url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.8.0-pyhd8ed1ab_0.conda
+ sha256: f1455d2953e3eb6d71bc49881c8558d8e01888469dfd21061dd48afb6183e836
+ md5: 848d25bfbadf020ee4d4ba90e5668252
depends:
- exceptiongroup >=1.0.2
- idna >=2.8
@@ -837,8 +837,8 @@ packages:
- uvloop >=0.21
license: MIT
license_family: MIT
- size: 112730
- timestamp: 1733532678437
+ size: 115305
+ timestamp: 1736174485476
- kind: conda
name: attrs
version: 24.3.0
@@ -2139,37 +2139,35 @@ packages:
timestamp: 1725560701719
- kind: conda
name: charset-normalizer
- version: 3.4.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 3.4.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- sha256: 63022ee2c6a157a9f980250a66f54bdcdf5abee817348d0f9a74c2441a6fbf0e
- md5: 6581a17bba6b948bb60130026404a9d6
+ url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b
+ md5: e83a31202d1c0a000fce3e9cf3825875
depends:
- python >=3.9
license: MIT
license_family: MIT
- size: 47533
- timestamp: 1733218182393
+ size: 47438
+ timestamp: 1735929811779
- kind: conda
name: click
- version: 8.1.7
- build: unix_pyh707e725_1
- build_number: 1
+ version: 8.1.8
+ build: pyh707e725_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
- sha256: 1cd5fc6ccdd5141378e51252a7a3810b07fd5a7e6934a5b4a7eccba66566224b
- md5: cb8e52f28f5e592598190c562e7b5bf1
+ url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
+ sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab
+ md5: f22f4d4970e09d68a10b922cbb0408d3
depends:
- __unix
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 84513
- timestamp: 1733221925078
+ size: 84705
+ timestamp: 1734858922844
- kind: conda
name: colorama
version: 0.4.6
@@ -2477,20 +2475,19 @@ packages:
timestamp: 1729699703032
- kind: conda
name: fsspec
- version: 2024.10.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2024.12.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
- sha256: 790a50b4f94042951518f911a914a886a837c926094c6a14ed1d9d03ce336807
- md5: 906fe13095e734cb413b57a49116cdc8
+ url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
+ sha256: 3320970c4604989eadf908397a9475f9e6a96a773c185915111399cbfbe47817
+ md5: e041ad4c43ab5e10c74587f95378ebc7
depends:
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 134726
- timestamp: 1733493445080
+ size: 137756
+ timestamp: 1734650349242
- kind: conda
name: gflags
version: 2.2.2
@@ -2748,14 +2745,13 @@ packages:
timestamp: 1733663449209
- kind: conda
name: huggingface_hub
- version: 0.26.5
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 0.27.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
- sha256: 0c75532d914a04c73222be298ed2c6868739dd475b1b1a9137c52abe79873952
- md5: 73937038e21117fe401f8ea64fbaeacc
+ url: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
+ sha256: 4597d7aa720f4acdddacc27b3f9e8d4336cb79477c53aee2d7ab96d136169cdb
+ md5: 8c9a53ecd0c3c278efbdac567dd12ed0
depends:
- filelock
- fsspec >=2023.5.0
@@ -2768,8 +2764,8 @@ packages:
- typing_extensions >=3.7.4.3
license: Apache-2.0
license_family: APACHE
- size: 275466
- timestamp: 1733852454004
+ size: 278363
+ timestamp: 1736350219225
- kind: conda
name: hyperframe
version: 6.0.1
@@ -2850,21 +2846,20 @@ packages:
timestamp: 1733223207185
- kind: conda
name: jinja2
- version: 3.1.4
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 3.1.5
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
- sha256: 85a7169c078b8065bd9d121b0e7b99c8b88c42a411314b6ae5fcd81c48c4710a
- md5: 08cce3151bde4ecad7885bd9fb647532
+ url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
+ sha256: 98977694b9ecaa3218662f843425f39501f81973c450f995eec68f1803ed71c3
+ md5: 2752a6ed44105bfb18c9bef1177d9dcd
depends:
- markupsafe >=2.0
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 110963
- timestamp: 1733217424408
+ size: 112561
+ timestamp: 1734824044952
- kind: conda
name: jupyter_client
version: 8.6.3
@@ -3114,32 +3109,31 @@ packages:
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_h5888daf_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
- sha256: 8f91429091183c26950f1e7ffa730e8632f0627ba35d2fccd71df31628c9b4e5
- md5: e1f604644fe8d78e22660e2fec6756bc
+ build: cxx17_h07bc746_4
+ build_number: 4
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda
+ sha256: 05fa5e5e908962b9c5aba95f962e2ca81d9599c4715aebe5e4ddb72b309d1770
+ md5: c2d95bd7aa8d564a9bd7eca5e571a5b3
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- - libstdcxx >=13
+ - __osx >=11.0
+ - libcxx >=18
constrains:
- libabseil-static =20240722.0=cxx17*
- abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1310521
- timestamp: 1727295454064
+ size: 1178260
+ timestamp: 1736008642885
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_h5ad3122_1
- build_number: 1
+ build: cxx17_h18dbdb1_4
+ build_number: 4
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
- sha256: 590e47dce38031a8893e70491f3b71e214de7781cab53b6f017aa6f6841cb076
- md5: 6fe6b3694c4792a8e26755d3b06f0b80
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda
+ sha256: bb6c5fb3b8de5f90735c5252b57efb3c268ee222c755569dac18065f05147670
+ md5: 633b9fe454ffea2aaf29e191d946a83b
depends:
- libgcc >=13
- libstdcxx >=13
@@ -3148,37 +3142,39 @@ packages:
- libabseil-static =20240722.0=cxx17*
license: Apache-2.0
license_family: Apache
- size: 1328502
- timestamp: 1727295490806
+ size: 1334844
+ timestamp: 1736008472455
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_hf9b8971_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
- sha256: 90bf08a75506dfcf28a70977da8ab050bcf594cd02abd3a9d84a22c9e8161724
- md5: 706da5e791c569a7b9814877098a6a0a
+ build: cxx17_hbbce691_4
+ build_number: 4
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ sha256: 143a586aa67d50622ef703de57b9d43f44945836d6568e0e7aa174bd8c45e0d4
+ md5: 488f260ccda0afaf08acb286db439c2f
depends:
- - __osx >=11.0
- - libcxx >=17
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
constrains:
- libabseil-static =20240722.0=cxx17*
- abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1179072
- timestamp: 1727295571173
+ size: 1311599
+ timestamp: 1736008414161
- kind: conda
name: libarrow
version: 18.1.0
- build: h1b535d6_6_cpu
- build_number: 6
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-h1b535d6_6_cpu.conda
- sha256: 087b579aebf351ca41c54214121d86a15a41c92051cbd432d6f3a3f58a8c31b0
- md5: 4c0ad68efba1113ac5833975c67b565d
+ build: h0ad35bc_7_cpu
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h0ad35bc_7_cpu.conda
+ sha256: 4fbdd8bb89d912bf03f10f9373a8d96a1cdd7a7851e107393418a3d2715bc27e
+ md5: 4ba2173203f44bbf03d19aaba6ed07d3
depends:
+ - __osx >=11.0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -3186,17 +3182,15 @@ packages:
- azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
- azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
- - gflags >=2.2.2,<2.3.0a0
- glog >=0.7.1,<0.8.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libgcc >=13
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libcxx >=18
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
- - libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -3205,24 +3199,23 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - parquet-cpp <0.0a0
- arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
- apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 8040629
- timestamp: 1733810319239
+ size: 5506699
+ timestamp: 1735682962976
- kind: conda
name: libarrow
version: 18.1.0
- build: h44a453e_6_cpu
- build_number: 6
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-h44a453e_6_cpu.conda
- sha256: abf17e99b03356a9d6248e965826c1352ff01b00d3a62cc51393bb0744d72803
- md5: 2cf6d608d6e66506f69797d5c6944c35
+ build: hb7781cd_7_cpu
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-hb7781cd_7_cpu.conda
+ sha256: f6107506bd16788560b47a4d18c1457b4df30a49334364d32613fe3f53ba6cbb
+ md5: 98cf7127ca7b3854c5d1c8bef1ed6e53
depends:
- - __glibc >=2.17,<3.0.a0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -3237,8 +3230,8 @@ packages:
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- libgcc >=13
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
- libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
@@ -3249,24 +3242,24 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - parquet-cpp <0.0a0
- arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
- apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 8786061
- timestamp: 1733810643966
+ size: 8026714
+ timestamp: 1735685336542
- kind: conda
name: libarrow
version: 18.1.0
- build: h4a2f8bd_6_cpu
- build_number: 6
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h4a2f8bd_6_cpu.conda
- sha256: 9ed3ea1bc15005c0df187268ef91407afaa908cf82f36f5acbbf50ac24d7f806
- md5: 835cdd84195b84dc34d128bd5d3580b9
+ build: hd595efa_7_cpu
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-hd595efa_7_cpu.conda
+ sha256: 554ffa338264c1dc34d95adb7eb856d50a2f25e7fa303a1a51e4372301b7c96f
+ md5: 08d4aff5ee6dee9a1b9ab13fca927697
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -3274,15 +3267,17 @@ packages:
- azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
- azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
+ - gflags >=2.2.2,<2.3.0a0
- glog >=0.7.1,<0.8.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libcxx >=18
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libgcc >=13
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
+ - libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -3291,190 +3286,190 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - apache-arrow-proc =*=cpu
- arrow-cpp <0.0a0
- parquet-cpp <0.0a0
+ - apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 5494797
- timestamp: 1733808145854
+ size: 8770256
+ timestamp: 1735684696564
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: h3b568fd_6_cpu
- build_number: 6
+ build: h3b568fd_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_6_cpu.conda
- sha256: fdb70e2499e59b730084ecd53008b361a6f6090b5fb49624feda06b7e84c7b8c
- md5: c50907eefe2ae22d826e7cb2e4d712f5
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_7_cpu.conda
+ sha256: 42cbfc87096f745d565d814d65b7228c82d985f1898859d5e456016d73e81c82
+ md5: 4c1d8c3feea249782148d3cd6a25392e
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
- libgcc >=13
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 578091
- timestamp: 1733810378092
+ size: 578222
+ timestamp: 1735685424850
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: hcb10f89_6_cpu
- build_number: 6
+ build: hcb10f89_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_6_cpu.conda
- sha256: a32fa1d71415afc02b5cf3cd4c0a6ec0af9e749308829cc65ff79689222ce479
- md5: 143f9288b64759a6427563f058c62f2b
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_7_cpu.conda
+ sha256: 87ea5d6a84d922d73975dce8661fccf257e72e755175b12c30e1181a34e37987
+ md5: 12d84228204c56fec6ed113288014d11
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
- libgcc >=13
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 611745
- timestamp: 1733810698469
+ size: 612463
+ timestamp: 1735684749868
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: hf07054f_6_cpu
- build_number: 6
+ build: hf07054f_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_6_cpu.conda
- sha256: e1cae46409927470439ef9ae93ed09b3493d0579501ca9ebfa79ded212ee98d8
- md5: 97fc01254714e1572624baefdd7cc898
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_7_cpu.conda
+ sha256: 86e20cebfdb4f335e98265c1b88f5053bf3e3648768a317856295846bfdbf2b4
+ md5: 3eaf71fe987de13061db795e03bb1a1c
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
- libcxx >=18
license: Apache-2.0
license_family: APACHE
- size: 483713
- timestamp: 1733808246880
+ size: 485185
+ timestamp: 1735683071232
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: h3b568fd_6_cpu
- build_number: 6
+ build: h3b568fd_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_6_cpu.conda
- sha256: 2a08f5a1017ff660c37ae0c24343a119cb2511c6edd69e23d0a5090a0967ea35
- md5: bb1548ad011c4f9107fcc4cc548473bf
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_7_cpu.conda
+ sha256: 13ba7d3d08015aa26569eca9e198e2f8b2a0cd2d9c420e41c78cc2e5d5170f26
+ md5: f39f5d725c2ca94c2e7b19e2717fd4ab
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
- - libarrow-acero 18.1.0 h3b568fd_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
+ - libarrow-acero 18.1.0 h3b568fd_7_cpu
- libgcc >=13
- - libparquet 18.1.0 hfc78867_6_cpu
+ - libparquet 18.1.0 hfc78867_7_cpu
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 559673
- timestamp: 1733810461646
+ size: 560329
+ timestamp: 1735685518922
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: hcb10f89_6_cpu
- build_number: 6
+ build: hcb10f89_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_6_cpu.conda
- sha256: 74eeb178070002842d3ed721769399320e3a68a0843319eaf899a092a31def26
- md5: 20ca46a6bc714a6ab189d5b3f46e66d8
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_7_cpu.conda
+ sha256: 99c12511fba79c7947f78d676eae5857659084f687f375f68bc20bd4cddb0a0e
+ md5: 0a81eb63d7cd150f598c752e86388d57
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
- - libarrow-acero 18.1.0 hcb10f89_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
+ - libarrow-acero 18.1.0 hcb10f89_7_cpu
- libgcc >=13
- - libparquet 18.1.0 h081d1f1_6_cpu
+ - libparquet 18.1.0 h081d1f1_7_cpu
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 586627
- timestamp: 1733810842604
+ size: 587497
+ timestamp: 1735684880531
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: hf07054f_6_cpu
- build_number: 6
+ build: hf07054f_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_6_cpu.conda
- sha256: 6eba942ce926419f74e6e0a7c3994a7d78ab6be47115e6bb70e02136554736be
- md5: 0774276be6659aaa0007f1b0f6ee19b0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_7_cpu.conda
+ sha256: 52c5c4e9cd5f2ac91dcebb6a920ab2536febcea116ff8767e5439329d7da820b
+ md5: 97a2d3606682d94f7d73112e9ad684ae
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
- - libarrow-acero 18.1.0 hf07054f_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
+ - libarrow-acero 18.1.0 hf07054f_7_cpu
- libcxx >=18
- - libparquet 18.1.0 h636d7b7_6_cpu
+ - libparquet 18.1.0 h636d7b7_7_cpu
license: Apache-2.0
license_family: APACHE
- size: 489948
- timestamp: 1733809328231
+ size: 491237
+ timestamp: 1735684688308
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h3ee7192_6_cpu
- build_number: 6
+ build: h08228c5_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h3ee7192_6_cpu.conda
- sha256: bda6728db019dd0c409b1996ad9ef6ab0bcee3a94dc66a8045e8c1049c566055
- md5: aa313b3168caf98d00b3753f5ba27650
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h08228c5_7_cpu.conda
+ sha256: 53ea53a06e137c2f81ebfdff3f978babb8b59e31f705a19b57056ec8754c1abf
+ md5: e128def53c133e8a23ac00cd4a479335
depends:
- __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h44a453e_6_cpu
- - libarrow-acero 18.1.0 hcb10f89_6_cpu
- - libarrow-dataset 18.1.0 hcb10f89_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
+ - libarrow-acero 18.1.0 hcb10f89_7_cpu
+ - libarrow-dataset 18.1.0 hcb10f89_7_cpu
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 519989
- timestamp: 1733810903274
+ size: 521861
+ timestamp: 1735684940668
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h3ffb4b1_6_cpu
- build_number: 6
+ build: h1e9d426_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h3ffb4b1_6_cpu.conda
- sha256: 9f78c55c5d7122e588a6f226cbf7e909c479d66ed18edc633d68324323d386b9
- md5: 5db2e6832397b8ca70a6f7b00e0c3629
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h1e9d426_7_cpu.conda
+ sha256: 252e2a0d8c733f36b50499786480a05a59577d617f291868149c80534c1e8ffc
+ md5: 6da921d9e1c4e2ab2679eeea7cbd4c82
depends:
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h1b535d6_6_cpu
- - libarrow-acero 18.1.0 h3b568fd_6_cpu
- - libarrow-dataset 18.1.0 h3b568fd_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
+ - libarrow-acero 18.1.0 h3b568fd_7_cpu
+ - libarrow-dataset 18.1.0 h3b568fd_7_cpu
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 515928
- timestamp: 1733810503359
+ size: 516014
+ timestamp: 1735685565929
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h86344ea_6_cpu
- build_number: 6
+ build: h4239455_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h86344ea_6_cpu.conda
- sha256: bafd9ca59ebb5ad34b77aff316ef7b59c5fb1eb8a7b6a15de8dcbdf3ce37556d
- md5: c1c162f5bf569cff8bed6def705a899f
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h4239455_7_cpu.conda
+ sha256: a45bbdd6932aed972d6c6ce30a7439aa8ec9d9b8ee5affb350d41e50abdc0127
+ md5: 91927747173f65695e441346c7145e26
depends:
- __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
- - libarrow-acero 18.1.0 hf07054f_6_cpu
- - libarrow-dataset 18.1.0 hf07054f_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
+ - libarrow-acero 18.1.0 hf07054f_7_cpu
+ - libarrow-dataset 18.1.0 hf07054f_7_cpu
- libcxx >=18
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
license: Apache-2.0
license_family: APACHE
- size: 451623
- timestamp: 1733809487176
+ size: 452385
+ timestamp: 1735684993831
- kind: conda
name: libblas
version: 3.9.0
@@ -3493,6 +3488,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16393
timestamp: 1734432564346
- kind: conda
@@ -3513,6 +3509,7 @@ packages:
- libcblas 3.9.0 26_linuxaarch64_openblas
- liblapack 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16477
timestamp: 1734432576699
- kind: conda
@@ -3533,6 +3530,7 @@ packages:
- libcblas 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16714
timestamp: 1734433054681
- kind: conda
@@ -3695,6 +3693,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16336
timestamp: 1734432570482
- kind: conda
@@ -3713,6 +3712,7 @@ packages:
- liblapacke 3.9.0 26_linuxaarch64_openblas
- liblapack 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16398
timestamp: 1734432580937
- kind: conda
@@ -3731,6 +3731,7 @@ packages:
- liblapacke 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16628
timestamp: 1734433061517
- kind: conda
@@ -3840,18 +3841,19 @@ packages:
timestamp: 1734000160270
- kind: conda
name: libcxx
- version: 19.1.5
- build: ha82da77_0
+ version: 19.1.6
+ build: ha82da77_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.5-ha82da77_0.conda
- sha256: 7918cc0bb7a6554cdd3eee634c3dc414a1ab8ec49faeca1567367bb92118f9d7
- md5: 3c7be0df28ccda1d193ea6de56dcb5ff
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.6-ha82da77_1.conda
+ sha256: 2b2443404503cd862385fd2f2a2c73f9624686fd1e5a45050b4034cfc06904ec
+ md5: ce5252d8db110cdb4ae4173d0a63c7c5
depends:
- __osx >=11.0
license: Apache-2.0 WITH LLVM-exception
license_family: Apache
- size: 519819
- timestamp: 1733291654212
+ size: 520992
+ timestamp: 1734494699681
- kind: conda
name: libdeflate
version: '1.23'
@@ -3864,6 +3866,7 @@ packages:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
license: MIT
+ license_family: MIT
size: 72255
timestamp: 1734373823254
- kind: conda
@@ -3877,6 +3880,7 @@ packages:
depends:
- libgcc >=13
license: MIT
+ license_family: MIT
size: 69862
timestamp: 1734373858306
- kind: conda
@@ -3890,55 +3894,58 @@ packages:
depends:
- __osx >=11.0
license: MIT
+ license_family: MIT
size: 54132
timestamp: 1734373971372
- kind: conda
name: libedit
- version: 3.1.20191231
- build: hc8eb9b7_2
- build_number: 2
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
- sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca
- md5: 30e4362988a2623e9eb34337b83e01f9
+ version: 3.1.20240808
+ build: pl5321h7949ede_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20240808-pl5321h7949ede_0.conda
+ sha256: 4d0d69ddf9cc7d724a1ccf3a9852e44c8aea9825692582bac2c4e8d21ec95ccd
+ md5: 8247f80f3dc464d9322e85007e307fe8
depends:
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 96607
- timestamp: 1597616630749
+ size: 134657
+ timestamp: 1736191912705
- kind: conda
name: libedit
- version: 3.1.20191231
- build: he28a2e2_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf
- md5: 4d331e44109e3f0e19b4cb8f9b82f3e1
+ version: 3.1.20240808
+ build: pl5321h976ea20_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20240808-pl5321h976ea20_0.conda
+ sha256: 031daea98cf278f858b7957ad5dc475f1b5673cd5e718850529401ced64cef2c
+ md5: 0be40129d3dd1a152fff29a85f0785d0
depends:
- - libgcc-ng >=7.5.0
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 123878
- timestamp: 1597616541093
+ size: 148120
+ timestamp: 1736192137151
- kind: conda
name: libedit
- version: 3.1.20191231
- build: he28a2e2_2
- build_number: 2
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- sha256: debc31fb2f07ba2b0363f90e455873670734082822926ba4a9556431ec0bf36d
- md5: 29371161d77933a54fccf1bb66b96529
+ version: 3.1.20240808
+ build: pl5321hafb1f1b_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20240808-pl5321hafb1f1b_0.conda
+ sha256: fb934d7a03279ec8eae4bf1913ac9058fcf6fed35290d8ffa6e04157f396a3b1
+ md5: af89aa84ffb5ee551ce0c137b951a3b5
depends:
- - libgcc-ng >=7.5.0
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - __osx >=11.0
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 134104
- timestamp: 1597617110769
+ size: 107634
+ timestamp: 1736192034117
- kind: conda
name: libev
version: '4.33'
@@ -4318,214 +4325,223 @@ packages:
timestamp: 1729089357313
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h3888205_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.32.0-h3888205_0.conda
- sha256: 36af2844ce8fafd477214d51117746144461132f76759a7d29963b4583b577be
- md5: a40b948bf4eabcc1ce708c40ffd7c06d
+ version: 2.33.0
+ build: h2b5623c_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.33.0-h2b5623c_1.conda
+ sha256: ae48ee93e2c226bf682f1e389c2fd51ae7bf77c2ce4b3aee069764f4be1c63f2
+ md5: 61829a8dd5f4e2327e707572065bae41
depends:
+ - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libgcc >=13
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 1248560
- timestamp: 1733512309504
+ size: 1254656
+ timestamp: 1735648569457
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h804f50b_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.32.0-h804f50b_0.conda
- sha256: 126856add750013390dff664a3c3cd0f6f0cbbc683b0025a7ce9d1618968bc70
- md5: 3d96df4d6b1c88455e05b94ce8a14a53
+ version: 2.33.0
+ build: hccf9d24_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.33.0-hccf9d24_1.conda
+ sha256: d3d4def86d880431928799ba90ca97e57c2f05677c03af8de2337502926c492c
+ md5: a2724014eb04f14bd71d35f45b062dd0
depends:
- - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libgcc >=13
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 1249557
- timestamp: 1733512191906
+ size: 1253019
+ timestamp: 1735649566849
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h8d8be31_0
+ version: 2.33.0
+ build: hdbe95d5_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.32.0-h8d8be31_0.conda
- sha256: 722e49dbdc4486105d9f5b79a7ba4f9064602fe20c4015e97684c898ab8d3386
- md5: d7ab9e0eb7d55eac4943913073de61d7
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.33.0-hdbe95d5_1.conda
+ sha256: ce95aca02451694a4154c7770b6addf4fb859abf17912de6ec947da8469a56ce
+ md5: 91de1fbab8610974c0094c266bc63435
depends:
- __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libcxx >=18
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 876210
- timestamp: 1733512539476
+ size: 877594
+ timestamp: 1735648230965
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: h0121fbd_0
+ version: 2.33.0
+ build: h0121fbd_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.32.0-h0121fbd_0.conda
- sha256: d1b53d17df38b52a4bc6d1fe6af0e611d6480ce10b0af570c84bd38c8aa83b91
- md5: 877a5ec0431a5af83bf0cd0522bfe661
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.33.0-h0121fbd_1.conda
+ sha256: 41022523320ca8633a6c615710823e596efadb50f06d724e1a0c81e27994f257
+ md5: b0cfb5044685a7a9fa43ae669124f0a0
depends:
- __glibc >=2.17,<3.0.a0
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libgcc >=13
- - libgoogle-cloud 2.32.0 h804f50b_0
+ - libgoogle-cloud 2.33.0 h2b5623c_1
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 782108
- timestamp: 1733512329104
+ size: 784357
+ timestamp: 1735648759177
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: h7081f7f_0
+ version: 2.33.0
+ build: h7081f7f_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.32.0-h7081f7f_0.conda
- sha256: 609df2cf376ba66460f40143f835fc567cae4458df80705587cd2efd59c09bf1
- md5: 28f5ab5cf95170dfacd05d2bb301e573
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.33.0-h7081f7f_1.conda
+ sha256: c0524a22064bc17f5c037da09ba54cc9e767741ef645178e499750c44bec2531
+ md5: af8e51382464d4cc2d0054977c40a732
depends:
- __osx >=11.0
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libcxx >=18
- - libgoogle-cloud 2.32.0 h8d8be31_0
+ - libgoogle-cloud 2.33.0 hdbe95d5_1
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 526895
- timestamp: 1733513644846
+ size: 526963
+ timestamp: 1735649222088
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: hb9b2b65_0
+ version: 2.33.0
+ build: hb9b2b65_1
+ build_number: 1
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.32.0-hb9b2b65_0.conda
- sha256: e120e7b6c9c9d25baa8ae903106babdd3c969523ae25278a615ed9de4bd0fc35
- md5: 925ab0ca33baca4fcfee585cecb94169
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.33.0-hb9b2b65_1.conda
+ sha256: 5eda1cbba68709b91b370b3792c9cfd7bec4ac4e2262f0887d12e1f000ae1191
+ md5: 45df2267ff4d8ce532e8d300ce0b0829
depends:
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libgcc >=13
- - libgoogle-cloud 2.32.0 h3888205_0
+ - libgoogle-cloud 2.33.0 hccf9d24_1
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 737964
- timestamp: 1733512457785
+ size: 737518
+ timestamp: 1735649773462
- kind: conda
name: libgrpc
version: 1.67.1
- build: h36c5df4_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda
- sha256: 1f6673d9d866048c9cf28fd56e6874ffc7e2c53c47d7071cb367d5fc2dde16a7
- md5: b946137e362e98a55a77fdf0b20a7739
+ build: h0a426d6_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-h0a426d6_1.conda
+ sha256: 630edf63981818ff590367cb95fddbed0f5a390464d0952c90ec81de899e84a6
+ md5: 8a3cba079d6ac985e7d73c76a678fbb4
depends:
- - c-ares >=1.32.3,<2.0a0
+ - __osx >=11.0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libcxx >=18
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
- - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 7131846
- timestamp: 1730236305327
+ size: 5311706
+ timestamp: 1735585137716
- kind: conda
name: libgrpc
version: 1.67.1
- build: hc2c308b_0
+ build: h25350d4_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
- sha256: 870550c1faf524e9a695262cd4c31441b18ad542f16893bd3c5dbc93106705f7
- md5: 4606a4647bfe857e3cfe21ca12ac3afb
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-h25350d4_1.conda
+ sha256: 014627485b3cf0ea18e04c0bab07be7fb98722a3aeeb58477acc7e1c3d2f911e
+ md5: 0c6497a760b99a926c7c12b74951a39c
depends:
- __glibc >=2.17,<3.0.a0
- - c-ares >=1.32.3,<2.0a0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 7362336
- timestamp: 1730236333879
+ size: 7792251
+ timestamp: 1735584856826
- kind: conda
name: libgrpc
version: 1.67.1
- build: hc70892a_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda
- sha256: d2393fcd3c3584e5d58da4122f48bcf297567d2f6f14b3d1fcbd34fdd5040694
- md5: 624e27571fde34f8acc2afec840ac435
+ build: hf7ccdd3_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-hf7ccdd3_1.conda
+ sha256: 3fa173dc1d7456aac2b26937daae86a08432a31640e3d6569c62edc661fc9bbe
+ md5: 8fb41a425bebaeb3d0fa568503612e64
depends:
- - __osx >=11.0
- - c-ares >=1.34.2,<2.0a0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libgcc >=13
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 4882208
- timestamp: 1730236299095
+ size: 7430006
+ timestamp: 1735585769731
- kind: conda
name: libiconv
version: '1.17'
@@ -4628,6 +4644,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16338
timestamp: 1734432576650
- kind: conda
@@ -4646,6 +4663,7 @@ packages:
- liblapacke 3.9.0 26_linuxaarch64_openblas
- libcblas 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16403
timestamp: 1734432585123
- kind: conda
@@ -4664,6 +4682,7 @@ packages:
- libcblas 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16624
timestamp: 1734433068120
- kind: conda
@@ -4860,132 +4879,133 @@ packages:
- kind: conda
name: libparquet
version: 18.1.0
- build: h081d1f1_6_cpu
- build_number: 6
+ build: h081d1f1_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_6_cpu.conda
- sha256: c691a59f1ebb6cedbf827f49f6cf414e08b0eec911f589133e6a8321e8ac701c
- md5: 68788df49ce7480187eb6387f15b2b67
+ url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_7_cpu.conda
+ sha256: 55945b761130f60abdecf1551907ecfd05cb4a5958cf74d855b30c005ecb3592
+ md5: b97013ef4e1dd2cf11594f06d5b5e83a
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
- libgcc >=13
- libstdcxx >=13
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 1204535
- timestamp: 1733810811118
+ size: 1205598
+ timestamp: 1735684849150
- kind: conda
name: libparquet
version: 18.1.0
- build: h636d7b7_6_cpu
- build_number: 6
+ build: h636d7b7_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_6_cpu.conda
- sha256: 88c1e810bede65c54f1ebc51c14400f9e8cf0fc1f88a8c0a99210e2f5dfed582
- md5: 9b333c3a38e55f6c1b8733222e22f528
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_7_cpu.conda
+ sha256: bf42e43542a90edd86ba5aa5fd4543671625f1bc35f62be32688f00e18bae990
+ md5: 93de9ba66a20db32a2646d313794b3a8
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
- libcxx >=18
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 873134
- timestamp: 1733809271282
+ size: 873251
+ timestamp: 1735684582558
- kind: conda
name: libparquet
version: 18.1.0
- build: hfc78867_6_cpu
- build_number: 6
+ build: hfc78867_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_6_cpu.conda
- sha256: 38aab34c422519c530d0e9a3e0ffd1624db1c1e163983c46ae341e831b2eb6b5
- md5: 1ab6d4a9a982920b9dc5f2c700777b27
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_7_cpu.conda
+ sha256: 6dff9bbe731dc2cefe96bd9c7981d2cbef2b564a3152840a29c9b6a493ea50d9
+ md5: 184bec7a9392ab6ba8134041e81971d6
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
- libgcc >=13
- libstdcxx >=13
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 1117592
- timestamp: 1733810440129
+ size: 1117825
+ timestamp: 1735685495511
- kind: conda
name: libpng
- version: 1.6.44
- build: hadc24fc_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
- sha256: e5b14f7a01c2db4362d8591f42f82f336ed48d5e4079e4d1f65d0c2a3637ea78
- md5: f4cc49d7aa68316213e4b12be35308d1
+ version: 1.6.45
+ build: h3783ad8_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.45-h3783ad8_0.conda
+ sha256: ddcc81c049b32fb5eb3ac1f9a6d3a589c08325c8ec6f89eb912208b19330d68c
+ md5: d554c806d065b1763cb9e1cb1d25741d
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
+ - __osx >=11.0
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 290661
- timestamp: 1726234747153
+ size: 263151
+ timestamp: 1736339184358
- kind: conda
name: libpng
- version: 1.6.44
- build: hc14010f_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
- sha256: 38f8759a3eb8060deabd4db41f0f023514d853e46ddcbd0ba21768fc4e563bb1
- md5: fb36e93f0ea6a6f5d2b99984f34b049e
+ version: 1.6.45
+ build: h943b412_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.45-h943b412_0.conda
+ sha256: b8f5b5ba9a14dedf7c97c01300de492b1b52b68eacbc3249a13fdbfa82349a2f
+ md5: 85cbdaacad93808395ac295b5667d25b
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 263385
- timestamp: 1726234714421
+ size: 289426
+ timestamp: 1736339058310
- kind: conda
name: libpng
- version: 1.6.44
- build: hc4a20ef_0
+ version: 1.6.45
+ build: hec79eb8_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
- sha256: 23b5ce15cf9c6017641a8396bab00ae807dd9f662718cfa7f61de114d0c97647
- md5: 5d25802b25fcc7419fa13e21affaeb3a
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.45-hec79eb8_0.conda
+ sha256: a06daa523a0d5775acb96e6e3f083adc2ab1383eb8f664513dbc663f439c9cca
+ md5: 9a8716c16b40acc7148263de1d0a403b
depends:
- libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 294907
- timestamp: 1726236639270
+ size: 299051
+ timestamp: 1736344007986
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h029595c_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
- sha256: d8c7b6f851bfc53494d9b8e54d473c4f11ab26483a6e64df6f7967563df166b1
- md5: 538dbe0ad9f248e2e109abb9b6809ea5
+ version: 5.28.3
+ build: h3bd63a1_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda
+ sha256: f58a16b13ad53346903c833e266f83c3d770a43a432659b98710aed85ca885e7
+ md5: bdbfea4cf45ae36652c6bbcc2e7ebe91
depends:
+ - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libstdcxx >=13
+ - libcxx >=18
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2802876
- timestamp: 1728564881988
+ size: 2271580
+ timestamp: 1735576361997
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h5b01275_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
- sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421
- md5: ab0bff36363bec94720275a681af8b83
+ version: 5.28.3
+ build: h44a3b7b_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda
+ sha256: ecb69f2b1668e784b41ba667493be846662d5ef702bef64fb2e013bb1364cdc4
+ md5: 68f807f7cc13951652bbe048253fd405
depends:
- - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libgcc >=13
@@ -4993,75 +5013,77 @@ packages:
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2945348
- timestamp: 1728565355702
+ size: 2788074
+ timestamp: 1735576315676
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h8f0b736_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
- sha256: f732a6fa918428e2d5ba61e78fe11bb44a002cc8f6bb74c94ee5b1297fefcfd8
- md5: d2cb5991f2fb8eb079c80084435e9ce6
+ version: 5.28.3
+ build: h6128344_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda
+ sha256: 51125ebb8b7152e4a4e69fd2398489c4ec8473195c27cde3cbdf1cb6d18c5493
+ md5: d8703f1ffe5a06356f06467f1d0b9464
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
+ - libgcc >=13
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2374965
- timestamp: 1728565334796
+ size: 2960815
+ timestamp: 1735577210663
- kind: conda
name: libre2-11
version: 2024.07.02
- build: h18dbdb1_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda
- sha256: 96d4fdac28d5af38c38f90c22cb0aa9a90affae13ca8ba24bd1eb60b789df8ff
- md5: f1800796b0efc4bbc5b001d845545111
+ build: h07bc746_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h07bc746_2.conda
+ sha256: 112a73ad483353751d4c5d63648c69a4d6fcebf5e1b698a860a3f5124fc3db96
+ md5: 6b1e3624d3488016ca4f1ca0c412efaa
depends:
+ - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libstdcxx >=13
+ - libcxx >=18
constrains:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 203516
- timestamp: 1728778974654
+ size: 167155
+ timestamp: 1735541067807
- kind: conda
name: libre2-11
version: 2024.07.02
- build: h2348fd5_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda
- sha256: 6facca42cfc85a05b33e484a8b0df7857cc092db34806946d022270098d8d20f
- md5: 5a7065309a66097738be6a06fd04b7ef
+ build: h18dbdb1_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_2.conda
+ sha256: 862c20de0120f802e618dcb25913d00c5b82f91f4be60b2d46a774e851adc2f6
+ md5: 9a7dbbaab49f76a6f36e5c9d98e323a7
depends:
- - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
+ - libgcc >=13
+ - libstdcxx >=13
constrains:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 165956
- timestamp: 1728779107218
+ size: 204305
+ timestamp: 1735540986919
- kind: conda
name: libre2-11
version: 2024.07.02
- build: hbbce691_1
- build_number: 1
+ build: hbbce691_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
- sha256: f8ad6a4f6d4fd54ebe3e5e712a01e663222fc57f49d16b6b8b10c30990dafb8f
- md5: 2124de47357b7a516c0a3efd8f88c143
+ url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_2.conda
+ sha256: 4420f8362c71251892ba1eeb957c5e445e4e1596c0c651c28d0d8b415fe120c7
+ md5: b2fede24428726dd867611664fb372e8
depends:
- __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
@@ -5072,8 +5094,8 @@ packages:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 211096
- timestamp: 1728778964655
+ size: 209793
+ timestamp: 1735541054068
- kind: conda
name: libsodium
version: 1.0.20
@@ -5505,50 +5527,53 @@ packages:
timestamp: 1729322566955
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: h31becfc_0
+ version: 1.5.0
+ build: h0886dbf_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
- sha256: 10dded60f274e29c573cfacf6e96f5d0fc374ee431250374a44cbd773916ab9d
- md5: 5fd7ab3e5f382c70607fbac6335e6e19
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda
+ sha256: b3d881a0ae08bb07fff7fa8ead506c8d2e0388733182fe4f216f3ec5d61ffcf0
+ md5: 95ef4a689b8cc1b7e18b53784d88f96b
depends:
- - libgcc-ng >=12
+ - libgcc >=13
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 363577
- timestamp: 1713201785160
+ size: 362623
+ timestamp: 1734779054659
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: h93a5062_0
+ version: 1.5.0
+ build: h2471fea_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
- sha256: 0d4bad713a512d79bfeb4d61821f447afab8b0792aca823f505ce6b195e9fde5
- md5: c0af0edfebe780b19940e94871f1a765
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda
+ sha256: f8bdb876b4bc8cb5df47c28af29188de8911c3fea4b799a33743500149de3f4a
+ md5: 569466afeb84f90d5bb88c11cc23d746
+ depends:
+ - __osx >=11.0
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 287750
- timestamp: 1713200194013
+ size: 290013
+ timestamp: 1734777593617
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: hd590300_0
+ version: 1.5.0
+ build: h851e524_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
- sha256: 49bc5f6b1e11cb2babf2a2a731d1a680a5e08a858280876a779dbda06c78c35f
- md5: b26e8aa824079e1be0294e7152ca4559
+ url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
+ sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf
+ md5: 63f790534398730f59e1b899c3644d4a
depends:
- - libgcc-ng >=12
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 438953
- timestamp: 1713199854503
+ size: 429973
+ timestamp: 1734777489810
- kind: conda
name: libxcb
version: 1.17.0
@@ -5742,20 +5767,20 @@ packages:
timestamp: 1727963148474
- kind: conda
name: llvm-openmp
- version: 19.1.5
+ version: 19.1.6
build: hdb05f8b_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.5-hdb05f8b_0.conda
- sha256: e7ba0d8b718925efdcf1309f5e776e3264cc172d3af8d4048b39627c50a1abc0
- md5: f2c2e187a1d2637d282e34dc92021a70
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.6-hdb05f8b_0.conda
+ sha256: a0f3e9139ab16f0a67b9d2bbabc15b78977168f4a5b5503fed4962dcb9a96102
+ md5: 34fdeffa0555a1a56f38839415cc066c
depends:
- __osx >=11.0
constrains:
- - openmp 19.1.5|19.1.5.*
+ - openmp 19.1.6|19.1.6.*
license: Apache-2.0 WITH LLVM-exception
license_family: APACHE
- size: 281120
- timestamp: 1733376089600
+ size: 281251
+ timestamp: 1734520462311
- kind: conda
name: lz4-c
version: 1.10.0
@@ -5883,76 +5908,76 @@ packages:
timestamp: 1733220925299
- kind: conda
name: max
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121705-release.conda
- sha256: 83b2265b29c1ee69ae9d9f639ab04899d0ef15b5abc9114e034e2cd382dcad31
- md5: bd7165d97ebb0458ddb1ce616c146c24
- depends:
- - max-core ==25.1.0.dev2024121705 release
- - max-python >=25.1.0.dev2024121705,<26.0a0
- - mojo-jupyter ==25.1.0.dev2024121705 release
- - mblack ==25.1.0.dev2024121705 release
+ url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ sha256: 4ce81189e26dd06f188129580db0464f8ee9a081e195dad7082b2fa25fcf738e
+ md5: b46d770a5f45597ffc008bd224d8e91c
+ depends:
+ - max-core ==25.1.0.dev2025010817 release
+ - max-python >=25.1.0.dev2025010817,<26.0a0
+ - mojo-jupyter ==25.1.0.dev2025010817 release
+ - mblack ==25.1.0.dev2025010817 release
license: LicenseRef-Modular-Proprietary
- size: 9921
- timestamp: 1734412638047
+ size: 9922
+ timestamp: 1736357145809
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: linux-64
- url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121705-release.conda
- sha256: 15459b8446d3feb608baae398cf2753a3704e02e07cf2a6c02e166068d8a9304
- md5: 4ca65aff37bd7e944cce1697c1fe203e
+ url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 5459a1f6c379b01231649212ca7f5062c49208b5c0b2b17047b55011872727c2
+ md5: 5bbb293b5216b098c424e7602823a460
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: x86_64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 245744992
- timestamp: 1734412638045
+ size: 247646542
+ timestamp: 1736357145807
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: linux-aarch64
- url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121705-release.conda
- sha256: e89be4d7691a354a3f6e5d71e25b49447ca9fd1048fe03355c3bc509a726234d
- md5: acc4b1208feaba5ad08c1b370192e127
+ url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 18715c3fc8071d5eeb9f1893512fe65967919e9900738423958a5cb4f09148da
+ md5: 4a7b6e800f8fdabf0498727c1bff57d3
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: aarch64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 249373255
- timestamp: 1734412698620
+ size: 251608988
+ timestamp: 1736357045232
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: osx-arm64
- url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121705-release.conda
- sha256: edd613b122c086c4d6237c7195a55ce09bff9922ab70e0f1ff7a9662d3de41fe
- md5: d68326deab9bb460f253bf6df7e903f6
+ url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 5a23bdc48d6fe2cfe439097b7a0fc0f1bd2b23be081478638ef4b945267d8015
+ md5: 1f54b615e5199ac268f123c89cfbabda
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: arm64
platform: osx
license: LicenseRef-Modular-Proprietary
- size: 214152137
- timestamp: 1734412888834
+ size: 209267317
+ timestamp: 1736357278969
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.11release
subdir: linux-64
- url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121705-3.11release.conda
- sha256: b5610ed703f232815e735d9c97f50c90463558e7a2077fbf7263e8d92d8720a7
- md5: bd28c42c3fcb0456710f4c1b218086cd
+ url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2025010817-3.11release.conda
+ sha256: 484df097270c6e3e17e974a8d819bfcfb3f76c416b24435d3b56c6ad2aa680d3
+ md5: c0483878bb68b87901c6586283b218f0
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.11.*
- fastapi
- httpx
@@ -5975,18 +6000,18 @@ packages:
arch: x86_64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 122766289
- timestamp: 1734412638053
+ size: 124310656
+ timestamp: 1736357145815
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.11release
subdir: linux-aarch64
- url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121705-3.11release.conda
- sha256: 3a468f1f2a0deadb88d19cd64dd7d851cc1c532abb21771f3a22774cb09cd924
- md5: 018c6b78b66588ca7bb7ea6e3945cdf7
+ url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2025010817-3.11release.conda
+ sha256: 9129d7aaf336c2681222ea59ee93adf7a1b96265f98a5ccfef554376fd9e6f5b
+ md5: 8d027a2fc8187f587e4beb684d46cd31
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.11.*
- fastapi
- httpx
@@ -6009,18 +6034,18 @@ packages:
arch: aarch64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 126510391
- timestamp: 1734412698629
+ size: 128032940
+ timestamp: 1736357045240
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.11release
subdir: osx-arm64
- url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121705-3.11release.conda
- sha256: 2b5430672662e4db6910032aa5920c120d55172b0bf34a75bcbf4e032d1cf2de
- md5: 4be6188642aaf3e4f16ce42c82905992
+ url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2025010817-3.11release.conda
+ sha256: 9701c9fc8c163efcb36ad073936b3b848e03a97eb444efc7d73d5aa71ed8b928
+ md5: fdc5f29f20fe879a8752ac6da859dd5c
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.11.*
- fastapi
- httpx
@@ -6043,17 +6068,17 @@ packages:
arch: arm64
platform: osx
license: LicenseRef-Modular-Proprietary
- size: 113404099
- timestamp: 1734412888836
+ size: 110679362
+ timestamp: 1736357278971
- kind: conda
name: mblack
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
- sha256: 44d0c3a0b1242823334d6bad895ad037849719f67bcfbc426c65363c567f80a5
- md5: 93c89483058dabd0282c378812328ba0
+ url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-release.conda
+ sha256: 8bc21a826d3edc5a8719deeeadcee5b3fc8fbd83313ce2c7ebc8c620075608e1
+ md5: ee664fe2390706d36d2d60b1f2bd69df
depends:
- python >=3.9,<3.13
- click >=8.0.0
@@ -6063,8 +6088,8 @@ packages:
- platformdirs >=2
- python
license: MIT
- size: 130801
- timestamp: 1734412638051
+ size: 130813
+ timestamp: 1736357145814
- kind: conda
name: mdurl
version: 0.1.2
@@ -6083,21 +6108,21 @@ packages:
timestamp: 1733255681319
- kind: conda
name: mojo-jupyter
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121705-release.conda
- sha256: 8ef8447f576590d381ccaa82e6c207c530e9355b07ab3174f3df9c9f064d42de
- md5: 4c31e34ff54c71cd9d584d3ab8f1c315
+ url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-release.conda
+ sha256: a92d02809c43a9a92abc363e69396738f6c9802c12d8827cc008d316cea4e107
+ md5: 0533034ac307140f160cf43c5f36b2ed
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python >=3.9,<3.13
- jupyter_client >=8.6.2,<8.7
- python
license: LicenseRef-Modular-Proprietary
- size: 22937
- timestamp: 1734412638052
+ size: 22926
+ timestamp: 1736357145815
- kind: conda
name: multidict
version: 6.1.0
@@ -6391,49 +6416,52 @@ packages:
- kind: conda
name: openssl
version: 3.4.0
- build: h39f12f2_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
- sha256: bd1d58ced46e75efa3b842c61642fd12272c69e9fe4d7261078bc082153a1d53
- md5: df307bbc703324722df0293c9ca2e418
+ build: h7b32b05_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
+ sha256: f62f6bca4a33ca5109b6d571b052a394d836956d21b25b7ffd03376abf7a481f
+ md5: 4ce6875f75469b2757a65e10a5d05e31
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- ca-certificates
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 2935176
- timestamp: 1731377561525
+ size: 2937158
+ timestamp: 1736086387286
- kind: conda
name: openssl
version: 3.4.0
- build: h86ecc28_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
- sha256: 64dbbdd6384fa56338124783197f7ad9048c989a02264bcd2e07355e3570f113
- md5: b2f202b5bddafac824eb610b65dde98f
+ build: h81ee809_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
+ sha256: 97772762abc70b3a537683ca9fc3ff3d6099eb64e4aba3b9c99e6fce48422d21
+ md5: 22f971393637480bda8c679f374d8861
depends:
+ - __osx >=11.0
- ca-certificates
- - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 3474825
- timestamp: 1731379200886
+ size: 2936415
+ timestamp: 1736086108693
- kind: conda
name: openssl
version: 3.4.0
- build: hb9d3cd8_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
- sha256: 814b9dff1847b132c676ee6cc1a8cb2d427320779b93e1b6d76552275c128705
- md5: 23cc74f77eb99315c0360ec3533147a9
+ build: hd08dc88_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-hd08dc88_1.conda
+ sha256: 60d34454b861501d7355f25a7b39fdb5de8d56fca49b5bcbe8b8142b7d82dce4
+ md5: e21c4767e783a58c373fdb99de6211bf
depends:
- - __glibc >=2.17,<3.0.a0
- ca-certificates
- libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 2947466
- timestamp: 1731377666602
+ size: 3469279
+ timestamp: 1736088141230
- kind: conda
name: opentelemetry-api
version: 1.29.0
@@ -6489,6 +6517,7 @@ packages:
- python >=3.9
- requests >=2.7,<3.dev0
license: Apache-2.0
+ license_family: APACHE
size: 17147
timestamp: 1734345675510
- kind: conda
@@ -6564,16 +6593,16 @@ packages:
- kind: conda
name: orc
version: 2.0.3
- build: h3c55218_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h3c55218_1.conda
- sha256: 154b26bc4d586de33765a155c9b79ebd7f5bb36c2bbf4b8854e1631bca8d21af
- md5: 0a51a3cf028b845c46ec0d1ea2d18629
+ build: h0ff2369_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h0ff2369_2.conda
+ sha256: cca330695f3bdb8c0e46350c29cd4af3345865544e36f1d7c9ba9190ad22f5f4
+ md5: 24b1897c0d24afbb70704ba998793b78
depends:
- - libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
- - libstdcxx >=13
+ - __osx >=11.0
+ - libcxx >=18
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
- snappy >=1.2.1,<1.3.0a0
@@ -6581,21 +6610,21 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 1165179
- timestamp: 1733509923825
+ size: 438520
+ timestamp: 1735630624140
- kind: conda
name: orc
version: 2.0.3
- build: h97ab989_1
- build_number: 1
+ build: h12ee42a_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h97ab989_1.conda
- sha256: 9de7e2746fde57c9b7f08ee87142014f6bb9b2d3a506839ea3e98baa99711576
- md5: 2f46eae652623114e112df13fae311cf
+ url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h12ee42a_2.conda
+ sha256: dff5cc8023905782c86b3459055f26d4b97890e403b0698477c9fed15d8669cc
+ md5: 4f6f9f3f80354ad185e276c120eac3f0
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -6604,21 +6633,21 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 1189462
- timestamp: 1733509801323
+ size: 1188881
+ timestamp: 1735630209320
- kind: conda
name: orc
version: 2.0.3
- build: hbcee414_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-hbcee414_1.conda
- sha256: e5e72438a3cd967ebc774070e8c49500d2d6d4175f349400b327fee75d3bfc05
- md5: e808cf7819eaa1735c8790d7f9f482c7
+ build: hdd485aa_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-hdd485aa_2.conda
+ sha256: b6c67542352a86cdf143c3066d5cda855b74454a156eedcd8958b494c6a32a83
+ md5: d19f01b42e5d6a2908b65df435aff42f
depends:
- - __osx >=11.0
- - libcxx >=18
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libgcc >=13
+ - libprotobuf >=5.28.3,<5.28.4.0a0
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
- snappy >=1.2.1,<1.3.0a0
@@ -6626,8 +6655,8 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 437391
- timestamp: 1733510118673
+ size: 1167714
+ timestamp: 1735630248837
- kind: conda
name: packaging
version: '24.2'
@@ -6734,78 +6763,78 @@ packages:
timestamp: 1733233471940
- kind: conda
name: pillow
- version: 11.0.0
- build: py311h3894ae9_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py311h3894ae9_0.conda
- sha256: 6d5307fed000e6b72b98d54dd1fea7b155f9a6453476a937522b89dde7b3d673
- md5: a9a4adae1c4178f50ac3d1fd5d64bb85
+ version: 11.1.0
+ build: py311h1322bbf_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.1.0-py311h1322bbf_0.conda
+ sha256: 71e0ce18201695adec3bbbfbab74e82b0ab05fe8929ad046d2c507a71c8a3c63
+ md5: 9f4f5593335f76c1dbf7381c11fe7155
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
+ - libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.11,<3.12.0a0
- - python >=3.11,<3.12.0a0 *_cpython
- python_abi 3.11.* *_cp311
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41856994
- timestamp: 1729066060042
+ size: 42021920
+ timestamp: 1735929841160
- kind: conda
name: pillow
- version: 11.0.0
- build: py311h49e9ac3_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py311h49e9ac3_0.conda
- sha256: f0f792596ae99cba01f829d064058b1e99ca84080fc89f72d925bfe473cfc1b6
- md5: 2bd3d0f839ec0d1eaca817c9d1feb7c2
+ version: 11.1.0
+ build: py311ha4eaa5e_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.1.0-py311ha4eaa5e_0.conda
+ sha256: d31c5eed4a5b0a5f7aee0da620c255d217ac154b59022dca1970395e744f3ba9
+ md5: 588cc6d9e6adc21508221b3655cb5949
depends:
- - __glibc >=2.17,<3.0.a0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
- libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.11,<3.12.0a0
- python_abi 3.11.* *_cp311
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 42421065
- timestamp: 1729065780130
+ size: 42077620
+ timestamp: 1735931287216
- kind: conda
name: pillow
- version: 11.0.0
- build: py311hb2a0dd2_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py311hb2a0dd2_0.conda
- sha256: 19b3a8399b7f7d5c80c5bcef17881e7036826fc739e13ccd97d21b0212408827
- md5: 6454f9200cf6d04192bbdee9ab6a9761
+ version: 11.1.0
+ build: py311hb9ba9e9_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.1.0-py311hb9ba9e9_0.conda
+ sha256: 9d9274b1456e463401169a8b7bfc35378c09686cfac56d2b96a1393085f3fd8f
+ md5: d8bb4736b33791e270c998dd68a76621
depends:
+ - __osx >=11.0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
- - libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.11,<3.12.0a0
+ - python >=3.11,<3.12.0a0 *_cpython
- python_abi 3.11.* *_cp311
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41973113
- timestamp: 1729067980140
+ size: 42451890
+ timestamp: 1735929996422
- kind: conda
name: platformdirs
version: 4.3.6
@@ -6890,32 +6919,32 @@ packages:
timestamp: 1733392060312
- kind: conda
name: protobuf
- version: 5.28.2
- build: py311h6885ffc_0
+ version: 5.28.3
+ build: py311h155a34a_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py311h6885ffc_0.conda
- sha256: e3c9aadc12678327f8349d1f043d90a320ab287d733eae8e00f1a5d205d6792a
- md5: 1a922ee234494a42a52e3f7225920b41
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.3-py311h155a34a_0.conda
+ sha256: 18a1b3e59b76c27b03318818e85f7a66b035de77c6b32f077e4af72efbc12269
+ md5: ab0b501f96671046b577316280ddb72b
depends:
- __osx >=11.0
- - libcxx >=17
+ - libcxx >=18
- python >=3.11,<3.12.0a0
- python >=3.11,<3.12.0a0 *_cpython
- python_abi 3.11.* *_cp311
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 453427
- timestamp: 1728669805249
+ size: 457403
+ timestamp: 1731367189837
- kind: conda
name: protobuf
- version: 5.28.2
+ version: 5.28.3
build: py311h89d996e_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py311h89d996e_0.conda
- sha256: e31883a2a0134a337dad1cc42730a4c1c212f13d69843cb8643f30cfcdaf134c
- md5: 9e0fb694cb431de5b4ed52697a629f38
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.3-py311h89d996e_0.conda
+ sha256: d09135eb40d9d00741337459e3bc3c28bf30a8817e93874594096a37851d3eca
+ md5: 6dd92bec86836581e235fb7c42de7df2
depends:
- libgcc >=13
- libstdcxx >=13
@@ -6923,19 +6952,19 @@ packages:
- python >=3.11,<3.12.0a0 *_cpython
- python_abi 3.11.* *_cp311
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 480827
- timestamp: 1728669731679
+ size: 479273
+ timestamp: 1731366544077
- kind: conda
name: protobuf
- version: 5.28.2
+ version: 5.28.3
build: py311hfdbb021_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py311hfdbb021_0.conda
- sha256: a002b1606e63dcdf8da3a6f570f73dbeeef60ce552f62c9c672711a2a31d4921
- md5: 83ce49456829de025312e1de9b4395a5
+ url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.3-py311hfdbb021_0.conda
+ sha256: 2d9b2b9a7549e7dd58138cd3211a11893b8f6dee5a1137529623bf92cddba45b
+ md5: ddf920c3b5d1cbd5ffbea591d2ad09ea
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -6943,11 +6972,11 @@ packages:
- python >=3.11,<3.12.0a0
- python_abi 3.11.* *_cp311
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 472879
- timestamp: 1728669387714
+ size: 471398
+ timestamp: 1731366737017
- kind: conda
name: pthread-stubs
version: '0.4'
@@ -7142,31 +7171,31 @@ packages:
timestamp: 1733195786147
- kind: conda
name: pydantic
- version: 2.10.3
+ version: 2.10.4
build: pyh3cfb1c2_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda
- sha256: cac9eebd3d5f8d8a497a9025d756257ddc75b8b3393e6737cb45077bd744d4f8
- md5: 194ef7f91286978521350f171b117f01
+ url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ sha256: e68400714532a33f34b44ddaee3e27e8dd6c83c3f31c7892ec10b84d13aa8b59
+ md5: 93bccf4d7a58c9140d59491de21e044b
depends:
- annotated-types >=0.6.0
- - pydantic-core 2.27.1
+ - pydantic-core 2.27.2
- python >=3.9
- typing-extensions >=4.6.1
- typing_extensions >=4.12.2
license: MIT
license_family: MIT
- size: 317037
- timestamp: 1733316963547
+ size: 296557
+ timestamp: 1734609427697
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py311h0ca61a2_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.1-py311h0ca61a2_0.conda
- sha256: 03794e4aa320059163ddeaa347cfec2dae2f5af9bcdbc0b1d7765e81523b43cb
- md5: 86aee7900360de3d463d4014a8cef705
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.2-py311h0ca61a2_0.conda
+ sha256: bae487615db914258d64e44ddb698f8826a3785e97989b37ca2d310069e86e28
+ md5: a082086545ee0bcb6c3e7e393532fe03
depends:
- libgcc >=13
- python >=3.11,<3.12.0a0
@@ -7177,16 +7206,16 @@ packages:
- __glibc >=2.17
license: MIT
license_family: MIT
- size: 1503196
- timestamp: 1732254269904
+ size: 1504928
+ timestamp: 1734572100526
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py311h3ff9189_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.1-py311h3ff9189_0.conda
- sha256: fda69a0024647c988a1571a78f31d05cefb95c8580c7fea29106dc5e08b654fa
- md5: 9a65f7d97aaa139bd8471429e192ac61
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.2-py311h3ff9189_0.conda
+ sha256: 5163982ef229292ca5b9fe96e756ac29b6c6453d56c9f1dfaf48f5796de78d05
+ md5: b96fba96baad08b81c57fd157b481b22
depends:
- __osx >=11.0
- python >=3.11,<3.12.0a0
@@ -7197,16 +7226,16 @@ packages:
- __osx >=11.0
license: MIT
license_family: MIT
- size: 1451573
- timestamp: 1732254367639
+ size: 1595471
+ timestamp: 1734572148778
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py311h9e33e62_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.1-py311h9e33e62_0.conda
- sha256: 0ae49448c55affa0e9df0e876d02aee77ad42678500a34679f9689bf3682000e
- md5: e5192dfb2dae866470c3eec81dbe5727
+ url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.2-py311h9e33e62_0.conda
+ sha256: 8ead97151b2f349cd327456fe4a6fcf7c51a3ab6c06f48f4330f86de0d848bd1
+ md5: 675cb6079b6b3b4ef4f20399fedf6666
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -7217,41 +7246,40 @@ packages:
- __glibc >=2.17
license: MIT
license_family: MIT
- size: 1632797
- timestamp: 1732254154568
+ size: 1640287
+ timestamp: 1734571788310
- kind: conda
name: pydantic-settings
- version: 2.7.0
+ version: 2.7.1
build: pyh3cfb1c2_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda
- sha256: dd1ac7c8b6a189c8aa18f6c7df019d8f6df495300a259e3fbebdb542fc955c3b
- md5: d9f19a7c4199249fa229891b573b6f9b
+ url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ sha256: 082fb1ec29917d2c9ed6a862cb8eb9beb88c208ea62c9fef1aeb5f4f3e0e0b06
+ md5: d71d76b62bed332b037d7adfc0f3989a
depends:
- pydantic >=2.7.0
- python >=3.9
- python-dotenv >=0.21.0
license: MIT
license_family: MIT
- size: 31426
- timestamp: 1734127929720
+ size: 31822
+ timestamp: 1735650532951
- kind: conda
name: pygments
- version: 2.18.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2.19.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda
- sha256: 0d6133545f268b2b89c2617c196fc791f365b538d4057ecd636d658c3b1e885d
- md5: b38dc0206e2a530e5c2cf11dc086b31a
+ url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda
+ sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b
+ md5: 232fb4577b6687b2d503ef8e254270c9
depends:
- python >=3.9
license: BSD-2-Clause
license_family: BSD
- size: 876700
- timestamp: 1733221731178
+ size: 888600
+ timestamp: 1736243563082
- kind: conda
name: pyinstrument
version: 5.0.0
@@ -7727,48 +7755,48 @@ packages:
- kind: conda
name: re2
version: 2024.07.02
- build: h2d3a13d_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda
- sha256: 55e7be480bfb979fa8595a16d7f2adea3a5ac9a77b2e97cd0f7ac40e989edb6c
- md5: 83f4e47229834c895a92c18383e1cd9d
+ build: h6589ca4_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-h6589ca4_2.conda
+ sha256: 4d3799c05f8f662922a0acd129d119774760a3281b883603678e128d1cb307fb
+ md5: 7a8b4ad8c58a3408ca89d78788c78178
depends:
- - libre2-11 2024.07.02 h18dbdb1_1
+ - libre2-11 2024.07.02 h07bc746_2
license: BSD-3-Clause
license_family: BSD
- size: 26747
- timestamp: 1728778986331
+ size: 26861
+ timestamp: 1735541088455
- kind: conda
name: re2
version: 2024.07.02
- build: h77b4e00_1
- build_number: 1
+ build: h9925aae_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
- sha256: c1721cb80f7201652fc9801f49c214c88aee835d957f2376e301bd40a8415742
- md5: 01093ff37c1b5e6bf9f17c0116747d11
+ url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h9925aae_2.conda
+ sha256: d213c44958d49ce7e0d4d5b81afec23640cce5016685dbb2d23571a99caa4474
+ md5: e84ddf12bde691e8ec894b00ea829ddf
depends:
- - libre2-11 2024.07.02 hbbce691_1
+ - libre2-11 2024.07.02 hbbce691_2
license: BSD-3-Clause
license_family: BSD
- size: 26665
- timestamp: 1728778975855
+ size: 26786
+ timestamp: 1735541074034
- kind: conda
name: re2
version: 2024.07.02
- build: hcd0e937_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda
- sha256: eebddde6cb10b146507810b701ef6df122d5309cd5151a39d0828aa44dc53725
- md5: 19e29f2ccc9168eb0a39dc40c04c0e21
+ build: haa97905_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-haa97905_2.conda
+ sha256: 040848655df9119bae5a549fb5c8956a5537120859416c1d9d0712b7bac9f12e
+ md5: 1bf0135339b4a7419a198a795d2d4be0
depends:
- - libre2-11 2024.07.02 h2348fd5_1
+ - libre2-11 2024.07.02 h18dbdb1_2
license: BSD-3-Clause
license_family: BSD
- size: 26860
- timestamp: 1728779123653
+ size: 26830
+ timestamp: 1735540999398
- kind: conda
name: readline
version: '8.2'
@@ -7960,12 +7988,12 @@ packages:
timestamp: 1734415467047
- kind: conda
name: safetensors
- version: 0.4.5
+ version: 0.5.1
build: py311h0ca61a2_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py311h0ca61a2_0.conda
- sha256: ce3aa18752eb47e6e55256c0c52ef67786429fdcb2611dd0f7b490049671ef25
- md5: 7d4236d529bacc6d2217a57348965400
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.5.1-py311h0ca61a2_0.conda
+ sha256: f51755ad78863e2f0451443c3c902aff9c066e11463d8b1782d7f73e3686fae7
+ md5: f468136337bcd292514e2554f6783033
depends:
- libgcc >=13
- python >=3.11,<3.12.0a0
@@ -7975,16 +8003,16 @@ packages:
- __glibc >=2.17
license: Apache-2.0
license_family: APACHE
- size: 401351
- timestamp: 1725632381591
+ size: 409136
+ timestamp: 1736278320399
- kind: conda
name: safetensors
- version: 0.4.5
- build: py311h481aa64_0
+ version: 0.5.1
+ build: py311h3ff9189_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py311h481aa64_0.conda
- sha256: 283f79e9fe2b09d8c21b28807e914c49ba5cbe09dce731633ee5aa088c234d54
- md5: 0b444f05b9ea222404ea115a35da9131
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.5.1-py311h3ff9189_0.conda
+ sha256: c9be8e19d4068571b95502dd1f4203e763686ae41fa433752339209caa0c3053
+ md5: 1f5ed6825b119ec40a3309c3adb5a737
depends:
- __osx >=11.0
- python >=3.11,<3.12.0a0
@@ -7994,16 +8022,16 @@ packages:
- __osx >=11.0
license: Apache-2.0
license_family: APACHE
- size: 353541
- timestamp: 1725632251967
+ size: 378288
+ timestamp: 1736278483932
- kind: conda
name: safetensors
- version: 0.4.5
+ version: 0.5.1
build: py311h9e33e62_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py311h9e33e62_0.conda
- sha256: 65cad4de4bf04878abdcede4363f8818ebb895d105b03e996e9b98dcc9a23d01
- md5: 5a58520e8eb4a0119b137fd67a02bb2a
+ url: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.5.1-py311h9e33e62_0.conda
+ sha256: ca2f11077f6edd1938adcc51711f09e59d45ea9066c546df0b8422ee977ee9d4
+ md5: 5a37c50e5cf8269918e3c225fb7d6d48
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -8013,8 +8041,8 @@ packages:
- __glibc >=2.17
license: Apache-2.0
license_family: APACHE
- size: 403087
- timestamp: 1725632204888
+ size: 424734
+ timestamp: 1736278241935
- kind: conda
name: shellingham
version: 1.5.4
@@ -8113,22 +8141,21 @@ packages:
timestamp: 1733244175724
- kind: conda
name: sse-starlette
- version: 2.1.3
+ version: 2.2.1
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
- sha256: 6d671a66333410ec7e5e7858a252565a9001366726d1fe3c3a506d7156169085
- md5: 3918255c942c242ed5599e10329e8d0e
+ url: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
+ sha256: 3c6a476e7afb702d841e23c61a0c4cc491929d2e39376d329e67e94c40a236cc
+ md5: c1ef6bc13dd2caa4b406fb3cb06c2791
depends:
- - anyio
- - python >=3.8
- - starlette
- - uvicorn
+ - anyio >=4.7.0
+ - python >=3.9
+ - starlette >=0.41.3
license: BSD-3-Clause
license_family: BSD
- size: 14712
- timestamp: 1722520112550
+ size: 15324
+ timestamp: 1735126414893
- kind: conda
name: starlette
version: 0.41.3
@@ -8311,18 +8338,19 @@ packages:
- kind: conda
name: tqdm
version: 4.67.1
- build: pyhd8ed1ab_0
+ build: pyhd8ed1ab_1
+ build_number: 1
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
- sha256: 5673b7104350a6998cb86cccf1d0058217d86950e8d6c927d8530606028edb1d
- md5: 4085c9db273a148e149c03627350e22c
+ url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
+ sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40
+ md5: 9efbfdc37242619130ea42b1cc4ed861
depends:
- colorama
- - python >=3.7
+ - python >=3.9
license: MPL-2.0 or MIT
- size: 89484
- timestamp: 1732497312317
+ size: 89498
+ timestamp: 1735661472632
- kind: conda
name: traitlets
version: 5.14.3
@@ -8341,14 +8369,13 @@ packages:
timestamp: 1733367480074
- kind: conda
name: transformers
- version: 4.47.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 4.47.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda
- sha256: d31821081219a0ede5c1f356b65a61ce98ac11e2df78b0eaa684c17c73389fbf
- md5: 6d2ec1ddee8057d2d724a0ab0bb578a0
+ url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.conda
+ sha256: df8238c3cccbb6bb1d5657e6a75977ac0b832ab61155d5e3d8560c1c4f52abeb
+ md5: 931d66db156680c42c62812d6533cbf7
depends:
- datasets !=2.5.0
- filelock
@@ -8364,8 +8391,8 @@ packages:
- tqdm >=4.27
license: Apache-2.0
license_family: APACHE
- size: 3726957
- timestamp: 1733948063517
+ size: 3680276
+ timestamp: 1734499046193
- kind: conda
name: typer
version: 0.15.1
@@ -8466,14 +8493,13 @@ packages:
timestamp: 1728047496079
- kind: conda
name: urllib3
- version: 2.2.3
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2.3.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
- sha256: 416e30a1c3262275f01a3e22e783118d9e9d2872a739a9ed860d06fa9c7593d5
- md5: 4a2d8ef7c37b8808c5b9b750501fffce
+ url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
+ sha256: 114919ffa80c328127dab9c8e7a38f9d563c617691fb81fccb11c1e86763727e
+ md5: 32674f8dbfb7b26410ed580dd3c10a29
depends:
- brotli-python >=1.0.9
- h2 >=4,<5
@@ -8482,8 +8508,8 @@ packages:
- zstandard >=0.18.0
license: MIT
license_family: MIT
- size: 98077
- timestamp: 1733206968917
+ size: 100102
+ timestamp: 1734859520452
- kind: conda
name: uvicorn
version: 0.34.0
diff --git a/examples/notebooks/magic.lock b/examples/notebooks/magic.lock
index dc6dd9e02c..c0fbd109f5 100644
--- a/examples/notebooks/magic.lock
+++ b/examples/notebooks/magic.lock
@@ -9,10 +9,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.10-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.11-py312h178313f_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/argon2-cffi-bindings-21.2.0-py312h66e93f0_5.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda
@@ -40,7 +40,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.16.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-hd8ed1ab_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py312h2ec8cdc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.34.4-hb9d3cd8_0.conda
@@ -49,8 +50,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- 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
@@ -71,7 +72,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py312h66e93f0_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -81,16 +82,16 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/httptools-0.6.4-py312h66e93f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.30.0-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.31.0-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.10.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/jsonpointer-3.0.0-py312h7900ff3_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda
@@ -99,10 +100,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.4-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
@@ -110,11 +111,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-h44a453e_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h3ee7192_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-hd595efa_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h08228c5_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-26_linux64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda
@@ -123,7 +124,7 @@ environments:
- 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.11.1-h332b0f4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_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/libedit-3.1.20240808-pl5321h7949ede_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
@@ -133,9 +134,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.32.0-h804f50b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.32.0-h0121fbd_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.33.0-h2b5623c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.33.0-h0121fbd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-h25350d4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-26_linux64_openblas.conda
@@ -143,10 +144,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.45-h943b412_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.2-hee588c1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda
@@ -157,7 +158,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.9.0-hb9d3cd8_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.49.2-hb9d3cd8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.5-h0d44e9d_1.conda
@@ -166,25 +167,25 @@ 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhff2d567_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.5-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -192,8 +193,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h97ab989_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h12ee42a_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.2-py312h1d6d2e6_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
@@ -201,25 +202,25 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py312h7b63e92_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.48-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.1-py312h66e93f0_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.1.0-py312h66e93f0_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.3-py312h2ec8cdc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.1.1-py312h66e93f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.1.0-py312h7900ff3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.1.0-py312h01725c0_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.2-py312h12e396e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.8-h9e4cc4f_1_cpython.conda
@@ -234,7 +235,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h66e93f0_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py312hbf22597_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h9925aae_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/regex-2024.11.6-py312h66e93f0_0.conda
@@ -245,7 +246,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/rpds-py-0.22.3-py312h12e396e_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.10-hb5b8611_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.5.1-py312h12e396e_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.6.0-pyhff2d567_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
@@ -253,7 +254,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda
@@ -262,9 +263,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/tokenizers-0.21.0-py312h8360d73_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
@@ -274,7 +275,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.21.0-py312h66e93f0_1.conda
@@ -298,10 +299,10 @@ environments:
linux-aarch64:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.10-py312hcc812fe_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.11-py312hcc812fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/argon2-cffi-bindings-21.2.0-py312hb2c0f52_5.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/arrow-1.3.0-pyhd8ed1ab_1.conda
@@ -329,7 +330,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.16.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-hd8ed1ab_3.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/brotli-python-1.1.0-py312h6f74592_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/bzip2-1.0.8-h68df207_7.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/c-ares-1.34.4-h86ecc28_0.conda
@@ -338,8 +340,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.17.1-py312hac81daf_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- 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
@@ -360,7 +362,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hf0a5ef3_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.5.0-py312hb2c0f52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -370,17 +372,17 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/httptools-0.6.4-py312hb2c0f52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh3099207_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.30.0-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.31.0-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.10.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/jsonpointer-3.0.0-py312h996f985_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda
@@ -389,10 +391,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.4-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2
@@ -400,11 +402,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.16-h922389a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-h1b535d6_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h3ffb4b1_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-hb7781cd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h1e9d426_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-26_linuxaarch64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda
@@ -413,7 +415,7 @@ environments:
- 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.11.1-h6702fde_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.23-h5e3c512_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/libedit-3.1.20240808-pl5321h976ea20_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.6.4-h5ad3122_0.conda
@@ -423,9 +425,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.32.0-h3888205_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.32.0-hb9b2b65_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.33.0-hccf9d24_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.33.0-hb9b2b65_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-hf7ccdd3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-26_linuxaarch64_openblas.conda
@@ -433,10 +435,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.28-pthreads_h9d3fd7e_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.45-hec79eb8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.47.2-h5eb1b54_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.1-ha41c0db_0.conda
@@ -447,7 +449,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.9.0-h86ecc28_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.49.2-h86ecc28_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.13.5-h2e0c361_1.conda
@@ -456,25 +458,25 @@ 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhff2d567_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.5-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py312h470d778_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.3-h3f56577_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-hd08dc88_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -482,8 +484,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h3c55218_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-hdd485aa_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.2-py312h14eacfc_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
@@ -491,25 +493,25 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py312h5ab5af3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.1.0-py312h719f0cf_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.48-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/propcache-0.2.1-py312hb2c0f52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-6.1.0-py312hb2c0f52_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.3-py312h6f74592_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-6.1.1-py312hb2c0f52_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.1.0-py312h8025657_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.1.0-py312h66f7834_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.2-py312h8cbf658_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.12.8-h1683364_1_cpython.conda
@@ -524,7 +526,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hb2c0f52_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-26.2.0-py312h2427ae1_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-haa97905_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/regex-2024.11.6-py312hb2c0f52_0.conda
@@ -535,7 +537,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/rpds-py-0.22.3-py312ha4e36d7_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.10-h5df210e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.5.1-py312h8cbf658_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh0d859eb_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.6.0-pyhff2d567_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
@@ -543,7 +545,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-hd4fb6f5_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh0d859eb_0.conda
@@ -552,9 +554,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tokenizers-0.21.0-py312ha0d6ea1_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
@@ -564,7 +566,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/uvloop-0.21.0-py312hb2c0f52_1.conda
@@ -587,10 +589,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda
osx-arm64:
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.10-py312h998013c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.11-py312h998013c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/appnope-0.1.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/argon2-cffi-23.1.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/argon2-cffi-bindings-21.2.0-py312h024a12e_5.conda
@@ -619,7 +621,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/babel-2.16.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/backoff-2.2.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/beautifulsoup4-4.12.3-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyhd8ed1ab_3.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-hd8ed1ab_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py312hde4cb15_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h99b78c6_7.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.34.4-h5505292_0.conda
@@ -628,8 +631,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/cached_property-1.5.2-pyha770c72_1.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.17.1-py312h0fad829_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- 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
@@ -650,7 +653,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/fqdn-1.5.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py312h0bf5046_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -660,17 +663,17 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/httptools-0.6.4-py312hea69d52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ipykernel-6.29.5-pyh57ce528_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.30.0-pyh707e725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/ipython-8.31.0-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/isoduration-20.11.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jedi-0.19.2-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/json5-0.10.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/jsonpointer-3.0.0-py312h81bd7bf_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jsonschema-4.23.0-pyhd8ed1ab_1.conda
@@ -679,20 +682,20 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter-lsp-2.2.5-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.11.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_server_terminals-0.5.3-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.4-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_pygments-0.3.0-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyterlab_server-2.27.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.16-ha0e7c42_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h4a2f8bd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h86344ea_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h0ad35bc_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h4239455_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-26_osxarm64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda
@@ -700,28 +703,28 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-26_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.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/libcxx-19.1.6-ha82da77_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.23-hec38601_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20240808-pl5321hafb1f1b_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.32.0-h8d8be31_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.32.0-h7081f7f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.33.0-hdbe95d5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.33.0-h7081f7f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-h0a426d6_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-26_osxarm64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.6.3-h39f12f2_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.28-openmp_hf332438_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.45-h3783ad8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h07bc746_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.47.2-h3f77e49_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda
@@ -729,34 +732,34 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.0-h551f018_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.9.0-h5505292_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.49.2-h7ab814d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-h178c5d8_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.5-hdb05f8b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.6-hdb05f8b_0.conda
- 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.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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhff2d567_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.5-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nbformat-5.10.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/nest-asyncio-1.6.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/notebook-shim-0.2.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py312h8442bc7_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.3-h8a3d83b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -764,8 +767,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-hbcee414_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h0ff2369_2.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.2-py312h8ae5369_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pandocfilters-1.5.0-pyhd8ed1ab_0.tar.bz2
@@ -773,25 +776,25 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pexpect-4.9.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pickleshare-0.7.5-pyhd8ed1ab_1004.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py312haf37ca6_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pkgutil-resolve-name-1.3.10-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prompt-toolkit-3.0.48-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.1-py312hea69d52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.1.0-py312h0bf5046_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.3-py312hd8f9ff3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.1.1-py312hea69d52_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/ptyprocess-0.7.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pure_eval-0.2.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.1.0-py312h1f38498_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.1.0-py312hc40f475_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.2-py312hcd83bfe_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyobjc-framework-cocoa-10.3.2-py312hb9d441b_0.conda
@@ -808,7 +811,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.2-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py312h024a12e_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.2.0-py312hf8a1cbd_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-h6589ca4_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/referencing-0.35.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/regex-2024.11.6-py312hea69d52_0.conda
@@ -818,7 +821,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/rpds-py-0.22.3-py312hcd83bfe_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py312he431725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.5.1-py312hcd83bfe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/send2trash-1.8.3-pyh31c8845_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/setuptools-75.6.0-pyhff2d567_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
@@ -826,7 +829,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-h98b9ce2_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/soupsieve-2.5-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/stack_data-0.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/terminado-0.18.1-pyh31c8845_0.conda
@@ -835,9 +838,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tokenizers-0.21.0-py312hf3e4074_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tomli-2.2.1-pyhd8ed1ab_1.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
@@ -847,7 +850,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_utils-0.1.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uri-template-1.3.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.21.0-py312h0bf5046_1.conda
@@ -933,12 +936,12 @@ packages:
timestamp: 1733332029649
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312h178313f_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.10-py312h178313f_0.conda
- sha256: dc8ebdd99e9d7a07454a7063a295cdc7a86264648647fec10b2ceae97478e200
- md5: 3e92784b8e32ab7d0b95ee296ba79a99
+ url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.11-py312h178313f_0.conda
+ sha256: 2e817805e8a4fed33f23f116ff5649f8651af693328e9ed82d9d11a951338693
+ md5: 8219afa093757bbe07b9825eb1973ed9
depends:
- __glibc >=2.17,<3.0.a0
- aiohappyeyeballs >=2.3.0
@@ -953,16 +956,16 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 914378
- timestamp: 1733839626367
+ size: 915358
+ timestamp: 1734597073870
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312h998013c_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.10-py312h998013c_0.conda
- sha256: 69eb9c89dce6a7ae960099172daffba9f77fef39344f37e581685a8e3c5debe6
- md5: 642356223364539ba7ba36556fcf49ee
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.11-py312h998013c_0.conda
+ sha256: 446f078e7a7b892894d7f4851a278b7834ffb4f5632313646a55c3abe13690d4
+ md5: c69c904691364cfb27d15aa7153e9c29
depends:
- __osx >=11.0
- aiohappyeyeballs >=2.3.0
@@ -977,16 +980,16 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 874135
- timestamp: 1733839113411
+ size: 875711
+ timestamp: 1734597277258
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312hcc812fe_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.10-py312hcc812fe_0.conda
- sha256: df694a9fec546e575a4ea7e1c3ac476c0bda53c0fad44c046ad3ebdd5b75a0a8
- md5: a8c9ec59e6323b38418bbf04deaa0c02
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.11-py312hcc812fe_0.conda
+ sha256: f28e81e458d19df4ca0002f8a92d7f647fa25e8179887a8676801dfe44edb1f2
+ md5: 11fa88136d9bf39d2136b2378f7c10be
depends:
- aiohappyeyeballs >=2.3.0
- aiosignal >=1.1.2
@@ -1001,8 +1004,8 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 900931
- timestamp: 1733839037447
+ size: 902422
+ timestamp: 1734597104529
- kind: conda
name: aiosignal
version: 1.3.2
@@ -1038,13 +1041,13 @@ packages:
timestamp: 1733247158254
- kind: conda
name: anyio
- version: 4.7.0
+ version: 4.8.0
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda
- sha256: 687537ee3af30f8784986bf40cac30e88138770b16e51ca9850c9c23c09aeba1
- md5: c88107912954a983c2caf25f7fd55158
+ url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.8.0-pyhd8ed1ab_0.conda
+ sha256: f1455d2953e3eb6d71bc49881c8558d8e01888469dfd21061dd48afb6183e836
+ md5: 848d25bfbadf020ee4d4ba90e5668252
depends:
- exceptiongroup >=1.0.2
- idna >=2.8
@@ -1056,8 +1059,8 @@ packages:
- uvloop >=0.21
license: MIT
license_family: MIT
- size: 112730
- timestamp: 1733532678437
+ size: 115305
+ timestamp: 1736174485476
- kind: conda
name: appnope
version: 0.1.4
@@ -2284,20 +2287,37 @@ packages:
- kind: conda
name: bleach
version: 6.2.0
- build: pyhd8ed1ab_1
- build_number: 1
+ build: pyhd8ed1ab_3
+ build_number: 3
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyhd8ed1ab_1.conda
- sha256: ffc8e4e53cd92aec0f0ea0bc9e28f5fd1b1e67bde46b0b298170e6fb78eecce1
- md5: 707af59db75b066217403a8f00c1d826
+ url: https://conda.anaconda.org/conda-forge/noarch/bleach-6.2.0-pyhd8ed1ab_3.conda
+ sha256: 9278622f54b6b4bce5d73663b282a8ab35d1b331d6ff92f4112906a526039827
+ md5: b33551d9bac06d754762e8ccb3c4df03
depends:
- python >=3.9
- webencodings
+ constrains:
+ - tinycss2 >=1.1.0,<1.5
license: Apache-2.0 AND MIT
license_family: Apache
- size: 132933
- timestamp: 1733302409510
+ size: 132550
+ timestamp: 1736148590971
+- kind: conda
+ name: bleach-with-css
+ version: 6.2.0
+ build: hd8ed1ab_3
+ build_number: 3
+ subdir: noarch
+ noarch: generic
+ url: https://conda.anaconda.org/conda-forge/noarch/bleach-with-css-6.2.0-hd8ed1ab_3.conda
+ sha256: 8161cf35253f7646a1fd39f90abbcc6cb69248b8fdff61cfffce4cc8448f8c02
+ md5: e250a492fc70bf604737328dbe02846c
+ depends:
+ - bleach 6.2.0 pyhd8ed1ab_3
+ - tinycss2
+ size: 5745
+ timestamp: 1736148591923
- kind: conda
name: brotli-python
version: 1.1.0
@@ -2587,37 +2607,35 @@ packages:
timestamp: 1725561779888
- kind: conda
name: charset-normalizer
- version: 3.4.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 3.4.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- sha256: 63022ee2c6a157a9f980250a66f54bdcdf5abee817348d0f9a74c2441a6fbf0e
- md5: 6581a17bba6b948bb60130026404a9d6
+ url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b
+ md5: e83a31202d1c0a000fce3e9cf3825875
depends:
- python >=3.9
license: MIT
license_family: MIT
- size: 47533
- timestamp: 1733218182393
+ size: 47438
+ timestamp: 1735929811779
- kind: conda
name: click
- version: 8.1.7
- build: unix_pyh707e725_1
- build_number: 1
+ version: 8.1.8
+ build: pyh707e725_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
- sha256: 1cd5fc6ccdd5141378e51252a7a3810b07fd5a7e6934a5b4a7eccba66566224b
- md5: cb8e52f28f5e592598190c562e7b5bf1
+ url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
+ sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab
+ md5: f22f4d4970e09d68a10b922cbb0408d3
depends:
- __unix
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 84513
- timestamp: 1733221925078
+ size: 84705
+ timestamp: 1734858922844
- kind: conda
name: colorama
version: 0.4.6
@@ -3076,20 +3094,19 @@ packages:
timestamp: 1729699642726
- kind: conda
name: fsspec
- version: 2024.10.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2024.12.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
- sha256: 790a50b4f94042951518f911a914a886a837c926094c6a14ed1d9d03ce336807
- md5: 906fe13095e734cb413b57a49116cdc8
+ url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
+ sha256: 3320970c4604989eadf908397a9475f9e6a96a773c185915111399cbfbe47817
+ md5: e041ad4c43ab5e10c74587f95378ebc7
depends:
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 134726
- timestamp: 1733493445080
+ size: 137756
+ timestamp: 1734650349242
- kind: conda
name: gflags
version: 2.2.2
@@ -3347,14 +3364,13 @@ packages:
timestamp: 1733663449209
- kind: conda
name: huggingface_hub
- version: 0.26.5
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 0.27.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
- sha256: 0c75532d914a04c73222be298ed2c6868739dd475b1b1a9137c52abe79873952
- md5: 73937038e21117fe401f8ea64fbaeacc
+ url: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
+ sha256: 4597d7aa720f4acdddacc27b3f9e8d4336cb79477c53aee2d7ab96d136169cdb
+ md5: 8c9a53ecd0c3c278efbdac567dd12ed0
depends:
- filelock
- fsspec >=2023.5.0
@@ -3367,8 +3383,8 @@ packages:
- typing_extensions >=3.7.4.3
license: Apache-2.0
license_family: APACHE
- size: 275466
- timestamp: 1733852454004
+ size: 278363
+ timestamp: 1736350219225
- kind: conda
name: hyperframe
version: 6.0.1
@@ -3449,23 +3465,22 @@ packages:
timestamp: 1733223207185
- kind: conda
name: importlib_resources
- version: 6.4.5
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 6.5.2
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.4.5-pyhd8ed1ab_1.conda
- sha256: 461199e429a3db01f0a673f8beaac5e0be75b88895952fb9183f2ab01c5c3c24
- md5: 15798fa69312d433af690c8c42b3fb36
+ url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-6.5.2-pyhd8ed1ab_0.conda
+ sha256: acc1d991837c0afb67c75b77fdc72b4bf022aac71fedd8b9ea45918ac9b08a80
+ md5: c85c76dc67d75619a92f51dfbce06992
depends:
- python >=3.9
- zipp >=3.1.0
constrains:
- - importlib-resources >=6.4.5,<6.4.6.0a0
+ - importlib-resources >=6.5.2,<6.5.3.0a0
license: Apache-2.0
license_family: APACHE
- size: 32701
- timestamp: 1733231441973
+ size: 33781
+ timestamp: 1736252433366
- kind: conda
name: ipykernel
version: 6.29.5
@@ -3525,13 +3540,13 @@ packages:
timestamp: 1719845667420
- kind: conda
name: ipython
- version: 8.30.0
+ version: 8.31.0
build: pyh707e725_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.30.0-pyh707e725_0.conda
- sha256: 65cdc105e5effea2943d3979cc1592590c923a589009b484d07672faaf047af1
- md5: 5d6e5cb3a4b820f61b2073f0ad5431f1
+ url: https://conda.anaconda.org/conda-forge/noarch/ipython-8.31.0-pyh707e725_0.conda
+ sha256: e10d1172ebf950f8f087f0d9310d215f5ddb8f3ad247bfa58ab5a909b3cabbdc
+ md5: 1d7fcd803dfa936a6c3bd051b293241c
depends:
- __unix
- decorator
@@ -3548,8 +3563,8 @@ packages:
- typing_extensions >=4.6
license: BSD-3-Clause
license_family: BSD
- size: 600248
- timestamp: 1732897026255
+ size: 600761
+ timestamp: 1734788248334
- kind: conda
name: isoduration
version: 20.11.0
@@ -3585,21 +3600,20 @@ packages:
timestamp: 1733300981994
- kind: conda
name: jinja2
- version: 3.1.4
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 3.1.5
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
- sha256: 85a7169c078b8065bd9d121b0e7b99c8b88c42a411314b6ae5fcd81c48c4710a
- md5: 08cce3151bde4ecad7885bd9fb647532
+ url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
+ sha256: 98977694b9ecaa3218662f843425f39501f81973c450f995eec68f1803ed71c3
+ md5: 2752a6ed44105bfb18c9bef1177d9dcd
depends:
- markupsafe >=2.0
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 110963
- timestamp: 1733217424408
+ size: 112561
+ timestamp: 1734824044952
- kind: conda
name: json5
version: 0.10.0
@@ -3790,16 +3804,16 @@ packages:
timestamp: 1727163547058
- kind: conda
name: jupyter_events
- version: 0.10.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 0.11.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.10.0-pyhd8ed1ab_1.conda
- sha256: d7fa4c627d56ce8dc02f09f358757f8fd49eb6137216dc99340a6b4efc7e0491
- md5: 62186e6383f38cc6a3466f0fadde3f2e
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyter_events-0.11.0-pyhd8ed1ab_0.conda
+ sha256: eeb32aa58d37b130387628d5c151092f6d3fcf0a6964294bef06d6bac117f3c4
+ md5: 2d8876ca6bda213622dfbc3d1da56ecb
depends:
- jsonschema-with-format-nongpl >=4.18.0
+ - packaging
- python >=3.9
- python-json-logger >=2.0.4
- pyyaml >=5.3
@@ -3809,25 +3823,24 @@ packages:
- traitlets >=5.3
license: BSD-3-Clause
license_family: BSD
- size: 21434
- timestamp: 1733441420606
+ size: 22160
+ timestamp: 1734531779868
- kind: conda
name: jupyter_server
- version: 2.14.2
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2.15.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.14.2-pyhd8ed1ab_1.conda
- sha256: 082d3517455339c8baea245a257af249758ccec26b8832d969ac928901c234cc
- md5: 81ea84b3212287f926e35b9036192963
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyter_server-2.15.0-pyhd8ed1ab_0.conda
+ sha256: be5f9774065d94c4a988f53812b83b67618bec33fcaaa005a98067d506613f8a
+ md5: 6ba8c206b5c6f52b82435056cf74ee46
depends:
- anyio >=3.1.0
- argon2-cffi >=21.1
- jinja2 >=3.0.3
- jupyter_client >=7.4.4
- jupyter_core >=4.12,!=5.0.*
- - jupyter_events >=0.9.0
+ - jupyter_events >=0.11.0
- jupyter_server_terminals >=0.4.4
- nbconvert-core >=6.4.4
- nbformat >=5.3.0
@@ -3843,8 +3856,8 @@ packages:
- websocket-client >=1.7
license: BSD-3-Clause
license_family: BSD
- size: 324289
- timestamp: 1733428731329
+ size: 327747
+ timestamp: 1734702771032
- kind: conda
name: jupyter_server_terminals
version: 0.5.3
@@ -3864,13 +3877,13 @@ packages:
timestamp: 1733428049134
- kind: conda
name: jupyterlab
- version: 4.3.3
+ version: 4.3.4
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.3-pyhd8ed1ab_0.conda
- sha256: 63aa00427abd4a3e7c1738257b8e296f5e0ba04a4a1ab9ff3bc186440c8b9fdc
- md5: 0707e62d944a89c365ba11da4898f8af
+ url: https://conda.anaconda.org/conda-forge/noarch/jupyterlab-4.3.4-pyhd8ed1ab_0.conda
+ sha256: bcf9fc0ea4bd6cf06a7a23b7f8b7bb7d8520eea8d0cdd6d3b975ede7793ed69b
+ md5: edc13687180382b4444d9f143a2e1ef7
depends:
- async-lru >=1.0.0
- httpx >=0.25.0
@@ -3890,8 +3903,8 @@ packages:
- traitlets
license: BSD-3-Clause
license_family: BSD
- size: 7972675
- timestamp: 1733836496011
+ size: 7257751
+ timestamp: 1734539283837
- kind: conda
name: jupyterlab_pygments
version: 0.3.0
@@ -4145,32 +4158,31 @@ packages:
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_h5888daf_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
- sha256: 8f91429091183c26950f1e7ffa730e8632f0627ba35d2fccd71df31628c9b4e5
- md5: e1f604644fe8d78e22660e2fec6756bc
+ build: cxx17_h07bc746_4
+ build_number: 4
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda
+ sha256: 05fa5e5e908962b9c5aba95f962e2ca81d9599c4715aebe5e4ddb72b309d1770
+ md5: c2d95bd7aa8d564a9bd7eca5e571a5b3
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- - libstdcxx >=13
+ - __osx >=11.0
+ - libcxx >=18
constrains:
- libabseil-static =20240722.0=cxx17*
- abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1310521
- timestamp: 1727295454064
+ size: 1178260
+ timestamp: 1736008642885
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_h5ad3122_1
- build_number: 1
+ build: cxx17_h18dbdb1_4
+ build_number: 4
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
- sha256: 590e47dce38031a8893e70491f3b71e214de7781cab53b6f017aa6f6841cb076
- md5: 6fe6b3694c4792a8e26755d3b06f0b80
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda
+ sha256: bb6c5fb3b8de5f90735c5252b57efb3c268ee222c755569dac18065f05147670
+ md5: 633b9fe454ffea2aaf29e191d946a83b
depends:
- libgcc >=13
- libstdcxx >=13
@@ -4179,37 +4191,39 @@ packages:
- libabseil-static =20240722.0=cxx17*
license: Apache-2.0
license_family: Apache
- size: 1328502
- timestamp: 1727295490806
+ size: 1334844
+ timestamp: 1736008472455
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_hf9b8971_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
- sha256: 90bf08a75506dfcf28a70977da8ab050bcf594cd02abd3a9d84a22c9e8161724
- md5: 706da5e791c569a7b9814877098a6a0a
+ build: cxx17_hbbce691_4
+ build_number: 4
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ sha256: 143a586aa67d50622ef703de57b9d43f44945836d6568e0e7aa174bd8c45e0d4
+ md5: 488f260ccda0afaf08acb286db439c2f
depends:
- - __osx >=11.0
- - libcxx >=17
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
constrains:
- libabseil-static =20240722.0=cxx17*
- abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1179072
- timestamp: 1727295571173
+ size: 1311599
+ timestamp: 1736008414161
- kind: conda
name: libarrow
version: 18.1.0
- build: h1b535d6_6_cpu
- build_number: 6
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-h1b535d6_6_cpu.conda
- sha256: 087b579aebf351ca41c54214121d86a15a41c92051cbd432d6f3a3f58a8c31b0
- md5: 4c0ad68efba1113ac5833975c67b565d
+ build: h0ad35bc_7_cpu
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h0ad35bc_7_cpu.conda
+ sha256: 4fbdd8bb89d912bf03f10f9373a8d96a1cdd7a7851e107393418a3d2715bc27e
+ md5: 4ba2173203f44bbf03d19aaba6ed07d3
depends:
+ - __osx >=11.0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -4217,17 +4231,15 @@ packages:
- azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
- azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
- - gflags >=2.2.2,<2.3.0a0
- glog >=0.7.1,<0.8.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libgcc >=13
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libcxx >=18
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
- - libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -4236,24 +4248,23 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - parquet-cpp <0.0a0
- arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
- apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 8040629
- timestamp: 1733810319239
+ size: 5506699
+ timestamp: 1735682962976
- kind: conda
name: libarrow
version: 18.1.0
- build: h44a453e_6_cpu
- build_number: 6
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-h44a453e_6_cpu.conda
- sha256: abf17e99b03356a9d6248e965826c1352ff01b00d3a62cc51393bb0744d72803
- md5: 2cf6d608d6e66506f69797d5c6944c35
+ build: hb7781cd_7_cpu
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-hb7781cd_7_cpu.conda
+ sha256: f6107506bd16788560b47a4d18c1457b4df30a49334364d32613fe3f53ba6cbb
+ md5: 98cf7127ca7b3854c5d1c8bef1ed6e53
depends:
- - __glibc >=2.17,<3.0.a0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -4268,8 +4279,8 @@ packages:
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- libgcc >=13
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
- libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
@@ -4280,24 +4291,24 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - parquet-cpp <0.0a0
- arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
- apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 8786061
- timestamp: 1733810643966
+ size: 8026714
+ timestamp: 1735685336542
- kind: conda
name: libarrow
version: 18.1.0
- build: h4a2f8bd_6_cpu
- build_number: 6
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h4a2f8bd_6_cpu.conda
- sha256: 9ed3ea1bc15005c0df187268ef91407afaa908cf82f36f5acbbf50ac24d7f806
- md5: 835cdd84195b84dc34d128bd5d3580b9
+ build: hd595efa_7_cpu
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-hd595efa_7_cpu.conda
+ sha256: 554ffa338264c1dc34d95adb7eb856d50a2f25e7fa303a1a51e4372301b7c96f
+ md5: 08d4aff5ee6dee9a1b9ab13fca927697
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -4305,15 +4316,17 @@ packages:
- azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
- azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
+ - gflags >=2.2.2,<2.3.0a0
- glog >=0.7.1,<0.8.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libcxx >=18
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libgcc >=13
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
+ - libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -4322,190 +4335,190 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - apache-arrow-proc =*=cpu
- arrow-cpp <0.0a0
- parquet-cpp <0.0a0
+ - apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 5494797
- timestamp: 1733808145854
+ size: 8770256
+ timestamp: 1735684696564
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: h3b568fd_6_cpu
- build_number: 6
+ build: h3b568fd_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_6_cpu.conda
- sha256: fdb70e2499e59b730084ecd53008b361a6f6090b5fb49624feda06b7e84c7b8c
- md5: c50907eefe2ae22d826e7cb2e4d712f5
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_7_cpu.conda
+ sha256: 42cbfc87096f745d565d814d65b7228c82d985f1898859d5e456016d73e81c82
+ md5: 4c1d8c3feea249782148d3cd6a25392e
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
- libgcc >=13
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 578091
- timestamp: 1733810378092
+ size: 578222
+ timestamp: 1735685424850
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: hcb10f89_6_cpu
- build_number: 6
+ build: hcb10f89_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_6_cpu.conda
- sha256: a32fa1d71415afc02b5cf3cd4c0a6ec0af9e749308829cc65ff79689222ce479
- md5: 143f9288b64759a6427563f058c62f2b
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_7_cpu.conda
+ sha256: 87ea5d6a84d922d73975dce8661fccf257e72e755175b12c30e1181a34e37987
+ md5: 12d84228204c56fec6ed113288014d11
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
- libgcc >=13
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 611745
- timestamp: 1733810698469
+ size: 612463
+ timestamp: 1735684749868
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: hf07054f_6_cpu
- build_number: 6
+ build: hf07054f_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_6_cpu.conda
- sha256: e1cae46409927470439ef9ae93ed09b3493d0579501ca9ebfa79ded212ee98d8
- md5: 97fc01254714e1572624baefdd7cc898
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_7_cpu.conda
+ sha256: 86e20cebfdb4f335e98265c1b88f5053bf3e3648768a317856295846bfdbf2b4
+ md5: 3eaf71fe987de13061db795e03bb1a1c
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
- libcxx >=18
license: Apache-2.0
license_family: APACHE
- size: 483713
- timestamp: 1733808246880
+ size: 485185
+ timestamp: 1735683071232
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: h3b568fd_6_cpu
- build_number: 6
+ build: h3b568fd_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_6_cpu.conda
- sha256: 2a08f5a1017ff660c37ae0c24343a119cb2511c6edd69e23d0a5090a0967ea35
- md5: bb1548ad011c4f9107fcc4cc548473bf
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_7_cpu.conda
+ sha256: 13ba7d3d08015aa26569eca9e198e2f8b2a0cd2d9c420e41c78cc2e5d5170f26
+ md5: f39f5d725c2ca94c2e7b19e2717fd4ab
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
- - libarrow-acero 18.1.0 h3b568fd_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
+ - libarrow-acero 18.1.0 h3b568fd_7_cpu
- libgcc >=13
- - libparquet 18.1.0 hfc78867_6_cpu
+ - libparquet 18.1.0 hfc78867_7_cpu
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 559673
- timestamp: 1733810461646
+ size: 560329
+ timestamp: 1735685518922
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: hcb10f89_6_cpu
- build_number: 6
+ build: hcb10f89_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_6_cpu.conda
- sha256: 74eeb178070002842d3ed721769399320e3a68a0843319eaf899a092a31def26
- md5: 20ca46a6bc714a6ab189d5b3f46e66d8
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_7_cpu.conda
+ sha256: 99c12511fba79c7947f78d676eae5857659084f687f375f68bc20bd4cddb0a0e
+ md5: 0a81eb63d7cd150f598c752e86388d57
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
- - libarrow-acero 18.1.0 hcb10f89_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
+ - libarrow-acero 18.1.0 hcb10f89_7_cpu
- libgcc >=13
- - libparquet 18.1.0 h081d1f1_6_cpu
+ - libparquet 18.1.0 h081d1f1_7_cpu
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 586627
- timestamp: 1733810842604
+ size: 587497
+ timestamp: 1735684880531
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: hf07054f_6_cpu
- build_number: 6
+ build: hf07054f_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_6_cpu.conda
- sha256: 6eba942ce926419f74e6e0a7c3994a7d78ab6be47115e6bb70e02136554736be
- md5: 0774276be6659aaa0007f1b0f6ee19b0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_7_cpu.conda
+ sha256: 52c5c4e9cd5f2ac91dcebb6a920ab2536febcea116ff8767e5439329d7da820b
+ md5: 97a2d3606682d94f7d73112e9ad684ae
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
- - libarrow-acero 18.1.0 hf07054f_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
+ - libarrow-acero 18.1.0 hf07054f_7_cpu
- libcxx >=18
- - libparquet 18.1.0 h636d7b7_6_cpu
+ - libparquet 18.1.0 h636d7b7_7_cpu
license: Apache-2.0
license_family: APACHE
- size: 489948
- timestamp: 1733809328231
+ size: 491237
+ timestamp: 1735684688308
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h3ee7192_6_cpu
- build_number: 6
+ build: h08228c5_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h3ee7192_6_cpu.conda
- sha256: bda6728db019dd0c409b1996ad9ef6ab0bcee3a94dc66a8045e8c1049c566055
- md5: aa313b3168caf98d00b3753f5ba27650
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h08228c5_7_cpu.conda
+ sha256: 53ea53a06e137c2f81ebfdff3f978babb8b59e31f705a19b57056ec8754c1abf
+ md5: e128def53c133e8a23ac00cd4a479335
depends:
- __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h44a453e_6_cpu
- - libarrow-acero 18.1.0 hcb10f89_6_cpu
- - libarrow-dataset 18.1.0 hcb10f89_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
+ - libarrow-acero 18.1.0 hcb10f89_7_cpu
+ - libarrow-dataset 18.1.0 hcb10f89_7_cpu
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 519989
- timestamp: 1733810903274
+ size: 521861
+ timestamp: 1735684940668
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h3ffb4b1_6_cpu
- build_number: 6
+ build: h1e9d426_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h3ffb4b1_6_cpu.conda
- sha256: 9f78c55c5d7122e588a6f226cbf7e909c479d66ed18edc633d68324323d386b9
- md5: 5db2e6832397b8ca70a6f7b00e0c3629
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h1e9d426_7_cpu.conda
+ sha256: 252e2a0d8c733f36b50499786480a05a59577d617f291868149c80534c1e8ffc
+ md5: 6da921d9e1c4e2ab2679eeea7cbd4c82
depends:
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h1b535d6_6_cpu
- - libarrow-acero 18.1.0 h3b568fd_6_cpu
- - libarrow-dataset 18.1.0 h3b568fd_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
+ - libarrow-acero 18.1.0 h3b568fd_7_cpu
+ - libarrow-dataset 18.1.0 h3b568fd_7_cpu
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 515928
- timestamp: 1733810503359
+ size: 516014
+ timestamp: 1735685565929
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h86344ea_6_cpu
- build_number: 6
+ build: h4239455_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h86344ea_6_cpu.conda
- sha256: bafd9ca59ebb5ad34b77aff316ef7b59c5fb1eb8a7b6a15de8dcbdf3ce37556d
- md5: c1c162f5bf569cff8bed6def705a899f
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h4239455_7_cpu.conda
+ sha256: a45bbdd6932aed972d6c6ce30a7439aa8ec9d9b8ee5affb350d41e50abdc0127
+ md5: 91927747173f65695e441346c7145e26
depends:
- __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
- - libarrow-acero 18.1.0 hf07054f_6_cpu
- - libarrow-dataset 18.1.0 hf07054f_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
+ - libarrow-acero 18.1.0 hf07054f_7_cpu
+ - libarrow-dataset 18.1.0 hf07054f_7_cpu
- libcxx >=18
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
license: Apache-2.0
license_family: APACHE
- size: 451623
- timestamp: 1733809487176
+ size: 452385
+ timestamp: 1735684993831
- kind: conda
name: libblas
version: 3.9.0
@@ -4524,6 +4537,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16393
timestamp: 1734432564346
- kind: conda
@@ -4544,6 +4558,7 @@ packages:
- libcblas 3.9.0 26_linuxaarch64_openblas
- liblapack 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16477
timestamp: 1734432576699
- kind: conda
@@ -4564,6 +4579,7 @@ packages:
- libcblas 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16714
timestamp: 1734433054681
- kind: conda
@@ -4726,6 +4742,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16336
timestamp: 1734432570482
- kind: conda
@@ -4744,6 +4761,7 @@ packages:
- liblapacke 3.9.0 26_linuxaarch64_openblas
- liblapack 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16398
timestamp: 1734432580937
- kind: conda
@@ -4762,6 +4780,7 @@ packages:
- liblapacke 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16628
timestamp: 1734433061517
- kind: conda
@@ -4871,18 +4890,19 @@ packages:
timestamp: 1734000160270
- kind: conda
name: libcxx
- version: 19.1.5
- build: ha82da77_0
+ version: 19.1.6
+ build: ha82da77_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.5-ha82da77_0.conda
- sha256: 7918cc0bb7a6554cdd3eee634c3dc414a1ab8ec49faeca1567367bb92118f9d7
- md5: 3c7be0df28ccda1d193ea6de56dcb5ff
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.6-ha82da77_1.conda
+ sha256: 2b2443404503cd862385fd2f2a2c73f9624686fd1e5a45050b4034cfc06904ec
+ md5: ce5252d8db110cdb4ae4173d0a63c7c5
depends:
- __osx >=11.0
license: Apache-2.0 WITH LLVM-exception
license_family: Apache
- size: 519819
- timestamp: 1733291654212
+ size: 520992
+ timestamp: 1734494699681
- kind: conda
name: libdeflate
version: '1.23'
@@ -4895,6 +4915,7 @@ packages:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
license: MIT
+ license_family: MIT
size: 72255
timestamp: 1734373823254
- kind: conda
@@ -4908,6 +4929,7 @@ packages:
depends:
- libgcc >=13
license: MIT
+ license_family: MIT
size: 69862
timestamp: 1734373858306
- kind: conda
@@ -4921,55 +4943,58 @@ packages:
depends:
- __osx >=11.0
license: MIT
+ license_family: MIT
size: 54132
timestamp: 1734373971372
- kind: conda
name: libedit
- version: 3.1.20191231
- build: hc8eb9b7_2
- build_number: 2
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
- sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca
- md5: 30e4362988a2623e9eb34337b83e01f9
+ version: 3.1.20240808
+ build: pl5321h7949ede_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20240808-pl5321h7949ede_0.conda
+ sha256: 4d0d69ddf9cc7d724a1ccf3a9852e44c8aea9825692582bac2c4e8d21ec95ccd
+ md5: 8247f80f3dc464d9322e85007e307fe8
depends:
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 96607
- timestamp: 1597616630749
+ size: 134657
+ timestamp: 1736191912705
- kind: conda
name: libedit
- version: 3.1.20191231
- build: he28a2e2_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf
- md5: 4d331e44109e3f0e19b4cb8f9b82f3e1
+ version: 3.1.20240808
+ build: pl5321h976ea20_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20240808-pl5321h976ea20_0.conda
+ sha256: 031daea98cf278f858b7957ad5dc475f1b5673cd5e718850529401ced64cef2c
+ md5: 0be40129d3dd1a152fff29a85f0785d0
depends:
- - libgcc-ng >=7.5.0
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 123878
- timestamp: 1597616541093
+ size: 148120
+ timestamp: 1736192137151
- kind: conda
name: libedit
- version: 3.1.20191231
- build: he28a2e2_2
- build_number: 2
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- sha256: debc31fb2f07ba2b0363f90e455873670734082822926ba4a9556431ec0bf36d
- md5: 29371161d77933a54fccf1bb66b96529
+ version: 3.1.20240808
+ build: pl5321hafb1f1b_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20240808-pl5321hafb1f1b_0.conda
+ sha256: fb934d7a03279ec8eae4bf1913ac9058fcf6fed35290d8ffa6e04157f396a3b1
+ md5: af89aa84ffb5ee551ce0c137b951a3b5
depends:
- - libgcc-ng >=7.5.0
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - __osx >=11.0
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 134104
- timestamp: 1597617110769
+ size: 107634
+ timestamp: 1736192034117
- kind: conda
name: libev
version: '4.33'
@@ -5349,214 +5374,223 @@ packages:
timestamp: 1729089357313
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h3888205_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.32.0-h3888205_0.conda
- sha256: 36af2844ce8fafd477214d51117746144461132f76759a7d29963b4583b577be
- md5: a40b948bf4eabcc1ce708c40ffd7c06d
+ version: 2.33.0
+ build: h2b5623c_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.33.0-h2b5623c_1.conda
+ sha256: ae48ee93e2c226bf682f1e389c2fd51ae7bf77c2ce4b3aee069764f4be1c63f2
+ md5: 61829a8dd5f4e2327e707572065bae41
depends:
+ - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libgcc >=13
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 1248560
- timestamp: 1733512309504
+ size: 1254656
+ timestamp: 1735648569457
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h804f50b_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.32.0-h804f50b_0.conda
- sha256: 126856add750013390dff664a3c3cd0f6f0cbbc683b0025a7ce9d1618968bc70
- md5: 3d96df4d6b1c88455e05b94ce8a14a53
+ version: 2.33.0
+ build: hccf9d24_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.33.0-hccf9d24_1.conda
+ sha256: d3d4def86d880431928799ba90ca97e57c2f05677c03af8de2337502926c492c
+ md5: a2724014eb04f14bd71d35f45b062dd0
depends:
- - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libgcc >=13
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 1249557
- timestamp: 1733512191906
+ size: 1253019
+ timestamp: 1735649566849
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h8d8be31_0
+ version: 2.33.0
+ build: hdbe95d5_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.32.0-h8d8be31_0.conda
- sha256: 722e49dbdc4486105d9f5b79a7ba4f9064602fe20c4015e97684c898ab8d3386
- md5: d7ab9e0eb7d55eac4943913073de61d7
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.33.0-hdbe95d5_1.conda
+ sha256: ce95aca02451694a4154c7770b6addf4fb859abf17912de6ec947da8469a56ce
+ md5: 91de1fbab8610974c0094c266bc63435
depends:
- __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libcxx >=18
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 876210
- timestamp: 1733512539476
+ size: 877594
+ timestamp: 1735648230965
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: h0121fbd_0
+ version: 2.33.0
+ build: h0121fbd_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.32.0-h0121fbd_0.conda
- sha256: d1b53d17df38b52a4bc6d1fe6af0e611d6480ce10b0af570c84bd38c8aa83b91
- md5: 877a5ec0431a5af83bf0cd0522bfe661
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.33.0-h0121fbd_1.conda
+ sha256: 41022523320ca8633a6c615710823e596efadb50f06d724e1a0c81e27994f257
+ md5: b0cfb5044685a7a9fa43ae669124f0a0
depends:
- __glibc >=2.17,<3.0.a0
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libgcc >=13
- - libgoogle-cloud 2.32.0 h804f50b_0
+ - libgoogle-cloud 2.33.0 h2b5623c_1
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 782108
- timestamp: 1733512329104
+ size: 784357
+ timestamp: 1735648759177
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: h7081f7f_0
+ version: 2.33.0
+ build: h7081f7f_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.32.0-h7081f7f_0.conda
- sha256: 609df2cf376ba66460f40143f835fc567cae4458df80705587cd2efd59c09bf1
- md5: 28f5ab5cf95170dfacd05d2bb301e573
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.33.0-h7081f7f_1.conda
+ sha256: c0524a22064bc17f5c037da09ba54cc9e767741ef645178e499750c44bec2531
+ md5: af8e51382464d4cc2d0054977c40a732
depends:
- __osx >=11.0
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libcxx >=18
- - libgoogle-cloud 2.32.0 h8d8be31_0
+ - libgoogle-cloud 2.33.0 hdbe95d5_1
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 526895
- timestamp: 1733513644846
+ size: 526963
+ timestamp: 1735649222088
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: hb9b2b65_0
+ version: 2.33.0
+ build: hb9b2b65_1
+ build_number: 1
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.32.0-hb9b2b65_0.conda
- sha256: e120e7b6c9c9d25baa8ae903106babdd3c969523ae25278a615ed9de4bd0fc35
- md5: 925ab0ca33baca4fcfee585cecb94169
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.33.0-hb9b2b65_1.conda
+ sha256: 5eda1cbba68709b91b370b3792c9cfd7bec4ac4e2262f0887d12e1f000ae1191
+ md5: 45df2267ff4d8ce532e8d300ce0b0829
depends:
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libgcc >=13
- - libgoogle-cloud 2.32.0 h3888205_0
+ - libgoogle-cloud 2.33.0 hccf9d24_1
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 737964
- timestamp: 1733512457785
+ size: 737518
+ timestamp: 1735649773462
- kind: conda
name: libgrpc
version: 1.67.1
- build: h36c5df4_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda
- sha256: 1f6673d9d866048c9cf28fd56e6874ffc7e2c53c47d7071cb367d5fc2dde16a7
- md5: b946137e362e98a55a77fdf0b20a7739
+ build: h0a426d6_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-h0a426d6_1.conda
+ sha256: 630edf63981818ff590367cb95fddbed0f5a390464d0952c90ec81de899e84a6
+ md5: 8a3cba079d6ac985e7d73c76a678fbb4
depends:
- - c-ares >=1.32.3,<2.0a0
+ - __osx >=11.0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libcxx >=18
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
- - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 7131846
- timestamp: 1730236305327
+ size: 5311706
+ timestamp: 1735585137716
- kind: conda
name: libgrpc
version: 1.67.1
- build: hc2c308b_0
+ build: h25350d4_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
- sha256: 870550c1faf524e9a695262cd4c31441b18ad542f16893bd3c5dbc93106705f7
- md5: 4606a4647bfe857e3cfe21ca12ac3afb
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-h25350d4_1.conda
+ sha256: 014627485b3cf0ea18e04c0bab07be7fb98722a3aeeb58477acc7e1c3d2f911e
+ md5: 0c6497a760b99a926c7c12b74951a39c
depends:
- __glibc >=2.17,<3.0.a0
- - c-ares >=1.32.3,<2.0a0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 7362336
- timestamp: 1730236333879
+ size: 7792251
+ timestamp: 1735584856826
- kind: conda
name: libgrpc
version: 1.67.1
- build: hc70892a_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda
- sha256: d2393fcd3c3584e5d58da4122f48bcf297567d2f6f14b3d1fcbd34fdd5040694
- md5: 624e27571fde34f8acc2afec840ac435
+ build: hf7ccdd3_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-hf7ccdd3_1.conda
+ sha256: 3fa173dc1d7456aac2b26937daae86a08432a31640e3d6569c62edc661fc9bbe
+ md5: 8fb41a425bebaeb3d0fa568503612e64
depends:
- - __osx >=11.0
- - c-ares >=1.34.2,<2.0a0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libgcc >=13
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 4882208
- timestamp: 1730236299095
+ size: 7430006
+ timestamp: 1735585769731
- kind: conda
name: libiconv
version: '1.17'
@@ -5659,6 +5693,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16338
timestamp: 1734432576650
- kind: conda
@@ -5677,6 +5712,7 @@ packages:
- liblapacke 3.9.0 26_linuxaarch64_openblas
- libcblas 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16403
timestamp: 1734432585123
- kind: conda
@@ -5695,6 +5731,7 @@ packages:
- libcblas 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16624
timestamp: 1734433068120
- kind: conda
@@ -5891,132 +5928,133 @@ packages:
- kind: conda
name: libparquet
version: 18.1.0
- build: h081d1f1_6_cpu
- build_number: 6
+ build: h081d1f1_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_6_cpu.conda
- sha256: c691a59f1ebb6cedbf827f49f6cf414e08b0eec911f589133e6a8321e8ac701c
- md5: 68788df49ce7480187eb6387f15b2b67
+ url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_7_cpu.conda
+ sha256: 55945b761130f60abdecf1551907ecfd05cb4a5958cf74d855b30c005ecb3592
+ md5: b97013ef4e1dd2cf11594f06d5b5e83a
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
- libgcc >=13
- libstdcxx >=13
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 1204535
- timestamp: 1733810811118
+ size: 1205598
+ timestamp: 1735684849150
- kind: conda
name: libparquet
version: 18.1.0
- build: h636d7b7_6_cpu
- build_number: 6
+ build: h636d7b7_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_6_cpu.conda
- sha256: 88c1e810bede65c54f1ebc51c14400f9e8cf0fc1f88a8c0a99210e2f5dfed582
- md5: 9b333c3a38e55f6c1b8733222e22f528
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_7_cpu.conda
+ sha256: bf42e43542a90edd86ba5aa5fd4543671625f1bc35f62be32688f00e18bae990
+ md5: 93de9ba66a20db32a2646d313794b3a8
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
- libcxx >=18
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 873134
- timestamp: 1733809271282
+ size: 873251
+ timestamp: 1735684582558
- kind: conda
name: libparquet
version: 18.1.0
- build: hfc78867_6_cpu
- build_number: 6
+ build: hfc78867_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_6_cpu.conda
- sha256: 38aab34c422519c530d0e9a3e0ffd1624db1c1e163983c46ae341e831b2eb6b5
- md5: 1ab6d4a9a982920b9dc5f2c700777b27
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_7_cpu.conda
+ sha256: 6dff9bbe731dc2cefe96bd9c7981d2cbef2b564a3152840a29c9b6a493ea50d9
+ md5: 184bec7a9392ab6ba8134041e81971d6
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
- libgcc >=13
- libstdcxx >=13
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 1117592
- timestamp: 1733810440129
+ size: 1117825
+ timestamp: 1735685495511
- kind: conda
name: libpng
- version: 1.6.44
- build: hadc24fc_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
- sha256: e5b14f7a01c2db4362d8591f42f82f336ed48d5e4079e4d1f65d0c2a3637ea78
- md5: f4cc49d7aa68316213e4b12be35308d1
+ version: 1.6.45
+ build: h3783ad8_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.45-h3783ad8_0.conda
+ sha256: ddcc81c049b32fb5eb3ac1f9a6d3a589c08325c8ec6f89eb912208b19330d68c
+ md5: d554c806d065b1763cb9e1cb1d25741d
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
+ - __osx >=11.0
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 290661
- timestamp: 1726234747153
+ size: 263151
+ timestamp: 1736339184358
- kind: conda
name: libpng
- version: 1.6.44
- build: hc14010f_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
- sha256: 38f8759a3eb8060deabd4db41f0f023514d853e46ddcbd0ba21768fc4e563bb1
- md5: fb36e93f0ea6a6f5d2b99984f34b049e
+ version: 1.6.45
+ build: h943b412_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.45-h943b412_0.conda
+ sha256: b8f5b5ba9a14dedf7c97c01300de492b1b52b68eacbc3249a13fdbfa82349a2f
+ md5: 85cbdaacad93808395ac295b5667d25b
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 263385
- timestamp: 1726234714421
+ size: 289426
+ timestamp: 1736339058310
- kind: conda
name: libpng
- version: 1.6.44
- build: hc4a20ef_0
+ version: 1.6.45
+ build: hec79eb8_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
- sha256: 23b5ce15cf9c6017641a8396bab00ae807dd9f662718cfa7f61de114d0c97647
- md5: 5d25802b25fcc7419fa13e21affaeb3a
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.45-hec79eb8_0.conda
+ sha256: a06daa523a0d5775acb96e6e3f083adc2ab1383eb8f664513dbc663f439c9cca
+ md5: 9a8716c16b40acc7148263de1d0a403b
depends:
- libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 294907
- timestamp: 1726236639270
+ size: 299051
+ timestamp: 1736344007986
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h029595c_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
- sha256: d8c7b6f851bfc53494d9b8e54d473c4f11ab26483a6e64df6f7967563df166b1
- md5: 538dbe0ad9f248e2e109abb9b6809ea5
+ version: 5.28.3
+ build: h3bd63a1_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda
+ sha256: f58a16b13ad53346903c833e266f83c3d770a43a432659b98710aed85ca885e7
+ md5: bdbfea4cf45ae36652c6bbcc2e7ebe91
depends:
+ - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libstdcxx >=13
+ - libcxx >=18
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2802876
- timestamp: 1728564881988
+ size: 2271580
+ timestamp: 1735576361997
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h5b01275_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
- sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421
- md5: ab0bff36363bec94720275a681af8b83
+ version: 5.28.3
+ build: h44a3b7b_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda
+ sha256: ecb69f2b1668e784b41ba667493be846662d5ef702bef64fb2e013bb1364cdc4
+ md5: 68f807f7cc13951652bbe048253fd405
depends:
- - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libgcc >=13
@@ -6024,75 +6062,77 @@ packages:
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2945348
- timestamp: 1728565355702
+ size: 2788074
+ timestamp: 1735576315676
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h8f0b736_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
- sha256: f732a6fa918428e2d5ba61e78fe11bb44a002cc8f6bb74c94ee5b1297fefcfd8
- md5: d2cb5991f2fb8eb079c80084435e9ce6
+ version: 5.28.3
+ build: h6128344_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda
+ sha256: 51125ebb8b7152e4a4e69fd2398489c4ec8473195c27cde3cbdf1cb6d18c5493
+ md5: d8703f1ffe5a06356f06467f1d0b9464
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
+ - libgcc >=13
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2374965
- timestamp: 1728565334796
+ size: 2960815
+ timestamp: 1735577210663
- kind: conda
name: libre2-11
version: 2024.07.02
- build: h18dbdb1_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda
- sha256: 96d4fdac28d5af38c38f90c22cb0aa9a90affae13ca8ba24bd1eb60b789df8ff
- md5: f1800796b0efc4bbc5b001d845545111
+ build: h07bc746_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h07bc746_2.conda
+ sha256: 112a73ad483353751d4c5d63648c69a4d6fcebf5e1b698a860a3f5124fc3db96
+ md5: 6b1e3624d3488016ca4f1ca0c412efaa
depends:
+ - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libstdcxx >=13
+ - libcxx >=18
constrains:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 203516
- timestamp: 1728778974654
+ size: 167155
+ timestamp: 1735541067807
- kind: conda
name: libre2-11
version: 2024.07.02
- build: h2348fd5_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda
- sha256: 6facca42cfc85a05b33e484a8b0df7857cc092db34806946d022270098d8d20f
- md5: 5a7065309a66097738be6a06fd04b7ef
+ build: h18dbdb1_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_2.conda
+ sha256: 862c20de0120f802e618dcb25913d00c5b82f91f4be60b2d46a774e851adc2f6
+ md5: 9a7dbbaab49f76a6f36e5c9d98e323a7
depends:
- - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
+ - libgcc >=13
+ - libstdcxx >=13
constrains:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 165956
- timestamp: 1728779107218
+ size: 204305
+ timestamp: 1735540986919
- kind: conda
name: libre2-11
version: 2024.07.02
- build: hbbce691_1
- build_number: 1
+ build: hbbce691_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
- sha256: f8ad6a4f6d4fd54ebe3e5e712a01e663222fc57f49d16b6b8b10c30990dafb8f
- md5: 2124de47357b7a516c0a3efd8f88c143
+ url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_2.conda
+ sha256: 4420f8362c71251892ba1eeb957c5e445e4e1596c0c651c28d0d8b415fe120c7
+ md5: b2fede24428726dd867611664fb372e8
depends:
- __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
@@ -6103,8 +6143,8 @@ packages:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 211096
- timestamp: 1728778964655
+ size: 209793
+ timestamp: 1735541054068
- kind: conda
name: libsodium
version: 1.0.20
@@ -6536,50 +6576,53 @@ packages:
timestamp: 1729322566955
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: h31becfc_0
+ version: 1.5.0
+ build: h0886dbf_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
- sha256: 10dded60f274e29c573cfacf6e96f5d0fc374ee431250374a44cbd773916ab9d
- md5: 5fd7ab3e5f382c70607fbac6335e6e19
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda
+ sha256: b3d881a0ae08bb07fff7fa8ead506c8d2e0388733182fe4f216f3ec5d61ffcf0
+ md5: 95ef4a689b8cc1b7e18b53784d88f96b
depends:
- - libgcc-ng >=12
+ - libgcc >=13
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 363577
- timestamp: 1713201785160
+ size: 362623
+ timestamp: 1734779054659
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: h93a5062_0
+ version: 1.5.0
+ build: h2471fea_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
- sha256: 0d4bad713a512d79bfeb4d61821f447afab8b0792aca823f505ce6b195e9fde5
- md5: c0af0edfebe780b19940e94871f1a765
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda
+ sha256: f8bdb876b4bc8cb5df47c28af29188de8911c3fea4b799a33743500149de3f4a
+ md5: 569466afeb84f90d5bb88c11cc23d746
+ depends:
+ - __osx >=11.0
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 287750
- timestamp: 1713200194013
+ size: 290013
+ timestamp: 1734777593617
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: hd590300_0
+ version: 1.5.0
+ build: h851e524_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
- sha256: 49bc5f6b1e11cb2babf2a2a731d1a680a5e08a858280876a779dbda06c78c35f
- md5: b26e8aa824079e1be0294e7152ca4559
+ url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
+ sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf
+ md5: 63f790534398730f59e1b899c3644d4a
depends:
- - libgcc-ng >=12
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 438953
- timestamp: 1713199854503
+ size: 429973
+ timestamp: 1734777489810
- kind: conda
name: libxcb
version: 1.17.0
@@ -6773,20 +6816,20 @@ packages:
timestamp: 1727963148474
- kind: conda
name: llvm-openmp
- version: 19.1.5
+ version: 19.1.6
build: hdb05f8b_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.5-hdb05f8b_0.conda
- sha256: e7ba0d8b718925efdcf1309f5e776e3264cc172d3af8d4048b39627c50a1abc0
- md5: f2c2e187a1d2637d282e34dc92021a70
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.6-hdb05f8b_0.conda
+ sha256: a0f3e9139ab16f0a67b9d2bbabc15b78977168f4a5b5503fed4962dcb9a96102
+ md5: 34fdeffa0555a1a56f38839415cc066c
depends:
- __osx >=11.0
constrains:
- - openmp 19.1.5|19.1.5.*
+ - openmp 19.1.6|19.1.6.*
license: Apache-2.0 WITH LLVM-exception
license_family: APACHE
- size: 281120
- timestamp: 1733376089600
+ size: 281251
+ timestamp: 1734520462311
- kind: conda
name: lz4-c
version: 1.10.0
@@ -6931,76 +6974,76 @@ packages:
timestamp: 1733417051523
- kind: conda
name: max
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121705-release.conda
- sha256: 83b2265b29c1ee69ae9d9f639ab04899d0ef15b5abc9114e034e2cd382dcad31
- md5: bd7165d97ebb0458ddb1ce616c146c24
+ url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ sha256: 4ce81189e26dd06f188129580db0464f8ee9a081e195dad7082b2fa25fcf738e
+ md5: b46d770a5f45597ffc008bd224d8e91c
depends:
- - max-core ==25.1.0.dev2024121705 release
- - max-python >=25.1.0.dev2024121705,<26.0a0
- - mojo-jupyter ==25.1.0.dev2024121705 release
- - mblack ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
+ - max-python >=25.1.0.dev2025010817,<26.0a0
+ - mojo-jupyter ==25.1.0.dev2025010817 release
+ - mblack ==25.1.0.dev2025010817 release
license: LicenseRef-Modular-Proprietary
- size: 9921
- timestamp: 1734412638047
+ size: 9922
+ timestamp: 1736357145809
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: linux-64
- url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121705-release.conda
- sha256: 15459b8446d3feb608baae398cf2753a3704e02e07cf2a6c02e166068d8a9304
- md5: 4ca65aff37bd7e944cce1697c1fe203e
+ url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 5459a1f6c379b01231649212ca7f5062c49208b5c0b2b17047b55011872727c2
+ md5: 5bbb293b5216b098c424e7602823a460
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: x86_64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 245744992
- timestamp: 1734412638045
+ size: 247646542
+ timestamp: 1736357145807
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: linux-aarch64
- url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121705-release.conda
- sha256: e89be4d7691a354a3f6e5d71e25b49447ca9fd1048fe03355c3bc509a726234d
- md5: acc4b1208feaba5ad08c1b370192e127
+ url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 18715c3fc8071d5eeb9f1893512fe65967919e9900738423958a5cb4f09148da
+ md5: 4a7b6e800f8fdabf0498727c1bff57d3
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: aarch64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 249373255
- timestamp: 1734412698620
+ size: 251608988
+ timestamp: 1736357045232
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: osx-arm64
- url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121705-release.conda
- sha256: edd613b122c086c4d6237c7195a55ce09bff9922ab70e0f1ff7a9662d3de41fe
- md5: d68326deab9bb460f253bf6df7e903f6
+ url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 5a23bdc48d6fe2cfe439097b7a0fc0f1bd2b23be081478638ef4b945267d8015
+ md5: 1f54b615e5199ac268f123c89cfbabda
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: arm64
platform: osx
license: LicenseRef-Modular-Proprietary
- size: 214152137
- timestamp: 1734412888834
+ size: 209267317
+ timestamp: 1736357278969
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: linux-64
- url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: 11296250671f2a7c5951382f89f8e68a1702b0c8aeef200788e71d9e0e1d2955
- md5: f979494f9de5b3853834ffa1adf606c3
+ url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: 7bd73eb5b2c8f796bb2bf947e68b46f9fa0302c1999905321bd18c453be5d410
+ md5: 58d7a8476c07a36c0412fcd983faebfc
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -7023,18 +7066,18 @@ packages:
arch: x86_64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 122755617
- timestamp: 1734412638055
+ size: 124309678
+ timestamp: 1736357145817
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: linux-aarch64
- url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: e4a7ded05f33903034e52feefe65f458975942740cf07dcb30e2e9c1f0af53e6
- md5: 9a51b55d48b861487dbecd7c4abc7b68
+ url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: 1faa8dea2f87c25b20f467758a46589d2d464d8367fda4fa7fa61c73120b62f9
+ md5: be84f3b39ee757dd73d27ac241c37d5a
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -7057,18 +7100,18 @@ packages:
arch: aarch64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 126486411
- timestamp: 1734412698632
+ size: 128047180
+ timestamp: 1736357045243
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: osx-arm64
- url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: 328cee9730cf537d58e6d24b9aa111504271433d724fd47fdcee55b26df222b3
- md5: b1168de7b96e9e7b0fad7c675ecdb426
+ url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: c8b10ed04f57bc9a9e67d447ad97404ea06f3efbc903dced4723f3828c93ab2c
+ md5: aa8c692e6393c51283419173f7cb69a2
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -7091,17 +7134,17 @@ packages:
arch: arm64
platform: osx
license: LicenseRef-Modular-Proprietary
- size: 113391631
- timestamp: 1734412888837
+ size: 110680624
+ timestamp: 1736357278972
- kind: conda
name: mblack
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
- sha256: 44d0c3a0b1242823334d6bad895ad037849719f67bcfbc426c65363c567f80a5
- md5: 93c89483058dabd0282c378812328ba0
+ url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-release.conda
+ sha256: 8bc21a826d3edc5a8719deeeadcee5b3fc8fbd83313ce2c7ebc8c620075608e1
+ md5: ee664fe2390706d36d2d60b1f2bd69df
depends:
- python >=3.9,<3.13
- click >=8.0.0
@@ -7111,8 +7154,8 @@ packages:
- platformdirs >=2
- python
license: MIT
- size: 130801
- timestamp: 1734412638051
+ size: 130813
+ timestamp: 1736357145814
- kind: conda
name: mdurl
version: 0.1.2
@@ -7131,37 +7174,37 @@ packages:
timestamp: 1733255681319
- kind: conda
name: mistune
- version: 3.0.2
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 3.1.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.0.2-pyhd8ed1ab_1.conda
- sha256: 0a9faaf1692b74f321cedbd37a44f108a1ec3f5d9638bc5bbf860cb3b6ff6db4
- md5: c46df05cae629e55426773ac1f85d68f
+ url: https://conda.anaconda.org/conda-forge/noarch/mistune-3.1.0-pyhd8ed1ab_0.conda
+ sha256: d932404dc610464130db5f36f59cd29947a687d9708daaad369d0020707de41a
+ md5: d10024c163a52eeecbb166fdeaef8b12
depends:
- python >=3.9
+ - typing_extensions
license: BSD-3-Clause
license_family: BSD
- size: 65901
- timestamp: 1733258822603
+ size: 68803
+ timestamp: 1735686983426
- kind: conda
name: mojo-jupyter
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121705-release.conda
- sha256: 8ef8447f576590d381ccaa82e6c207c530e9355b07ab3174f3df9c9f064d42de
- md5: 4c31e34ff54c71cd9d584d3ab8f1c315
+ url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-release.conda
+ sha256: a92d02809c43a9a92abc363e69396738f6c9802c12d8827cc008d316cea4e107
+ md5: 0533034ac307140f160cf43c5f36b2ed
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python >=3.9,<3.13
- jupyter_client >=8.6.2,<8.7
- python
license: LicenseRef-Modular-Proprietary
- size: 22937
- timestamp: 1734412638052
+ size: 22926
+ timestamp: 1736357145815
- kind: conda
name: multidict
version: 6.1.0
@@ -7289,13 +7332,13 @@ packages:
timestamp: 1733230986902
- kind: conda
name: nbclient
- version: 0.10.1
+ version: 0.10.2
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.1-pyhd8ed1ab_0.conda
- sha256: 564e22c4048f2f00c7ee79417dea364f95cf069a1f2565dc26d5ece1fc3fd779
- md5: 3ee79082e59a28e1db11e2a9c3bcd85a
+ url: https://conda.anaconda.org/conda-forge/noarch/nbclient-0.10.2-pyhd8ed1ab_0.conda
+ sha256: a20cff739d66c2f89f413e4ba4c6f6b59c50d5c30b5f0d840c13e8c9c2df9135
+ md5: 6bb0d77277061742744176ab555b723c
depends:
- jupyter_client >=6.1.12
- jupyter_core >=4.12,!=5.0.*
@@ -7304,43 +7347,43 @@ packages:
- traitlets >=5.4
license: BSD-3-Clause
license_family: BSD
- size: 27878
- timestamp: 1732882434219
+ size: 28045
+ timestamp: 1734628936013
- kind: conda
name: nbconvert-core
- version: 7.16.4
- build: pyhff2d567_2
- build_number: 2
+ version: 7.16.5
+ build: pyhd8ed1ab_1
+ build_number: 1
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.4-pyhff2d567_2.conda
- sha256: 03a1303ce135a8214b450e751d93c9048f55edb37f3f9f06c5e9d78ba3ef2a89
- md5: 0457fdf55c88e52e0e7b63691eafcc48
+ url: https://conda.anaconda.org/conda-forge/noarch/nbconvert-core-7.16.5-pyhd8ed1ab_1.conda
+ sha256: 9eed80365c012ab3bbb0f0ed1446af496d6810063dfa07dde33ae4a6d8a392ef
+ md5: dd50a122c5b9782b1e9b2695473bfd95
depends:
- beautifulsoup4
- - bleach
+ - bleach-with-css !=5.0.0
- defusedxml
- entrypoints >=0.2.2
+ - importlib-metadata >=3.6
- jinja2 >=3.0
- jupyter_core >=4.7
- jupyterlab_pygments
- markupsafe >=2.0
- mistune >=2.0.3,<4
- nbclient >=0.5.0
- - nbformat >=5.1
+ - nbformat >=5.7
- packaging
- pandocfilters >=1.4.1
- pygments >=2.4.1
- - python >=3.8
- - tinycss2
- - traitlets >=5.0
+ - python >=3.9
+ - traitlets >=5.1
constrains:
- - nbconvert =7.16.4=*_2
+ - nbconvert =7.16.5=*_1
- pandoc >=2.9.2,<4.0.0
license: BSD-3-Clause
license_family: BSD
- size: 188505
- timestamp: 1733405603619
+ size: 189127
+ timestamp: 1736258775758
- kind: conda
name: nbformat
version: 5.10.4
@@ -7562,49 +7605,52 @@ packages:
- kind: conda
name: openssl
version: 3.4.0
- build: h39f12f2_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
- sha256: bd1d58ced46e75efa3b842c61642fd12272c69e9fe4d7261078bc082153a1d53
- md5: df307bbc703324722df0293c9ca2e418
+ build: h7b32b05_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
+ sha256: f62f6bca4a33ca5109b6d571b052a394d836956d21b25b7ffd03376abf7a481f
+ md5: 4ce6875f75469b2757a65e10a5d05e31
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- ca-certificates
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 2935176
- timestamp: 1731377561525
+ size: 2937158
+ timestamp: 1736086387286
- kind: conda
name: openssl
version: 3.4.0
- build: h86ecc28_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
- sha256: 64dbbdd6384fa56338124783197f7ad9048c989a02264bcd2e07355e3570f113
- md5: b2f202b5bddafac824eb610b65dde98f
+ build: h81ee809_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
+ sha256: 97772762abc70b3a537683ca9fc3ff3d6099eb64e4aba3b9c99e6fce48422d21
+ md5: 22f971393637480bda8c679f374d8861
depends:
+ - __osx >=11.0
- ca-certificates
- - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 3474825
- timestamp: 1731379200886
+ size: 2936415
+ timestamp: 1736086108693
- kind: conda
name: openssl
version: 3.4.0
- build: hb9d3cd8_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
- sha256: 814b9dff1847b132c676ee6cc1a8cb2d427320779b93e1b6d76552275c128705
- md5: 23cc74f77eb99315c0360ec3533147a9
+ build: hd08dc88_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-hd08dc88_1.conda
+ sha256: 60d34454b861501d7355f25a7b39fdb5de8d56fca49b5bcbe8b8142b7d82dce4
+ md5: e21c4767e783a58c373fdb99de6211bf
depends:
- - __glibc >=2.17,<3.0.a0
- ca-certificates
- libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 2947466
- timestamp: 1731377666602
+ size: 3469279
+ timestamp: 1736088141230
- kind: conda
name: opentelemetry-api
version: 1.29.0
@@ -7660,6 +7706,7 @@ packages:
- python >=3.9
- requests >=2.7,<3.dev0
license: Apache-2.0
+ license_family: APACHE
size: 17147
timestamp: 1734345675510
- kind: conda
@@ -7735,16 +7782,16 @@ packages:
- kind: conda
name: orc
version: 2.0.3
- build: h3c55218_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h3c55218_1.conda
- sha256: 154b26bc4d586de33765a155c9b79ebd7f5bb36c2bbf4b8854e1631bca8d21af
- md5: 0a51a3cf028b845c46ec0d1ea2d18629
+ build: h0ff2369_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h0ff2369_2.conda
+ sha256: cca330695f3bdb8c0e46350c29cd4af3345865544e36f1d7c9ba9190ad22f5f4
+ md5: 24b1897c0d24afbb70704ba998793b78
depends:
- - libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
- - libstdcxx >=13
+ - __osx >=11.0
+ - libcxx >=18
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
- snappy >=1.2.1,<1.3.0a0
@@ -7752,21 +7799,21 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 1165179
- timestamp: 1733509923825
+ size: 438520
+ timestamp: 1735630624140
- kind: conda
name: orc
version: 2.0.3
- build: h97ab989_1
- build_number: 1
+ build: h12ee42a_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h97ab989_1.conda
- sha256: 9de7e2746fde57c9b7f08ee87142014f6bb9b2d3a506839ea3e98baa99711576
- md5: 2f46eae652623114e112df13fae311cf
+ url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h12ee42a_2.conda
+ sha256: dff5cc8023905782c86b3459055f26d4b97890e403b0698477c9fed15d8669cc
+ md5: 4f6f9f3f80354ad185e276c120eac3f0
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -7775,21 +7822,21 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 1189462
- timestamp: 1733509801323
+ size: 1188881
+ timestamp: 1735630209320
- kind: conda
name: orc
version: 2.0.3
- build: hbcee414_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-hbcee414_1.conda
- sha256: e5e72438a3cd967ebc774070e8c49500d2d6d4175f349400b327fee75d3bfc05
- md5: e808cf7819eaa1735c8790d7f9f482c7
+ build: hdd485aa_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-hdd485aa_2.conda
+ sha256: b6c67542352a86cdf143c3066d5cda855b74454a156eedcd8958b494c6a32a83
+ md5: d19f01b42e5d6a2908b65df435aff42f
depends:
- - __osx >=11.0
- - libcxx >=18
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libgcc >=13
+ - libprotobuf >=5.28.3,<5.28.4.0a0
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
- snappy >=1.2.1,<1.3.0a0
@@ -7797,24 +7844,25 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 437391
- timestamp: 1733510118673
+ size: 1167714
+ timestamp: 1735630248837
- kind: conda
name: overrides
version: 7.7.0
- build: pyhd8ed1ab_0
+ build: pyhd8ed1ab_1
+ build_number: 1
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_0.conda
- sha256: 5e238e5e646414d517a13f6786c7227206ace58271e3ef63f6adca4d6a4c2839
- md5: 24fba5a9d161ad8103d4e84c0e1a3ed4
+ url: https://conda.anaconda.org/conda-forge/noarch/overrides-7.7.0-pyhd8ed1ab_1.conda
+ sha256: 1840bd90d25d4930d60f57b4f38d4e0ae3f5b8db2819638709c36098c6ba770c
+ md5: e51f1e4089cad105b6cac64bd8166587
depends:
- - python >=3.6
+ - python >=3.9
- typing_utils
license: Apache-2.0
license_family: APACHE
- size: 30232
- timestamp: 1706394723472
+ size: 30139
+ timestamp: 1734587755455
- kind: conda
name: packaging
version: '24.2'
@@ -7980,96 +8028,96 @@ packages:
timestamp: 1733327448200
- kind: conda
name: pillow
- version: 11.0.0
- build: py312h5ab5af3_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py312h5ab5af3_0.conda
- sha256: 3cf43a5eb1f67f3a5f3ef1ec3a685f8767019cce24dbe46c4b76fee8a54fbacf
- md5: 1c4bdfe659cfdedd372685ce2494e97b
+ version: 11.1.0
+ build: py312h50aef2c_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda
+ sha256: b29b7c915053e06a7a5b4118760202c572c9c35d23bd6ce8e73270b6a50e50ee
+ md5: 94d6ba8cd468668a9fb04193b0f4b36e
depends:
+ - __osx >=11.0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
- - libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41756471
- timestamp: 1729068045876
+ size: 42852329
+ timestamp: 1735930118976
- kind: conda
name: pillow
- version: 11.0.0
- build: py312h7b63e92_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py312h7b63e92_0.conda
- sha256: 13a464bea02c0df0199c20ef6bad24a6bc336aaf55bf8d6a133d0fe664463224
- md5: 385f46a4df6f97892503a841121a9acf
+ version: 11.1.0
+ build: py312h719f0cf_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.1.0-py312h719f0cf_0.conda
+ sha256: 7559556ffc44bda777f85c2e5acd6b5756fa5822c0271b329b7b9a3c6bb20349
+ md5: 77e0ec0a6fc847d317f204aa15b59f6b
depends:
- - __glibc >=2.17,<3.0.a0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
- libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41948418
- timestamp: 1729065846594
+ size: 41362848
+ timestamp: 1735932311857
- kind: conda
name: pillow
- version: 11.0.0
- build: py312haf37ca6_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py312haf37ca6_0.conda
- sha256: 727b4c3faecdb6f6809cf20c5f32d2df4af34e0d5b9146b7588383bcba7990e8
- md5: dc9b51fbd2b6f7fea9b5123458864dbb
+ version: 11.1.0
+ build: py312h80c1187_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda
+ sha256: 5c347962202b55ae4d8a463e0555c5c6ca33396266a08284bf1384399894e541
+ md5: d3894405f05b2c0f351d5de3ae26fa9c
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
+ - libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
- - python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41737424
- timestamp: 1729065920347
+ size: 42749785
+ timestamp: 1735929845390
- kind: conda
name: pip
version: 24.3.1
- build: pyh8b19718_1
- build_number: 1
+ build: pyh8b19718_2
+ build_number: 2
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_1.conda
- sha256: 376f64a6e0882144bf9f263b47c48bab0af34d6f03a52c3a5758c5225af89d93
- md5: 6727da77383b560d43d9d48338629ff4
+ url: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh8b19718_2.conda
+ sha256: da8c8888de10c1e4234ebcaa1550ac2b4b5408ac20f093fe641e4bc8c9c9f3eb
+ md5: 04e691b9fadd93a8a9fad87a81d4fd8f
depends:
- python >=3.9,<3.13.0a0
- setuptools
- wheel
license: MIT
license_family: MIT
- size: 1243486
- timestamp: 1734379069310
+ size: 1245116
+ timestamp: 1734466348103
- kind: conda
name: pkgutil-resolve-name
version: 1.3.10
@@ -8188,12 +8236,12 @@ packages:
timestamp: 1733392308901
- kind: conda
name: protobuf
- version: 5.28.2
+ version: 5.28.3
build: py312h2ec8cdc_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda
- sha256: 4884f8161602f0148ebbc1af8d3176cec80b96c83243f68aafd651986b573817
- md5: 586bead4a9dfa46faf88deb7d3a742bb
+ url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.3-py312h2ec8cdc_0.conda
+ sha256: acb2e0ee948e3941f8ed191cb77f654e06538638aed8ccd71cbc78a15242ebbb
+ md5: 9d7e427d159c1b2d516cc047ff177c48
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -8201,19 +8249,19 @@ packages:
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 464548
- timestamp: 1728669645013
+ size: 464794
+ timestamp: 1731366525051
- kind: conda
name: protobuf
- version: 5.28.2
+ version: 5.28.3
build: py312h6f74592_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda
- sha256: f874ffd38b9ae2b810e9d2e43fd8d3b778cdeaf7dea4a3e6ee4adeafe2d936cf
- md5: 4b9b22bd7c53d938b207f9d0f79db183
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.3-py312h6f74592_0.conda
+ sha256: 9c575d5035c7ecb114ab9e17906c0a54087d9598dd6a2104c02fe33f0a29dd46
+ md5: 06513608c94fb1c1b17136ace77063a9
depends:
- libgcc >=13
- libstdcxx >=13
@@ -8221,82 +8269,82 @@ packages:
- python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 472764
- timestamp: 1728669483611
+ size: 473242
+ timestamp: 1731366577844
- kind: conda
name: protobuf
- version: 5.28.2
- build: py312hf02c72a_0
+ version: 5.28.3
+ build: py312hd8f9ff3_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda
- sha256: dbcec117510ced5c12097e3eb06ebbf4512dc255733a9ace33c4249fb7e6a364
- md5: 6fda46c82abd0a080ca33de7d16ca877
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.3-py312hd8f9ff3_0.conda
+ sha256: 9d572a97419bdace14d7c7cc8cc8c4bf2dcb22b56965dac87a27fbdb5061b926
+ md5: 5afbe52a59f04dd1fe566d0d17590d7e
depends:
- __osx >=11.0
- - libcxx >=17
+ - libcxx >=18
- python >=3.12,<3.13.0a0
- python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 447369
- timestamp: 1728669902591
+ size: 448803
+ timestamp: 1731367010746
- kind: conda
name: psutil
- version: 6.1.0
- build: py312h0bf5046_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.1.0-py312h0bf5046_0.conda
- sha256: 143a40f9c72d803744ebd6a60801c5cd17af152b293f8d59e90111ce62b53569
- md5: 61566f5c6e1d29d1d12882eb93e28532
+ version: 6.1.1
+ build: py312h66e93f0_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.1.1-py312h66e93f0_0.conda
+ sha256: 55d4fd0b294aeada0d7810fcc25503b59ec34c4390630789bd61c085b9ce649f
+ md5: add2c79595fa8a9b6d653d7e4e2cf05f
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- python >=3.12,<3.13.0a0
- - python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
license: BSD-3-Clause
license_family: BSD
- size: 493431
- timestamp: 1729847279283
+ size: 487053
+ timestamp: 1735327468212
- kind: conda
name: psutil
- version: 6.1.0
- build: py312h66e93f0_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/psutil-6.1.0-py312h66e93f0_0.conda
- sha256: 0f309b435174e037d5cfe5ed26c1c5ad8152c68cfe61af17709ec31ec3d9f096
- md5: 0524eb91d3d78d76d671c6e3cd7cee82
+ version: 6.1.1
+ build: py312hb2c0f52_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-6.1.1-py312hb2c0f52_0.conda
+ sha256: b2db43b7a2d01b998dadd91dd19c2de1f3778b5f8b7bf90020e35acf577cf79e
+ md5: 3bd3fe4f02e4ff211d9d35b6a3aed824
depends:
- - __glibc >=2.17,<3.0.a0
- libgcc >=13
- python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
license: BSD-3-Clause
license_family: BSD
- size: 488462
- timestamp: 1729847159916
+ size: 487185
+ timestamp: 1735327601306
- kind: conda
name: psutil
- version: 6.1.0
- build: py312hb2c0f52_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/psutil-6.1.0-py312hb2c0f52_0.conda
- sha256: f6ac1a743440e4228ad00fd6ff1a4ed99736d215ca52318db73217d07cd7180b
- md5: 98849e1e8ea2bcd57667359c0a36dd3b
+ version: 6.1.1
+ build: py312hea69d52_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/psutil-6.1.1-py312hea69d52_0.conda
+ sha256: 90332053dad4056fe752217fa311ffa61cb37dc693b1721e37580e71a2a6fe04
+ md5: 90724dac996a4e9d629a88a4b1ffe694
depends:
- - libgcc >=13
+ - __osx >=11.0
- python >=3.12,<3.13.0a0
- python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
license: BSD-3-Clause
license_family: BSD
- size: 488976
- timestamp: 1729847306692
+ size: 495397
+ timestamp: 1735327574477
- kind: conda
name: pthread-stubs
version: '0.4'
@@ -8522,31 +8570,31 @@ packages:
timestamp: 1733195786147
- kind: conda
name: pydantic
- version: 2.10.3
+ version: 2.10.4
build: pyh3cfb1c2_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda
- sha256: cac9eebd3d5f8d8a497a9025d756257ddc75b8b3393e6737cb45077bd744d4f8
- md5: 194ef7f91286978521350f171b117f01
+ url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ sha256: e68400714532a33f34b44ddaee3e27e8dd6c83c3f31c7892ec10b84d13aa8b59
+ md5: 93bccf4d7a58c9140d59491de21e044b
depends:
- annotated-types >=0.6.0
- - pydantic-core 2.27.1
+ - pydantic-core 2.27.2
- python >=3.9
- typing-extensions >=4.6.1
- typing_extensions >=4.12.2
license: MIT
license_family: MIT
- size: 317037
- timestamp: 1733316963547
+ size: 296557
+ timestamp: 1734609427697
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312h12e396e_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.1-py312h12e396e_0.conda
- sha256: c89741f4eff395f8de70975f42e1f20591f0e0870929d440af35b13399976b09
- md5: 114030cb28527db2c385f07038e914c8
+ url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.2-py312h12e396e_0.conda
+ sha256: 81602a4592ad2ac1a1cb57372fd25214e63b1c477d5818b0c21cde0f1f85c001
+ md5: bae01b2563030c085f5158c518b84e86
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -8557,16 +8605,16 @@ packages:
- __glibc >=2.17
license: MIT
license_family: MIT
- size: 1635156
- timestamp: 1732254225040
+ size: 1641402
+ timestamp: 1734571789895
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312h8cbf658_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.1-py312h8cbf658_0.conda
- sha256: 1f59bc1914f77faed3c95217e4d093310771baee4e93a15c0479359559e3fa19
- md5: d980860b8bf193f53d30a19c5d2bf070
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.2-py312h8cbf658_0.conda
+ sha256: 623e0f3846f15d035ce7ab7ae445fc8d9e547b6684ab55858b6f44510d24b097
+ md5: 9677f6ab4bf27ba3c2aee70d08c7b27c
depends:
- libgcc >=13
- python >=3.12,<3.13.0a0
@@ -8577,16 +8625,16 @@ packages:
- __glibc >=2.17
license: MIT
license_family: MIT
- size: 1503747
- timestamp: 1732254331303
+ size: 1505076
+ timestamp: 1734571966615
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312hcd83bfe_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.1-py312hcd83bfe_0.conda
- sha256: 5bba8de2bbbbdb39390abb1e2aff310e8cfd49646ae5a0e0ea4d6582bd1d52ba
- md5: 3847a96eaf24a877b6091150ff9c4955
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.2-py312hcd83bfe_0.conda
+ sha256: cfa7201f890d5d08ce29ff70e65a96787d5793a1718776733666b44bbd4a1205
+ md5: dcb307e02f17d38c6e1cbfbf8c602852
depends:
- __osx >=11.0
- python >=3.12,<3.13.0a0
@@ -8597,41 +8645,40 @@ packages:
- __osx >=11.0
license: MIT
license_family: MIT
- size: 1449057
- timestamp: 1732254359451
+ size: 1593461
+ timestamp: 1734571986644
- kind: conda
name: pydantic-settings
- version: 2.7.0
+ version: 2.7.1
build: pyh3cfb1c2_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda
- sha256: dd1ac7c8b6a189c8aa18f6c7df019d8f6df495300a259e3fbebdb542fc955c3b
- md5: d9f19a7c4199249fa229891b573b6f9b
+ url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ sha256: 082fb1ec29917d2c9ed6a862cb8eb9beb88c208ea62c9fef1aeb5f4f3e0e0b06
+ md5: d71d76b62bed332b037d7adfc0f3989a
depends:
- pydantic >=2.7.0
- python >=3.9
- python-dotenv >=0.21.0
license: MIT
license_family: MIT
- size: 31426
- timestamp: 1734127929720
+ size: 31822
+ timestamp: 1735650532951
- kind: conda
name: pygments
- version: 2.18.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2.19.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda
- sha256: 0d6133545f268b2b89c2617c196fc791f365b538d4057ecd636d658c3b1e885d
- md5: b38dc0206e2a530e5c2cf11dc086b31a
+ url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda
+ sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b
+ md5: 232fb4577b6687b2d503ef8e254270c9
depends:
- python >=3.9
license: BSD-2-Clause
license_family: BSD
- size: 876700
- timestamp: 1733221731178
+ size: 888600
+ timestamp: 1736243563082
- kind: conda
name: pyinstrument
version: 5.0.0
@@ -9161,48 +9208,48 @@ packages:
- kind: conda
name: re2
version: 2024.07.02
- build: h2d3a13d_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda
- sha256: 55e7be480bfb979fa8595a16d7f2adea3a5ac9a77b2e97cd0f7ac40e989edb6c
- md5: 83f4e47229834c895a92c18383e1cd9d
+ build: h6589ca4_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-h6589ca4_2.conda
+ sha256: 4d3799c05f8f662922a0acd129d119774760a3281b883603678e128d1cb307fb
+ md5: 7a8b4ad8c58a3408ca89d78788c78178
depends:
- - libre2-11 2024.07.02 h18dbdb1_1
+ - libre2-11 2024.07.02 h07bc746_2
license: BSD-3-Clause
license_family: BSD
- size: 26747
- timestamp: 1728778986331
+ size: 26861
+ timestamp: 1735541088455
- kind: conda
name: re2
version: 2024.07.02
- build: h77b4e00_1
- build_number: 1
+ build: h9925aae_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
- sha256: c1721cb80f7201652fc9801f49c214c88aee835d957f2376e301bd40a8415742
- md5: 01093ff37c1b5e6bf9f17c0116747d11
+ url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h9925aae_2.conda
+ sha256: d213c44958d49ce7e0d4d5b81afec23640cce5016685dbb2d23571a99caa4474
+ md5: e84ddf12bde691e8ec894b00ea829ddf
depends:
- - libre2-11 2024.07.02 hbbce691_1
+ - libre2-11 2024.07.02 hbbce691_2
license: BSD-3-Clause
license_family: BSD
- size: 26665
- timestamp: 1728778975855
+ size: 26786
+ timestamp: 1735541074034
- kind: conda
name: re2
version: 2024.07.02
- build: hcd0e937_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda
- sha256: eebddde6cb10b146507810b701ef6df122d5309cd5151a39d0828aa44dc53725
- md5: 19e29f2ccc9168eb0a39dc40c04c0e21
+ build: haa97905_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-haa97905_2.conda
+ sha256: 040848655df9119bae5a549fb5c8956a5537120859416c1d9d0712b7bac9f12e
+ md5: 1bf0135339b4a7419a198a795d2d4be0
depends:
- - libre2-11 2024.07.02 h2348fd5_1
+ - libre2-11 2024.07.02 h18dbdb1_2
license: BSD-3-Clause
license_family: BSD
- size: 26860
- timestamp: 1728779123653
+ size: 26830
+ timestamp: 1735540999398
- kind: conda
name: readline
version: '8.2'
@@ -9500,12 +9547,12 @@ packages:
timestamp: 1734415467047
- kind: conda
name: safetensors
- version: 0.4.5
+ version: 0.5.1
build: py312h12e396e_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda
- sha256: e44515f875c10efb5e041efcb250dfd18f2cb66ec3f268237549ead6284c6922
- md5: 3b87a00bcaab069172d6cef8124b7142
+ url: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.5.1-py312h12e396e_0.conda
+ sha256: 61a4a49bc98a7b529c7c9e2af9be1dc3350b8ea1c78f985e8a051543e8845ffa
+ md5: 19b54f64e926aca46d0cc2ff0ecf4f34
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -9515,16 +9562,16 @@ packages:
- __glibc >=2.17
license: Apache-2.0
license_family: APACHE
- size: 402547
- timestamp: 1725632183154
+ size: 424642
+ timestamp: 1736278244485
- kind: conda
name: safetensors
- version: 0.4.5
+ version: 0.5.1
build: py312h8cbf658_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda
- sha256: e83ebeaba4a07bbe4a1d6c7eef0b4f7ae19901ef365bca043808d16e4c8faad8
- md5: 82ef253c37308b082a478fb92924cad6
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.5.1-py312h8cbf658_0.conda
+ sha256: ee66da0efb1d6897ad74156cb115277dfb8ca7f6c8bdfb17bd6a6fb205495622
+ md5: f91072f99af78ed0c1941ba5d6f30cf8
depends:
- libgcc >=13
- python >=3.12,<3.13.0a0
@@ -9534,16 +9581,16 @@ packages:
- __glibc >=2.17
license: Apache-2.0
license_family: APACHE
- size: 400284
- timestamp: 1725632278147
+ size: 409549
+ timestamp: 1736278357702
- kind: conda
name: safetensors
- version: 0.4.5
- build: py312he431725_0
+ version: 0.5.1
+ build: py312hcd83bfe_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py312he431725_0.conda
- sha256: 93a085d0d64237db7f4ff395c446f268c575dc2c324d8e3e5c5d7d836896295e
- md5: ccb978cf1e3151c25a44c4ae65c1f20e
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.5.1-py312hcd83bfe_0.conda
+ sha256: e61cbac0c1b38731543a600e2e40c4cc686e5e565f6c9809d5dcc467e2e8f220
+ md5: d12e134445366752e52acec1a86c845f
depends:
- __osx >=11.0
- python >=3.12,<3.13.0a0
@@ -9553,8 +9600,8 @@ packages:
- __osx >=11.0
license: Apache-2.0
license_family: APACHE
- size: 353606
- timestamp: 1725632294079
+ size: 378562
+ timestamp: 1736278448037
- kind: conda
name: send2trash
version: 1.8.3
@@ -9720,22 +9767,21 @@ packages:
timestamp: 1693929424267
- kind: conda
name: sse-starlette
- version: 2.1.3
+ version: 2.2.1
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
- sha256: 6d671a66333410ec7e5e7858a252565a9001366726d1fe3c3a506d7156169085
- md5: 3918255c942c242ed5599e10329e8d0e
+ url: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
+ sha256: 3c6a476e7afb702d841e23c61a0c4cc491929d2e39376d329e67e94c40a236cc
+ md5: c1ef6bc13dd2caa4b406fb3cb06c2791
depends:
- - anyio
- - python >=3.8
- - starlette
- - uvicorn
+ - anyio >=4.7.0
+ - python >=3.9
+ - starlette >=0.41.3
license: BSD-3-Clause
license_family: BSD
- size: 14712
- timestamp: 1722520112550
+ size: 15324
+ timestamp: 1735126414893
- kind: conda
name: stack_data
version: 0.6.3
@@ -10005,18 +10051,19 @@ packages:
- kind: conda
name: tqdm
version: 4.67.1
- build: pyhd8ed1ab_0
+ build: pyhd8ed1ab_1
+ build_number: 1
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
- sha256: 5673b7104350a6998cb86cccf1d0058217d86950e8d6c927d8530606028edb1d
- md5: 4085c9db273a148e149c03627350e22c
+ url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
+ sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40
+ md5: 9efbfdc37242619130ea42b1cc4ed861
depends:
- colorama
- - python >=3.7
+ - python >=3.9
license: MPL-2.0 or MIT
- size: 89484
- timestamp: 1732497312317
+ size: 89498
+ timestamp: 1735661472632
- kind: conda
name: traitlets
version: 5.14.3
@@ -10035,14 +10082,13 @@ packages:
timestamp: 1733367480074
- kind: conda
name: transformers
- version: 4.47.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 4.47.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda
- sha256: d31821081219a0ede5c1f356b65a61ce98ac11e2df78b0eaa684c17c73389fbf
- md5: 6d2ec1ddee8057d2d724a0ab0bb578a0
+ url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.conda
+ sha256: df8238c3cccbb6bb1d5657e6a75977ac0b832ab61155d5e3d8560c1c4f52abeb
+ md5: 931d66db156680c42c62812d6533cbf7
depends:
- datasets !=2.5.0
- filelock
@@ -10058,8 +10104,8 @@ packages:
- tqdm >=4.27
license: Apache-2.0
license_family: APACHE
- size: 3726957
- timestamp: 1733948063517
+ size: 3680276
+ timestamp: 1734499046193
- kind: conda
name: typer
version: 0.15.1
@@ -10206,14 +10252,13 @@ packages:
timestamp: 1733323714454
- kind: conda
name: urllib3
- version: 2.2.3
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2.3.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
- sha256: 416e30a1c3262275f01a3e22e783118d9e9d2872a739a9ed860d06fa9c7593d5
- md5: 4a2d8ef7c37b8808c5b9b750501fffce
+ url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
+ sha256: 114919ffa80c328127dab9c8e7a38f9d563c617691fb81fccb11c1e86763727e
+ md5: 32674f8dbfb7b26410ed580dd3c10a29
depends:
- brotli-python >=1.0.9
- h2 >=4,<5
@@ -10222,8 +10267,8 @@ packages:
- zstandard >=0.18.0
license: MIT
license_family: MIT
- size: 98077
- timestamp: 1733206968917
+ size: 100102
+ timestamp: 1734859520452
- kind: conda
name: uvicorn
version: 0.34.0
diff --git a/examples/operators/magic.lock b/examples/operators/magic.lock
index 49ec773f50..9513564aaa 100644
--- a/examples/operators/magic.lock
+++ b/examples/operators/magic.lock
@@ -9,10 +9,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.10-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.11-py312h178313f_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.3.0-pyh71513ae_0.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
@@ -39,8 +39,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.12.14-hbcca054_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/noarch/deprecated-1.2.15-pyhd8ed1ab_1.conda
@@ -54,7 +54,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py312h66e93f0_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -64,11 +64,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/httptools-0.6.4-py312h66e93f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
@@ -76,11 +76,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-h44a453e_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h3ee7192_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-hd595efa_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h08228c5_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-26_linux64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda
@@ -89,7 +89,7 @@ environments:
- 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.11.1-h332b0f4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_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/libedit-3.1.20240808-pl5321h7949ede_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
@@ -99,9 +99,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.32.0-h804f50b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.32.0-h0121fbd_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.33.0-h2b5623c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.33.0-h0121fbd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-h25350d4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-26_linux64_openblas.conda
@@ -109,10 +109,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.45-h943b412_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.2-hee588c1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda
@@ -123,7 +123,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.9.0-hb9d3cd8_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.49.2-hb9d3cd8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.5-h0d44e9d_1.conda
@@ -131,19 +131,19 @@ 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -151,23 +151,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h97ab989_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h12ee42a_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py312h7b63e92_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.1-py312h66e93f0_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.3-py312h2ec8cdc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.1.0-py312h7900ff3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.1.0-py312h01725c0_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.2-py312h12e396e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.8-h9e4cc4f_1_cpython.conda
@@ -181,33 +181,33 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h66e93f0_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py312hbf22597_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h9925aae_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/regex-2024.11.6-py312h66e93f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.10-hb5b8611_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.5.1-py312h12e396e_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tokenizers-0.21.0-py312h8360d73_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.21.0-py312h66e93f0_1.conda
@@ -226,10 +226,10 @@ environments:
linux-aarch64:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.10-py312hcc812fe_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.11-py312hcc812fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.3.0-pyh71513ae_0.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
@@ -256,8 +256,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2024.12.14-hcefe29a_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.17.1-py312hac81daf_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/noarch/deprecated-1.2.15-pyhd8ed1ab_1.conda
@@ -271,7 +271,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hf0a5ef3_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.5.0-py312hb2c0f52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -281,12 +281,12 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/httptools-0.6.4-py312hb2c0f52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2
@@ -294,11 +294,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.16-h922389a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-h1b535d6_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h3ffb4b1_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-hb7781cd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h1e9d426_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-26_linuxaarch64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda
@@ -307,7 +307,7 @@ environments:
- 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.11.1-h6702fde_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.23-h5e3c512_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/libedit-3.1.20240808-pl5321h976ea20_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.6.4-h5ad3122_0.conda
@@ -317,9 +317,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.32.0-h3888205_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.32.0-hb9b2b65_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.33.0-hccf9d24_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.33.0-hb9b2b65_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-hf7ccdd3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-26_linuxaarch64_openblas.conda
@@ -327,10 +327,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.28-pthreads_h9d3fd7e_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.45-hec79eb8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.47.2-h5eb1b54_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.1-ha41c0db_0.conda
@@ -341,7 +341,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.9.0-h86ecc28_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.49.2-h86ecc28_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.13.5-h2e0c361_1.conda
@@ -349,19 +349,19 @@ 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py312h470d778_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.3-h3f56577_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-hd08dc88_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -369,23 +369,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h3c55218_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-hdd485aa_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py312h5ab5af3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.1.0-py312h719f0cf_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/propcache-0.2.1-py312hb2c0f52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.3-py312h6f74592_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.1.0-py312h8025657_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.1.0-py312h66f7834_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.2-py312h8cbf658_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.12.8-h1683364_1_cpython.conda
@@ -399,33 +399,33 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hb2c0f52_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-26.2.0-py312h2427ae1_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-haa97905_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/regex-2024.11.6-py312hb2c0f52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.10-h5df210e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.5.1-py312h8cbf658_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-hd4fb6f5_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tokenizers-0.21.0-py312ha0d6ea1_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/uvloop-0.21.0-py312hb2c0f52_1.conda
@@ -443,10 +443,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda
osx-arm64:
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.10-py312h998013c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.11-py312h998013c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.3.0-pyh71513ae_0.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
@@ -473,8 +473,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.12.14-hf0a4a13_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.17.1-py312h0fad829_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/noarch/deprecated-1.2.15-pyhd8ed1ab_1.conda
@@ -488,7 +488,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py312h0bf5046_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -498,22 +498,22 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/httptools-0.6.4-py312hea69d52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.16-ha0e7c42_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h4a2f8bd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h86344ea_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h0ad35bc_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h4239455_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-26_osxarm64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda
@@ -521,28 +521,28 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-26_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.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/libcxx-19.1.6-ha82da77_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.23-hec38601_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20240808-pl5321hafb1f1b_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.32.0-h8d8be31_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.32.0-h7081f7f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.33.0-hdbe95d5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.33.0-h7081f7f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-h0a426d6_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-26_osxarm64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.6.3-h39f12f2_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.28-openmp_hf332438_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.45-h3783ad8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h07bc746_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.47.2-h3f77e49_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda
@@ -550,27 +550,27 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.0-h551f018_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.9.0-h5505292_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.49.2-h7ab814d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-h178c5d8_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.5-hdb05f8b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.6-hdb05f8b_0.conda
- 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py312h8442bc7_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.3-h8a3d83b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -578,23 +578,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-hbcee414_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h0ff2369_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py312haf37ca6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.1-py312hea69d52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.3-py312hd8f9ff3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.1.0-py312h1f38498_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.1.0-py312hc40f475_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.2-py312hcd83bfe_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.8-hc22306f_1_cpython.conda
@@ -608,32 +608,32 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py312h024a12e_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.2.0-py312hf8a1cbd_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-h6589ca4_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/regex-2024.11.6-py312hea69d52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py312he431725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.5.1-py312hcd83bfe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-h98b9ce2_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tokenizers-0.21.0-py312hf3e4074_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.21.0-py312h0bf5046_1.conda
@@ -714,12 +714,12 @@ packages:
timestamp: 1733332029649
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312h178313f_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.10-py312h178313f_0.conda
- sha256: dc8ebdd99e9d7a07454a7063a295cdc7a86264648647fec10b2ceae97478e200
- md5: 3e92784b8e32ab7d0b95ee296ba79a99
+ url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.11-py312h178313f_0.conda
+ sha256: 2e817805e8a4fed33f23f116ff5649f8651af693328e9ed82d9d11a951338693
+ md5: 8219afa093757bbe07b9825eb1973ed9
depends:
- __glibc >=2.17,<3.0.a0
- aiohappyeyeballs >=2.3.0
@@ -734,16 +734,16 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 914378
- timestamp: 1733839626367
+ size: 915358
+ timestamp: 1734597073870
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312h998013c_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.10-py312h998013c_0.conda
- sha256: 69eb9c89dce6a7ae960099172daffba9f77fef39344f37e581685a8e3c5debe6
- md5: 642356223364539ba7ba36556fcf49ee
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.11-py312h998013c_0.conda
+ sha256: 446f078e7a7b892894d7f4851a278b7834ffb4f5632313646a55c3abe13690d4
+ md5: c69c904691364cfb27d15aa7153e9c29
depends:
- __osx >=11.0
- aiohappyeyeballs >=2.3.0
@@ -758,16 +758,16 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 874135
- timestamp: 1733839113411
+ size: 875711
+ timestamp: 1734597277258
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312hcc812fe_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.10-py312hcc812fe_0.conda
- sha256: df694a9fec546e575a4ea7e1c3ac476c0bda53c0fad44c046ad3ebdd5b75a0a8
- md5: a8c9ec59e6323b38418bbf04deaa0c02
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.11-py312hcc812fe_0.conda
+ sha256: f28e81e458d19df4ca0002f8a92d7f647fa25e8179887a8676801dfe44edb1f2
+ md5: 11fa88136d9bf39d2136b2378f7c10be
depends:
- aiohappyeyeballs >=2.3.0
- aiosignal >=1.1.2
@@ -782,8 +782,8 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 900931
- timestamp: 1733839037447
+ size: 902422
+ timestamp: 1734597104529
- kind: conda
name: aiosignal
version: 1.3.2
@@ -819,13 +819,13 @@ packages:
timestamp: 1733247158254
- kind: conda
name: anyio
- version: 4.7.0
+ version: 4.8.0
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda
- sha256: 687537ee3af30f8784986bf40cac30e88138770b16e51ca9850c9c23c09aeba1
- md5: c88107912954a983c2caf25f7fd55158
+ url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.8.0-pyhd8ed1ab_0.conda
+ sha256: f1455d2953e3eb6d71bc49881c8558d8e01888469dfd21061dd48afb6183e836
+ md5: 848d25bfbadf020ee4d4ba90e5668252
depends:
- exceptiongroup >=1.0.2
- idna >=2.8
@@ -837,8 +837,8 @@ packages:
- uvloop >=0.21
license: MIT
license_family: MIT
- size: 112730
- timestamp: 1733532678437
+ size: 115305
+ timestamp: 1736174485476
- kind: conda
name: attrs
version: 24.3.0
@@ -2139,37 +2139,35 @@ packages:
timestamp: 1725561779888
- kind: conda
name: charset-normalizer
- version: 3.4.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 3.4.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- sha256: 63022ee2c6a157a9f980250a66f54bdcdf5abee817348d0f9a74c2441a6fbf0e
- md5: 6581a17bba6b948bb60130026404a9d6
+ url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b
+ md5: e83a31202d1c0a000fce3e9cf3825875
depends:
- python >=3.9
license: MIT
license_family: MIT
- size: 47533
- timestamp: 1733218182393
+ size: 47438
+ timestamp: 1735929811779
- kind: conda
name: click
- version: 8.1.7
- build: unix_pyh707e725_1
- build_number: 1
+ version: 8.1.8
+ build: pyh707e725_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
- sha256: 1cd5fc6ccdd5141378e51252a7a3810b07fd5a7e6934a5b4a7eccba66566224b
- md5: cb8e52f28f5e592598190c562e7b5bf1
+ url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
+ sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab
+ md5: f22f4d4970e09d68a10b922cbb0408d3
depends:
- __unix
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 84513
- timestamp: 1733221925078
+ size: 84705
+ timestamp: 1734858922844
- kind: conda
name: colorama
version: 0.4.6
@@ -2477,20 +2475,19 @@ packages:
timestamp: 1729699642726
- kind: conda
name: fsspec
- version: 2024.10.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2024.12.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
- sha256: 790a50b4f94042951518f911a914a886a837c926094c6a14ed1d9d03ce336807
- md5: 906fe13095e734cb413b57a49116cdc8
+ url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
+ sha256: 3320970c4604989eadf908397a9475f9e6a96a773c185915111399cbfbe47817
+ md5: e041ad4c43ab5e10c74587f95378ebc7
depends:
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 134726
- timestamp: 1733493445080
+ size: 137756
+ timestamp: 1734650349242
- kind: conda
name: gflags
version: 2.2.2
@@ -2748,14 +2745,13 @@ packages:
timestamp: 1733663449209
- kind: conda
name: huggingface_hub
- version: 0.26.5
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 0.27.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
- sha256: 0c75532d914a04c73222be298ed2c6868739dd475b1b1a9137c52abe79873952
- md5: 73937038e21117fe401f8ea64fbaeacc
+ url: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
+ sha256: 4597d7aa720f4acdddacc27b3f9e8d4336cb79477c53aee2d7ab96d136169cdb
+ md5: 8c9a53ecd0c3c278efbdac567dd12ed0
depends:
- filelock
- fsspec >=2023.5.0
@@ -2768,8 +2764,8 @@ packages:
- typing_extensions >=3.7.4.3
license: Apache-2.0
license_family: APACHE
- size: 275466
- timestamp: 1733852454004
+ size: 278363
+ timestamp: 1736350219225
- kind: conda
name: hyperframe
version: 6.0.1
@@ -2850,21 +2846,20 @@ packages:
timestamp: 1733223207185
- kind: conda
name: jinja2
- version: 3.1.4
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 3.1.5
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
- sha256: 85a7169c078b8065bd9d121b0e7b99c8b88c42a411314b6ae5fcd81c48c4710a
- md5: 08cce3151bde4ecad7885bd9fb647532
+ url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
+ sha256: 98977694b9ecaa3218662f843425f39501f81973c450f995eec68f1803ed71c3
+ md5: 2752a6ed44105bfb18c9bef1177d9dcd
depends:
- markupsafe >=2.0
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 110963
- timestamp: 1733217424408
+ size: 112561
+ timestamp: 1734824044952
- kind: conda
name: jupyter_client
version: 8.6.3
@@ -3114,32 +3109,31 @@ packages:
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_h5888daf_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
- sha256: 8f91429091183c26950f1e7ffa730e8632f0627ba35d2fccd71df31628c9b4e5
- md5: e1f604644fe8d78e22660e2fec6756bc
+ build: cxx17_h07bc746_4
+ build_number: 4
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda
+ sha256: 05fa5e5e908962b9c5aba95f962e2ca81d9599c4715aebe5e4ddb72b309d1770
+ md5: c2d95bd7aa8d564a9bd7eca5e571a5b3
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- - libstdcxx >=13
+ - __osx >=11.0
+ - libcxx >=18
constrains:
- libabseil-static =20240722.0=cxx17*
- abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1310521
- timestamp: 1727295454064
+ size: 1178260
+ timestamp: 1736008642885
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_h5ad3122_1
- build_number: 1
+ build: cxx17_h18dbdb1_4
+ build_number: 4
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
- sha256: 590e47dce38031a8893e70491f3b71e214de7781cab53b6f017aa6f6841cb076
- md5: 6fe6b3694c4792a8e26755d3b06f0b80
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda
+ sha256: bb6c5fb3b8de5f90735c5252b57efb3c268ee222c755569dac18065f05147670
+ md5: 633b9fe454ffea2aaf29e191d946a83b
depends:
- libgcc >=13
- libstdcxx >=13
@@ -3148,37 +3142,39 @@ packages:
- libabseil-static =20240722.0=cxx17*
license: Apache-2.0
license_family: Apache
- size: 1328502
- timestamp: 1727295490806
+ size: 1334844
+ timestamp: 1736008472455
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_hf9b8971_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
- sha256: 90bf08a75506dfcf28a70977da8ab050bcf594cd02abd3a9d84a22c9e8161724
- md5: 706da5e791c569a7b9814877098a6a0a
+ build: cxx17_hbbce691_4
+ build_number: 4
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ sha256: 143a586aa67d50622ef703de57b9d43f44945836d6568e0e7aa174bd8c45e0d4
+ md5: 488f260ccda0afaf08acb286db439c2f
depends:
- - __osx >=11.0
- - libcxx >=17
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
constrains:
- libabseil-static =20240722.0=cxx17*
- abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1179072
- timestamp: 1727295571173
+ size: 1311599
+ timestamp: 1736008414161
- kind: conda
name: libarrow
version: 18.1.0
- build: h1b535d6_6_cpu
- build_number: 6
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-h1b535d6_6_cpu.conda
- sha256: 087b579aebf351ca41c54214121d86a15a41c92051cbd432d6f3a3f58a8c31b0
- md5: 4c0ad68efba1113ac5833975c67b565d
+ build: h0ad35bc_7_cpu
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h0ad35bc_7_cpu.conda
+ sha256: 4fbdd8bb89d912bf03f10f9373a8d96a1cdd7a7851e107393418a3d2715bc27e
+ md5: 4ba2173203f44bbf03d19aaba6ed07d3
depends:
+ - __osx >=11.0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -3186,17 +3182,15 @@ packages:
- azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
- azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
- - gflags >=2.2.2,<2.3.0a0
- glog >=0.7.1,<0.8.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libgcc >=13
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libcxx >=18
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
- - libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -3205,24 +3199,23 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - parquet-cpp <0.0a0
- arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
- apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 8040629
- timestamp: 1733810319239
+ size: 5506699
+ timestamp: 1735682962976
- kind: conda
name: libarrow
version: 18.1.0
- build: h44a453e_6_cpu
- build_number: 6
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-h44a453e_6_cpu.conda
- sha256: abf17e99b03356a9d6248e965826c1352ff01b00d3a62cc51393bb0744d72803
- md5: 2cf6d608d6e66506f69797d5c6944c35
+ build: hb7781cd_7_cpu
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-hb7781cd_7_cpu.conda
+ sha256: f6107506bd16788560b47a4d18c1457b4df30a49334364d32613fe3f53ba6cbb
+ md5: 98cf7127ca7b3854c5d1c8bef1ed6e53
depends:
- - __glibc >=2.17,<3.0.a0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -3237,8 +3230,8 @@ packages:
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- libgcc >=13
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
- libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
@@ -3249,24 +3242,24 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - parquet-cpp <0.0a0
- arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
- apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 8786061
- timestamp: 1733810643966
+ size: 8026714
+ timestamp: 1735685336542
- kind: conda
name: libarrow
version: 18.1.0
- build: h4a2f8bd_6_cpu
- build_number: 6
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h4a2f8bd_6_cpu.conda
- sha256: 9ed3ea1bc15005c0df187268ef91407afaa908cf82f36f5acbbf50ac24d7f806
- md5: 835cdd84195b84dc34d128bd5d3580b9
+ build: hd595efa_7_cpu
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-hd595efa_7_cpu.conda
+ sha256: 554ffa338264c1dc34d95adb7eb856d50a2f25e7fa303a1a51e4372301b7c96f
+ md5: 08d4aff5ee6dee9a1b9ab13fca927697
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -3274,15 +3267,17 @@ packages:
- azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
- azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
+ - gflags >=2.2.2,<2.3.0a0
- glog >=0.7.1,<0.8.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libcxx >=18
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libgcc >=13
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
+ - libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -3291,190 +3286,190 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - apache-arrow-proc =*=cpu
- arrow-cpp <0.0a0
- parquet-cpp <0.0a0
+ - apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 5494797
- timestamp: 1733808145854
+ size: 8770256
+ timestamp: 1735684696564
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: h3b568fd_6_cpu
- build_number: 6
+ build: h3b568fd_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_6_cpu.conda
- sha256: fdb70e2499e59b730084ecd53008b361a6f6090b5fb49624feda06b7e84c7b8c
- md5: c50907eefe2ae22d826e7cb2e4d712f5
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_7_cpu.conda
+ sha256: 42cbfc87096f745d565d814d65b7228c82d985f1898859d5e456016d73e81c82
+ md5: 4c1d8c3feea249782148d3cd6a25392e
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
- libgcc >=13
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 578091
- timestamp: 1733810378092
+ size: 578222
+ timestamp: 1735685424850
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: hcb10f89_6_cpu
- build_number: 6
+ build: hcb10f89_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_6_cpu.conda
- sha256: a32fa1d71415afc02b5cf3cd4c0a6ec0af9e749308829cc65ff79689222ce479
- md5: 143f9288b64759a6427563f058c62f2b
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_7_cpu.conda
+ sha256: 87ea5d6a84d922d73975dce8661fccf257e72e755175b12c30e1181a34e37987
+ md5: 12d84228204c56fec6ed113288014d11
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
- libgcc >=13
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 611745
- timestamp: 1733810698469
+ size: 612463
+ timestamp: 1735684749868
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: hf07054f_6_cpu
- build_number: 6
+ build: hf07054f_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_6_cpu.conda
- sha256: e1cae46409927470439ef9ae93ed09b3493d0579501ca9ebfa79ded212ee98d8
- md5: 97fc01254714e1572624baefdd7cc898
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_7_cpu.conda
+ sha256: 86e20cebfdb4f335e98265c1b88f5053bf3e3648768a317856295846bfdbf2b4
+ md5: 3eaf71fe987de13061db795e03bb1a1c
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
- libcxx >=18
license: Apache-2.0
license_family: APACHE
- size: 483713
- timestamp: 1733808246880
+ size: 485185
+ timestamp: 1735683071232
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: h3b568fd_6_cpu
- build_number: 6
+ build: h3b568fd_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_6_cpu.conda
- sha256: 2a08f5a1017ff660c37ae0c24343a119cb2511c6edd69e23d0a5090a0967ea35
- md5: bb1548ad011c4f9107fcc4cc548473bf
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_7_cpu.conda
+ sha256: 13ba7d3d08015aa26569eca9e198e2f8b2a0cd2d9c420e41c78cc2e5d5170f26
+ md5: f39f5d725c2ca94c2e7b19e2717fd4ab
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
- - libarrow-acero 18.1.0 h3b568fd_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
+ - libarrow-acero 18.1.0 h3b568fd_7_cpu
- libgcc >=13
- - libparquet 18.1.0 hfc78867_6_cpu
+ - libparquet 18.1.0 hfc78867_7_cpu
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 559673
- timestamp: 1733810461646
+ size: 560329
+ timestamp: 1735685518922
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: hcb10f89_6_cpu
- build_number: 6
+ build: hcb10f89_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_6_cpu.conda
- sha256: 74eeb178070002842d3ed721769399320e3a68a0843319eaf899a092a31def26
- md5: 20ca46a6bc714a6ab189d5b3f46e66d8
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_7_cpu.conda
+ sha256: 99c12511fba79c7947f78d676eae5857659084f687f375f68bc20bd4cddb0a0e
+ md5: 0a81eb63d7cd150f598c752e86388d57
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
- - libarrow-acero 18.1.0 hcb10f89_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
+ - libarrow-acero 18.1.0 hcb10f89_7_cpu
- libgcc >=13
- - libparquet 18.1.0 h081d1f1_6_cpu
+ - libparquet 18.1.0 h081d1f1_7_cpu
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 586627
- timestamp: 1733810842604
+ size: 587497
+ timestamp: 1735684880531
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: hf07054f_6_cpu
- build_number: 6
+ build: hf07054f_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_6_cpu.conda
- sha256: 6eba942ce926419f74e6e0a7c3994a7d78ab6be47115e6bb70e02136554736be
- md5: 0774276be6659aaa0007f1b0f6ee19b0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_7_cpu.conda
+ sha256: 52c5c4e9cd5f2ac91dcebb6a920ab2536febcea116ff8767e5439329d7da820b
+ md5: 97a2d3606682d94f7d73112e9ad684ae
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
- - libarrow-acero 18.1.0 hf07054f_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
+ - libarrow-acero 18.1.0 hf07054f_7_cpu
- libcxx >=18
- - libparquet 18.1.0 h636d7b7_6_cpu
+ - libparquet 18.1.0 h636d7b7_7_cpu
license: Apache-2.0
license_family: APACHE
- size: 489948
- timestamp: 1733809328231
+ size: 491237
+ timestamp: 1735684688308
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h3ee7192_6_cpu
- build_number: 6
+ build: h08228c5_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h3ee7192_6_cpu.conda
- sha256: bda6728db019dd0c409b1996ad9ef6ab0bcee3a94dc66a8045e8c1049c566055
- md5: aa313b3168caf98d00b3753f5ba27650
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h08228c5_7_cpu.conda
+ sha256: 53ea53a06e137c2f81ebfdff3f978babb8b59e31f705a19b57056ec8754c1abf
+ md5: e128def53c133e8a23ac00cd4a479335
depends:
- __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h44a453e_6_cpu
- - libarrow-acero 18.1.0 hcb10f89_6_cpu
- - libarrow-dataset 18.1.0 hcb10f89_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
+ - libarrow-acero 18.1.0 hcb10f89_7_cpu
+ - libarrow-dataset 18.1.0 hcb10f89_7_cpu
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 519989
- timestamp: 1733810903274
+ size: 521861
+ timestamp: 1735684940668
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h3ffb4b1_6_cpu
- build_number: 6
+ build: h1e9d426_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h3ffb4b1_6_cpu.conda
- sha256: 9f78c55c5d7122e588a6f226cbf7e909c479d66ed18edc633d68324323d386b9
- md5: 5db2e6832397b8ca70a6f7b00e0c3629
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h1e9d426_7_cpu.conda
+ sha256: 252e2a0d8c733f36b50499786480a05a59577d617f291868149c80534c1e8ffc
+ md5: 6da921d9e1c4e2ab2679eeea7cbd4c82
depends:
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h1b535d6_6_cpu
- - libarrow-acero 18.1.0 h3b568fd_6_cpu
- - libarrow-dataset 18.1.0 h3b568fd_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
+ - libarrow-acero 18.1.0 h3b568fd_7_cpu
+ - libarrow-dataset 18.1.0 h3b568fd_7_cpu
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 515928
- timestamp: 1733810503359
+ size: 516014
+ timestamp: 1735685565929
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h86344ea_6_cpu
- build_number: 6
+ build: h4239455_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h86344ea_6_cpu.conda
- sha256: bafd9ca59ebb5ad34b77aff316ef7b59c5fb1eb8a7b6a15de8dcbdf3ce37556d
- md5: c1c162f5bf569cff8bed6def705a899f
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h4239455_7_cpu.conda
+ sha256: a45bbdd6932aed972d6c6ce30a7439aa8ec9d9b8ee5affb350d41e50abdc0127
+ md5: 91927747173f65695e441346c7145e26
depends:
- __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
- - libarrow-acero 18.1.0 hf07054f_6_cpu
- - libarrow-dataset 18.1.0 hf07054f_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
+ - libarrow-acero 18.1.0 hf07054f_7_cpu
+ - libarrow-dataset 18.1.0 hf07054f_7_cpu
- libcxx >=18
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
license: Apache-2.0
license_family: APACHE
- size: 451623
- timestamp: 1733809487176
+ size: 452385
+ timestamp: 1735684993831
- kind: conda
name: libblas
version: 3.9.0
@@ -3493,6 +3488,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16393
timestamp: 1734432564346
- kind: conda
@@ -3513,6 +3509,7 @@ packages:
- libcblas 3.9.0 26_linuxaarch64_openblas
- liblapack 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16477
timestamp: 1734432576699
- kind: conda
@@ -3533,6 +3530,7 @@ packages:
- libcblas 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16714
timestamp: 1734433054681
- kind: conda
@@ -3695,6 +3693,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16336
timestamp: 1734432570482
- kind: conda
@@ -3713,6 +3712,7 @@ packages:
- liblapacke 3.9.0 26_linuxaarch64_openblas
- liblapack 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16398
timestamp: 1734432580937
- kind: conda
@@ -3731,6 +3731,7 @@ packages:
- liblapacke 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16628
timestamp: 1734433061517
- kind: conda
@@ -3840,18 +3841,19 @@ packages:
timestamp: 1734000160270
- kind: conda
name: libcxx
- version: 19.1.5
- build: ha82da77_0
+ version: 19.1.6
+ build: ha82da77_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.5-ha82da77_0.conda
- sha256: 7918cc0bb7a6554cdd3eee634c3dc414a1ab8ec49faeca1567367bb92118f9d7
- md5: 3c7be0df28ccda1d193ea6de56dcb5ff
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.6-ha82da77_1.conda
+ sha256: 2b2443404503cd862385fd2f2a2c73f9624686fd1e5a45050b4034cfc06904ec
+ md5: ce5252d8db110cdb4ae4173d0a63c7c5
depends:
- __osx >=11.0
license: Apache-2.0 WITH LLVM-exception
license_family: Apache
- size: 519819
- timestamp: 1733291654212
+ size: 520992
+ timestamp: 1734494699681
- kind: conda
name: libdeflate
version: '1.23'
@@ -3864,6 +3866,7 @@ packages:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
license: MIT
+ license_family: MIT
size: 72255
timestamp: 1734373823254
- kind: conda
@@ -3877,6 +3880,7 @@ packages:
depends:
- libgcc >=13
license: MIT
+ license_family: MIT
size: 69862
timestamp: 1734373858306
- kind: conda
@@ -3890,55 +3894,58 @@ packages:
depends:
- __osx >=11.0
license: MIT
+ license_family: MIT
size: 54132
timestamp: 1734373971372
- kind: conda
name: libedit
- version: 3.1.20191231
- build: hc8eb9b7_2
- build_number: 2
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
- sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca
- md5: 30e4362988a2623e9eb34337b83e01f9
+ version: 3.1.20240808
+ build: pl5321h7949ede_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20240808-pl5321h7949ede_0.conda
+ sha256: 4d0d69ddf9cc7d724a1ccf3a9852e44c8aea9825692582bac2c4e8d21ec95ccd
+ md5: 8247f80f3dc464d9322e85007e307fe8
depends:
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 96607
- timestamp: 1597616630749
+ size: 134657
+ timestamp: 1736191912705
- kind: conda
name: libedit
- version: 3.1.20191231
- build: he28a2e2_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf
- md5: 4d331e44109e3f0e19b4cb8f9b82f3e1
+ version: 3.1.20240808
+ build: pl5321h976ea20_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20240808-pl5321h976ea20_0.conda
+ sha256: 031daea98cf278f858b7957ad5dc475f1b5673cd5e718850529401ced64cef2c
+ md5: 0be40129d3dd1a152fff29a85f0785d0
depends:
- - libgcc-ng >=7.5.0
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 123878
- timestamp: 1597616541093
+ size: 148120
+ timestamp: 1736192137151
- kind: conda
name: libedit
- version: 3.1.20191231
- build: he28a2e2_2
- build_number: 2
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- sha256: debc31fb2f07ba2b0363f90e455873670734082822926ba4a9556431ec0bf36d
- md5: 29371161d77933a54fccf1bb66b96529
+ version: 3.1.20240808
+ build: pl5321hafb1f1b_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20240808-pl5321hafb1f1b_0.conda
+ sha256: fb934d7a03279ec8eae4bf1913ac9058fcf6fed35290d8ffa6e04157f396a3b1
+ md5: af89aa84ffb5ee551ce0c137b951a3b5
depends:
- - libgcc-ng >=7.5.0
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - __osx >=11.0
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 134104
- timestamp: 1597617110769
+ size: 107634
+ timestamp: 1736192034117
- kind: conda
name: libev
version: '4.33'
@@ -4318,214 +4325,223 @@ packages:
timestamp: 1729089357313
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h3888205_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.32.0-h3888205_0.conda
- sha256: 36af2844ce8fafd477214d51117746144461132f76759a7d29963b4583b577be
- md5: a40b948bf4eabcc1ce708c40ffd7c06d
+ version: 2.33.0
+ build: h2b5623c_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.33.0-h2b5623c_1.conda
+ sha256: ae48ee93e2c226bf682f1e389c2fd51ae7bf77c2ce4b3aee069764f4be1c63f2
+ md5: 61829a8dd5f4e2327e707572065bae41
depends:
+ - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libgcc >=13
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 1248560
- timestamp: 1733512309504
+ size: 1254656
+ timestamp: 1735648569457
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h804f50b_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.32.0-h804f50b_0.conda
- sha256: 126856add750013390dff664a3c3cd0f6f0cbbc683b0025a7ce9d1618968bc70
- md5: 3d96df4d6b1c88455e05b94ce8a14a53
+ version: 2.33.0
+ build: hccf9d24_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.33.0-hccf9d24_1.conda
+ sha256: d3d4def86d880431928799ba90ca97e57c2f05677c03af8de2337502926c492c
+ md5: a2724014eb04f14bd71d35f45b062dd0
depends:
- - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libgcc >=13
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 1249557
- timestamp: 1733512191906
+ size: 1253019
+ timestamp: 1735649566849
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h8d8be31_0
+ version: 2.33.0
+ build: hdbe95d5_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.32.0-h8d8be31_0.conda
- sha256: 722e49dbdc4486105d9f5b79a7ba4f9064602fe20c4015e97684c898ab8d3386
- md5: d7ab9e0eb7d55eac4943913073de61d7
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.33.0-hdbe95d5_1.conda
+ sha256: ce95aca02451694a4154c7770b6addf4fb859abf17912de6ec947da8469a56ce
+ md5: 91de1fbab8610974c0094c266bc63435
depends:
- __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libcxx >=18
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 876210
- timestamp: 1733512539476
+ size: 877594
+ timestamp: 1735648230965
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: h0121fbd_0
+ version: 2.33.0
+ build: h0121fbd_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.32.0-h0121fbd_0.conda
- sha256: d1b53d17df38b52a4bc6d1fe6af0e611d6480ce10b0af570c84bd38c8aa83b91
- md5: 877a5ec0431a5af83bf0cd0522bfe661
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.33.0-h0121fbd_1.conda
+ sha256: 41022523320ca8633a6c615710823e596efadb50f06d724e1a0c81e27994f257
+ md5: b0cfb5044685a7a9fa43ae669124f0a0
depends:
- __glibc >=2.17,<3.0.a0
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libgcc >=13
- - libgoogle-cloud 2.32.0 h804f50b_0
+ - libgoogle-cloud 2.33.0 h2b5623c_1
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 782108
- timestamp: 1733512329104
+ size: 784357
+ timestamp: 1735648759177
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: h7081f7f_0
+ version: 2.33.0
+ build: h7081f7f_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.32.0-h7081f7f_0.conda
- sha256: 609df2cf376ba66460f40143f835fc567cae4458df80705587cd2efd59c09bf1
- md5: 28f5ab5cf95170dfacd05d2bb301e573
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.33.0-h7081f7f_1.conda
+ sha256: c0524a22064bc17f5c037da09ba54cc9e767741ef645178e499750c44bec2531
+ md5: af8e51382464d4cc2d0054977c40a732
depends:
- __osx >=11.0
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libcxx >=18
- - libgoogle-cloud 2.32.0 h8d8be31_0
+ - libgoogle-cloud 2.33.0 hdbe95d5_1
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 526895
- timestamp: 1733513644846
+ size: 526963
+ timestamp: 1735649222088
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: hb9b2b65_0
+ version: 2.33.0
+ build: hb9b2b65_1
+ build_number: 1
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.32.0-hb9b2b65_0.conda
- sha256: e120e7b6c9c9d25baa8ae903106babdd3c969523ae25278a615ed9de4bd0fc35
- md5: 925ab0ca33baca4fcfee585cecb94169
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.33.0-hb9b2b65_1.conda
+ sha256: 5eda1cbba68709b91b370b3792c9cfd7bec4ac4e2262f0887d12e1f000ae1191
+ md5: 45df2267ff4d8ce532e8d300ce0b0829
depends:
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libgcc >=13
- - libgoogle-cloud 2.32.0 h3888205_0
+ - libgoogle-cloud 2.33.0 hccf9d24_1
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 737964
- timestamp: 1733512457785
+ size: 737518
+ timestamp: 1735649773462
- kind: conda
name: libgrpc
version: 1.67.1
- build: h36c5df4_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda
- sha256: 1f6673d9d866048c9cf28fd56e6874ffc7e2c53c47d7071cb367d5fc2dde16a7
- md5: b946137e362e98a55a77fdf0b20a7739
+ build: h0a426d6_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-h0a426d6_1.conda
+ sha256: 630edf63981818ff590367cb95fddbed0f5a390464d0952c90ec81de899e84a6
+ md5: 8a3cba079d6ac985e7d73c76a678fbb4
depends:
- - c-ares >=1.32.3,<2.0a0
+ - __osx >=11.0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libcxx >=18
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
- - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 7131846
- timestamp: 1730236305327
+ size: 5311706
+ timestamp: 1735585137716
- kind: conda
name: libgrpc
version: 1.67.1
- build: hc2c308b_0
+ build: h25350d4_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
- sha256: 870550c1faf524e9a695262cd4c31441b18ad542f16893bd3c5dbc93106705f7
- md5: 4606a4647bfe857e3cfe21ca12ac3afb
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-h25350d4_1.conda
+ sha256: 014627485b3cf0ea18e04c0bab07be7fb98722a3aeeb58477acc7e1c3d2f911e
+ md5: 0c6497a760b99a926c7c12b74951a39c
depends:
- __glibc >=2.17,<3.0.a0
- - c-ares >=1.32.3,<2.0a0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 7362336
- timestamp: 1730236333879
+ size: 7792251
+ timestamp: 1735584856826
- kind: conda
name: libgrpc
version: 1.67.1
- build: hc70892a_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda
- sha256: d2393fcd3c3584e5d58da4122f48bcf297567d2f6f14b3d1fcbd34fdd5040694
- md5: 624e27571fde34f8acc2afec840ac435
+ build: hf7ccdd3_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-hf7ccdd3_1.conda
+ sha256: 3fa173dc1d7456aac2b26937daae86a08432a31640e3d6569c62edc661fc9bbe
+ md5: 8fb41a425bebaeb3d0fa568503612e64
depends:
- - __osx >=11.0
- - c-ares >=1.34.2,<2.0a0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libgcc >=13
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 4882208
- timestamp: 1730236299095
+ size: 7430006
+ timestamp: 1735585769731
- kind: conda
name: libiconv
version: '1.17'
@@ -4628,6 +4644,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16338
timestamp: 1734432576650
- kind: conda
@@ -4646,6 +4663,7 @@ packages:
- liblapacke 3.9.0 26_linuxaarch64_openblas
- libcblas 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16403
timestamp: 1734432585123
- kind: conda
@@ -4664,6 +4682,7 @@ packages:
- libcblas 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16624
timestamp: 1734433068120
- kind: conda
@@ -4860,132 +4879,133 @@ packages:
- kind: conda
name: libparquet
version: 18.1.0
- build: h081d1f1_6_cpu
- build_number: 6
+ build: h081d1f1_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_6_cpu.conda
- sha256: c691a59f1ebb6cedbf827f49f6cf414e08b0eec911f589133e6a8321e8ac701c
- md5: 68788df49ce7480187eb6387f15b2b67
+ url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_7_cpu.conda
+ sha256: 55945b761130f60abdecf1551907ecfd05cb4a5958cf74d855b30c005ecb3592
+ md5: b97013ef4e1dd2cf11594f06d5b5e83a
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
- libgcc >=13
- libstdcxx >=13
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 1204535
- timestamp: 1733810811118
+ size: 1205598
+ timestamp: 1735684849150
- kind: conda
name: libparquet
version: 18.1.0
- build: h636d7b7_6_cpu
- build_number: 6
+ build: h636d7b7_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_6_cpu.conda
- sha256: 88c1e810bede65c54f1ebc51c14400f9e8cf0fc1f88a8c0a99210e2f5dfed582
- md5: 9b333c3a38e55f6c1b8733222e22f528
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_7_cpu.conda
+ sha256: bf42e43542a90edd86ba5aa5fd4543671625f1bc35f62be32688f00e18bae990
+ md5: 93de9ba66a20db32a2646d313794b3a8
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
- libcxx >=18
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 873134
- timestamp: 1733809271282
+ size: 873251
+ timestamp: 1735684582558
- kind: conda
name: libparquet
version: 18.1.0
- build: hfc78867_6_cpu
- build_number: 6
+ build: hfc78867_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_6_cpu.conda
- sha256: 38aab34c422519c530d0e9a3e0ffd1624db1c1e163983c46ae341e831b2eb6b5
- md5: 1ab6d4a9a982920b9dc5f2c700777b27
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_7_cpu.conda
+ sha256: 6dff9bbe731dc2cefe96bd9c7981d2cbef2b564a3152840a29c9b6a493ea50d9
+ md5: 184bec7a9392ab6ba8134041e81971d6
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
- libgcc >=13
- libstdcxx >=13
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 1117592
- timestamp: 1733810440129
+ size: 1117825
+ timestamp: 1735685495511
- kind: conda
name: libpng
- version: 1.6.44
- build: hadc24fc_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
- sha256: e5b14f7a01c2db4362d8591f42f82f336ed48d5e4079e4d1f65d0c2a3637ea78
- md5: f4cc49d7aa68316213e4b12be35308d1
+ version: 1.6.45
+ build: h3783ad8_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.45-h3783ad8_0.conda
+ sha256: ddcc81c049b32fb5eb3ac1f9a6d3a589c08325c8ec6f89eb912208b19330d68c
+ md5: d554c806d065b1763cb9e1cb1d25741d
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
+ - __osx >=11.0
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 290661
- timestamp: 1726234747153
+ size: 263151
+ timestamp: 1736339184358
- kind: conda
name: libpng
- version: 1.6.44
- build: hc14010f_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
- sha256: 38f8759a3eb8060deabd4db41f0f023514d853e46ddcbd0ba21768fc4e563bb1
- md5: fb36e93f0ea6a6f5d2b99984f34b049e
+ version: 1.6.45
+ build: h943b412_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.45-h943b412_0.conda
+ sha256: b8f5b5ba9a14dedf7c97c01300de492b1b52b68eacbc3249a13fdbfa82349a2f
+ md5: 85cbdaacad93808395ac295b5667d25b
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 263385
- timestamp: 1726234714421
+ size: 289426
+ timestamp: 1736339058310
- kind: conda
name: libpng
- version: 1.6.44
- build: hc4a20ef_0
+ version: 1.6.45
+ build: hec79eb8_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
- sha256: 23b5ce15cf9c6017641a8396bab00ae807dd9f662718cfa7f61de114d0c97647
- md5: 5d25802b25fcc7419fa13e21affaeb3a
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.45-hec79eb8_0.conda
+ sha256: a06daa523a0d5775acb96e6e3f083adc2ab1383eb8f664513dbc663f439c9cca
+ md5: 9a8716c16b40acc7148263de1d0a403b
depends:
- libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 294907
- timestamp: 1726236639270
+ size: 299051
+ timestamp: 1736344007986
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h029595c_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
- sha256: d8c7b6f851bfc53494d9b8e54d473c4f11ab26483a6e64df6f7967563df166b1
- md5: 538dbe0ad9f248e2e109abb9b6809ea5
+ version: 5.28.3
+ build: h3bd63a1_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda
+ sha256: f58a16b13ad53346903c833e266f83c3d770a43a432659b98710aed85ca885e7
+ md5: bdbfea4cf45ae36652c6bbcc2e7ebe91
depends:
+ - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libstdcxx >=13
+ - libcxx >=18
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2802876
- timestamp: 1728564881988
+ size: 2271580
+ timestamp: 1735576361997
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h5b01275_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
- sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421
- md5: ab0bff36363bec94720275a681af8b83
+ version: 5.28.3
+ build: h44a3b7b_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda
+ sha256: ecb69f2b1668e784b41ba667493be846662d5ef702bef64fb2e013bb1364cdc4
+ md5: 68f807f7cc13951652bbe048253fd405
depends:
- - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libgcc >=13
@@ -4993,75 +5013,77 @@ packages:
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2945348
- timestamp: 1728565355702
+ size: 2788074
+ timestamp: 1735576315676
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h8f0b736_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
- sha256: f732a6fa918428e2d5ba61e78fe11bb44a002cc8f6bb74c94ee5b1297fefcfd8
- md5: d2cb5991f2fb8eb079c80084435e9ce6
+ version: 5.28.3
+ build: h6128344_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda
+ sha256: 51125ebb8b7152e4a4e69fd2398489c4ec8473195c27cde3cbdf1cb6d18c5493
+ md5: d8703f1ffe5a06356f06467f1d0b9464
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
+ - libgcc >=13
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2374965
- timestamp: 1728565334796
+ size: 2960815
+ timestamp: 1735577210663
- kind: conda
name: libre2-11
version: 2024.07.02
- build: h18dbdb1_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda
- sha256: 96d4fdac28d5af38c38f90c22cb0aa9a90affae13ca8ba24bd1eb60b789df8ff
- md5: f1800796b0efc4bbc5b001d845545111
+ build: h07bc746_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h07bc746_2.conda
+ sha256: 112a73ad483353751d4c5d63648c69a4d6fcebf5e1b698a860a3f5124fc3db96
+ md5: 6b1e3624d3488016ca4f1ca0c412efaa
depends:
+ - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libstdcxx >=13
+ - libcxx >=18
constrains:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 203516
- timestamp: 1728778974654
+ size: 167155
+ timestamp: 1735541067807
- kind: conda
name: libre2-11
version: 2024.07.02
- build: h2348fd5_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda
- sha256: 6facca42cfc85a05b33e484a8b0df7857cc092db34806946d022270098d8d20f
- md5: 5a7065309a66097738be6a06fd04b7ef
+ build: h18dbdb1_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_2.conda
+ sha256: 862c20de0120f802e618dcb25913d00c5b82f91f4be60b2d46a774e851adc2f6
+ md5: 9a7dbbaab49f76a6f36e5c9d98e323a7
depends:
- - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
+ - libgcc >=13
+ - libstdcxx >=13
constrains:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 165956
- timestamp: 1728779107218
+ size: 204305
+ timestamp: 1735540986919
- kind: conda
name: libre2-11
version: 2024.07.02
- build: hbbce691_1
- build_number: 1
+ build: hbbce691_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
- sha256: f8ad6a4f6d4fd54ebe3e5e712a01e663222fc57f49d16b6b8b10c30990dafb8f
- md5: 2124de47357b7a516c0a3efd8f88c143
+ url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_2.conda
+ sha256: 4420f8362c71251892ba1eeb957c5e445e4e1596c0c651c28d0d8b415fe120c7
+ md5: b2fede24428726dd867611664fb372e8
depends:
- __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
@@ -5072,8 +5094,8 @@ packages:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 211096
- timestamp: 1728778964655
+ size: 209793
+ timestamp: 1735541054068
- kind: conda
name: libsodium
version: 1.0.20
@@ -5505,50 +5527,53 @@ packages:
timestamp: 1729322566955
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: h31becfc_0
+ version: 1.5.0
+ build: h0886dbf_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
- sha256: 10dded60f274e29c573cfacf6e96f5d0fc374ee431250374a44cbd773916ab9d
- md5: 5fd7ab3e5f382c70607fbac6335e6e19
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda
+ sha256: b3d881a0ae08bb07fff7fa8ead506c8d2e0388733182fe4f216f3ec5d61ffcf0
+ md5: 95ef4a689b8cc1b7e18b53784d88f96b
depends:
- - libgcc-ng >=12
+ - libgcc >=13
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 363577
- timestamp: 1713201785160
+ size: 362623
+ timestamp: 1734779054659
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: h93a5062_0
+ version: 1.5.0
+ build: h2471fea_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
- sha256: 0d4bad713a512d79bfeb4d61821f447afab8b0792aca823f505ce6b195e9fde5
- md5: c0af0edfebe780b19940e94871f1a765
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda
+ sha256: f8bdb876b4bc8cb5df47c28af29188de8911c3fea4b799a33743500149de3f4a
+ md5: 569466afeb84f90d5bb88c11cc23d746
+ depends:
+ - __osx >=11.0
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 287750
- timestamp: 1713200194013
+ size: 290013
+ timestamp: 1734777593617
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: hd590300_0
+ version: 1.5.0
+ build: h851e524_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
- sha256: 49bc5f6b1e11cb2babf2a2a731d1a680a5e08a858280876a779dbda06c78c35f
- md5: b26e8aa824079e1be0294e7152ca4559
+ url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
+ sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf
+ md5: 63f790534398730f59e1b899c3644d4a
depends:
- - libgcc-ng >=12
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 438953
- timestamp: 1713199854503
+ size: 429973
+ timestamp: 1734777489810
- kind: conda
name: libxcb
version: 1.17.0
@@ -5742,20 +5767,20 @@ packages:
timestamp: 1727963148474
- kind: conda
name: llvm-openmp
- version: 19.1.5
+ version: 19.1.6
build: hdb05f8b_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.5-hdb05f8b_0.conda
- sha256: e7ba0d8b718925efdcf1309f5e776e3264cc172d3af8d4048b39627c50a1abc0
- md5: f2c2e187a1d2637d282e34dc92021a70
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.6-hdb05f8b_0.conda
+ sha256: a0f3e9139ab16f0a67b9d2bbabc15b78977168f4a5b5503fed4962dcb9a96102
+ md5: 34fdeffa0555a1a56f38839415cc066c
depends:
- __osx >=11.0
constrains:
- - openmp 19.1.5|19.1.5.*
+ - openmp 19.1.6|19.1.6.*
license: Apache-2.0 WITH LLVM-exception
license_family: APACHE
- size: 281120
- timestamp: 1733376089600
+ size: 281251
+ timestamp: 1734520462311
- kind: conda
name: lz4-c
version: 1.10.0
@@ -5883,76 +5908,76 @@ packages:
timestamp: 1733219945697
- kind: conda
name: max
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121705-release.conda
- sha256: 83b2265b29c1ee69ae9d9f639ab04899d0ef15b5abc9114e034e2cd382dcad31
- md5: bd7165d97ebb0458ddb1ce616c146c24
- depends:
- - max-core ==25.1.0.dev2024121705 release
- - max-python >=25.1.0.dev2024121705,<26.0a0
- - mojo-jupyter ==25.1.0.dev2024121705 release
- - mblack ==25.1.0.dev2024121705 release
+ url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ sha256: 4ce81189e26dd06f188129580db0464f8ee9a081e195dad7082b2fa25fcf738e
+ md5: b46d770a5f45597ffc008bd224d8e91c
+ depends:
+ - max-core ==25.1.0.dev2025010817 release
+ - max-python >=25.1.0.dev2025010817,<26.0a0
+ - mojo-jupyter ==25.1.0.dev2025010817 release
+ - mblack ==25.1.0.dev2025010817 release
license: LicenseRef-Modular-Proprietary
- size: 9921
- timestamp: 1734412638047
+ size: 9922
+ timestamp: 1736357145809
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: linux-64
- url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121705-release.conda
- sha256: 15459b8446d3feb608baae398cf2753a3704e02e07cf2a6c02e166068d8a9304
- md5: 4ca65aff37bd7e944cce1697c1fe203e
+ url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 5459a1f6c379b01231649212ca7f5062c49208b5c0b2b17047b55011872727c2
+ md5: 5bbb293b5216b098c424e7602823a460
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: x86_64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 245744992
- timestamp: 1734412638045
+ size: 247646542
+ timestamp: 1736357145807
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: linux-aarch64
- url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121705-release.conda
- sha256: e89be4d7691a354a3f6e5d71e25b49447ca9fd1048fe03355c3bc509a726234d
- md5: acc4b1208feaba5ad08c1b370192e127
+ url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 18715c3fc8071d5eeb9f1893512fe65967919e9900738423958a5cb4f09148da
+ md5: 4a7b6e800f8fdabf0498727c1bff57d3
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: aarch64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 249373255
- timestamp: 1734412698620
+ size: 251608988
+ timestamp: 1736357045232
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: osx-arm64
- url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121705-release.conda
- sha256: edd613b122c086c4d6237c7195a55ce09bff9922ab70e0f1ff7a9662d3de41fe
- md5: d68326deab9bb460f253bf6df7e903f6
+ url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 5a23bdc48d6fe2cfe439097b7a0fc0f1bd2b23be081478638ef4b945267d8015
+ md5: 1f54b615e5199ac268f123c89cfbabda
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: arm64
platform: osx
license: LicenseRef-Modular-Proprietary
- size: 214152137
- timestamp: 1734412888834
+ size: 209267317
+ timestamp: 1736357278969
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: linux-64
- url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: 11296250671f2a7c5951382f89f8e68a1702b0c8aeef200788e71d9e0e1d2955
- md5: f979494f9de5b3853834ffa1adf606c3
+ url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: 7bd73eb5b2c8f796bb2bf947e68b46f9fa0302c1999905321bd18c453be5d410
+ md5: 58d7a8476c07a36c0412fcd983faebfc
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -5975,18 +6000,18 @@ packages:
arch: x86_64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 122755617
- timestamp: 1734412638055
+ size: 124309678
+ timestamp: 1736357145817
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: linux-aarch64
- url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: e4a7ded05f33903034e52feefe65f458975942740cf07dcb30e2e9c1f0af53e6
- md5: 9a51b55d48b861487dbecd7c4abc7b68
+ url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: 1faa8dea2f87c25b20f467758a46589d2d464d8367fda4fa7fa61c73120b62f9
+ md5: be84f3b39ee757dd73d27ac241c37d5a
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -6009,18 +6034,18 @@ packages:
arch: aarch64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 126486411
- timestamp: 1734412698632
+ size: 128047180
+ timestamp: 1736357045243
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: osx-arm64
- url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: 328cee9730cf537d58e6d24b9aa111504271433d724fd47fdcee55b26df222b3
- md5: b1168de7b96e9e7b0fad7c675ecdb426
+ url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: c8b10ed04f57bc9a9e67d447ad97404ea06f3efbc903dced4723f3828c93ab2c
+ md5: aa8c692e6393c51283419173f7cb69a2
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -6043,17 +6068,17 @@ packages:
arch: arm64
platform: osx
license: LicenseRef-Modular-Proprietary
- size: 113391631
- timestamp: 1734412888837
+ size: 110680624
+ timestamp: 1736357278972
- kind: conda
name: mblack
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
- sha256: 44d0c3a0b1242823334d6bad895ad037849719f67bcfbc426c65363c567f80a5
- md5: 93c89483058dabd0282c378812328ba0
+ url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-release.conda
+ sha256: 8bc21a826d3edc5a8719deeeadcee5b3fc8fbd83313ce2c7ebc8c620075608e1
+ md5: ee664fe2390706d36d2d60b1f2bd69df
depends:
- python >=3.9,<3.13
- click >=8.0.0
@@ -6063,8 +6088,8 @@ packages:
- platformdirs >=2
- python
license: MIT
- size: 130801
- timestamp: 1734412638051
+ size: 130813
+ timestamp: 1736357145814
- kind: conda
name: mdurl
version: 0.1.2
@@ -6083,21 +6108,21 @@ packages:
timestamp: 1733255681319
- kind: conda
name: mojo-jupyter
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121705-release.conda
- sha256: 8ef8447f576590d381ccaa82e6c207c530e9355b07ab3174f3df9c9f064d42de
- md5: 4c31e34ff54c71cd9d584d3ab8f1c315
+ url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-release.conda
+ sha256: a92d02809c43a9a92abc363e69396738f6c9802c12d8827cc008d316cea4e107
+ md5: 0533034ac307140f160cf43c5f36b2ed
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python >=3.9,<3.13
- jupyter_client >=8.6.2,<8.7
- python
license: LicenseRef-Modular-Proprietary
- size: 22937
- timestamp: 1734412638052
+ size: 22926
+ timestamp: 1736357145815
- kind: conda
name: multidict
version: 6.1.0
@@ -6391,49 +6416,52 @@ packages:
- kind: conda
name: openssl
version: 3.4.0
- build: h39f12f2_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
- sha256: bd1d58ced46e75efa3b842c61642fd12272c69e9fe4d7261078bc082153a1d53
- md5: df307bbc703324722df0293c9ca2e418
+ build: h7b32b05_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
+ sha256: f62f6bca4a33ca5109b6d571b052a394d836956d21b25b7ffd03376abf7a481f
+ md5: 4ce6875f75469b2757a65e10a5d05e31
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- ca-certificates
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 2935176
- timestamp: 1731377561525
+ size: 2937158
+ timestamp: 1736086387286
- kind: conda
name: openssl
version: 3.4.0
- build: h86ecc28_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
- sha256: 64dbbdd6384fa56338124783197f7ad9048c989a02264bcd2e07355e3570f113
- md5: b2f202b5bddafac824eb610b65dde98f
+ build: h81ee809_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
+ sha256: 97772762abc70b3a537683ca9fc3ff3d6099eb64e4aba3b9c99e6fce48422d21
+ md5: 22f971393637480bda8c679f374d8861
depends:
+ - __osx >=11.0
- ca-certificates
- - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 3474825
- timestamp: 1731379200886
+ size: 2936415
+ timestamp: 1736086108693
- kind: conda
name: openssl
version: 3.4.0
- build: hb9d3cd8_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
- sha256: 814b9dff1847b132c676ee6cc1a8cb2d427320779b93e1b6d76552275c128705
- md5: 23cc74f77eb99315c0360ec3533147a9
+ build: hd08dc88_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-hd08dc88_1.conda
+ sha256: 60d34454b861501d7355f25a7b39fdb5de8d56fca49b5bcbe8b8142b7d82dce4
+ md5: e21c4767e783a58c373fdb99de6211bf
depends:
- - __glibc >=2.17,<3.0.a0
- ca-certificates
- libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 2947466
- timestamp: 1731377666602
+ size: 3469279
+ timestamp: 1736088141230
- kind: conda
name: opentelemetry-api
version: 1.29.0
@@ -6489,6 +6517,7 @@ packages:
- python >=3.9
- requests >=2.7,<3.dev0
license: Apache-2.0
+ license_family: APACHE
size: 17147
timestamp: 1734345675510
- kind: conda
@@ -6564,16 +6593,16 @@ packages:
- kind: conda
name: orc
version: 2.0.3
- build: h3c55218_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h3c55218_1.conda
- sha256: 154b26bc4d586de33765a155c9b79ebd7f5bb36c2bbf4b8854e1631bca8d21af
- md5: 0a51a3cf028b845c46ec0d1ea2d18629
+ build: h0ff2369_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h0ff2369_2.conda
+ sha256: cca330695f3bdb8c0e46350c29cd4af3345865544e36f1d7c9ba9190ad22f5f4
+ md5: 24b1897c0d24afbb70704ba998793b78
depends:
- - libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
- - libstdcxx >=13
+ - __osx >=11.0
+ - libcxx >=18
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
- snappy >=1.2.1,<1.3.0a0
@@ -6581,21 +6610,21 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 1165179
- timestamp: 1733509923825
+ size: 438520
+ timestamp: 1735630624140
- kind: conda
name: orc
version: 2.0.3
- build: h97ab989_1
- build_number: 1
+ build: h12ee42a_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h97ab989_1.conda
- sha256: 9de7e2746fde57c9b7f08ee87142014f6bb9b2d3a506839ea3e98baa99711576
- md5: 2f46eae652623114e112df13fae311cf
+ url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h12ee42a_2.conda
+ sha256: dff5cc8023905782c86b3459055f26d4b97890e403b0698477c9fed15d8669cc
+ md5: 4f6f9f3f80354ad185e276c120eac3f0
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -6604,21 +6633,21 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 1189462
- timestamp: 1733509801323
+ size: 1188881
+ timestamp: 1735630209320
- kind: conda
name: orc
version: 2.0.3
- build: hbcee414_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-hbcee414_1.conda
- sha256: e5e72438a3cd967ebc774070e8c49500d2d6d4175f349400b327fee75d3bfc05
- md5: e808cf7819eaa1735c8790d7f9f482c7
+ build: hdd485aa_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-hdd485aa_2.conda
+ sha256: b6c67542352a86cdf143c3066d5cda855b74454a156eedcd8958b494c6a32a83
+ md5: d19f01b42e5d6a2908b65df435aff42f
depends:
- - __osx >=11.0
- - libcxx >=18
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libgcc >=13
+ - libprotobuf >=5.28.3,<5.28.4.0a0
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
- snappy >=1.2.1,<1.3.0a0
@@ -6626,8 +6655,8 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 437391
- timestamp: 1733510118673
+ size: 1167714
+ timestamp: 1735630248837
- kind: conda
name: packaging
version: '24.2'
@@ -6734,78 +6763,78 @@ packages:
timestamp: 1733233471940
- kind: conda
name: pillow
- version: 11.0.0
- build: py312h5ab5af3_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py312h5ab5af3_0.conda
- sha256: 3cf43a5eb1f67f3a5f3ef1ec3a685f8767019cce24dbe46c4b76fee8a54fbacf
- md5: 1c4bdfe659cfdedd372685ce2494e97b
+ version: 11.1.0
+ build: py312h50aef2c_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda
+ sha256: b29b7c915053e06a7a5b4118760202c572c9c35d23bd6ce8e73270b6a50e50ee
+ md5: 94d6ba8cd468668a9fb04193b0f4b36e
depends:
+ - __osx >=11.0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
- - libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41756471
- timestamp: 1729068045876
+ size: 42852329
+ timestamp: 1735930118976
- kind: conda
name: pillow
- version: 11.0.0
- build: py312h7b63e92_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py312h7b63e92_0.conda
- sha256: 13a464bea02c0df0199c20ef6bad24a6bc336aaf55bf8d6a133d0fe664463224
- md5: 385f46a4df6f97892503a841121a9acf
+ version: 11.1.0
+ build: py312h719f0cf_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.1.0-py312h719f0cf_0.conda
+ sha256: 7559556ffc44bda777f85c2e5acd6b5756fa5822c0271b329b7b9a3c6bb20349
+ md5: 77e0ec0a6fc847d317f204aa15b59f6b
depends:
- - __glibc >=2.17,<3.0.a0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
- libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41948418
- timestamp: 1729065846594
+ size: 41362848
+ timestamp: 1735932311857
- kind: conda
name: pillow
- version: 11.0.0
- build: py312haf37ca6_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py312haf37ca6_0.conda
- sha256: 727b4c3faecdb6f6809cf20c5f32d2df4af34e0d5b9146b7588383bcba7990e8
- md5: dc9b51fbd2b6f7fea9b5123458864dbb
+ version: 11.1.0
+ build: py312h80c1187_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda
+ sha256: 5c347962202b55ae4d8a463e0555c5c6ca33396266a08284bf1384399894e541
+ md5: d3894405f05b2c0f351d5de3ae26fa9c
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
+ - libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
- - python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41737424
- timestamp: 1729065920347
+ size: 42749785
+ timestamp: 1735929845390
- kind: conda
name: platformdirs
version: 4.3.6
@@ -6890,12 +6919,12 @@ packages:
timestamp: 1733392308901
- kind: conda
name: protobuf
- version: 5.28.2
+ version: 5.28.3
build: py312h2ec8cdc_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda
- sha256: 4884f8161602f0148ebbc1af8d3176cec80b96c83243f68aafd651986b573817
- md5: 586bead4a9dfa46faf88deb7d3a742bb
+ url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.3-py312h2ec8cdc_0.conda
+ sha256: acb2e0ee948e3941f8ed191cb77f654e06538638aed8ccd71cbc78a15242ebbb
+ md5: 9d7e427d159c1b2d516cc047ff177c48
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -6903,19 +6932,19 @@ packages:
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 464548
- timestamp: 1728669645013
+ size: 464794
+ timestamp: 1731366525051
- kind: conda
name: protobuf
- version: 5.28.2
+ version: 5.28.3
build: py312h6f74592_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda
- sha256: f874ffd38b9ae2b810e9d2e43fd8d3b778cdeaf7dea4a3e6ee4adeafe2d936cf
- md5: 4b9b22bd7c53d938b207f9d0f79db183
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.3-py312h6f74592_0.conda
+ sha256: 9c575d5035c7ecb114ab9e17906c0a54087d9598dd6a2104c02fe33f0a29dd46
+ md5: 06513608c94fb1c1b17136ace77063a9
depends:
- libgcc >=13
- libstdcxx >=13
@@ -6923,31 +6952,31 @@ packages:
- python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 472764
- timestamp: 1728669483611
+ size: 473242
+ timestamp: 1731366577844
- kind: conda
name: protobuf
- version: 5.28.2
- build: py312hf02c72a_0
+ version: 5.28.3
+ build: py312hd8f9ff3_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda
- sha256: dbcec117510ced5c12097e3eb06ebbf4512dc255733a9ace33c4249fb7e6a364
- md5: 6fda46c82abd0a080ca33de7d16ca877
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.3-py312hd8f9ff3_0.conda
+ sha256: 9d572a97419bdace14d7c7cc8cc8c4bf2dcb22b56965dac87a27fbdb5061b926
+ md5: 5afbe52a59f04dd1fe566d0d17590d7e
depends:
- __osx >=11.0
- - libcxx >=17
+ - libcxx >=18
- python >=3.12,<3.13.0a0
- python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 447369
- timestamp: 1728669902591
+ size: 448803
+ timestamp: 1731367010746
- kind: conda
name: pthread-stubs
version: '0.4'
@@ -7142,31 +7171,31 @@ packages:
timestamp: 1733195786147
- kind: conda
name: pydantic
- version: 2.10.3
+ version: 2.10.4
build: pyh3cfb1c2_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda
- sha256: cac9eebd3d5f8d8a497a9025d756257ddc75b8b3393e6737cb45077bd744d4f8
- md5: 194ef7f91286978521350f171b117f01
+ url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ sha256: e68400714532a33f34b44ddaee3e27e8dd6c83c3f31c7892ec10b84d13aa8b59
+ md5: 93bccf4d7a58c9140d59491de21e044b
depends:
- annotated-types >=0.6.0
- - pydantic-core 2.27.1
+ - pydantic-core 2.27.2
- python >=3.9
- typing-extensions >=4.6.1
- typing_extensions >=4.12.2
license: MIT
license_family: MIT
- size: 317037
- timestamp: 1733316963547
+ size: 296557
+ timestamp: 1734609427697
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312h12e396e_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.1-py312h12e396e_0.conda
- sha256: c89741f4eff395f8de70975f42e1f20591f0e0870929d440af35b13399976b09
- md5: 114030cb28527db2c385f07038e914c8
+ url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.2-py312h12e396e_0.conda
+ sha256: 81602a4592ad2ac1a1cb57372fd25214e63b1c477d5818b0c21cde0f1f85c001
+ md5: bae01b2563030c085f5158c518b84e86
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -7177,16 +7206,16 @@ packages:
- __glibc >=2.17
license: MIT
license_family: MIT
- size: 1635156
- timestamp: 1732254225040
+ size: 1641402
+ timestamp: 1734571789895
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312h8cbf658_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.1-py312h8cbf658_0.conda
- sha256: 1f59bc1914f77faed3c95217e4d093310771baee4e93a15c0479359559e3fa19
- md5: d980860b8bf193f53d30a19c5d2bf070
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.2-py312h8cbf658_0.conda
+ sha256: 623e0f3846f15d035ce7ab7ae445fc8d9e547b6684ab55858b6f44510d24b097
+ md5: 9677f6ab4bf27ba3c2aee70d08c7b27c
depends:
- libgcc >=13
- python >=3.12,<3.13.0a0
@@ -7197,16 +7226,16 @@ packages:
- __glibc >=2.17
license: MIT
license_family: MIT
- size: 1503747
- timestamp: 1732254331303
+ size: 1505076
+ timestamp: 1734571966615
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312hcd83bfe_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.1-py312hcd83bfe_0.conda
- sha256: 5bba8de2bbbbdb39390abb1e2aff310e8cfd49646ae5a0e0ea4d6582bd1d52ba
- md5: 3847a96eaf24a877b6091150ff9c4955
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.2-py312hcd83bfe_0.conda
+ sha256: cfa7201f890d5d08ce29ff70e65a96787d5793a1718776733666b44bbd4a1205
+ md5: dcb307e02f17d38c6e1cbfbf8c602852
depends:
- __osx >=11.0
- python >=3.12,<3.13.0a0
@@ -7217,41 +7246,40 @@ packages:
- __osx >=11.0
license: MIT
license_family: MIT
- size: 1449057
- timestamp: 1732254359451
+ size: 1593461
+ timestamp: 1734571986644
- kind: conda
name: pydantic-settings
- version: 2.7.0
+ version: 2.7.1
build: pyh3cfb1c2_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda
- sha256: dd1ac7c8b6a189c8aa18f6c7df019d8f6df495300a259e3fbebdb542fc955c3b
- md5: d9f19a7c4199249fa229891b573b6f9b
+ url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ sha256: 082fb1ec29917d2c9ed6a862cb8eb9beb88c208ea62c9fef1aeb5f4f3e0e0b06
+ md5: d71d76b62bed332b037d7adfc0f3989a
depends:
- pydantic >=2.7.0
- python >=3.9
- python-dotenv >=0.21.0
license: MIT
license_family: MIT
- size: 31426
- timestamp: 1734127929720
+ size: 31822
+ timestamp: 1735650532951
- kind: conda
name: pygments
- version: 2.18.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2.19.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda
- sha256: 0d6133545f268b2b89c2617c196fc791f365b538d4057ecd636d658c3b1e885d
- md5: b38dc0206e2a530e5c2cf11dc086b31a
+ url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda
+ sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b
+ md5: 232fb4577b6687b2d503ef8e254270c9
depends:
- python >=3.9
license: BSD-2-Clause
license_family: BSD
- size: 876700
- timestamp: 1733221731178
+ size: 888600
+ timestamp: 1736243563082
- kind: conda
name: pyinstrument
version: 5.0.0
@@ -7727,48 +7755,48 @@ packages:
- kind: conda
name: re2
version: 2024.07.02
- build: h2d3a13d_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda
- sha256: 55e7be480bfb979fa8595a16d7f2adea3a5ac9a77b2e97cd0f7ac40e989edb6c
- md5: 83f4e47229834c895a92c18383e1cd9d
+ build: h6589ca4_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-h6589ca4_2.conda
+ sha256: 4d3799c05f8f662922a0acd129d119774760a3281b883603678e128d1cb307fb
+ md5: 7a8b4ad8c58a3408ca89d78788c78178
depends:
- - libre2-11 2024.07.02 h18dbdb1_1
+ - libre2-11 2024.07.02 h07bc746_2
license: BSD-3-Clause
license_family: BSD
- size: 26747
- timestamp: 1728778986331
+ size: 26861
+ timestamp: 1735541088455
- kind: conda
name: re2
version: 2024.07.02
- build: h77b4e00_1
- build_number: 1
+ build: h9925aae_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
- sha256: c1721cb80f7201652fc9801f49c214c88aee835d957f2376e301bd40a8415742
- md5: 01093ff37c1b5e6bf9f17c0116747d11
+ url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h9925aae_2.conda
+ sha256: d213c44958d49ce7e0d4d5b81afec23640cce5016685dbb2d23571a99caa4474
+ md5: e84ddf12bde691e8ec894b00ea829ddf
depends:
- - libre2-11 2024.07.02 hbbce691_1
+ - libre2-11 2024.07.02 hbbce691_2
license: BSD-3-Clause
license_family: BSD
- size: 26665
- timestamp: 1728778975855
+ size: 26786
+ timestamp: 1735541074034
- kind: conda
name: re2
version: 2024.07.02
- build: hcd0e937_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda
- sha256: eebddde6cb10b146507810b701ef6df122d5309cd5151a39d0828aa44dc53725
- md5: 19e29f2ccc9168eb0a39dc40c04c0e21
+ build: haa97905_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-haa97905_2.conda
+ sha256: 040848655df9119bae5a549fb5c8956a5537120859416c1d9d0712b7bac9f12e
+ md5: 1bf0135339b4a7419a198a795d2d4be0
depends:
- - libre2-11 2024.07.02 h2348fd5_1
+ - libre2-11 2024.07.02 h18dbdb1_2
license: BSD-3-Clause
license_family: BSD
- size: 26860
- timestamp: 1728779123653
+ size: 26830
+ timestamp: 1735540999398
- kind: conda
name: readline
version: '8.2'
@@ -7960,12 +7988,12 @@ packages:
timestamp: 1734415467047
- kind: conda
name: safetensors
- version: 0.4.5
+ version: 0.5.1
build: py312h12e396e_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda
- sha256: e44515f875c10efb5e041efcb250dfd18f2cb66ec3f268237549ead6284c6922
- md5: 3b87a00bcaab069172d6cef8124b7142
+ url: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.5.1-py312h12e396e_0.conda
+ sha256: 61a4a49bc98a7b529c7c9e2af9be1dc3350b8ea1c78f985e8a051543e8845ffa
+ md5: 19b54f64e926aca46d0cc2ff0ecf4f34
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -7975,16 +8003,16 @@ packages:
- __glibc >=2.17
license: Apache-2.0
license_family: APACHE
- size: 402547
- timestamp: 1725632183154
+ size: 424642
+ timestamp: 1736278244485
- kind: conda
name: safetensors
- version: 0.4.5
+ version: 0.5.1
build: py312h8cbf658_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda
- sha256: e83ebeaba4a07bbe4a1d6c7eef0b4f7ae19901ef365bca043808d16e4c8faad8
- md5: 82ef253c37308b082a478fb92924cad6
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.5.1-py312h8cbf658_0.conda
+ sha256: ee66da0efb1d6897ad74156cb115277dfb8ca7f6c8bdfb17bd6a6fb205495622
+ md5: f91072f99af78ed0c1941ba5d6f30cf8
depends:
- libgcc >=13
- python >=3.12,<3.13.0a0
@@ -7994,16 +8022,16 @@ packages:
- __glibc >=2.17
license: Apache-2.0
license_family: APACHE
- size: 400284
- timestamp: 1725632278147
+ size: 409549
+ timestamp: 1736278357702
- kind: conda
name: safetensors
- version: 0.4.5
- build: py312he431725_0
+ version: 0.5.1
+ build: py312hcd83bfe_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py312he431725_0.conda
- sha256: 93a085d0d64237db7f4ff395c446f268c575dc2c324d8e3e5c5d7d836896295e
- md5: ccb978cf1e3151c25a44c4ae65c1f20e
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.5.1-py312hcd83bfe_0.conda
+ sha256: e61cbac0c1b38731543a600e2e40c4cc686e5e565f6c9809d5dcc467e2e8f220
+ md5: d12e134445366752e52acec1a86c845f
depends:
- __osx >=11.0
- python >=3.12,<3.13.0a0
@@ -8013,8 +8041,8 @@ packages:
- __osx >=11.0
license: Apache-2.0
license_family: APACHE
- size: 353606
- timestamp: 1725632294079
+ size: 378562
+ timestamp: 1736278448037
- kind: conda
name: shellingham
version: 1.5.4
@@ -8113,22 +8141,21 @@ packages:
timestamp: 1733244175724
- kind: conda
name: sse-starlette
- version: 2.1.3
+ version: 2.2.1
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
- sha256: 6d671a66333410ec7e5e7858a252565a9001366726d1fe3c3a506d7156169085
- md5: 3918255c942c242ed5599e10329e8d0e
+ url: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
+ sha256: 3c6a476e7afb702d841e23c61a0c4cc491929d2e39376d329e67e94c40a236cc
+ md5: c1ef6bc13dd2caa4b406fb3cb06c2791
depends:
- - anyio
- - python >=3.8
- - starlette
- - uvicorn
+ - anyio >=4.7.0
+ - python >=3.9
+ - starlette >=0.41.3
license: BSD-3-Clause
license_family: BSD
- size: 14712
- timestamp: 1722520112550
+ size: 15324
+ timestamp: 1735126414893
- kind: conda
name: starlette
version: 0.41.3
@@ -8311,18 +8338,19 @@ packages:
- kind: conda
name: tqdm
version: 4.67.1
- build: pyhd8ed1ab_0
+ build: pyhd8ed1ab_1
+ build_number: 1
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
- sha256: 5673b7104350a6998cb86cccf1d0058217d86950e8d6c927d8530606028edb1d
- md5: 4085c9db273a148e149c03627350e22c
+ url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
+ sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40
+ md5: 9efbfdc37242619130ea42b1cc4ed861
depends:
- colorama
- - python >=3.7
+ - python >=3.9
license: MPL-2.0 or MIT
- size: 89484
- timestamp: 1732497312317
+ size: 89498
+ timestamp: 1735661472632
- kind: conda
name: traitlets
version: 5.14.3
@@ -8341,14 +8369,13 @@ packages:
timestamp: 1733367480074
- kind: conda
name: transformers
- version: 4.47.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 4.47.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda
- sha256: d31821081219a0ede5c1f356b65a61ce98ac11e2df78b0eaa684c17c73389fbf
- md5: 6d2ec1ddee8057d2d724a0ab0bb578a0
+ url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.conda
+ sha256: df8238c3cccbb6bb1d5657e6a75977ac0b832ab61155d5e3d8560c1c4f52abeb
+ md5: 931d66db156680c42c62812d6533cbf7
depends:
- datasets !=2.5.0
- filelock
@@ -8364,8 +8391,8 @@ packages:
- tqdm >=4.27
license: Apache-2.0
license_family: APACHE
- size: 3726957
- timestamp: 1733948063517
+ size: 3680276
+ timestamp: 1734499046193
- kind: conda
name: typer
version: 0.15.1
@@ -8466,14 +8493,13 @@ packages:
timestamp: 1728047496079
- kind: conda
name: urllib3
- version: 2.2.3
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2.3.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
- sha256: 416e30a1c3262275f01a3e22e783118d9e9d2872a739a9ed860d06fa9c7593d5
- md5: 4a2d8ef7c37b8808c5b9b750501fffce
+ url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
+ sha256: 114919ffa80c328127dab9c8e7a38f9d563c617691fb81fccb11c1e86763727e
+ md5: 32674f8dbfb7b26410ed580dd3c10a29
depends:
- brotli-python >=1.0.9
- h2 >=4,<5
@@ -8482,8 +8508,8 @@ packages:
- zstandard >=0.18.0
license: MIT
license_family: MIT
- size: 98077
- timestamp: 1733206968917
+ size: 100102
+ timestamp: 1734859520452
- kind: conda
name: uvicorn
version: 0.34.0
diff --git a/magic.lock b/magic.lock
index fd858605d2..737e2e299b 100644
--- a/magic.lock
+++ b/magic.lock
@@ -9,10 +9,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.10-py312h178313f_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.11-py312h178313f_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.3.0-pyh71513ae_0.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
@@ -39,8 +39,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2024.12.14-hbcca054_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.17.1-py312h06ac9bb_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/noarch/deprecated-1.2.15-pyhd8ed1ab_1.conda
@@ -54,7 +54,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/freetype-2.12.1-h267a509_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/frozenlist-1.5.0-py312h66e93f0_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/gflags-2.2.2-h5888daf_1005.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/glog-0.7.1-hbabe93e_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -64,11 +64,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/httptools-0.6.4-py312h66e93f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
@@ -76,11 +76,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/lcms2-2.16-hb7c19ff_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/lerc-4.0.0-h27087fc_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-h44a453e_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h3ee7192_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-hd595efa_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h08228c5_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-26_linux64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlicommon-1.1.0-hb9d3cd8_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libbrotlidec-1.1.0-hb9d3cd8_2.conda
@@ -89,7 +89,7 @@ environments:
- 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.11.1-h332b0f4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libdeflate-1.23-h4ddbbb0_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/libedit-3.1.20240808-pl5321h7949ede_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libevent-2.1.12-hf998b51_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
@@ -99,9 +99,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-14.2.0-h69a702a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-14.2.0-hd5240d6_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.32.0-h804f50b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.32.0-h0121fbd_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.33.0-h2b5623c_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.33.0-h0121fbd_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-h25350d4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-hd590300_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libjpeg-turbo-3.0.0-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-26_linux64_openblas.conda
@@ -109,10 +109,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.64.0-h161d5f1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.1-hd590300_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.28-pthreads_h94d23a6_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.45-h943b412_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsodium-1.0.20-h4ab18f5_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.2-hee588c1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.1-hf672d98_0.conda
@@ -123,28 +123,28 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-64/libutf8proc-2.9.0-hb9d3cd8_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libuv-1.49.2-hb9d3cd8_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcb-1.17.0-h8a09558_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxcrypt-4.4.36-hd590300_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libxml2-2.13.5-h0d44e9d_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.6-pyhd8ed1ab_0.conda
- 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- conda: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.26.4-py312heda63a1_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/openjpeg-2.5.3-h5fbd93e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -152,23 +152,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h97ab989_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h12ee42a_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pandas-2.2.3-py312hf9745cd_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py312h7b63e92_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/propcache-0.2.1-py312h66e93f0_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.3-py312h2ec8cdc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pthread-stubs-0.4-hb9d3cd8_1002.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-18.1.0-py312h7900ff3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyarrow-core-18.1.0-py312h01725c0_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.2-py312h12e396e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/linux-64/python-3.12.8-h9e4cc4f_1_cpython.conda
@@ -182,33 +182,33 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0.2-py312h66e93f0_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/pyzmq-26.2.0-py312hbf22597_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h9925aae_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/regex-2024.11.6-py312h66e93f0_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/s2n-1.5.10-hb5b8611_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.5.1-py312h12e396e_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/snappy-1.2.1-h8bd8927_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/tokenizers-0.21.0-py312h8360d73_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-64/uvloop-0.21.0-py312h66e93f0_1.conda
@@ -227,10 +227,10 @@ environments:
linux-aarch64:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/_openmp_mutex-4.5-2_gnu.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.10-py312hcc812fe_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.11-py312hcc812fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.3.0-pyh71513ae_0.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
@@ -257,8 +257,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ca-certificates-2024.12.14-hcefe29a_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/cffi-1.17.1-py312hac81daf_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/noarch/deprecated-1.2.15-pyhd8ed1ab_1.conda
@@ -272,7 +272,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/freetype-2.12.1-hf0a5ef3_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/frozenlist-1.5.0-py312hb2c0f52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/gflags-2.2.2-h5ad3122_1005.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/glog-0.7.1-h468a4a4_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -282,12 +282,12 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/httptools-0.6.4-py312hb2c0f52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/icu-75.1-hf9b3779_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/keyutils-1.6.1-h4e544f5_0.tar.bz2
@@ -295,11 +295,11 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lcms2-2.16-h922389a_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ld_impl_linux-aarch64-2.43-h80caac9_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/lerc-4.0.0-h4de3ea5_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-h1b535d6_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h3ffb4b1_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-hb7781cd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h1e9d426_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libblas-3.9.0-26_linuxaarch64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlicommon-1.1.0-h86ecc28_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libbrotlidec-1.1.0-h86ecc28_2.conda
@@ -308,7 +308,7 @@ environments:
- 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.11.1-h6702fde_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libdeflate-1.23-h5e3c512_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/libedit-3.1.20240808-pl5321h976ea20_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libev-4.33-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libevent-2.1.12-h4ba1bb4_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libexpat-2.6.4-h5ad3122_0.conda
@@ -318,9 +318,9 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran-14.2.0-he9431aa_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgfortran5-14.2.0-hb6113d0_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgomp-14.2.0-he277a41_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.32.0-h3888205_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.32.0-hb9b2b65_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.33.0-hccf9d24_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.33.0-hb9b2b65_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-hf7ccdd3_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libiconv-1.17-h31becfc_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libjpeg-turbo-3.0.0-h31becfc_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/liblapack-3.9.0-26_linuxaarch64_openblas.conda
@@ -328,10 +328,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnghttp2-1.64.0-hc8609a4_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libnsl-2.0.1-h31becfc_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libopenblas-0.3.28-pthreads_h9d3fd7e_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.45-hec79eb8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsodium-1.0.20-h68df207_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libsqlite-3.47.2-h5eb1b54_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libssh2-1.11.1-ha41c0db_0.conda
@@ -342,28 +342,28 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libutf8proc-2.9.0-h86ecc28_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuuid-2.38.1-hb4cce97_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libuv-1.49.2-h86ecc28_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcb-1.17.0-h262b8f6_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxcrypt-4.4.36-h31becfc_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libxml2-2.13.5-h2e0c361_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/libzlib-1.3.1-h86ecc28_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.5-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.6-pyhd8ed1ab_0.conda
- 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/ncurses-6.5-hcccb83c_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/numpy-1.26.4-py312h470d778_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openjpeg-2.5.3-h3f56577_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-hd08dc88_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -371,23 +371,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h3c55218_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-hdd485aa_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pandas-2.2.3-py312ha2895bd_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py312h5ab5af3_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.1.0-py312h719f0cf_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/propcache-0.2.1-py312hb2c0f52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.3-py312h6f74592_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pthread-stubs-0.4-h86ecc28_1002.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-18.1.0-py312h8025657_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyarrow-core-18.1.0-py312h66f7834_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.2-py312h8cbf658_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/python-3.12.8-h1683364_1_cpython.conda
@@ -401,33 +401,33 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyyaml-6.0.2-py312hb2c0f52_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/pyzmq-26.2.0-py312h2427ae1_3.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-haa97905_2.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/readline-8.2-h8fc344f_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/regex-2024.11.6-py312hb2c0f52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/s2n-1.5.10-h5df210e_0.conda
- - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.5.1-py312h8cbf658_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/snappy-1.2.1-hd4fb6f5_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tk-8.6.13-h194ca79_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/tokenizers-0.21.0-py312ha0d6ea1_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/uvloop-0.21.0-py312hb2c0f52_1.conda
@@ -445,10 +445,10 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/linux-aarch64/zstd-1.5.6-h02f22dd_0.conda
osx-arm64:
- conda: https://conda.anaconda.org/conda-forge/noarch/aiohappyeyeballs-2.4.4-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.10-py312h998013c_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.11-py312h998013c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/aiosignal-1.3.2-pyhd8ed1ab_0.conda
- 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/anyio-4.8.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/attrs-24.3.0-pyh71513ae_0.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
@@ -475,8 +475,8 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2024.12.14-hf0a4a13_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/certifi-2024.12.14-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.17.1-py312h0fad829_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-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/noarch/deprecated-1.2.15-pyhd8ed1ab_1.conda
@@ -490,7 +490,7 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/filelock-3.16.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/freetype-2.12.1-hadb7bae_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/frozenlist-1.5.0-py312h0bf5046_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/gflags-2.2.2-hf9b8971_1005.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/glog-0.7.1-heb240a5_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/googleapis-common-protos-1.66.0-pyhff2d567_0.conda
@@ -500,22 +500,22 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/httpcore-1.0.7-pyh29332c3_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/httptools-0.6.4-py312hea69d52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/httpx-0.28.1-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/hyperframe-6.0.1-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/icu-75.1-hfee45f7_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/idna-3.10-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-8.5.0-pyha770c72_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_client-8.6.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/jupyter_core-5.7.2-pyh31011fe_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.3-h237132a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lcms2-2.16-ha0e7c42_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/lerc-4.0.0-h9a09cb3_0.tar.bz2
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h4a2f8bd_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h86344ea_6_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h0ad35bc_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h4239455_7_cpu.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libblas-3.9.0-26_osxarm64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlicommon-1.1.0-hd74edd7_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libbrotlidec-1.1.0-hd74edd7_2.conda
@@ -523,28 +523,28 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libcblas-3.9.0-26_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.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/libcxx-19.1.6-ha82da77_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libdeflate-1.23-hec38601_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20240808-pl5321hafb1f1b_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h93a5062_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libevent-2.1.12-h2757513_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.6.4-h286801f_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.32.0-h8d8be31_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.32.0-h7081f7f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.33.0-hdbe95d5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.33.0-h7081f7f_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-h0a426d6_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-h0d3ecfb_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libjpeg-turbo-3.0.0-hb547adb_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblapack-3.9.0-26_osxarm64_openblas.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/liblzma-5.6.3-h39f12f2_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.64.0-h6d7220d_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libopenblas-0.3.28-openmp_hf332438_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_6_cpu.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_7_cpu.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.45-h3783ad8_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h07bc746_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsodium-1.0.20-h99b78c6_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.47.2-h3f77e49_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.1-h9cc3647_0.conda
@@ -552,28 +552,28 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libtiff-4.7.0-h551f018_3.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libutf8proc-2.9.0-h5505292_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libuv-1.49.2-h7ab814d_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxcb-1.17.0-hdb1d25a_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.13.5-h178c5d8_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.3.1-h8359307_2.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.5-pyhd8ed1ab_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.5-hdb05f8b_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.6-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.6-hdb05f8b_0.conda
- 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.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121705-release.conda
- - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121705-3.12release.conda
- - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2025010817-release.conda
+ - conda: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2025010817-3.12release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-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.dev2024121705-release.conda
+ - conda: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-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
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.5-h7bae524_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/numpy-1.26.4-py312h8442bc7_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/openjpeg-2.5.3-h8a3d83b_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-api-1.29.0-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-common-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-exporter-otlp-proto-http-1.29.0-pyhd8ed1ab_1.conda
@@ -581,23 +581,23 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-proto-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-sdk-1.29.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/opentelemetry-semantic-conventions-0.50b0-pyh3cfb1c2_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-hbcee414_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h0ff2369_2.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/packaging-24.2-pyhd8ed1ab_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pandas-2.2.3-py312hcd31e36_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.12.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py312haf37ca6_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/platformdirs-4.3.6-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/prometheus_client-0.21.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/propcache-0.2.1-py312hea69d52_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.3-py312hd8f9ff3_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pthread-stubs-0.4-hd74edd7_1002.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-18.1.0-py312h1f38498_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyarrow-core-18.1.0-py312hc40f475_0_cpu.conda
- 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.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/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.2-py312hcd83bfe_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.12.8-hc22306f_1_cpython.conda
@@ -611,32 +611,32 @@ environments:
- conda: https://conda.anaconda.org/conda-forge/noarch/pytz-2024.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0.2-py312h024a12e_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/pyzmq-26.2.0-py312hf8a1cbd_3.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-h6589ca4_2.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/regex-2024.11.6-py312hea69d52_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/requests-2.32.3-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-13.9.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/rich-toolkit-0.11.3-pyh29332c3_0.conda
- - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py312he431725_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.5.1-py312hcd83bfe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/shellingham-1.5.4-pyhd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/six-1.17.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/snappy-1.2.1-h98b9ce2_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/sniffio-1.3.1-pyhd8ed1ab_1.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/starlette-0.41.3-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.13-h5083fa2_1.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/tokenizers-0.21.0-py312hf3e4074_0.conda
- 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/tqdm-4.67.1-pyhd8ed1ab_1.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_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.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
- conda: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.12.2-hd8ed1ab_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.12.2-pyha770c72_1.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/tzdata-2024b-hc8b5060_0.conda
- - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
+ - conda: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-0.34.0-pyh31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/noarch/uvicorn-standard-0.34.0-h31011fe_0.conda
- conda: https://conda.anaconda.org/conda-forge/osx-arm64/uvloop-0.21.0-py312h0bf5046_1.conda
@@ -717,12 +717,12 @@ packages:
timestamp: 1733332029649
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312h178313f_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.10-py312h178313f_0.conda
- sha256: dc8ebdd99e9d7a07454a7063a295cdc7a86264648647fec10b2ceae97478e200
- md5: 3e92784b8e32ab7d0b95ee296ba79a99
+ url: https://conda.anaconda.org/conda-forge/linux-64/aiohttp-3.11.11-py312h178313f_0.conda
+ sha256: 2e817805e8a4fed33f23f116ff5649f8651af693328e9ed82d9d11a951338693
+ md5: 8219afa093757bbe07b9825eb1973ed9
depends:
- __glibc >=2.17,<3.0.a0
- aiohappyeyeballs >=2.3.0
@@ -737,16 +737,16 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 914378
- timestamp: 1733839626367
+ size: 915358
+ timestamp: 1734597073870
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312h998013c_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.10-py312h998013c_0.conda
- sha256: 69eb9c89dce6a7ae960099172daffba9f77fef39344f37e581685a8e3c5debe6
- md5: 642356223364539ba7ba36556fcf49ee
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/aiohttp-3.11.11-py312h998013c_0.conda
+ sha256: 446f078e7a7b892894d7f4851a278b7834ffb4f5632313646a55c3abe13690d4
+ md5: c69c904691364cfb27d15aa7153e9c29
depends:
- __osx >=11.0
- aiohappyeyeballs >=2.3.0
@@ -761,16 +761,16 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 874135
- timestamp: 1733839113411
+ size: 875711
+ timestamp: 1734597277258
- kind: conda
name: aiohttp
- version: 3.11.10
+ version: 3.11.11
build: py312hcc812fe_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.10-py312hcc812fe_0.conda
- sha256: df694a9fec546e575a4ea7e1c3ac476c0bda53c0fad44c046ad3ebdd5b75a0a8
- md5: a8c9ec59e6323b38418bbf04deaa0c02
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/aiohttp-3.11.11-py312hcc812fe_0.conda
+ sha256: f28e81e458d19df4ca0002f8a92d7f647fa25e8179887a8676801dfe44edb1f2
+ md5: 11fa88136d9bf39d2136b2378f7c10be
depends:
- aiohappyeyeballs >=2.3.0
- aiosignal >=1.1.2
@@ -785,8 +785,8 @@ packages:
- yarl >=1.17.0,<2.0
license: MIT AND Apache-2.0
license_family: Apache
- size: 900931
- timestamp: 1733839037447
+ size: 902422
+ timestamp: 1734597104529
- kind: conda
name: aiosignal
version: 1.3.2
@@ -822,13 +822,13 @@ packages:
timestamp: 1733247158254
- kind: conda
name: anyio
- version: 4.7.0
+ version: 4.8.0
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.7.0-pyhd8ed1ab_0.conda
- sha256: 687537ee3af30f8784986bf40cac30e88138770b16e51ca9850c9c23c09aeba1
- md5: c88107912954a983c2caf25f7fd55158
+ url: https://conda.anaconda.org/conda-forge/noarch/anyio-4.8.0-pyhd8ed1ab_0.conda
+ sha256: f1455d2953e3eb6d71bc49881c8558d8e01888469dfd21061dd48afb6183e836
+ md5: 848d25bfbadf020ee4d4ba90e5668252
depends:
- exceptiongroup >=1.0.2
- idna >=2.8
@@ -840,8 +840,8 @@ packages:
- uvloop >=0.21
license: MIT
license_family: MIT
- size: 112730
- timestamp: 1733532678437
+ size: 115305
+ timestamp: 1736174485476
- kind: conda
name: attrs
version: 24.3.0
@@ -2142,37 +2142,35 @@ packages:
timestamp: 1725561779888
- kind: conda
name: charset-normalizer
- version: 3.4.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 3.4.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.0-pyhd8ed1ab_1.conda
- sha256: 63022ee2c6a157a9f980250a66f54bdcdf5abee817348d0f9a74c2441a6fbf0e
- md5: 6581a17bba6b948bb60130026404a9d6
+ url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.4.1-pyhd8ed1ab_0.conda
+ sha256: 4e0ee91b97e5de3e74567bdacea27f0139709fceca4db8adffbe24deffccb09b
+ md5: e83a31202d1c0a000fce3e9cf3825875
depends:
- python >=3.9
license: MIT
license_family: MIT
- size: 47533
- timestamp: 1733218182393
+ size: 47438
+ timestamp: 1735929811779
- kind: conda
name: click
- version: 8.1.7
- build: unix_pyh707e725_1
- build_number: 1
+ version: 8.1.8
+ build: pyh707e725_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_1.conda
- sha256: 1cd5fc6ccdd5141378e51252a7a3810b07fd5a7e6934a5b4a7eccba66566224b
- md5: cb8e52f28f5e592598190c562e7b5bf1
+ url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.8-pyh707e725_0.conda
+ sha256: c920d23cd1fcf565031c679adb62d848af60d6fbb0edc2d50ba475cea4f0d8ab
+ md5: f22f4d4970e09d68a10b922cbb0408d3
depends:
- __unix
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 84513
- timestamp: 1733221925078
+ size: 84705
+ timestamp: 1734858922844
- kind: conda
name: colorama
version: 0.4.6
@@ -2480,20 +2478,19 @@ packages:
timestamp: 1729699642726
- kind: conda
name: fsspec
- version: 2024.10.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2024.12.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.10.0-pyhd8ed1ab_1.conda
- sha256: 790a50b4f94042951518f911a914a886a837c926094c6a14ed1d9d03ce336807
- md5: 906fe13095e734cb413b57a49116cdc8
+ url: https://conda.anaconda.org/conda-forge/noarch/fsspec-2024.12.0-pyhd8ed1ab_0.conda
+ sha256: 3320970c4604989eadf908397a9475f9e6a96a773c185915111399cbfbe47817
+ md5: e041ad4c43ab5e10c74587f95378ebc7
depends:
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 134726
- timestamp: 1733493445080
+ size: 137756
+ timestamp: 1734650349242
- kind: conda
name: gflags
version: 2.2.2
@@ -2751,14 +2748,13 @@ packages:
timestamp: 1733663449209
- kind: conda
name: huggingface_hub
- version: 0.26.5
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 0.27.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.26.5-pyhd8ed1ab_1.conda
- sha256: 0c75532d914a04c73222be298ed2c6868739dd475b1b1a9137c52abe79873952
- md5: 73937038e21117fe401f8ea64fbaeacc
+ url: https://conda.anaconda.org/conda-forge/noarch/huggingface_hub-0.27.1-pyhd8ed1ab_0.conda
+ sha256: 4597d7aa720f4acdddacc27b3f9e8d4336cb79477c53aee2d7ab96d136169cdb
+ md5: 8c9a53ecd0c3c278efbdac567dd12ed0
depends:
- filelock
- fsspec >=2023.5.0
@@ -2771,8 +2767,8 @@ packages:
- typing_extensions >=3.7.4.3
license: Apache-2.0
license_family: APACHE
- size: 275466
- timestamp: 1733852454004
+ size: 278363
+ timestamp: 1736350219225
- kind: conda
name: hyperframe
version: 6.0.1
@@ -2853,21 +2849,20 @@ packages:
timestamp: 1733223207185
- kind: conda
name: jinja2
- version: 3.1.4
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 3.1.5
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.4-pyhd8ed1ab_1.conda
- sha256: 85a7169c078b8065bd9d121b0e7b99c8b88c42a411314b6ae5fcd81c48c4710a
- md5: 08cce3151bde4ecad7885bd9fb647532
+ url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.5-pyhd8ed1ab_0.conda
+ sha256: 98977694b9ecaa3218662f843425f39501f81973c450f995eec68f1803ed71c3
+ md5: 2752a6ed44105bfb18c9bef1177d9dcd
depends:
- markupsafe >=2.0
- python >=3.9
license: BSD-3-Clause
license_family: BSD
- size: 110963
- timestamp: 1733217424408
+ size: 112561
+ timestamp: 1734824044952
- kind: conda
name: jupyter_client
version: 8.6.3
@@ -3117,32 +3112,31 @@ packages:
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_h5888daf_1
- build_number: 1
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_h5888daf_1.conda
- sha256: 8f91429091183c26950f1e7ffa730e8632f0627ba35d2fccd71df31628c9b4e5
- md5: e1f604644fe8d78e22660e2fec6756bc
+ build: cxx17_h07bc746_4
+ build_number: 4
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_h07bc746_4.conda
+ sha256: 05fa5e5e908962b9c5aba95f962e2ca81d9599c4715aebe5e4ddb72b309d1770
+ md5: c2d95bd7aa8d564a9bd7eca5e571a5b3
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
- - libstdcxx >=13
+ - __osx >=11.0
+ - libcxx >=18
constrains:
- libabseil-static =20240722.0=cxx17*
- abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1310521
- timestamp: 1727295454064
+ size: 1178260
+ timestamp: 1736008642885
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_h5ad3122_1
- build_number: 1
+ build: cxx17_h18dbdb1_4
+ build_number: 4
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h5ad3122_1.conda
- sha256: 590e47dce38031a8893e70491f3b71e214de7781cab53b6f017aa6f6841cb076
- md5: 6fe6b3694c4792a8e26755d3b06f0b80
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libabseil-20240722.0-cxx17_h18dbdb1_4.conda
+ sha256: bb6c5fb3b8de5f90735c5252b57efb3c268ee222c755569dac18065f05147670
+ md5: 633b9fe454ffea2aaf29e191d946a83b
depends:
- libgcc >=13
- libstdcxx >=13
@@ -3151,37 +3145,39 @@ packages:
- libabseil-static =20240722.0=cxx17*
license: Apache-2.0
license_family: Apache
- size: 1328502
- timestamp: 1727295490806
+ size: 1334844
+ timestamp: 1736008472455
- kind: conda
name: libabseil
version: '20240722.0'
- build: cxx17_hf9b8971_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libabseil-20240722.0-cxx17_hf9b8971_1.conda
- sha256: 90bf08a75506dfcf28a70977da8ab050bcf594cd02abd3a9d84a22c9e8161724
- md5: 706da5e791c569a7b9814877098a6a0a
+ build: cxx17_hbbce691_4
+ build_number: 4
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libabseil-20240722.0-cxx17_hbbce691_4.conda
+ sha256: 143a586aa67d50622ef703de57b9d43f44945836d6568e0e7aa174bd8c45e0d4
+ md5: 488f260ccda0afaf08acb286db439c2f
depends:
- - __osx >=11.0
- - libcxx >=17
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - libstdcxx >=13
constrains:
- libabseil-static =20240722.0=cxx17*
- abseil-cpp =20240722.0
license: Apache-2.0
license_family: Apache
- size: 1179072
- timestamp: 1727295571173
+ size: 1311599
+ timestamp: 1736008414161
- kind: conda
name: libarrow
version: 18.1.0
- build: h1b535d6_6_cpu
- build_number: 6
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-h1b535d6_6_cpu.conda
- sha256: 087b579aebf351ca41c54214121d86a15a41c92051cbd432d6f3a3f58a8c31b0
- md5: 4c0ad68efba1113ac5833975c67b565d
+ build: h0ad35bc_7_cpu
+ build_number: 7
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h0ad35bc_7_cpu.conda
+ sha256: 4fbdd8bb89d912bf03f10f9373a8d96a1cdd7a7851e107393418a3d2715bc27e
+ md5: 4ba2173203f44bbf03d19aaba6ed07d3
depends:
+ - __osx >=11.0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -3189,17 +3185,15 @@ packages:
- azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
- azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
- - gflags >=2.2.2,<2.3.0a0
- glog >=0.7.1,<0.8.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libgcc >=13
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libcxx >=18
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
- - libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -3208,24 +3202,23 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - parquet-cpp <0.0a0
- arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
- apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 8040629
- timestamp: 1733810319239
+ size: 5506699
+ timestamp: 1735682962976
- kind: conda
name: libarrow
version: 18.1.0
- build: h44a453e_6_cpu
- build_number: 6
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-h44a453e_6_cpu.conda
- sha256: abf17e99b03356a9d6248e965826c1352ff01b00d3a62cc51393bb0744d72803
- md5: 2cf6d608d6e66506f69797d5c6944c35
+ build: hb7781cd_7_cpu
+ build_number: 7
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-18.1.0-hb7781cd_7_cpu.conda
+ sha256: f6107506bd16788560b47a4d18c1457b4df30a49334364d32613fe3f53ba6cbb
+ md5: 98cf7127ca7b3854c5d1c8bef1ed6e53
depends:
- - __glibc >=2.17,<3.0.a0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -3240,8 +3233,8 @@ packages:
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- libgcc >=13
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
- libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
@@ -3252,24 +3245,24 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - parquet-cpp <0.0a0
- arrow-cpp <0.0a0
+ - parquet-cpp <0.0a0
- apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 8786061
- timestamp: 1733810643966
+ size: 8026714
+ timestamp: 1735685336542
- kind: conda
name: libarrow
version: 18.1.0
- build: h4a2f8bd_6_cpu
- build_number: 6
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-18.1.0-h4a2f8bd_6_cpu.conda
- sha256: 9ed3ea1bc15005c0df187268ef91407afaa908cf82f36f5acbbf50ac24d7f806
- md5: 835cdd84195b84dc34d128bd5d3580b9
+ build: hd595efa_7_cpu
+ build_number: 7
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-18.1.0-hd595efa_7_cpu.conda
+ sha256: 554ffa338264c1dc34d95adb7eb856d50a2f25e7fa303a1a51e4372301b7c96f
+ md5: 08d4aff5ee6dee9a1b9ab13fca927697
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- aws-crt-cpp >=0.29.7,<0.29.8.0a0
- aws-sdk-cpp >=1.11.458,<1.11.459.0a0
- azure-core-cpp >=1.14.0,<1.14.1.0a0
@@ -3277,15 +3270,17 @@ packages:
- azure-storage-blobs-cpp >=12.13.0,<12.13.1.0a0
- azure-storage-files-datalake-cpp >=12.12.0,<12.12.1.0a0
- bzip2 >=1.0.8,<2.0a0
+ - gflags >=2.2.2,<2.3.0a0
- glog >=0.7.1,<0.8.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libbrotlidec >=1.1.0,<1.2.0a0
- libbrotlienc >=1.1.0,<1.2.0a0
- - libcxx >=18
- - libgoogle-cloud >=2.32.0,<2.33.0a0
- - libgoogle-cloud-storage >=2.32.0,<2.33.0a0
+ - libgcc >=13
+ - libgoogle-cloud >=2.33.0,<2.34.0a0
+ - libgoogle-cloud-storage >=2.33.0,<2.34.0a0
- libre2-11 >=2024.7.2
+ - libstdcxx >=13
- libutf8proc >=2.9.0,<2.10.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -3294,190 +3289,190 @@ packages:
- snappy >=1.2.1,<1.3.0a0
- zstd >=1.5.6,<1.6.0a0
constrains:
- - apache-arrow-proc =*=cpu
- arrow-cpp <0.0a0
- parquet-cpp <0.0a0
+ - apache-arrow-proc =*=cpu
license: Apache-2.0
license_family: APACHE
- size: 5494797
- timestamp: 1733808145854
+ size: 8770256
+ timestamp: 1735684696564
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: h3b568fd_6_cpu
- build_number: 6
+ build: h3b568fd_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_6_cpu.conda
- sha256: fdb70e2499e59b730084ecd53008b361a6f6090b5fb49624feda06b7e84c7b8c
- md5: c50907eefe2ae22d826e7cb2e4d712f5
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-acero-18.1.0-h3b568fd_7_cpu.conda
+ sha256: 42cbfc87096f745d565d814d65b7228c82d985f1898859d5e456016d73e81c82
+ md5: 4c1d8c3feea249782148d3cd6a25392e
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
- libgcc >=13
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 578091
- timestamp: 1733810378092
+ size: 578222
+ timestamp: 1735685424850
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: hcb10f89_6_cpu
- build_number: 6
+ build: hcb10f89_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_6_cpu.conda
- sha256: a32fa1d71415afc02b5cf3cd4c0a6ec0af9e749308829cc65ff79689222ce479
- md5: 143f9288b64759a6427563f058c62f2b
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-acero-18.1.0-hcb10f89_7_cpu.conda
+ sha256: 87ea5d6a84d922d73975dce8661fccf257e72e755175b12c30e1181a34e37987
+ md5: 12d84228204c56fec6ed113288014d11
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
- libgcc >=13
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 611745
- timestamp: 1733810698469
+ size: 612463
+ timestamp: 1735684749868
- kind: conda
name: libarrow-acero
version: 18.1.0
- build: hf07054f_6_cpu
- build_number: 6
+ build: hf07054f_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_6_cpu.conda
- sha256: e1cae46409927470439ef9ae93ed09b3493d0579501ca9ebfa79ded212ee98d8
- md5: 97fc01254714e1572624baefdd7cc898
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-acero-18.1.0-hf07054f_7_cpu.conda
+ sha256: 86e20cebfdb4f335e98265c1b88f5053bf3e3648768a317856295846bfdbf2b4
+ md5: 3eaf71fe987de13061db795e03bb1a1c
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
- libcxx >=18
license: Apache-2.0
license_family: APACHE
- size: 483713
- timestamp: 1733808246880
+ size: 485185
+ timestamp: 1735683071232
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: h3b568fd_6_cpu
- build_number: 6
+ build: h3b568fd_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_6_cpu.conda
- sha256: 2a08f5a1017ff660c37ae0c24343a119cb2511c6edd69e23d0a5090a0967ea35
- md5: bb1548ad011c4f9107fcc4cc548473bf
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-dataset-18.1.0-h3b568fd_7_cpu.conda
+ sha256: 13ba7d3d08015aa26569eca9e198e2f8b2a0cd2d9c420e41c78cc2e5d5170f26
+ md5: f39f5d725c2ca94c2e7b19e2717fd4ab
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
- - libarrow-acero 18.1.0 h3b568fd_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
+ - libarrow-acero 18.1.0 h3b568fd_7_cpu
- libgcc >=13
- - libparquet 18.1.0 hfc78867_6_cpu
+ - libparquet 18.1.0 hfc78867_7_cpu
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 559673
- timestamp: 1733810461646
+ size: 560329
+ timestamp: 1735685518922
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: hcb10f89_6_cpu
- build_number: 6
+ build: hcb10f89_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_6_cpu.conda
- sha256: 74eeb178070002842d3ed721769399320e3a68a0843319eaf899a092a31def26
- md5: 20ca46a6bc714a6ab189d5b3f46e66d8
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-dataset-18.1.0-hcb10f89_7_cpu.conda
+ sha256: 99c12511fba79c7947f78d676eae5857659084f687f375f68bc20bd4cddb0a0e
+ md5: 0a81eb63d7cd150f598c752e86388d57
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
- - libarrow-acero 18.1.0 hcb10f89_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
+ - libarrow-acero 18.1.0 hcb10f89_7_cpu
- libgcc >=13
- - libparquet 18.1.0 h081d1f1_6_cpu
+ - libparquet 18.1.0 h081d1f1_7_cpu
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 586627
- timestamp: 1733810842604
+ size: 587497
+ timestamp: 1735684880531
- kind: conda
name: libarrow-dataset
version: 18.1.0
- build: hf07054f_6_cpu
- build_number: 6
+ build: hf07054f_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_6_cpu.conda
- sha256: 6eba942ce926419f74e6e0a7c3994a7d78ab6be47115e6bb70e02136554736be
- md5: 0774276be6659aaa0007f1b0f6ee19b0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-dataset-18.1.0-hf07054f_7_cpu.conda
+ sha256: 52c5c4e9cd5f2ac91dcebb6a920ab2536febcea116ff8767e5439329d7da820b
+ md5: 97a2d3606682d94f7d73112e9ad684ae
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
- - libarrow-acero 18.1.0 hf07054f_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
+ - libarrow-acero 18.1.0 hf07054f_7_cpu
- libcxx >=18
- - libparquet 18.1.0 h636d7b7_6_cpu
+ - libparquet 18.1.0 h636d7b7_7_cpu
license: Apache-2.0
license_family: APACHE
- size: 489948
- timestamp: 1733809328231
+ size: 491237
+ timestamp: 1735684688308
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h3ee7192_6_cpu
- build_number: 6
+ build: h08228c5_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h3ee7192_6_cpu.conda
- sha256: bda6728db019dd0c409b1996ad9ef6ab0bcee3a94dc66a8045e8c1049c566055
- md5: aa313b3168caf98d00b3753f5ba27650
+ url: https://conda.anaconda.org/conda-forge/linux-64/libarrow-substrait-18.1.0-h08228c5_7_cpu.conda
+ sha256: 53ea53a06e137c2f81ebfdff3f978babb8b59e31f705a19b57056ec8754c1abf
+ md5: e128def53c133e8a23ac00cd4a479335
depends:
- __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h44a453e_6_cpu
- - libarrow-acero 18.1.0 hcb10f89_6_cpu
- - libarrow-dataset 18.1.0 hcb10f89_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
+ - libarrow-acero 18.1.0 hcb10f89_7_cpu
+ - libarrow-dataset 18.1.0 hcb10f89_7_cpu
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 519989
- timestamp: 1733810903274
+ size: 521861
+ timestamp: 1735684940668
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h3ffb4b1_6_cpu
- build_number: 6
+ build: h1e9d426_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h3ffb4b1_6_cpu.conda
- sha256: 9f78c55c5d7122e588a6f226cbf7e909c479d66ed18edc633d68324323d386b9
- md5: 5db2e6832397b8ca70a6f7b00e0c3629
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libarrow-substrait-18.1.0-h1e9d426_7_cpu.conda
+ sha256: 252e2a0d8c733f36b50499786480a05a59577d617f291868149c80534c1e8ffc
+ md5: 6da921d9e1c4e2ab2679eeea7cbd4c82
depends:
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h1b535d6_6_cpu
- - libarrow-acero 18.1.0 h3b568fd_6_cpu
- - libarrow-dataset 18.1.0 h3b568fd_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
+ - libarrow-acero 18.1.0 h3b568fd_7_cpu
+ - libarrow-dataset 18.1.0 h3b568fd_7_cpu
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
license: Apache-2.0
license_family: APACHE
- size: 515928
- timestamp: 1733810503359
+ size: 516014
+ timestamp: 1735685565929
- kind: conda
name: libarrow-substrait
version: 18.1.0
- build: h86344ea_6_cpu
- build_number: 6
+ build: h4239455_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h86344ea_6_cpu.conda
- sha256: bafd9ca59ebb5ad34b77aff316ef7b59c5fb1eb8a7b6a15de8dcbdf3ce37556d
- md5: c1c162f5bf569cff8bed6def705a899f
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libarrow-substrait-18.1.0-h4239455_7_cpu.conda
+ sha256: a45bbdd6932aed972d6c6ce30a7439aa8ec9d9b8ee5affb350d41e50abdc0127
+ md5: 91927747173f65695e441346c7145e26
depends:
- __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
- - libarrow-acero 18.1.0 hf07054f_6_cpu
- - libarrow-dataset 18.1.0 hf07054f_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
+ - libarrow-acero 18.1.0 hf07054f_7_cpu
+ - libarrow-dataset 18.1.0 hf07054f_7_cpu
- libcxx >=18
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
license: Apache-2.0
license_family: APACHE
- size: 451623
- timestamp: 1733809487176
+ size: 452385
+ timestamp: 1735684993831
- kind: conda
name: libblas
version: 3.9.0
@@ -3496,6 +3491,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16393
timestamp: 1734432564346
- kind: conda
@@ -3516,6 +3512,7 @@ packages:
- libcblas 3.9.0 26_linuxaarch64_openblas
- liblapack 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16477
timestamp: 1734432576699
- kind: conda
@@ -3536,6 +3533,7 @@ packages:
- libcblas 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16714
timestamp: 1734433054681
- kind: conda
@@ -3698,6 +3696,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16336
timestamp: 1734432570482
- kind: conda
@@ -3716,6 +3715,7 @@ packages:
- liblapacke 3.9.0 26_linuxaarch64_openblas
- liblapack 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16398
timestamp: 1734432580937
- kind: conda
@@ -3734,6 +3734,7 @@ packages:
- liblapacke 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16628
timestamp: 1734433061517
- kind: conda
@@ -3843,18 +3844,19 @@ packages:
timestamp: 1734000160270
- kind: conda
name: libcxx
- version: 19.1.5
- build: ha82da77_0
+ version: 19.1.6
+ build: ha82da77_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.5-ha82da77_0.conda
- sha256: 7918cc0bb7a6554cdd3eee634c3dc414a1ab8ec49faeca1567367bb92118f9d7
- md5: 3c7be0df28ccda1d193ea6de56dcb5ff
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-19.1.6-ha82da77_1.conda
+ sha256: 2b2443404503cd862385fd2f2a2c73f9624686fd1e5a45050b4034cfc06904ec
+ md5: ce5252d8db110cdb4ae4173d0a63c7c5
depends:
- __osx >=11.0
license: Apache-2.0 WITH LLVM-exception
license_family: Apache
- size: 519819
- timestamp: 1733291654212
+ size: 520992
+ timestamp: 1734494699681
- kind: conda
name: libdeflate
version: '1.23'
@@ -3867,6 +3869,7 @@ packages:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
license: MIT
+ license_family: MIT
size: 72255
timestamp: 1734373823254
- kind: conda
@@ -3880,6 +3883,7 @@ packages:
depends:
- libgcc >=13
license: MIT
+ license_family: MIT
size: 69862
timestamp: 1734373858306
- kind: conda
@@ -3893,55 +3897,58 @@ packages:
depends:
- __osx >=11.0
license: MIT
+ license_family: MIT
size: 54132
timestamp: 1734373971372
- kind: conda
name: libedit
- version: 3.1.20191231
- build: hc8eb9b7_2
- build_number: 2
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
- sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca
- md5: 30e4362988a2623e9eb34337b83e01f9
+ version: 3.1.20240808
+ build: pl5321h7949ede_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20240808-pl5321h7949ede_0.conda
+ sha256: 4d0d69ddf9cc7d724a1ccf3a9852e44c8aea9825692582bac2c4e8d21ec95ccd
+ md5: 8247f80f3dc464d9322e85007e307fe8
depends:
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 96607
- timestamp: 1597616630749
+ size: 134657
+ timestamp: 1736191912705
- kind: conda
name: libedit
- version: 3.1.20191231
- build: he28a2e2_2
- build_number: 2
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf
- md5: 4d331e44109e3f0e19b4cb8f9b82f3e1
+ version: 3.1.20240808
+ build: pl5321h976ea20_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20240808-pl5321h976ea20_0.conda
+ sha256: 031daea98cf278f858b7957ad5dc475f1b5673cd5e718850529401ced64cef2c
+ md5: 0be40129d3dd1a152fff29a85f0785d0
depends:
- - libgcc-ng >=7.5.0
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - libgcc >=13
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 123878
- timestamp: 1597616541093
+ size: 148120
+ timestamp: 1736192137151
- kind: conda
name: libedit
- version: 3.1.20191231
- build: he28a2e2_2
- build_number: 2
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
- sha256: debc31fb2f07ba2b0363f90e455873670734082822926ba4a9556431ec0bf36d
- md5: 29371161d77933a54fccf1bb66b96529
+ version: 3.1.20240808
+ build: pl5321hafb1f1b_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20240808-pl5321hafb1f1b_0.conda
+ sha256: fb934d7a03279ec8eae4bf1913ac9058fcf6fed35290d8ffa6e04157f396a3b1
+ md5: af89aa84ffb5ee551ce0c137b951a3b5
depends:
- - libgcc-ng >=7.5.0
- - ncurses >=6.2,<7.0.0a0
+ - ncurses
+ - __osx >=11.0
+ - ncurses >=6.5,<7.0a0
license: BSD-2-Clause
license_family: BSD
- size: 134104
- timestamp: 1597617110769
+ size: 107634
+ timestamp: 1736192034117
- kind: conda
name: libev
version: '4.33'
@@ -4321,214 +4328,223 @@ packages:
timestamp: 1729089357313
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h3888205_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.32.0-h3888205_0.conda
- sha256: 36af2844ce8fafd477214d51117746144461132f76759a7d29963b4583b577be
- md5: a40b948bf4eabcc1ce708c40ffd7c06d
+ version: 2.33.0
+ build: h2b5623c_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.33.0-h2b5623c_1.conda
+ sha256: ae48ee93e2c226bf682f1e389c2fd51ae7bf77c2ce4b3aee069764f4be1c63f2
+ md5: 61829a8dd5f4e2327e707572065bae41
depends:
+ - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libgcc >=13
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 1248560
- timestamp: 1733512309504
+ size: 1254656
+ timestamp: 1735648569457
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h804f50b_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-2.32.0-h804f50b_0.conda
- sha256: 126856add750013390dff664a3c3cd0f6f0cbbc683b0025a7ce9d1618968bc70
- md5: 3d96df4d6b1c88455e05b94ce8a14a53
+ version: 2.33.0
+ build: hccf9d24_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-2.33.0-hccf9d24_1.conda
+ sha256: d3d4def86d880431928799ba90ca97e57c2f05677c03af8de2337502926c492c
+ md5: a2724014eb04f14bd71d35f45b062dd0
depends:
- - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libgcc >=13
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 1249557
- timestamp: 1733512191906
+ size: 1253019
+ timestamp: 1735649566849
- kind: conda
name: libgoogle-cloud
- version: 2.32.0
- build: h8d8be31_0
+ version: 2.33.0
+ build: hdbe95d5_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.32.0-h8d8be31_0.conda
- sha256: 722e49dbdc4486105d9f5b79a7ba4f9064602fe20c4015e97684c898ab8d3386
- md5: d7ab9e0eb7d55eac4943913073de61d7
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-2.33.0-hdbe95d5_1.conda
+ sha256: ce95aca02451694a4154c7770b6addf4fb859abf17912de6ec947da8469a56ce
+ md5: 91de1fbab8610974c0094c266bc63435
depends:
- __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcurl >=8.10.1,<9.0a0
+ - libcurl >=8.11.1,<9.0a0
- libcxx >=18
- libgrpc >=1.67.1,<1.68.0a0
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- openssl >=3.4.0,<4.0a0
constrains:
- - libgoogle-cloud 2.32.0 *_0
+ - libgoogle-cloud 2.33.0 *_1
license: Apache-2.0
license_family: Apache
- size: 876210
- timestamp: 1733512539476
+ size: 877594
+ timestamp: 1735648230965
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: h0121fbd_0
+ version: 2.33.0
+ build: h0121fbd_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.32.0-h0121fbd_0.conda
- sha256: d1b53d17df38b52a4bc6d1fe6af0e611d6480ce10b0af570c84bd38c8aa83b91
- md5: 877a5ec0431a5af83bf0cd0522bfe661
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgoogle-cloud-storage-2.33.0-h0121fbd_1.conda
+ sha256: 41022523320ca8633a6c615710823e596efadb50f06d724e1a0c81e27994f257
+ md5: b0cfb5044685a7a9fa43ae669124f0a0
depends:
- __glibc >=2.17,<3.0.a0
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libgcc >=13
- - libgoogle-cloud 2.32.0 h804f50b_0
+ - libgoogle-cloud 2.33.0 h2b5623c_1
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 782108
- timestamp: 1733512329104
+ size: 784357
+ timestamp: 1735648759177
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: h7081f7f_0
+ version: 2.33.0
+ build: h7081f7f_1
+ build_number: 1
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.32.0-h7081f7f_0.conda
- sha256: 609df2cf376ba66460f40143f835fc567cae4458df80705587cd2efd59c09bf1
- md5: 28f5ab5cf95170dfacd05d2bb301e573
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgoogle-cloud-storage-2.33.0-h7081f7f_1.conda
+ sha256: c0524a22064bc17f5c037da09ba54cc9e767741ef645178e499750c44bec2531
+ md5: af8e51382464d4cc2d0054977c40a732
depends:
- __osx >=11.0
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libcxx >=18
- - libgoogle-cloud 2.32.0 h8d8be31_0
+ - libgoogle-cloud 2.33.0 hdbe95d5_1
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 526895
- timestamp: 1733513644846
+ size: 526963
+ timestamp: 1735649222088
- kind: conda
name: libgoogle-cloud-storage
- version: 2.32.0
- build: hb9b2b65_0
+ version: 2.33.0
+ build: hb9b2b65_1
+ build_number: 1
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.32.0-hb9b2b65_0.conda
- sha256: e120e7b6c9c9d25baa8ae903106babdd3c969523ae25278a615ed9de4bd0fc35
- md5: 925ab0ca33baca4fcfee585cecb94169
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgoogle-cloud-storage-2.33.0-hb9b2b65_1.conda
+ sha256: 5eda1cbba68709b91b370b3792c9cfd7bec4ac4e2262f0887d12e1f000ae1191
+ md5: 45df2267ff4d8ce532e8d300ce0b0829
depends:
- libabseil
- libcrc32c >=1.1.2,<1.2.0a0
- libcurl
- libgcc >=13
- - libgoogle-cloud 2.32.0 h3888205_0
+ - libgoogle-cloud 2.33.0 hccf9d24_1
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- openssl
license: Apache-2.0
license_family: Apache
- size: 737964
- timestamp: 1733512457785
+ size: 737518
+ timestamp: 1735649773462
- kind: conda
name: libgrpc
version: 1.67.1
- build: h36c5df4_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-h36c5df4_0.conda
- sha256: 1f6673d9d866048c9cf28fd56e6874ffc7e2c53c47d7071cb367d5fc2dde16a7
- md5: b946137e362e98a55a77fdf0b20a7739
+ build: h0a426d6_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-h0a426d6_1.conda
+ sha256: 630edf63981818ff590367cb95fddbed0f5a390464d0952c90ec81de899e84a6
+ md5: 8a3cba079d6ac985e7d73c76a678fbb4
depends:
- - c-ares >=1.32.3,<2.0a0
+ - __osx >=11.0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libcxx >=18
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
- - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 7131846
- timestamp: 1730236305327
+ size: 5311706
+ timestamp: 1735585137716
- kind: conda
name: libgrpc
version: 1.67.1
- build: hc2c308b_0
+ build: h25350d4_1
+ build_number: 1
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-hc2c308b_0.conda
- sha256: 870550c1faf524e9a695262cd4c31441b18ad542f16893bd3c5dbc93106705f7
- md5: 4606a4647bfe857e3cfe21ca12ac3afb
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgrpc-1.67.1-h25350d4_1.conda
+ sha256: 014627485b3cf0ea18e04c0bab07be7fb98722a3aeeb58477acc7e1c3d2f911e
+ md5: 0c6497a760b99a926c7c12b74951a39c
depends:
- __glibc >=2.17,<3.0.a0
- - c-ares >=1.32.3,<2.0a0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 7362336
- timestamp: 1730236333879
+ size: 7792251
+ timestamp: 1735584856826
- kind: conda
name: libgrpc
version: 1.67.1
- build: hc70892a_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libgrpc-1.67.1-hc70892a_0.conda
- sha256: d2393fcd3c3584e5d58da4122f48bcf297567d2f6f14b3d1fcbd34fdd5040694
- md5: 624e27571fde34f8acc2afec840ac435
+ build: hf7ccdd3_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libgrpc-1.67.1-hf7ccdd3_1.conda
+ sha256: 3fa173dc1d7456aac2b26937daae86a08432a31640e3d6569c62edc661fc9bbe
+ md5: 8fb41a425bebaeb3d0fa568503612e64
depends:
- - __osx >=11.0
- - c-ares >=1.34.2,<2.0a0
+ - c-ares >=1.34.4,<2.0a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libgcc >=13
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libre2-11 >=2024.7.2
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- - openssl >=3.3.2,<4.0a0
+ - openssl >=3.4.0,<4.0a0
- re2
constrains:
- grpc-cpp =1.67.1
license: Apache-2.0
license_family: APACHE
- size: 4882208
- timestamp: 1730236299095
+ size: 7430006
+ timestamp: 1735585769731
- kind: conda
name: libiconv
version: '1.17'
@@ -4631,6 +4647,7 @@ packages:
- liblapacke 3.9.0 26_linux64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16338
timestamp: 1734432576650
- kind: conda
@@ -4649,6 +4666,7 @@ packages:
- liblapacke 3.9.0 26_linuxaarch64_openblas
- libcblas 3.9.0 26_linuxaarch64_openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16403
timestamp: 1734432585123
- kind: conda
@@ -4667,6 +4685,7 @@ packages:
- libcblas 3.9.0 26_osxarm64_openblas
- blas * openblas
license: BSD-3-Clause
+ license_family: BSD
size: 16624
timestamp: 1734433068120
- kind: conda
@@ -4863,132 +4882,133 @@ packages:
- kind: conda
name: libparquet
version: 18.1.0
- build: h081d1f1_6_cpu
- build_number: 6
+ build: h081d1f1_7_cpu
+ build_number: 7
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_6_cpu.conda
- sha256: c691a59f1ebb6cedbf827f49f6cf414e08b0eec911f589133e6a8321e8ac701c
- md5: 68788df49ce7480187eb6387f15b2b67
+ url: https://conda.anaconda.org/conda-forge/linux-64/libparquet-18.1.0-h081d1f1_7_cpu.conda
+ sha256: 55945b761130f60abdecf1551907ecfd05cb4a5958cf74d855b30c005ecb3592
+ md5: b97013ef4e1dd2cf11594f06d5b5e83a
depends:
- __glibc >=2.17,<3.0.a0
- - libarrow 18.1.0 h44a453e_6_cpu
+ - libarrow 18.1.0 hd595efa_7_cpu
- libgcc >=13
- libstdcxx >=13
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 1204535
- timestamp: 1733810811118
+ size: 1205598
+ timestamp: 1735684849150
- kind: conda
name: libparquet
version: 18.1.0
- build: h636d7b7_6_cpu
- build_number: 6
+ build: h636d7b7_7_cpu
+ build_number: 7
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_6_cpu.conda
- sha256: 88c1e810bede65c54f1ebc51c14400f9e8cf0fc1f88a8c0a99210e2f5dfed582
- md5: 9b333c3a38e55f6c1b8733222e22f528
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libparquet-18.1.0-h636d7b7_7_cpu.conda
+ sha256: bf42e43542a90edd86ba5aa5fd4543671625f1bc35f62be32688f00e18bae990
+ md5: 93de9ba66a20db32a2646d313794b3a8
depends:
- __osx >=11.0
- - libarrow 18.1.0 h4a2f8bd_6_cpu
+ - libarrow 18.1.0 h0ad35bc_7_cpu
- libcxx >=18
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 873134
- timestamp: 1733809271282
+ size: 873251
+ timestamp: 1735684582558
- kind: conda
name: libparquet
version: 18.1.0
- build: hfc78867_6_cpu
- build_number: 6
+ build: hfc78867_7_cpu
+ build_number: 7
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_6_cpu.conda
- sha256: 38aab34c422519c530d0e9a3e0ffd1624db1c1e163983c46ae341e831b2eb6b5
- md5: 1ab6d4a9a982920b9dc5f2c700777b27
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libparquet-18.1.0-hfc78867_7_cpu.conda
+ sha256: 6dff9bbe731dc2cefe96bd9c7981d2cbef2b564a3152840a29c9b6a493ea50d9
+ md5: 184bec7a9392ab6ba8134041e81971d6
depends:
- - libarrow 18.1.0 h1b535d6_6_cpu
+ - libarrow 18.1.0 hb7781cd_7_cpu
- libgcc >=13
- libstdcxx >=13
- libthrift >=0.21.0,<0.21.1.0a0
- openssl >=3.4.0,<4.0a0
license: Apache-2.0
license_family: APACHE
- size: 1117592
- timestamp: 1733810440129
+ size: 1117825
+ timestamp: 1735685495511
- kind: conda
name: libpng
- version: 1.6.44
- build: hadc24fc_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.44-hadc24fc_0.conda
- sha256: e5b14f7a01c2db4362d8591f42f82f336ed48d5e4079e4d1f65d0c2a3637ea78
- md5: f4cc49d7aa68316213e4b12be35308d1
+ version: 1.6.45
+ build: h3783ad8_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.45-h3783ad8_0.conda
+ sha256: ddcc81c049b32fb5eb3ac1f9a6d3a589c08325c8ec6f89eb912208b19330d68c
+ md5: d554c806d065b1763cb9e1cb1d25741d
depends:
- - __glibc >=2.17,<3.0.a0
- - libgcc >=13
+ - __osx >=11.0
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 290661
- timestamp: 1726234747153
+ size: 263151
+ timestamp: 1736339184358
- kind: conda
name: libpng
- version: 1.6.44
- build: hc14010f_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libpng-1.6.44-hc14010f_0.conda
- sha256: 38f8759a3eb8060deabd4db41f0f023514d853e46ddcbd0ba21768fc4e563bb1
- md5: fb36e93f0ea6a6f5d2b99984f34b049e
+ version: 1.6.45
+ build: h943b412_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libpng-1.6.45-h943b412_0.conda
+ sha256: b8f5b5ba9a14dedf7c97c01300de492b1b52b68eacbc3249a13fdbfa82349a2f
+ md5: 85cbdaacad93808395ac295b5667d25b
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 263385
- timestamp: 1726234714421
+ size: 289426
+ timestamp: 1736339058310
- kind: conda
name: libpng
- version: 1.6.44
- build: hc4a20ef_0
+ version: 1.6.45
+ build: hec79eb8_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.44-hc4a20ef_0.conda
- sha256: 23b5ce15cf9c6017641a8396bab00ae807dd9f662718cfa7f61de114d0c97647
- md5: 5d25802b25fcc7419fa13e21affaeb3a
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libpng-1.6.45-hec79eb8_0.conda
+ sha256: a06daa523a0d5775acb96e6e3f083adc2ab1383eb8f664513dbc663f439c9cca
+ md5: 9a8716c16b40acc7148263de1d0a403b
depends:
- libgcc >=13
- libzlib >=1.3.1,<2.0a0
license: zlib-acknowledgement
- size: 294907
- timestamp: 1726236639270
+ size: 299051
+ timestamp: 1736344007986
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h029595c_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.2-h029595c_0.conda
- sha256: d8c7b6f851bfc53494d9b8e54d473c4f11ab26483a6e64df6f7967563df166b1
- md5: 538dbe0ad9f248e2e109abb9b6809ea5
+ version: 5.28.3
+ build: h3bd63a1_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.3-h3bd63a1_1.conda
+ sha256: f58a16b13ad53346903c833e266f83c3d770a43a432659b98710aed85ca885e7
+ md5: bdbfea4cf45ae36652c6bbcc2e7ebe91
depends:
+ - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libstdcxx >=13
+ - libcxx >=18
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2802876
- timestamp: 1728564881988
+ size: 2271580
+ timestamp: 1735576361997
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h5b01275_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.2-h5b01275_0.conda
- sha256: 5e8fd4aa00193c85602ce6101dd28fe31306dff85c9725048f6dc828dfa7c421
- md5: ab0bff36363bec94720275a681af8b83
+ version: 5.28.3
+ build: h44a3b7b_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libprotobuf-5.28.3-h44a3b7b_1.conda
+ sha256: ecb69f2b1668e784b41ba667493be846662d5ef702bef64fb2e013bb1364cdc4
+ md5: 68f807f7cc13951652bbe048253fd405
depends:
- - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- libgcc >=13
@@ -4996,75 +5016,77 @@ packages:
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2945348
- timestamp: 1728565355702
+ size: 2788074
+ timestamp: 1735576315676
- kind: conda
name: libprotobuf
- version: 5.28.2
- build: h8f0b736_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libprotobuf-5.28.2-h8f0b736_0.conda
- sha256: f732a6fa918428e2d5ba61e78fe11bb44a002cc8f6bb74c94ee5b1297fefcfd8
- md5: d2cb5991f2fb8eb079c80084435e9ce6
+ version: 5.28.3
+ build: h6128344_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/libprotobuf-5.28.3-h6128344_1.conda
+ sha256: 51125ebb8b7152e4a4e69fd2398489c4ec8473195c27cde3cbdf1cb6d18c5493
+ md5: d8703f1ffe5a06356f06467f1d0b9464
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
+ - libgcc >=13
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
license: BSD-3-Clause
license_family: BSD
- size: 2374965
- timestamp: 1728565334796
+ size: 2960815
+ timestamp: 1735577210663
- kind: conda
name: libre2-11
version: 2024.07.02
- build: h18dbdb1_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_1.conda
- sha256: 96d4fdac28d5af38c38f90c22cb0aa9a90affae13ca8ba24bd1eb60b789df8ff
- md5: f1800796b0efc4bbc5b001d845545111
+ build: h07bc746_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h07bc746_2.conda
+ sha256: 112a73ad483353751d4c5d63648c69a4d6fcebf5e1b698a860a3f5124fc3db96
+ md5: 6b1e3624d3488016ca4f1ca0c412efaa
depends:
+ - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libgcc >=13
- - libstdcxx >=13
+ - libcxx >=18
constrains:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 203516
- timestamp: 1728778974654
+ size: 167155
+ timestamp: 1735541067807
- kind: conda
name: libre2-11
version: 2024.07.02
- build: h2348fd5_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libre2-11-2024.07.02-h2348fd5_1.conda
- sha256: 6facca42cfc85a05b33e484a8b0df7857cc092db34806946d022270098d8d20f
- md5: 5a7065309a66097738be6a06fd04b7ef
+ build: h18dbdb1_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libre2-11-2024.07.02-h18dbdb1_2.conda
+ sha256: 862c20de0120f802e618dcb25913d00c5b82f91f4be60b2d46a774e851adc2f6
+ md5: 9a7dbbaab49f76a6f36e5c9d98e323a7
depends:
- - __osx >=11.0
- libabseil * cxx17*
- libabseil >=20240722.0,<20240723.0a0
- - libcxx >=17
+ - libgcc >=13
+ - libstdcxx >=13
constrains:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 165956
- timestamp: 1728779107218
+ size: 204305
+ timestamp: 1735540986919
- kind: conda
name: libre2-11
version: 2024.07.02
- build: hbbce691_1
- build_number: 1
+ build: hbbce691_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_1.conda
- sha256: f8ad6a4f6d4fd54ebe3e5e712a01e663222fc57f49d16b6b8b10c30990dafb8f
- md5: 2124de47357b7a516c0a3efd8f88c143
+ url: https://conda.anaconda.org/conda-forge/linux-64/libre2-11-2024.07.02-hbbce691_2.conda
+ sha256: 4420f8362c71251892ba1eeb957c5e445e4e1596c0c651c28d0d8b415fe120c7
+ md5: b2fede24428726dd867611664fb372e8
depends:
- __glibc >=2.17,<3.0.a0
- libabseil * cxx17*
@@ -5075,8 +5097,8 @@ packages:
- re2 2024.07.02.*
license: BSD-3-Clause
license_family: BSD
- size: 211096
- timestamp: 1728778964655
+ size: 209793
+ timestamp: 1735541054068
- kind: conda
name: libsodium
version: 1.0.20
@@ -5508,50 +5530,53 @@ packages:
timestamp: 1729322566955
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: h31becfc_0
+ version: 1.5.0
+ build: h0886dbf_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.4.0-h31becfc_0.conda
- sha256: 10dded60f274e29c573cfacf6e96f5d0fc374ee431250374a44cbd773916ab9d
- md5: 5fd7ab3e5f382c70607fbac6335e6e19
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/libwebp-base-1.5.0-h0886dbf_0.conda
+ sha256: b3d881a0ae08bb07fff7fa8ead506c8d2e0388733182fe4f216f3ec5d61ffcf0
+ md5: 95ef4a689b8cc1b7e18b53784d88f96b
depends:
- - libgcc-ng >=12
+ - libgcc >=13
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 363577
- timestamp: 1713201785160
+ size: 362623
+ timestamp: 1734779054659
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: h93a5062_0
+ version: 1.5.0
+ build: h2471fea_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.4.0-h93a5062_0.conda
- sha256: 0d4bad713a512d79bfeb4d61821f447afab8b0792aca823f505ce6b195e9fde5
- md5: c0af0edfebe780b19940e94871f1a765
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/libwebp-base-1.5.0-h2471fea_0.conda
+ sha256: f8bdb876b4bc8cb5df47c28af29188de8911c3fea4b799a33743500149de3f4a
+ md5: 569466afeb84f90d5bb88c11cc23d746
+ depends:
+ - __osx >=11.0
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 287750
- timestamp: 1713200194013
+ size: 290013
+ timestamp: 1734777593617
- kind: conda
name: libwebp-base
- version: 1.4.0
- build: hd590300_0
+ version: 1.5.0
+ build: h851e524_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.4.0-hd590300_0.conda
- sha256: 49bc5f6b1e11cb2babf2a2a731d1a680a5e08a858280876a779dbda06c78c35f
- md5: b26e8aa824079e1be0294e7152ca4559
+ url: https://conda.anaconda.org/conda-forge/linux-64/libwebp-base-1.5.0-h851e524_0.conda
+ sha256: c45283fd3e90df5f0bd3dbcd31f59cdd2b001d424cf30a07223655413b158eaf
+ md5: 63f790534398730f59e1b899c3644d4a
depends:
- - libgcc-ng >=12
+ - __glibc >=2.17,<3.0.a0
+ - libgcc >=13
constrains:
- - libwebp 1.4.0
+ - libwebp 1.5.0
license: BSD-3-Clause
license_family: BSD
- size: 438953
- timestamp: 1713199854503
+ size: 429973
+ timestamp: 1734777489810
- kind: conda
name: libxcb
version: 1.17.0
@@ -5745,35 +5770,35 @@ packages:
timestamp: 1727963148474
- kind: conda
name: lit
- version: 19.1.5
+ version: 19.1.6
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.5-pyhd8ed1ab_0.conda
- sha256: 07854df4ab39a333155b4813338caf8e0f6fe5a9abc84518d9409aa5cd91f94c
- md5: ad3f4f4e25b666610c281c6fb92f06f9
+ url: https://conda.anaconda.org/conda-forge/noarch/lit-19.1.6-pyhd8ed1ab_0.conda
+ sha256: db850690a15523a42f6e526d069a4a065d516793360d0b20e67258316bcf14f1
+ md5: 367b485a667684bd797fddb1abf66969
depends:
- python >=3
license: Apache-2.0 WITH LLVM-exception
license_family: Apache
- size: 128621
- timestamp: 1733310809397
+ size: 128368
+ timestamp: 1734486415918
- kind: conda
name: llvm-openmp
- version: 19.1.5
+ version: 19.1.6
build: hdb05f8b_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.5-hdb05f8b_0.conda
- sha256: e7ba0d8b718925efdcf1309f5e776e3264cc172d3af8d4048b39627c50a1abc0
- md5: f2c2e187a1d2637d282e34dc92021a70
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-19.1.6-hdb05f8b_0.conda
+ sha256: a0f3e9139ab16f0a67b9d2bbabc15b78977168f4a5b5503fed4962dcb9a96102
+ md5: 34fdeffa0555a1a56f38839415cc066c
depends:
- __osx >=11.0
constrains:
- - openmp 19.1.5|19.1.5.*
+ - openmp 19.1.6|19.1.6.*
license: Apache-2.0 WITH LLVM-exception
license_family: APACHE
- size: 281120
- timestamp: 1733376089600
+ size: 281251
+ timestamp: 1734520462311
- kind: conda
name: lz4-c
version: 1.10.0
@@ -5901,76 +5926,76 @@ packages:
timestamp: 1733219945697
- kind: conda
name: max
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2024121705-release.conda
- sha256: 83b2265b29c1ee69ae9d9f639ab04899d0ef15b5abc9114e034e2cd382dcad31
- md5: bd7165d97ebb0458ddb1ce616c146c24
- depends:
- - max-core ==25.1.0.dev2024121705 release
- - max-python >=25.1.0.dev2024121705,<26.0a0
- - mojo-jupyter ==25.1.0.dev2024121705 release
- - mblack ==25.1.0.dev2024121705 release
+ url: https://conda.modular.com/max-nightly/noarch/max-25.1.0.dev2025010817-release.conda
+ sha256: 4ce81189e26dd06f188129580db0464f8ee9a081e195dad7082b2fa25fcf738e
+ md5: b46d770a5f45597ffc008bd224d8e91c
+ depends:
+ - max-core ==25.1.0.dev2025010817 release
+ - max-python >=25.1.0.dev2025010817,<26.0a0
+ - mojo-jupyter ==25.1.0.dev2025010817 release
+ - mblack ==25.1.0.dev2025010817 release
license: LicenseRef-Modular-Proprietary
- size: 9921
- timestamp: 1734412638047
+ size: 9922
+ timestamp: 1736357145809
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: linux-64
- url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2024121705-release.conda
- sha256: 15459b8446d3feb608baae398cf2753a3704e02e07cf2a6c02e166068d8a9304
- md5: 4ca65aff37bd7e944cce1697c1fe203e
+ url: https://conda.modular.com/max-nightly/linux-64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 5459a1f6c379b01231649212ca7f5062c49208b5c0b2b17047b55011872727c2
+ md5: 5bbb293b5216b098c424e7602823a460
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: x86_64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 245744992
- timestamp: 1734412638045
+ size: 247646542
+ timestamp: 1736357145807
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: linux-aarch64
- url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2024121705-release.conda
- sha256: e89be4d7691a354a3f6e5d71e25b49447ca9fd1048fe03355c3bc509a726234d
- md5: acc4b1208feaba5ad08c1b370192e127
+ url: https://conda.modular.com/max-nightly/linux-aarch64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 18715c3fc8071d5eeb9f1893512fe65967919e9900738423958a5cb4f09148da
+ md5: 4a7b6e800f8fdabf0498727c1bff57d3
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: aarch64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 249373255
- timestamp: 1734412698620
+ size: 251608988
+ timestamp: 1736357045232
- kind: conda
name: max-core
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: osx-arm64
- url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2024121705-release.conda
- sha256: edd613b122c086c4d6237c7195a55ce09bff9922ab70e0f1ff7a9662d3de41fe
- md5: d68326deab9bb460f253bf6df7e903f6
+ url: https://conda.modular.com/max-nightly/osx-arm64/max-core-25.1.0.dev2025010817-release.conda
+ sha256: 5a23bdc48d6fe2cfe439097b7a0fc0f1bd2b23be081478638ef4b945267d8015
+ md5: 1f54b615e5199ac268f123c89cfbabda
depends:
- - mblack ==25.1.0.dev2024121705 release
+ - mblack ==25.1.0.dev2025010817 release
arch: arm64
platform: osx
license: LicenseRef-Modular-Proprietary
- size: 214152137
- timestamp: 1734412888834
+ size: 209267317
+ timestamp: 1736357278969
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: linux-64
- url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: 11296250671f2a7c5951382f89f8e68a1702b0c8aeef200788e71d9e0e1d2955
- md5: f979494f9de5b3853834ffa1adf606c3
+ url: https://conda.modular.com/max-nightly/linux-64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: 7bd73eb5b2c8f796bb2bf947e68b46f9fa0302c1999905321bd18c453be5d410
+ md5: 58d7a8476c07a36c0412fcd983faebfc
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -5993,18 +6018,18 @@ packages:
arch: x86_64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 122755617
- timestamp: 1734412638055
+ size: 124309678
+ timestamp: 1736357145817
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: linux-aarch64
- url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: e4a7ded05f33903034e52feefe65f458975942740cf07dcb30e2e9c1f0af53e6
- md5: 9a51b55d48b861487dbecd7c4abc7b68
+ url: https://conda.modular.com/max-nightly/linux-aarch64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: 1faa8dea2f87c25b20f467758a46589d2d464d8367fda4fa7fa61c73120b62f9
+ md5: be84f3b39ee757dd73d27ac241c37d5a
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -6027,18 +6052,18 @@ packages:
arch: aarch64
platform: linux
license: LicenseRef-Modular-Proprietary
- size: 126486411
- timestamp: 1734412698632
+ size: 128047180
+ timestamp: 1736357045243
- kind: conda
name: max-python
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: 3.12release
subdir: osx-arm64
- url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2024121705-3.12release.conda
- sha256: 328cee9730cf537d58e6d24b9aa111504271433d724fd47fdcee55b26df222b3
- md5: b1168de7b96e9e7b0fad7c675ecdb426
+ url: https://conda.modular.com/max-nightly/osx-arm64/max-python-25.1.0.dev2025010817-3.12release.conda
+ sha256: c8b10ed04f57bc9a9e67d447ad97404ea06f3efbc903dced4723f3828c93ab2c
+ md5: aa8c692e6393c51283419173f7cb69a2
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python 3.12.*
- fastapi
- httpx
@@ -6061,17 +6086,17 @@ packages:
arch: arm64
platform: osx
license: LicenseRef-Modular-Proprietary
- size: 113391631
- timestamp: 1734412888837
+ size: 110680624
+ timestamp: 1736357278972
- kind: conda
name: mblack
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2024121705-release.conda
- sha256: 44d0c3a0b1242823334d6bad895ad037849719f67bcfbc426c65363c567f80a5
- md5: 93c89483058dabd0282c378812328ba0
+ url: https://conda.modular.com/max-nightly/noarch/mblack-25.1.0.dev2025010817-release.conda
+ sha256: 8bc21a826d3edc5a8719deeeadcee5b3fc8fbd83313ce2c7ebc8c620075608e1
+ md5: ee664fe2390706d36d2d60b1f2bd69df
depends:
- python >=3.9,<3.13
- click >=8.0.0
@@ -6081,8 +6106,8 @@ packages:
- platformdirs >=2
- python
license: MIT
- size: 130801
- timestamp: 1734412638051
+ size: 130813
+ timestamp: 1736357145814
- kind: conda
name: mdurl
version: 0.1.2
@@ -6101,21 +6126,21 @@ packages:
timestamp: 1733255681319
- kind: conda
name: mojo-jupyter
- version: 25.1.0.dev2024121705
+ version: 25.1.0.dev2025010817
build: release
subdir: noarch
noarch: python
- url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2024121705-release.conda
- sha256: 8ef8447f576590d381ccaa82e6c207c530e9355b07ab3174f3df9c9f064d42de
- md5: 4c31e34ff54c71cd9d584d3ab8f1c315
+ url: https://conda.modular.com/max-nightly/noarch/mojo-jupyter-25.1.0.dev2025010817-release.conda
+ sha256: a92d02809c43a9a92abc363e69396738f6c9802c12d8827cc008d316cea4e107
+ md5: 0533034ac307140f160cf43c5f36b2ed
depends:
- - max-core ==25.1.0.dev2024121705 release
+ - max-core ==25.1.0.dev2025010817 release
- python >=3.9,<3.13
- jupyter_client >=8.6.2,<8.7
- python
license: LicenseRef-Modular-Proprietary
- size: 22937
- timestamp: 1734412638052
+ size: 22926
+ timestamp: 1736357145815
- kind: conda
name: multidict
version: 6.1.0
@@ -6409,49 +6434,52 @@ packages:
- kind: conda
name: openssl
version: 3.4.0
- build: h39f12f2_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h39f12f2_0.conda
- sha256: bd1d58ced46e75efa3b842c61642fd12272c69e9fe4d7261078bc082153a1d53
- md5: df307bbc703324722df0293c9ca2e418
+ build: h7b32b05_1
+ build_number: 1
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-h7b32b05_1.conda
+ sha256: f62f6bca4a33ca5109b6d571b052a394d836956d21b25b7ffd03376abf7a481f
+ md5: 4ce6875f75469b2757a65e10a5d05e31
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- ca-certificates
+ - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 2935176
- timestamp: 1731377561525
+ size: 2937158
+ timestamp: 1736086387286
- kind: conda
name: openssl
version: 3.4.0
- build: h86ecc28_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-h86ecc28_0.conda
- sha256: 64dbbdd6384fa56338124783197f7ad9048c989a02264bcd2e07355e3570f113
- md5: b2f202b5bddafac824eb610b65dde98f
+ build: h81ee809_1
+ build_number: 1
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.4.0-h81ee809_1.conda
+ sha256: 97772762abc70b3a537683ca9fc3ff3d6099eb64e4aba3b9c99e6fce48422d21
+ md5: 22f971393637480bda8c679f374d8861
depends:
+ - __osx >=11.0
- ca-certificates
- - libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 3474825
- timestamp: 1731379200886
+ size: 2936415
+ timestamp: 1736086108693
- kind: conda
name: openssl
version: 3.4.0
- build: hb9d3cd8_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.4.0-hb9d3cd8_0.conda
- sha256: 814b9dff1847b132c676ee6cc1a8cb2d427320779b93e1b6d76552275c128705
- md5: 23cc74f77eb99315c0360ec3533147a9
+ build: hd08dc88_1
+ build_number: 1
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/openssl-3.4.0-hd08dc88_1.conda
+ sha256: 60d34454b861501d7355f25a7b39fdb5de8d56fca49b5bcbe8b8142b7d82dce4
+ md5: e21c4767e783a58c373fdb99de6211bf
depends:
- - __glibc >=2.17,<3.0.a0
- ca-certificates
- libgcc >=13
license: Apache-2.0
license_family: Apache
- size: 2947466
- timestamp: 1731377666602
+ size: 3469279
+ timestamp: 1736088141230
- kind: conda
name: opentelemetry-api
version: 1.29.0
@@ -6507,6 +6535,7 @@ packages:
- python >=3.9
- requests >=2.7,<3.dev0
license: Apache-2.0
+ license_family: APACHE
size: 17147
timestamp: 1734345675510
- kind: conda
@@ -6582,16 +6611,16 @@ packages:
- kind: conda
name: orc
version: 2.0.3
- build: h3c55218_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-h3c55218_1.conda
- sha256: 154b26bc4d586de33765a155c9b79ebd7f5bb36c2bbf4b8854e1631bca8d21af
- md5: 0a51a3cf028b845c46ec0d1ea2d18629
+ build: h0ff2369_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-h0ff2369_2.conda
+ sha256: cca330695f3bdb8c0e46350c29cd4af3345865544e36f1d7c9ba9190ad22f5f4
+ md5: 24b1897c0d24afbb70704ba998793b78
depends:
- - libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
- - libstdcxx >=13
+ - __osx >=11.0
+ - libcxx >=18
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
- snappy >=1.2.1,<1.3.0a0
@@ -6599,21 +6628,21 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 1165179
- timestamp: 1733509923825
+ size: 438520
+ timestamp: 1735630624140
- kind: conda
name: orc
version: 2.0.3
- build: h97ab989_1
- build_number: 1
+ build: h12ee42a_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h97ab989_1.conda
- sha256: 9de7e2746fde57c9b7f08ee87142014f6bb9b2d3a506839ea3e98baa99711576
- md5: 2f46eae652623114e112df13fae311cf
+ url: https://conda.anaconda.org/conda-forge/linux-64/orc-2.0.3-h12ee42a_2.conda
+ sha256: dff5cc8023905782c86b3459055f26d4b97890e403b0698477c9fed15d8669cc
+ md5: 4f6f9f3f80354ad185e276c120eac3f0
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libprotobuf >=5.28.3,<5.28.4.0a0
- libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
@@ -6622,21 +6651,21 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 1189462
- timestamp: 1733509801323
+ size: 1188881
+ timestamp: 1735630209320
- kind: conda
name: orc
version: 2.0.3
- build: hbcee414_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/orc-2.0.3-hbcee414_1.conda
- sha256: e5e72438a3cd967ebc774070e8c49500d2d6d4175f349400b327fee75d3bfc05
- md5: e808cf7819eaa1735c8790d7f9f482c7
+ build: hdd485aa_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/orc-2.0.3-hdd485aa_2.conda
+ sha256: b6c67542352a86cdf143c3066d5cda855b74454a156eedcd8958b494c6a32a83
+ md5: d19f01b42e5d6a2908b65df435aff42f
depends:
- - __osx >=11.0
- - libcxx >=18
- - libprotobuf >=5.28.2,<5.28.3.0a0
+ - libgcc >=13
+ - libprotobuf >=5.28.3,<5.28.4.0a0
+ - libstdcxx >=13
- libzlib >=1.3.1,<2.0a0
- lz4-c >=1.10.0,<1.11.0a0
- snappy >=1.2.1,<1.3.0a0
@@ -6644,8 +6673,8 @@ packages:
- zstd >=1.5.6,<1.6.0a0
license: Apache-2.0
license_family: Apache
- size: 437391
- timestamp: 1733510118673
+ size: 1167714
+ timestamp: 1735630248837
- kind: conda
name: packaging
version: '24.2'
@@ -6752,78 +6781,78 @@ packages:
timestamp: 1733233471940
- kind: conda
name: pillow
- version: 11.0.0
- build: py312h5ab5af3_0
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.0.0-py312h5ab5af3_0.conda
- sha256: 3cf43a5eb1f67f3a5f3ef1ec3a685f8767019cce24dbe46c4b76fee8a54fbacf
- md5: 1c4bdfe659cfdedd372685ce2494e97b
+ version: 11.1.0
+ build: py312h50aef2c_0
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.1.0-py312h50aef2c_0.conda
+ sha256: b29b7c915053e06a7a5b4118760202c572c9c35d23bd6ce8e73270b6a50e50ee
+ md5: 94d6ba8cd468668a9fb04193b0f4b36e
depends:
+ - __osx >=11.0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
- - libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
+ - python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41756471
- timestamp: 1729068045876
+ size: 42852329
+ timestamp: 1735930118976
- kind: conda
name: pillow
- version: 11.0.0
- build: py312h7b63e92_0
- subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.0.0-py312h7b63e92_0.conda
- sha256: 13a464bea02c0df0199c20ef6bad24a6bc336aaf55bf8d6a133d0fe664463224
- md5: 385f46a4df6f97892503a841121a9acf
+ version: 11.1.0
+ build: py312h719f0cf_0
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pillow-11.1.0-py312h719f0cf_0.conda
+ sha256: 7559556ffc44bda777f85c2e5acd6b5756fa5822c0271b329b7b9a3c6bb20349
+ md5: 77e0ec0a6fc847d317f204aa15b59f6b
depends:
- - __glibc >=2.17,<3.0.a0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
- libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41948418
- timestamp: 1729065846594
+ size: 41362848
+ timestamp: 1735932311857
- kind: conda
name: pillow
- version: 11.0.0
- build: py312haf37ca6_0
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pillow-11.0.0-py312haf37ca6_0.conda
- sha256: 727b4c3faecdb6f6809cf20c5f32d2df4af34e0d5b9146b7588383bcba7990e8
- md5: dc9b51fbd2b6f7fea9b5123458864dbb
+ version: 11.1.0
+ build: py312h80c1187_0
+ subdir: linux-64
+ url: https://conda.anaconda.org/conda-forge/linux-64/pillow-11.1.0-py312h80c1187_0.conda
+ sha256: 5c347962202b55ae4d8a463e0555c5c6ca33396266a08284bf1384399894e541
+ md5: d3894405f05b2c0f351d5de3ae26fa9c
depends:
- - __osx >=11.0
+ - __glibc >=2.17,<3.0.a0
- freetype >=2.12.1,<3.0a0
- lcms2 >=2.16,<3.0a0
+ - libgcc >=13
- libjpeg-turbo >=3.0.0,<4.0a0
- libtiff >=4.7.0,<4.8.0a0
- - libwebp-base >=1.4.0,<2.0a0
+ - libwebp-base >=1.5.0,<2.0a0
- libxcb >=1.17.0,<2.0a0
- libzlib >=1.3.1,<2.0a0
- - openjpeg >=2.5.2,<3.0a0
+ - openjpeg >=2.5.3,<3.0a0
- python >=3.12,<3.13.0a0
- - python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
- tk >=8.6.13,<8.7.0a0
license: HPND
- size: 41737424
- timestamp: 1729065920347
+ size: 42749785
+ timestamp: 1735929845390
- kind: conda
name: platformdirs
version: 4.3.6
@@ -6908,12 +6937,12 @@ packages:
timestamp: 1733392308901
- kind: conda
name: protobuf
- version: 5.28.2
+ version: 5.28.3
build: py312h2ec8cdc_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.2-py312h2ec8cdc_0.conda
- sha256: 4884f8161602f0148ebbc1af8d3176cec80b96c83243f68aafd651986b573817
- md5: 586bead4a9dfa46faf88deb7d3a742bb
+ url: https://conda.anaconda.org/conda-forge/linux-64/protobuf-5.28.3-py312h2ec8cdc_0.conda
+ sha256: acb2e0ee948e3941f8ed191cb77f654e06538638aed8ccd71cbc78a15242ebbb
+ md5: 9d7e427d159c1b2d516cc047ff177c48
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -6921,19 +6950,19 @@ packages:
- python >=3.12,<3.13.0a0
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 464548
- timestamp: 1728669645013
+ size: 464794
+ timestamp: 1731366525051
- kind: conda
name: protobuf
- version: 5.28.2
+ version: 5.28.3
build: py312h6f74592_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.2-py312h6f74592_0.conda
- sha256: f874ffd38b9ae2b810e9d2e43fd8d3b778cdeaf7dea4a3e6ee4adeafe2d936cf
- md5: 4b9b22bd7c53d938b207f9d0f79db183
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/protobuf-5.28.3-py312h6f74592_0.conda
+ sha256: 9c575d5035c7ecb114ab9e17906c0a54087d9598dd6a2104c02fe33f0a29dd46
+ md5: 06513608c94fb1c1b17136ace77063a9
depends:
- libgcc >=13
- libstdcxx >=13
@@ -6941,31 +6970,31 @@ packages:
- python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 472764
- timestamp: 1728669483611
+ size: 473242
+ timestamp: 1731366577844
- kind: conda
name: protobuf
- version: 5.28.2
- build: py312hf02c72a_0
+ version: 5.28.3
+ build: py312hd8f9ff3_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.2-py312hf02c72a_0.conda
- sha256: dbcec117510ced5c12097e3eb06ebbf4512dc255733a9ace33c4249fb7e6a364
- md5: 6fda46c82abd0a080ca33de7d16ca877
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/protobuf-5.28.3-py312hd8f9ff3_0.conda
+ sha256: 9d572a97419bdace14d7c7cc8cc8c4bf2dcb22b56965dac87a27fbdb5061b926
+ md5: 5afbe52a59f04dd1fe566d0d17590d7e
depends:
- __osx >=11.0
- - libcxx >=17
+ - libcxx >=18
- python >=3.12,<3.13.0a0
- python >=3.12,<3.13.0a0 *_cpython
- python_abi 3.12.* *_cp312
constrains:
- - libprotobuf 5.28.2
+ - libprotobuf 5.28.3
license: BSD-3-Clause
license_family: BSD
- size: 447369
- timestamp: 1728669902591
+ size: 448803
+ timestamp: 1731367010746
- kind: conda
name: pthread-stubs
version: '0.4'
@@ -7160,31 +7189,31 @@ packages:
timestamp: 1733195786147
- kind: conda
name: pydantic
- version: 2.10.3
+ version: 2.10.4
build: pyh3cfb1c2_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.3-pyh3cfb1c2_0.conda
- sha256: cac9eebd3d5f8d8a497a9025d756257ddc75b8b3393e6737cb45077bd744d4f8
- md5: 194ef7f91286978521350f171b117f01
+ url: https://conda.anaconda.org/conda-forge/noarch/pydantic-2.10.4-pyh3cfb1c2_0.conda
+ sha256: e68400714532a33f34b44ddaee3e27e8dd6c83c3f31c7892ec10b84d13aa8b59
+ md5: 93bccf4d7a58c9140d59491de21e044b
depends:
- annotated-types >=0.6.0
- - pydantic-core 2.27.1
+ - pydantic-core 2.27.2
- python >=3.9
- typing-extensions >=4.6.1
- typing_extensions >=4.12.2
license: MIT
license_family: MIT
- size: 317037
- timestamp: 1733316963547
+ size: 296557
+ timestamp: 1734609427697
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312h12e396e_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.1-py312h12e396e_0.conda
- sha256: c89741f4eff395f8de70975f42e1f20591f0e0870929d440af35b13399976b09
- md5: 114030cb28527db2c385f07038e914c8
+ url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-core-2.27.2-py312h12e396e_0.conda
+ sha256: 81602a4592ad2ac1a1cb57372fd25214e63b1c477d5818b0c21cde0f1f85c001
+ md5: bae01b2563030c085f5158c518b84e86
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -7195,16 +7224,16 @@ packages:
- __glibc >=2.17
license: MIT
license_family: MIT
- size: 1635156
- timestamp: 1732254225040
+ size: 1641402
+ timestamp: 1734571789895
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312h8cbf658_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.1-py312h8cbf658_0.conda
- sha256: 1f59bc1914f77faed3c95217e4d093310771baee4e93a15c0479359559e3fa19
- md5: d980860b8bf193f53d30a19c5d2bf070
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/pydantic-core-2.27.2-py312h8cbf658_0.conda
+ sha256: 623e0f3846f15d035ce7ab7ae445fc8d9e547b6684ab55858b6f44510d24b097
+ md5: 9677f6ab4bf27ba3c2aee70d08c7b27c
depends:
- libgcc >=13
- python >=3.12,<3.13.0a0
@@ -7215,16 +7244,16 @@ packages:
- __glibc >=2.17
license: MIT
license_family: MIT
- size: 1503747
- timestamp: 1732254331303
+ size: 1505076
+ timestamp: 1734571966615
- kind: conda
name: pydantic-core
- version: 2.27.1
+ version: 2.27.2
build: py312hcd83bfe_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.1-py312hcd83bfe_0.conda
- sha256: 5bba8de2bbbbdb39390abb1e2aff310e8cfd49646ae5a0e0ea4d6582bd1d52ba
- md5: 3847a96eaf24a877b6091150ff9c4955
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/pydantic-core-2.27.2-py312hcd83bfe_0.conda
+ sha256: cfa7201f890d5d08ce29ff70e65a96787d5793a1718776733666b44bbd4a1205
+ md5: dcb307e02f17d38c6e1cbfbf8c602852
depends:
- __osx >=11.0
- python >=3.12,<3.13.0a0
@@ -7235,41 +7264,40 @@ packages:
- __osx >=11.0
license: MIT
license_family: MIT
- size: 1449057
- timestamp: 1732254359451
+ size: 1593461
+ timestamp: 1734571986644
- kind: conda
name: pydantic-settings
- version: 2.7.0
+ version: 2.7.1
build: pyh3cfb1c2_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.0-pyh3cfb1c2_0.conda
- sha256: dd1ac7c8b6a189c8aa18f6c7df019d8f6df495300a259e3fbebdb542fc955c3b
- md5: d9f19a7c4199249fa229891b573b6f9b
+ url: https://conda.anaconda.org/conda-forge/noarch/pydantic-settings-2.7.1-pyh3cfb1c2_0.conda
+ sha256: 082fb1ec29917d2c9ed6a862cb8eb9beb88c208ea62c9fef1aeb5f4f3e0e0b06
+ md5: d71d76b62bed332b037d7adfc0f3989a
depends:
- pydantic >=2.7.0
- python >=3.9
- python-dotenv >=0.21.0
license: MIT
license_family: MIT
- size: 31426
- timestamp: 1734127929720
+ size: 31822
+ timestamp: 1735650532951
- kind: conda
name: pygments
- version: 2.18.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2.19.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.18.0-pyhd8ed1ab_1.conda
- sha256: 0d6133545f268b2b89c2617c196fc791f365b538d4057ecd636d658c3b1e885d
- md5: b38dc0206e2a530e5c2cf11dc086b31a
+ url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.19.1-pyhd8ed1ab_0.conda
+ sha256: 28a3e3161390a9d23bc02b4419448f8d27679d9e2c250e29849e37749c8de86b
+ md5: 232fb4577b6687b2d503ef8e254270c9
depends:
- python >=3.9
license: BSD-2-Clause
license_family: BSD
- size: 876700
- timestamp: 1733221731178
+ size: 888600
+ timestamp: 1736243563082
- kind: conda
name: pyinstrument
version: 5.0.0
@@ -7745,48 +7773,48 @@ packages:
- kind: conda
name: re2
version: 2024.07.02
- build: h2d3a13d_1
- build_number: 1
- subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-h2d3a13d_1.conda
- sha256: 55e7be480bfb979fa8595a16d7f2adea3a5ac9a77b2e97cd0f7ac40e989edb6c
- md5: 83f4e47229834c895a92c18383e1cd9d
+ build: h6589ca4_2
+ build_number: 2
+ subdir: osx-arm64
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-h6589ca4_2.conda
+ sha256: 4d3799c05f8f662922a0acd129d119774760a3281b883603678e128d1cb307fb
+ md5: 7a8b4ad8c58a3408ca89d78788c78178
depends:
- - libre2-11 2024.07.02 h18dbdb1_1
+ - libre2-11 2024.07.02 h07bc746_2
license: BSD-3-Clause
license_family: BSD
- size: 26747
- timestamp: 1728778986331
+ size: 26861
+ timestamp: 1735541088455
- kind: conda
name: re2
version: 2024.07.02
- build: h77b4e00_1
- build_number: 1
+ build: h9925aae_2
+ build_number: 2
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h77b4e00_1.conda
- sha256: c1721cb80f7201652fc9801f49c214c88aee835d957f2376e301bd40a8415742
- md5: 01093ff37c1b5e6bf9f17c0116747d11
+ url: https://conda.anaconda.org/conda-forge/linux-64/re2-2024.07.02-h9925aae_2.conda
+ sha256: d213c44958d49ce7e0d4d5b81afec23640cce5016685dbb2d23571a99caa4474
+ md5: e84ddf12bde691e8ec894b00ea829ddf
depends:
- - libre2-11 2024.07.02 hbbce691_1
+ - libre2-11 2024.07.02 hbbce691_2
license: BSD-3-Clause
license_family: BSD
- size: 26665
- timestamp: 1728778975855
+ size: 26786
+ timestamp: 1735541074034
- kind: conda
name: re2
version: 2024.07.02
- build: hcd0e937_1
- build_number: 1
- subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/re2-2024.07.02-hcd0e937_1.conda
- sha256: eebddde6cb10b146507810b701ef6df122d5309cd5151a39d0828aa44dc53725
- md5: 19e29f2ccc9168eb0a39dc40c04c0e21
+ build: haa97905_2
+ build_number: 2
+ subdir: linux-aarch64
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/re2-2024.07.02-haa97905_2.conda
+ sha256: 040848655df9119bae5a549fb5c8956a5537120859416c1d9d0712b7bac9f12e
+ md5: 1bf0135339b4a7419a198a795d2d4be0
depends:
- - libre2-11 2024.07.02 h2348fd5_1
+ - libre2-11 2024.07.02 h18dbdb1_2
license: BSD-3-Clause
license_family: BSD
- size: 26860
- timestamp: 1728779123653
+ size: 26830
+ timestamp: 1735540999398
- kind: conda
name: readline
version: '8.2'
@@ -7978,12 +8006,12 @@ packages:
timestamp: 1734415467047
- kind: conda
name: safetensors
- version: 0.4.5
+ version: 0.5.1
build: py312h12e396e_0
subdir: linux-64
- url: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.4.5-py312h12e396e_0.conda
- sha256: e44515f875c10efb5e041efcb250dfd18f2cb66ec3f268237549ead6284c6922
- md5: 3b87a00bcaab069172d6cef8124b7142
+ url: https://conda.anaconda.org/conda-forge/linux-64/safetensors-0.5.1-py312h12e396e_0.conda
+ sha256: 61a4a49bc98a7b529c7c9e2af9be1dc3350b8ea1c78f985e8a051543e8845ffa
+ md5: 19b54f64e926aca46d0cc2ff0ecf4f34
depends:
- __glibc >=2.17,<3.0.a0
- libgcc >=13
@@ -7993,16 +8021,16 @@ packages:
- __glibc >=2.17
license: Apache-2.0
license_family: APACHE
- size: 402547
- timestamp: 1725632183154
+ size: 424642
+ timestamp: 1736278244485
- kind: conda
name: safetensors
- version: 0.4.5
+ version: 0.5.1
build: py312h8cbf658_0
subdir: linux-aarch64
- url: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.4.5-py312h8cbf658_0.conda
- sha256: e83ebeaba4a07bbe4a1d6c7eef0b4f7ae19901ef365bca043808d16e4c8faad8
- md5: 82ef253c37308b082a478fb92924cad6
+ url: https://conda.anaconda.org/conda-forge/linux-aarch64/safetensors-0.5.1-py312h8cbf658_0.conda
+ sha256: ee66da0efb1d6897ad74156cb115277dfb8ca7f6c8bdfb17bd6a6fb205495622
+ md5: f91072f99af78ed0c1941ba5d6f30cf8
depends:
- libgcc >=13
- python >=3.12,<3.13.0a0
@@ -8012,16 +8040,16 @@ packages:
- __glibc >=2.17
license: Apache-2.0
license_family: APACHE
- size: 400284
- timestamp: 1725632278147
+ size: 409549
+ timestamp: 1736278357702
- kind: conda
name: safetensors
- version: 0.4.5
- build: py312he431725_0
+ version: 0.5.1
+ build: py312hcd83bfe_0
subdir: osx-arm64
- url: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.4.5-py312he431725_0.conda
- sha256: 93a085d0d64237db7f4ff395c446f268c575dc2c324d8e3e5c5d7d836896295e
- md5: ccb978cf1e3151c25a44c4ae65c1f20e
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/safetensors-0.5.1-py312hcd83bfe_0.conda
+ sha256: e61cbac0c1b38731543a600e2e40c4cc686e5e565f6c9809d5dcc467e2e8f220
+ md5: d12e134445366752e52acec1a86c845f
depends:
- __osx >=11.0
- python >=3.12,<3.13.0a0
@@ -8031,8 +8059,8 @@ packages:
- __osx >=11.0
license: Apache-2.0
license_family: APACHE
- size: 353606
- timestamp: 1725632294079
+ size: 378562
+ timestamp: 1736278448037
- kind: conda
name: shellingham
version: 1.5.4
@@ -8131,22 +8159,21 @@ packages:
timestamp: 1733244175724
- kind: conda
name: sse-starlette
- version: 2.1.3
+ version: 2.2.1
build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.1.3-pyhd8ed1ab_0.conda
- sha256: 6d671a66333410ec7e5e7858a252565a9001366726d1fe3c3a506d7156169085
- md5: 3918255c942c242ed5599e10329e8d0e
+ url: https://conda.anaconda.org/conda-forge/noarch/sse-starlette-2.2.1-pyhd8ed1ab_0.conda
+ sha256: 3c6a476e7afb702d841e23c61a0c4cc491929d2e39376d329e67e94c40a236cc
+ md5: c1ef6bc13dd2caa4b406fb3cb06c2791
depends:
- - anyio
- - python >=3.8
- - starlette
- - uvicorn
+ - anyio >=4.7.0
+ - python >=3.9
+ - starlette >=0.41.3
license: BSD-3-Clause
license_family: BSD
- size: 14712
- timestamp: 1722520112550
+ size: 15324
+ timestamp: 1735126414893
- kind: conda
name: starlette
version: 0.41.3
@@ -8329,18 +8356,19 @@ packages:
- kind: conda
name: tqdm
version: 4.67.1
- build: pyhd8ed1ab_0
+ build: pyhd8ed1ab_1
+ build_number: 1
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_0.conda
- sha256: 5673b7104350a6998cb86cccf1d0058217d86950e8d6c927d8530606028edb1d
- md5: 4085c9db273a148e149c03627350e22c
+ url: https://conda.anaconda.org/conda-forge/noarch/tqdm-4.67.1-pyhd8ed1ab_1.conda
+ sha256: 11e2c85468ae9902d24a27137b6b39b4a78099806e551d390e394a8c34b48e40
+ md5: 9efbfdc37242619130ea42b1cc4ed861
depends:
- colorama
- - python >=3.7
+ - python >=3.9
license: MPL-2.0 or MIT
- size: 89484
- timestamp: 1732497312317
+ size: 89498
+ timestamp: 1735661472632
- kind: conda
name: traitlets
version: 5.14.3
@@ -8359,14 +8387,13 @@ packages:
timestamp: 1733367480074
- kind: conda
name: transformers
- version: 4.47.0
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 4.47.1
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.0-pyhd8ed1ab_1.conda
- sha256: d31821081219a0ede5c1f356b65a61ce98ac11e2df78b0eaa684c17c73389fbf
- md5: 6d2ec1ddee8057d2d724a0ab0bb578a0
+ url: https://conda.anaconda.org/conda-forge/noarch/transformers-4.47.1-pyhd8ed1ab_0.conda
+ sha256: df8238c3cccbb6bb1d5657e6a75977ac0b832ab61155d5e3d8560c1c4f52abeb
+ md5: 931d66db156680c42c62812d6533cbf7
depends:
- datasets !=2.5.0
- filelock
@@ -8382,8 +8409,8 @@ packages:
- tqdm >=4.27
license: Apache-2.0
license_family: APACHE
- size: 3726957
- timestamp: 1733948063517
+ size: 3680276
+ timestamp: 1734499046193
- kind: conda
name: typer
version: 0.15.1
@@ -8484,14 +8511,13 @@ packages:
timestamp: 1728047496079
- kind: conda
name: urllib3
- version: 2.2.3
- build: pyhd8ed1ab_1
- build_number: 1
+ version: 2.3.0
+ build: pyhd8ed1ab_0
subdir: noarch
noarch: python
- url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.2.3-pyhd8ed1ab_1.conda
- sha256: 416e30a1c3262275f01a3e22e783118d9e9d2872a739a9ed860d06fa9c7593d5
- md5: 4a2d8ef7c37b8808c5b9b750501fffce
+ url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.3.0-pyhd8ed1ab_0.conda
+ sha256: 114919ffa80c328127dab9c8e7a38f9d563c617691fb81fccb11c1e86763727e
+ md5: 32674f8dbfb7b26410ed580dd3c10a29
depends:
- brotli-python >=1.0.9
- h2 >=4,<5
@@ -8500,8 +8526,8 @@ packages:
- zstandard >=0.18.0
license: MIT
license_family: MIT
- size: 98077
- timestamp: 1733206968917
+ size: 100102
+ timestamp: 1734859520452
- kind: conda
name: uvicorn
version: 0.34.0
diff --git a/proposals/stdlib-insider-docs.md b/proposals/stdlib-insider-docs.md
index 1bf0abfef2..a21099b151 100644
--- a/proposals/stdlib-insider-docs.md
+++ b/proposals/stdlib-insider-docs.md
@@ -2,7 +2,7 @@
Owen Hilyard, Created November 17, 2024
-**Status**: Initial Proposal
+**Status**: Accepted
## Motivation
diff --git a/stdlib/benchmarks/collections/bench_dict.mojo b/stdlib/benchmarks/collections/bench_dict.mojo
index e93406f837..359d922c5e 100644
--- a/stdlib/benchmarks/collections/bench_dict.mojo
+++ b/stdlib/benchmarks/collections/bench_dict.mojo
@@ -21,7 +21,7 @@ from random import *
from sys import sizeof
from benchmark import Bench, BenchConfig, Bencher, BenchId, Unit, keep, run
-from bit import bit_ceil
+from bit import next_power_of_two
# ===-----------------------------------------------------------------------===#
@@ -30,7 +30,7 @@ from bit import bit_ceil
fn make_dict[size: Int]() -> Dict[Int, Int]:
var d = Dict[Int, Int]()
for i in range(0, size):
- d[i] = random.random_si64(0, size).value
+ d[i] = int(random.random_si64(0, size))
return d
@@ -62,7 +62,7 @@ fn bench_dict_insert[size: Int](mut b: Bencher) raises:
@parameter
fn call_fn() raises:
for key in range(size, size + 100):
- items[key] = random.random_si64(0, size).value
+ items[key] = int(random.random_si64(0, size))
b.iter[call_fn]()
keep(bool(items))
diff --git a/stdlib/benchmarks/collections/bench_string.mojo b/stdlib/benchmarks/collections/bench_string.mojo
index fc5dfc718e..8805ac9d06 100644
--- a/stdlib/benchmarks/collections/bench_string.mojo
+++ b/stdlib/benchmarks/collections/bench_string.mojo
@@ -22,7 +22,7 @@ from random import random_si64, seed
from benchmark import Bench, BenchConfig, Bencher, BenchId, Unit, keep, run
-from utils._utf8_validation import _is_valid_utf8
+from collections.string._utf8_validation import _is_valid_utf8
# ===-----------------------------------------------------------------------===#
diff --git a/stdlib/src/base64/_b64encode.mojo b/stdlib/src/base64/_b64encode.mojo
index 74b8c31501..9bd946b308 100644
--- a/stdlib/src/base64/_b64encode.mojo
+++ b/stdlib/src/base64/_b64encode.mojo
@@ -28,7 +28,7 @@ from collections import InlineArray
from math.math import _compile_time_iota
from sys import llvm_intrinsic
-from memory import UnsafePointer, bitcast, memcpy
+from memory import Span, UnsafePointer, bitcast, memcpy
from utils import IndexList
@@ -195,25 +195,10 @@ fn load_incomplete_simd[
return result
-fn store_incomplete_simd[
- simd_width: Int
-](
- pointer: UnsafePointer[UInt8],
- owned simd_vector: SIMD[DType.uint8, simd_width],
- nb_of_elements_to_store: Int,
-):
- var tmp_buffer_pointer = UnsafePointer.address_of(simd_vector).bitcast[
- UInt8
- ]()
-
- memcpy(dest=pointer, src=tmp_buffer_pointer, count=nb_of_elements_to_store)
- _ = simd_vector # We make it live long enough
-
-
-# TODO: Use Span instead of List as input when Span is easier to use
@no_inline
fn b64encode_with_buffers(
- input_bytes: List[UInt8, _], mut result: List[UInt8, _]
+ input_bytes: Span[Byte, _],
+ mut result: List[UInt8, _],
):
alias simd_width = sys.simdbytewidth()
alias input_simd_width = simd_width * 3 // 4
@@ -229,11 +214,7 @@ fn b64encode_with_buffers(
var input_vector = start_of_input_chunk.load[width=simd_width]()
- result_vector = _to_b64_ascii(input_vector)
-
- (result.unsafe_ptr() + len(result)).store(result_vector)
-
- result.size += simd_width
+ result.extend(_to_b64_ascii(input_vector))
input_index += input_simd_width
# We handle the last 0, 1 or 2 chunks
@@ -268,12 +249,7 @@ fn b64encode_with_buffers(
](
nb_of_elements_to_load
)
- store_incomplete_simd(
- result.unsafe_ptr() + len(result),
- result_vector_with_equals,
- nb_of_elements_to_store,
- )
- result.size += nb_of_elements_to_store
+ result.extend(result_vector_with_equals, count=nb_of_elements_to_store)
input_index += input_simd_width
diff --git a/stdlib/src/base64/base64.mojo b/stdlib/src/base64/base64.mojo
index 6a9d585fb5..b0f467f745 100644
--- a/stdlib/src/base64/base64.mojo
+++ b/stdlib/src/base64/base64.mojo
@@ -20,6 +20,8 @@ from base64 import b64encode
"""
from collections import List
+from collections.string import StringSlice
+from memory import Span
from sys import simdwidthof
import bit
@@ -32,7 +34,7 @@ from ._b64encode import b64encode_with_buffers as _b64encode_with_buffers
@always_inline
-fn _ascii_to_value(char: String) -> Int:
+fn _ascii_to_value(char: StringSlice) -> Int:
"""Converts an ASCII character to its integer value for base64 decoding.
Args:
@@ -64,8 +66,7 @@ fn _ascii_to_value(char: String) -> Int:
# ===-----------------------------------------------------------------------===#
-# TODO: Use Span instead of List as input when Span is easier to use
-fn b64encode(input_bytes: List[UInt8, _], mut result: List[UInt8, _]):
+fn b64encode(input_bytes: Span[Byte, _], mut result: List[Byte, _]):
"""Performs base64 encoding on the input string.
Args:
@@ -76,7 +77,7 @@ fn b64encode(input_bytes: List[UInt8, _], mut result: List[UInt8, _]):
# For a nicer API, we provide those overloads:
-fn b64encode(input_string: String) -> String:
+fn b64encode(input_string: StringSlice) -> String:
"""Performs base64 encoding on the input string.
Args:
@@ -85,11 +86,10 @@ fn b64encode(input_string: String) -> String:
Returns:
The ASCII base64 encoded string.
"""
- # Slicing triggers a copy, but it should work with Span later on.
- return b64encode(input_string._buffer[:-1])
+ return b64encode(input_string.as_bytes())
-fn b64encode(input_bytes: List[UInt8, _]) -> String:
+fn b64encode(input_bytes: Span[Byte, _]) -> String:
"""Performs base64 encoding on the input string.
Args:
@@ -112,7 +112,7 @@ fn b64encode(input_bytes: List[UInt8, _]) -> String:
@always_inline
-fn b64decode(str: String) -> String:
+fn b64decode(str: StringSlice) -> String:
"""Performs base64 decoding on the input string.
Args:
@@ -150,7 +150,8 @@ fn b64decode(str: String) -> String:
p.append(((c & 0x03) << 6) | d)
p.append(0)
- return p
+
+ return String(p^)
# ===-----------------------------------------------------------------------===#
@@ -158,11 +159,11 @@ fn b64decode(str: String) -> String:
# ===-----------------------------------------------------------------------===#
-fn b16encode(str: String) -> String:
- """Performs base16 encoding on the input string.
+fn b16encode(str: StringSlice) -> String:
+ """Performs base16 encoding on the input string slice.
Args:
- str: The input string.
+ str: The input string slice.
Returns:
Base16 encoding of the input string.
@@ -176,7 +177,7 @@ fn b16encode(str: String) -> String:
@parameter
@always_inline
fn str_bytes(idx: UInt8) -> UInt8:
- return str._buffer[int(idx)]
+ return str._slice[int(idx)]
for i in range(length):
var str_byte = str_bytes(i)
@@ -196,7 +197,7 @@ fn b16encode(str: String) -> String:
@always_inline
-fn b16decode(str: String) -> String:
+fn b16decode(str: StringSlice) -> String:
"""Performs base16 decoding on the input string.
Args:
@@ -209,7 +210,7 @@ fn b16decode(str: String) -> String:
# TODO: Replace with dict literal when possible
@parameter
@always_inline
- fn decode(c: String) -> Int:
+ fn decode(c: StringSlice) -> Int:
var char_val = ord(c)
if ord("A") <= char_val <= ord("Z"):
@@ -232,4 +233,4 @@ fn b16decode(str: String) -> String:
p.append(decode(hi) << 4 | decode(lo))
p.append(0)
- return p
+ return String(p^)
diff --git a/stdlib/src/bit/__init__.mojo b/stdlib/src/bit/__init__.mojo
index 75004d3618..891b8ea6d1 100644
--- a/stdlib/src/bit/__init__.mojo
+++ b/stdlib/src/bit/__init__.mojo
@@ -13,8 +13,8 @@
"""Implements the bit package."""
from .bit import (
- bit_ceil,
- bit_floor,
+ next_power_of_two,
+ prev_power_of_two,
bit_not,
bit_reverse,
bit_width,
diff --git a/stdlib/src/bit/bit.mojo b/stdlib/src/bit/bit.mojo
index fb4170f825..e79dabaa98 100644
--- a/stdlib/src/bit/bit.mojo
+++ b/stdlib/src/bit/bit.mojo
@@ -412,16 +412,19 @@ fn is_power_of_two[
# ===-----------------------------------------------------------------------===#
-# bit_ceil
+# next_power_of_two
# ===-----------------------------------------------------------------------===#
# reference: https://en.cppreference.com/w/cpp/numeric/bit_ceil
+# reference: https://doc.rust-lang.org/std/primitive.usize.html#method.next_power_of_two
@always_inline
-fn bit_ceil(val: Int) -> Int:
+fn next_power_of_two(val: Int) -> Int:
"""Computes the smallest power of 2 that is greater than or equal to the
input value. Any integral value less than or equal to 1 will be ceiled to 1.
+ This operation is called `bit_ceil()` in C++.
+
Args:
val: The input value.
@@ -438,13 +441,15 @@ fn bit_ceil(val: Int) -> Int:
@always_inline
-fn bit_ceil[
+fn next_power_of_two[
type: DType, width: Int, //
](val: SIMD[type, width]) -> SIMD[type, width]:
"""Computes the smallest power of 2 that is greater than or equal to the
input value for each element of a SIMD vector. Any integral value less than
or equal to 1 will be ceiled to 1.
+ This operation is called `bit_ceil()` in C++.
+
Parameters:
type: `dtype` used for the computation.
width: SIMD width used for the computation.
@@ -468,16 +473,18 @@ fn bit_ceil[
# ===-----------------------------------------------------------------------===#
-# bit_floor
+# prev_power_of_two
# ===-----------------------------------------------------------------------===#
# reference: https://en.cppreference.com/w/cpp/numeric/bit_floor
@always_inline
-fn bit_floor(val: Int) -> Int:
+fn prev_power_of_two(val: Int) -> Int:
"""Computes the largest power of 2 that is less than or equal to the input
value. Any integral value less than or equal to 0 will be floored to 0.
+ This operation is called `bit_floor()` in C++.
+
Args:
val: The input value.
@@ -491,13 +498,15 @@ fn bit_floor(val: Int) -> Int:
@always_inline
-fn bit_floor[
+fn prev_power_of_two[
type: DType, width: Int, //
](val: SIMD[type, width]) -> SIMD[type, width]:
"""Computes the largest power of 2 that is less than or equal to the input
value for each element of a SIMD vector. Any integral value less than or
equal to 0 will be floored to 0.
+ This operation is called `bit_floor()` in C++.
+
Parameters:
type: `dtype` used for the computation.
width: SIMD width used for the computation.
diff --git a/stdlib/src/builtin/_stubs.mojo b/stdlib/src/builtin/_stubs.mojo
index 3b5a12fdac..4879a225fb 100644
--- a/stdlib/src/builtin/_stubs.mojo
+++ b/stdlib/src/builtin/_stubs.mojo
@@ -95,12 +95,11 @@ fn parameter_for_generator[
fn _generator[
IteratorT: _IntIter
](it: IteratorT) -> _ParamForIterator[IteratorT]:
- if it.__len__() == 0:
- return _ParamForIterator[IteratorT](
- __mlir_attr[`#kgen.unknown : !kgen.paramref<`, IteratorT, `>`],
- 0,
- True,
- )
- var next_it = it
- var value = next_it.__next__()
- return _ParamForIterator(next_it, value, False)
+ if it.__len__() != 0:
+ var next_it = it
+ var value = next_it.__next__()
+ return _ParamForIterator(next_it, value, False)
+
+ var value: IteratorT
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(value))
+ return _ParamForIterator(value^, 0, True)
diff --git a/stdlib/src/builtin/bool.mojo b/stdlib/src/builtin/bool.mojo
index e48f1c9f5a..3b9c3a2569 100644
--- a/stdlib/src/builtin/bool.mojo
+++ b/stdlib/src/builtin/bool.mojo
@@ -19,6 +19,7 @@ from collections import List, Set
from utils._select import _select_register_value
from utils._visualizers import lldb_formatter_wrapping_type
+from hashlib._hasher import _Hasher
# ===----------------------------------------------------------------------=== #
# Boolable
@@ -121,13 +122,13 @@ struct Bool(
self = False
@always_inline("nodebug")
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Explicitly construct a deep copy of the provided value.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- self.value = other.value
+ return self
@doc_private
@always_inline("nodebug")
@@ -505,6 +506,17 @@ struct Bool(
"""
return __mlir_op.`index.casts`[_type = __mlir_type.index](self.value)
+ fn __hash__[H: _Hasher](self, mut hasher: H):
+ """Updates hasher with the underlying bytes.
+
+ Parameters:
+ H: The hasher type.
+
+ Args:
+ hasher: The hasher instance.
+ """
+ hasher._update_with_simd(Scalar[DType.bool](self))
+
# ===----------------------------------------------------------------------=== #
# bool
diff --git a/stdlib/src/builtin/builtin_list.mojo b/stdlib/src/builtin/builtin_list.mojo
index e74b93cad3..50e63d02d2 100644
--- a/stdlib/src/builtin/builtin_list.mojo
+++ b/stdlib/src/builtin/builtin_list.mojo
@@ -605,29 +605,30 @@ struct VariadicPack[
# C Pack Utilities
# ===-------------------------------------------------------------------===#
- # This is the element_types list lowered to `variadic` type for kgen.
alias _kgen_element_types = rebind[
__mlir_type.`!kgen.variadic`
](Self.element_types)
-
- # Use variadic_ptr_map to construct the type list of the !kgen.pack that the
- # !lit.ref.pack will lower to. It exposes the pointers introduced by the
- # references.
+ """This is the element_types list lowered to `variadic` type for kgen.
+ """
alias _variadic_pointer_types = __mlir_attr[
`#kgen.param.expr: !kgen.variadic`,
]
-
- # This is the !kgen.pack type with pointer elements.
+ """Use variadic_ptr_map to construct the type list of the !kgen.pack that
+ the !lit.ref.pack will lower to. It exposes the pointers introduced by the
+ references.
+ """
alias _kgen_pack_with_pointer_type = __mlir_type[
`!kgen.pack<:variadic `, Self._variadic_pointer_types, `>`
]
+ """This is the !kgen.pack type with pointer elements."""
- # This rebinds `in_pack` to the equivalent `!kgen.pack` with kgen pointers.
@doc_private
@always_inline("nodebug")
fn get_as_kgen_pack(self) -> Self._kgen_pack_with_pointer_type:
+ """This rebinds `in_pack` to the equivalent `!kgen.pack` with kgen
+ pointers."""
return rebind[Self._kgen_pack_with_pointer_type](self._value)
alias _variadic_with_pointers_removed = __mlir_attr[
@@ -635,15 +636,16 @@ struct VariadicPack[
Self._variadic_pointer_types,
`>: !kgen.variadic`,
]
-
- # This is the `!kgen.pack` type that happens if one loads all the elements
- # of the pack.
alias _loaded_kgen_pack_type = __mlir_type[
`!kgen.pack<:variadic `, Self._variadic_with_pointers_removed, `>`
]
+ """This is the `!kgen.pack` type that happens if one loads all the elements
+ of the pack.
+ """
- # This returns the stored KGEN pack after loading all of the elements.
@doc_private
@always_inline("nodebug")
fn get_loaded_kgen_pack(self) -> Self._loaded_kgen_pack_type:
+ """This returns the stored KGEN pack after loading all of the elements.
+ """
return __mlir_op.`kgen.pack.load`(self.get_as_kgen_pack())
diff --git a/stdlib/src/builtin/builtin_slice.mojo b/stdlib/src/builtin/builtin_slice.mojo
index b663b9350e..094db42e69 100644
--- a/stdlib/src/builtin/builtin_slice.mojo
+++ b/stdlib/src/builtin/builtin_slice.mojo
@@ -82,13 +82,13 @@ struct Slice(
self.end = end
self.step = step
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Creates a deep copy of the Slice.
- Args:
- other: The slice to copy.
+ Returns:
+ A copy of the value.
"""
- self = Self(start=other.start, end=other.end, step=other.step)
+ return self
# ===-------------------------------------------------------------------===#
# Trait implementations
@@ -206,6 +206,7 @@ struct Slice(
var start = self.start
var end = self.end
+
var positive_step = step > 0
if not start:
diff --git a/stdlib/src/builtin/debug_assert.mojo b/stdlib/src/builtin/debug_assert.mojo
index e66c968189..52dde896aa 100644
--- a/stdlib/src/builtin/debug_assert.mojo
+++ b/stdlib/src/builtin/debug_assert.mojo
@@ -17,7 +17,7 @@ These are Mojo built-ins, so you don't need to import them.
from os import abort
-from sys import is_gpu, is_nvidia_gpu, llvm_intrinsic
+from sys import is_gpu, is_nvidia_gpu, is_amd_gpu, llvm_intrinsic
from sys._build import is_debug_build
from sys.ffi import c_char, c_size_t, c_uint, external_call
from sys.param_env import env_get_string
@@ -241,14 +241,15 @@ fn _debug_assert_msg(
var stdout = sys.stdout
@parameter
- if is_gpu():
+ if is_amd_gpu():
+ # FIXME: debug_assert printing is disabled on AMD GPU, see KERN-1448
+ pass
+ elif is_nvidia_gpu():
# Count the total length of bytes to allocate only once
var arg_bytes = _ArgBytes()
arg_bytes.write(
"At ",
loc,
- ": ",
- _ThreadContext(),
" Assert ",
"Warning: " if defined_mode == "warn" else " Error: ",
)
@@ -258,8 +259,6 @@ fn _debug_assert_msg(
buffer.write(
"At ",
loc,
- ": ",
- _ThreadContext(),
" Assert ",
"Warning: " if defined_mode == "warn" else "Error: ",
)
@@ -269,10 +268,6 @@ fn _debug_assert_msg(
Span[Byte, ImmutableAnyOrigin](ptr=buffer.data, length=buffer.pos)
)
- @parameter
- if defined_mode != "warn":
- abort()
-
else:
var buffer = _WriteBufferStack[4096](stdout)
buffer.write("At ", loc, ": ")
@@ -286,9 +281,9 @@ fn _debug_assert_msg(
write_args(buffer, messages, end="\n")
buffer.flush()
- @parameter
- if defined_mode != "warn":
- abort()
+ @parameter
+ if defined_mode != "warn":
+ abort()
struct _ThreadContext(Writable):
diff --git a/stdlib/src/builtin/dtype.mojo b/stdlib/src/builtin/dtype.mojo
index b8a7dff5d6..48bfffaafd 100644
--- a/stdlib/src/builtin/dtype.mojo
+++ b/stdlib/src/builtin/dtype.mojo
@@ -147,13 +147,13 @@ struct DType(
on the system."""
@always_inline
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy this DType.
- Args:
- other: The DType to copy.
+ Returns:
+ A copy of the value.
"""
- self = other
+ return self
@always_inline
@implicit
diff --git a/stdlib/src/builtin/error.mojo b/stdlib/src/builtin/error.mojo
index e282d56ba0..1ddae435ff 100644
--- a/stdlib/src/builtin/error.mojo
+++ b/stdlib/src/builtin/error.mojo
@@ -111,13 +111,13 @@ struct Error(
self.data = dest
self.loaded_length = -length
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy the object.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- self = other
+ return self
fn __del__(owned self):
"""Releases memory if allocated."""
diff --git a/stdlib/src/builtin/file.mojo b/stdlib/src/builtin/file.mojo
index 1692a3458d..c622989871 100644
--- a/stdlib/src/builtin/file.mojo
+++ b/stdlib/src/builtin/file.mojo
@@ -472,11 +472,12 @@ struct FileHandle:
return self^
fn _get_raw_fd(self) -> Int:
- var i64_res = external_call[
- "KGEN_CompilerRT_IO_GetFD",
- Int64,
- ](self.handle)
- return Int(i64_res.value)
+ return int(
+ external_call[
+ "KGEN_CompilerRT_IO_GetFD",
+ Int64,
+ ](self.handle)
+ )
fn open[
diff --git a/stdlib/src/builtin/int.mojo b/stdlib/src/builtin/int.mojo
index 92cb98be75..698722f6f1 100644
--- a/stdlib/src/builtin/int.mojo
+++ b/stdlib/src/builtin/int.mojo
@@ -16,7 +16,7 @@ These are Mojo built-ins, so you don't need to import them.
"""
from collections import KeyElement
-from collections.string import (
+from collections.string.string import (
_calc_initial_buffer_size_int32,
_calc_initial_buffer_size_int64,
)
@@ -307,6 +307,7 @@ struct Int(
Roundable,
IntLike,
_HashableWithHasher,
+ ExplicitlyCopyable,
):
"""This type represents an integer value."""
@@ -329,13 +330,13 @@ struct Int(
"""Default constructor that produces zero."""
self.value = __mlir_op.`index.constant`[value = __mlir_attr.`0:index`]()
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Explicitly copy the provided value.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- self = other
+ return self
@doc_private
@always_inline("nodebug")
@@ -348,51 +349,6 @@ struct Int(
"""
self.value = value
- @doc_private
- @always_inline("nodebug")
- @implicit
- fn __init__(out self, value: __mlir_type.`!pop.scalar`):
- """Construct Int from the given Int16 value.
-
- Args:
- value: The init value.
- """
- self = Self(
- __mlir_op.`pop.cast`[_type = __mlir_type.`!pop.scalar`](
- value
- )
- )
-
- @doc_private
- @always_inline("nodebug")
- @implicit
- fn __init__(out self, value: __mlir_type.`!pop.scalar`):
- """Construct Int from the given Int32 value.
-
- Args:
- value: The init value.
- """
- self = Self(
- __mlir_op.`pop.cast`[_type = __mlir_type.`!pop.scalar`](
- value
- )
- )
-
- @doc_private
- @always_inline("nodebug")
- @implicit
- fn __init__(out self, value: __mlir_type.`!pop.scalar`):
- """Construct Int from the given Int64 value.
-
- Args:
- value: The init value.
- """
- self = Self(
- __mlir_op.`pop.cast`[_type = __mlir_type.`!pop.scalar`](
- value
- )
- )
-
@doc_private
@always_inline("nodebug")
@implicit
diff --git a/stdlib/src/builtin/io.mojo b/stdlib/src/builtin/io.mojo
index fc363fc15c..a409c35c62 100644
--- a/stdlib/src/builtin/io.mojo
+++ b/stdlib/src/builtin/io.mojo
@@ -26,7 +26,7 @@ from sys import (
stdout,
)
from sys._libc import dup, fclose, fdopen, fflush
-from sys.ffi import OpaquePointer
+from sys.ffi import OpaquePointer, c_char
from builtin.dtype import _get_dtype_printf_format
from builtin.file_descriptor import FileDescriptor
@@ -165,11 +165,11 @@ fn _flush(file: FileDescriptor = stdout):
@no_inline
fn _printf[
fmt: StringLiteral, *types: AnyType
-](*arguments: *types, file: FileDescriptor = stdout):
+](*args: *types, file: FileDescriptor = stdout):
# The argument pack will contain references for each value in the pack,
# but we want to pass their values directly into the C printf call. Load
# all the members of the pack.
- var loaded_pack = arguments.get_loaded_kgen_pack()
+ var loaded_pack = args.get_loaded_kgen_pack()
@parameter
if is_nvidia_gpu():
@@ -181,6 +181,7 @@ fn _printf[
pass
else:
with _fdopen(file) as fd:
+ # FIXME: external_call should handle this
_ = __mlir_op.`pop.external_call`[
func = "KGEN_CompilerRT_fprintf".value,
variadicType = __mlir_attr[
@@ -201,7 +202,7 @@ fn _printf[
@no_inline
fn _snprintf[
fmt: StringLiteral, *types: AnyType
-](str: UnsafePointer[UInt8], size: Int, *arguments: *types) -> Int:
+](str: UnsafePointer[UInt8], size: Int, *args: *types) -> Int:
"""Writes a format string into an output pointer.
Parameters:
@@ -211,16 +212,18 @@ fn _snprintf[
Args:
str: A pointer into which the format string is written.
size: At most, `size - 1` bytes are written into the output string.
- arguments: Arguments interpolated into the format string.
+ args: Arguments interpolated into the format string.
Returns:
The number of bytes written into the output string.
"""
+
# The argument pack will contain references for each value in the pack,
# but we want to pass their values directly into the C snprintf call. Load
# all the members of the pack.
- var loaded_pack = arguments.get_loaded_kgen_pack()
+ var loaded_pack = args.get_loaded_kgen_pack()
+ # FIXME: external_call should handle this
return int(
__mlir_op.`pop.external_call`[
func = "snprintf".value,
diff --git a/stdlib/src/builtin/math.mojo b/stdlib/src/builtin/math.mojo
index 428407f857..843b380e88 100644
--- a/stdlib/src/builtin/math.mojo
+++ b/stdlib/src/builtin/math.mojo
@@ -175,7 +175,7 @@ fn max(x: UInt, y: UInt, /) -> UInt:
@always_inline("nodebug")
-fn max(x: SIMD, y: __type_of(x), /) -> __type_of(x):
+fn max[dtype: DType, //](x: SIMD[dtype, _], y: __type_of(x), /) -> __type_of(x):
"""Performs elementwise maximum of x and y.
An element of the result SIMD vector will be the maximum of the
@@ -184,6 +184,9 @@ fn max(x: SIMD, y: __type_of(x), /) -> __type_of(x):
Constraints:
The type of the inputs must be numeric or boolean.
+ Parameters:
+ dtype: The data type of the SIMD vector.
+
Args:
x: First SIMD vector.
y: Second SIMD vector.
@@ -237,7 +240,7 @@ fn min(x: UInt, y: UInt, /) -> UInt:
@always_inline("nodebug")
-fn min(x: SIMD, y: __type_of(x), /) -> __type_of(x):
+fn min[dtype: DType, //](x: SIMD[dtype, _], y: __type_of(x), /) -> __type_of(x):
"""Gets the elementwise minimum of x and y.
An element of the result SIMD vector will be the minimum of the
@@ -246,6 +249,9 @@ fn min(x: SIMD, y: __type_of(x), /) -> __type_of(x):
Constraints:
The type of the inputs must be numeric or boolean.
+ Parameters:
+ dtype: The data type of the SIMD vector.
+
Args:
x: First SIMD vector.
y: Second SIMD vector.
diff --git a/stdlib/src/builtin/none.mojo b/stdlib/src/builtin/none.mojo
index 2e5dc6ef35..c50322306c 100644
--- a/stdlib/src/builtin/none.mojo
+++ b/stdlib/src/builtin/none.mojo
@@ -48,13 +48,13 @@ struct NoneType(
self._value = value
@always_inline
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Explicit copy constructor.
- Args:
- other: Another `NoneType` instance to copy.
+ Returns:
+ A copy of the value.
"""
- self._value = None
+ return Self(None)
@no_inline
fn __str__(self) -> String:
diff --git a/stdlib/src/builtin/object.mojo b/stdlib/src/builtin/object.mojo
index c2337934a1..cdd023ce36 100644
--- a/stdlib/src/builtin/object.mojo
+++ b/stdlib/src/builtin/object.mojo
@@ -32,8 +32,8 @@ from utils import StringRef, Variant
struct _NoneMarker(CollectionElementNew):
"""This is a trivial class to indicate that an object is `None`."""
- fn __init__(out self, *, other: Self):
- pass
+ fn copy(self) -> Self:
+ return _NoneMarker {}
@register_passable("trivial")
@@ -55,8 +55,8 @@ struct _ImmutableString(CollectionElement, CollectionElementNew):
self.length = length
@always_inline
- fn __init__(out self, *, other: Self):
- self = other
+ fn copy(self) -> Self:
+ return self
@always_inline
fn string_compare(self, rhs: _ImmutableString) -> Int:
@@ -94,10 +94,6 @@ struct _RefCountedListRef(CollectionElement, CollectionElementNew):
__get_address_as_uninit_lvalue(ptr.address) = _RefCountedList()
self.lst = ptr.bitcast[NoneType]()
- @always_inline
- fn __init__(out self, *, other: Self):
- self.lst = other.lst
-
@always_inline
fn copy(self) -> Self:
_ = self.lst.bitcast[_RefCountedList]()[].impl
@@ -188,10 +184,6 @@ struct _RefCountedAttrsDictRef(CollectionElement, CollectionElementNew):
self.attrs = ptr.bitcast[Int8]()
- @always_inline
- fn __init__(out self, *, other: Self):
- self = other
-
@always_inline
fn copy(self) -> Self:
_ = self.attrs.bitcast[_RefCountedAttrsDict]()[].impl
@@ -217,8 +209,8 @@ struct _Function(CollectionElement, CollectionElementNew):
self.value = f
@always_inline
- fn __init__(out self, *, other: Self):
- self.value = other.value
+ fn copy(self) -> Self:
+ return self
alias fn0 = fn () raises -> object
"""Nullary function type."""
@@ -348,15 +340,6 @@ struct _ObjectImpl(
fn __init__(out self, value: _RefCountedAttrsDictRef):
self.value = Self.type(value)
- @always_inline
- fn __init__(out self, *, other: Self):
- """Copy the object.
-
- Args:
- other: The value to copy.
- """
- self = other.value
-
@always_inline
fn __copyinit__(out self, existing: Self):
self = existing.value
@@ -367,6 +350,11 @@ struct _ObjectImpl(
@always_inline
fn copy(self) -> Self:
+ """Copy the object.
+
+ Returns:
+ A copy of the value.
+ """
if self.is_str():
var str = self.get_as_string()
var impl = _ImmutableString(
@@ -1836,10 +1824,10 @@ struct object(
@always_inline
fn _convert_index_to_int(i: object) raises -> Int:
if i._value.is_bool():
- return i._value.convert_bool_to_int().get_as_int().value
+ return int(i._value.convert_bool_to_int().get_as_int())
elif not i._value.is_int():
raise Error("TypeError: string indices must be integers")
- return i._value.get_as_int().value
+ return int(i._value.get_as_int())
@always_inline
fn __getitem__(self, i: object) raises -> object:
@@ -1865,7 +1853,7 @@ struct object(
var char = self._value.get_as_string().data[index]
impl.data.init_pointee_move(char)
return object(impl)
- return self._value.get_list_element(i._value.get_as_int().value)
+ return self._value.get_list_element(int(i._value.get_as_int()))
@always_inline
fn __getitem__(self, *index: object) raises -> object:
diff --git a/stdlib/src/builtin/simd.mojo b/stdlib/src/builtin/simd.mojo
index 0f2508229e..0a56cdd820 100644
--- a/stdlib/src/builtin/simd.mojo
+++ b/stdlib/src/builtin/simd.mojo
@@ -17,7 +17,8 @@ These are Mojo built-ins, so you don't need to import them.
import math
from collections import InlineArray
-from collections.string import (
+from collections.string import StringSlice
+from collections.string.string import (
_calc_format_buffer_size,
_calc_initial_buffer_size,
)
@@ -183,17 +184,6 @@ fn _simd_construction_checks[type: DType, size: Int]():
not (type is DType.bfloat16 and has_neon()),
"bf16 is not supported for ARM architectures",
]()
- constrained[
- not (type.is_float8() and not _has_native_f8_support()),
- "f8 is not supported on non sm_89 and sm_90 architectures",
- ]()
- constrained[
- not (
- type in (DType.float8e4m3fnuz, DType.float8e5m2fnuz)
- and not is_amd_gpu()
- ),
- "f8 fnuz variants is only supported for AMD GPU.",
- ]()
@always_inline("nodebug")
@@ -238,6 +228,7 @@ struct SIMD[type: DType, size: Int](
CollectionElement,
# FIXME(MOCO-1291): Can't implement this due to ambiguity.
# CollectionElementNew,
+ ExplicitlyCopyable,
Floatable,
Floorable,
Writable,
@@ -306,6 +297,15 @@ struct SIMD[type: DType, size: Int](
# """
# self = other
+ @always_inline
+ fn copy(self) -> Self:
+ """Explicitly construct a deep copy of the provided value.
+
+ Returns:
+ A copy of the value.
+ """
+ return self
+
@always_inline("nodebug")
@implicit
fn __init__(out self, value: UInt):
@@ -450,15 +450,7 @@ struct SIMD[type: DType, size: Int](
),
)
- self = __mlir_op.`kgen.param.constant`[
- _type = __mlir_type[
- `!pop.simd<`, size.value, `, `, type.value, `>`
- ],
- value = __mlir_attr[
- `#kgen.unknown : `,
- __mlir_type[`!pop.simd<`, size.value, `, `, type.value, `>`],
- ],
- ]()
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(self))
@parameter
for i in range(size):
@@ -2011,17 +2003,12 @@ struct SIMD[type: DType, size: Int](
fn _convert_variadic_to_pop_array[
*mask: Int
]() -> __mlir_type[`!pop.array<`, output_size.value, `, `, Int, `>`]:
- var array = __mlir_op.`kgen.param.constant`[
- _type = __mlir_type[
- `!pop.array<`, output_size.value, `, `, Int, `>`
- ],
- value = __mlir_attr[
- `#kgen.unknown : `,
- __mlir_type[
- `!pop.array<`, output_size.value, `, `, Int, `>`
- ],
- ],
- ]()
+ var array: __mlir_type[
+ `!pop.array<`, output_size.value, `, `, Int, `>`
+ ]
+ __mlir_op.`lit.ownership.mark_initialized`(
+ __get_mvalue_as_litref(array)
+ )
var array_ptr = UnsafePointer.address_of(array)
diff --git a/stdlib/src/builtin/sort.mojo b/stdlib/src/builtin/sort.mojo
index f3f19ba9b2..00243d6f80 100644
--- a/stdlib/src/builtin/sort.mojo
+++ b/stdlib/src/builtin/sort.mojo
@@ -48,7 +48,7 @@ fn _insertion_sort[
cmp_fn: fn (_SortWrapper[type], _SortWrapper[type]) capturing [_] -> Bool,
](span: Span[type, origin]):
"""Sort the array[start:end] slice"""
- var array = span.unsafe_ptr().bitcast[origin=MutableAnyOrigin]()
+ var array = span.unsafe_ptr().origin_cast[origin=MutableAnyOrigin]()
var size = len(span)
for i in range(1, size):
@@ -72,7 +72,7 @@ fn _quicksort_partition_right[
origin: MutableOrigin, //,
cmp_fn: fn (_SortWrapper[type], _SortWrapper[type]) capturing [_] -> Bool,
](span: Span[type, origin]) -> Int:
- var array = span.unsafe_ptr().bitcast[origin=MutableAnyOrigin]()
+ var array = span.unsafe_ptr().origin_cast[origin=MutableAnyOrigin]()
var size = len(span)
var left = 1
@@ -101,7 +101,7 @@ fn _quicksort_partition_left[
origin: MutableOrigin, //,
cmp_fn: fn (_SortWrapper[type], _SortWrapper[type]) capturing [_] -> Bool,
](span: Span[type, origin]) -> Int:
- var array = span.unsafe_ptr().bitcast[origin=MutableAnyOrigin]()
+ var array = span.unsafe_ptr().origin_cast[origin=MutableAnyOrigin]()
var size = len(span)
var left = 1
@@ -127,7 +127,7 @@ fn _heap_sort_fix_down[
origin: MutableOrigin, //,
cmp_fn: fn (_SortWrapper[type], _SortWrapper[type]) capturing [_] -> Bool,
](span: Span[type, origin], idx: Int):
- var array = span.unsafe_ptr().bitcast[origin=MutableAnyOrigin]()
+ var array = span.unsafe_ptr().origin_cast[origin=MutableAnyOrigin]()
var size = len(span)
var i = idx
var j = i * 2 + 1
@@ -148,7 +148,7 @@ fn _heap_sort[
origin: MutableOrigin, //,
cmp_fn: fn (_SortWrapper[type], _SortWrapper[type]) capturing [_] -> Bool,
](span: Span[type, origin]):
- var array = span.unsafe_ptr().bitcast[origin=MutableAnyOrigin]()
+ var array = span.unsafe_ptr().origin_cast[origin=MutableAnyOrigin]()
var size = len(span)
# heapify
for i in range(size // 2 - 1, -1, -1):
@@ -177,7 +177,7 @@ fn _delegate_small_sort[
origin: MutableOrigin, //,
cmp_fn: fn (_SortWrapper[type], _SortWrapper[type]) capturing [_] -> Bool,
](span: Span[type, origin]):
- var array = span.unsafe_ptr().bitcast[origin=MutableAnyOrigin]()
+ var array = span.unsafe_ptr().origin_cast[origin=MutableAnyOrigin]()
var size = len(span)
if size == 2:
_small_sort[2, type, cmp_fn](array)
@@ -209,7 +209,7 @@ fn _quicksort[
origin: MutableOrigin, //,
cmp_fn: fn (_SortWrapper[type], _SortWrapper[type]) capturing [_] -> Bool,
](span: Span[type, origin]):
- var array = span.unsafe_ptr().bitcast[origin=MutableAnyOrigin]()
+ var array = span.unsafe_ptr().origin_cast[origin=MutableAnyOrigin]()
var size = len(span)
if size == 0:
return
@@ -379,7 +379,7 @@ fn _partition[
if size <= 1:
return 0
- var array = span.unsafe_ptr().bitcast[origin=MutableAnyOrigin]()
+ var array = span.unsafe_ptr().origin_cast[origin=MutableAnyOrigin]()
var pivot = size // 2
var pivot_value = array[pivot]
diff --git a/stdlib/src/builtin/string_literal.mojo b/stdlib/src/builtin/string_literal.mojo
index 581e21de5e..c5af9cef8d 100644
--- a/stdlib/src/builtin/string_literal.mojo
+++ b/stdlib/src/builtin/string_literal.mojo
@@ -16,15 +16,19 @@ These are Mojo built-ins, so you don't need to import them.
"""
from collections import List
+from collections.string.format import _CurlyEntryFormattable, _FormatCurlyEntry
+from collections.string.string_slice import (
+ StringSlice,
+ StaticString,
+ _StringSliceIter,
+ _to_string_list,
+)
from hashlib._hasher import _HashableWithHasher, _Hasher
-from sys.ffi import c_char
-
from memory import UnsafePointer, memcpy, Span
-
-from utils import StaticString, StringRef, StringSlice, Writable, Writer
+from sys.ffi import c_char
+from utils import Writable, Writer
from utils._visualizers import lldb_formatter_wrapping_type
-from utils.format import _CurlyEntryFormattable, _FormatCurlyEntry
-from utils.string_slice import _StringSliceIter, _to_string_list
+
# ===-----------------------------------------------------------------------===#
# StringLiteral
@@ -75,13 +79,13 @@ struct StringLiteral(
self.value = value
@always_inline("nodebug")
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy constructor.
- Args:
- other: The string literal to copy.
+ Returns:
+ A copy of the value.
"""
- self = other
+ return self
# TODO(MOCO-1460): This should be: fn __init__[*, value: String](out self):
# but Mojo tries to bind the parameter in `StringLiteral["foo"]()` to the
@@ -241,7 +245,7 @@ struct StringLiteral(
Returns:
True if they are not equal.
"""
- return StringRef(self) != StringRef(rhs)
+ return self.as_string_slice() != rhs.as_string_slice()
@always_inline("nodebug")
fn __eq__(self, rhs: StringSlice) -> Bool:
@@ -277,7 +281,7 @@ struct StringLiteral(
Returns:
True if this StringLiteral is strictly less than the RHS StringLiteral and False otherwise.
"""
- return StringRef(self) < StringRef(rhs)
+ return self.as_string_slice() < rhs.as_string_slice()
@always_inline("nodebug")
fn __le__(self, rhs: StringLiteral) -> Bool:
@@ -324,7 +328,7 @@ struct StringLiteral(
Returns:
True if the string contains the substring.
"""
- return substr in StringRef(self)
+ return substr in self.as_string_slice()
# ===-------------------------------------------------------------------===#
# Trait implementations
@@ -403,7 +407,7 @@ struct StringLiteral(
Returns:
A new representation of the string.
"""
- return self.__str__().__repr__()
+ return repr(self.as_string_slice())
fn __hash__(self) -> UInt:
"""Hash the underlying buffer using builtin hash.
@@ -441,7 +445,7 @@ struct StringLiteral(
An iterator over the string.
"""
return _StringSliceIter[StaticConstantOrigin](
- unsafe_pointer=self.unsafe_ptr(), length=self.byte_length()
+ ptr=self.unsafe_ptr(), length=self.byte_length()
)
fn __reversed__(self) -> _StringSliceIter[StaticConstantOrigin, False]:
@@ -451,7 +455,7 @@ struct StringLiteral(
A reversed iterator over the string.
"""
return _StringSliceIter[StaticConstantOrigin, False](
- unsafe_pointer=self.unsafe_ptr(), length=self.byte_length()
+ ptr=self.unsafe_ptr(), length=self.byte_length()
)
fn __getitem__[IndexerType: Indexer](self, idx: IndexerType) -> String:
@@ -498,7 +502,7 @@ struct StringLiteral(
# TODO(MSTDL-555):
# Remove bitcast after changing pop.string.address
# return type.
- return ptr.bitcast[Byte, mut=False, origin=StaticConstantOrigin]()
+ return ptr.bitcast[Byte]().origin_cast[False, StaticConstantOrigin]()
@always_inline
fn unsafe_cstr_ptr(
@@ -604,7 +608,7 @@ struct StringLiteral(
Returns:
The offset of `substr` relative to the beginning of the string.
"""
- return StringRef(self).find(substr, start=start)
+ return self.as_string_slice().find(substr, start=start)
fn rfind(self, substr: StringLiteral, start: Int = 0) -> Int:
"""Finds the offset of the last occurrence of `substr` starting at
@@ -617,7 +621,7 @@ struct StringLiteral(
Returns:
The offset of `substr` relative to the beginning of the string.
"""
- return StringRef(self).rfind(substr, start=start)
+ return self.as_string_slice().rfind(substr, start=start)
fn replace(self, old: StringLiteral, new: StringLiteral) -> StringLiteral:
"""Return a copy of the string with all occurrences of substring `old`
@@ -898,7 +902,7 @@ struct StringLiteral(
Returns:
A string with no leading or trailing whitespaces.
"""
- return self.lstrip().rstrip()
+ return String(self.lstrip().rstrip())
fn strip(self, chars: String) -> String:
"""Return a copy of the string literal with leading and trailing characters
@@ -911,7 +915,7 @@ struct StringLiteral(
A string with no leading or trailing characters.
"""
- return self.lstrip(chars).rstrip(chars)
+ return String(self.lstrip(chars).rstrip(chars))
fn rstrip(self, chars: String) -> String:
"""Return a copy of the string literal with trailing characters removed.
@@ -922,7 +926,7 @@ struct StringLiteral(
Returns:
A string with no trailing characters.
"""
- return str(self).rstrip(chars)
+ return String(str(self).rstrip(chars))
fn rstrip(self) -> String:
"""Return a copy of the string with trailing whitespaces removed. This
@@ -932,7 +936,7 @@ struct StringLiteral(
Returns:
A copy of the string with no trailing whitespaces.
"""
- return str(self).rstrip()
+ return String(str(self).rstrip())
fn lstrip(self, chars: String) -> String:
"""Return a copy of the string with leading characters removed.
@@ -943,7 +947,7 @@ struct StringLiteral(
Returns:
A copy of the string with no leading characters.
"""
- return str(self).lstrip(chars)
+ return String(str(self).lstrip(chars))
fn lstrip(self) -> String:
"""Return a copy of the string with leading whitespaces removed. This
@@ -953,4 +957,4 @@ struct StringLiteral(
Returns:
A copy of the string with no leading whitespaces.
"""
- return str(self).lstrip()
+ return String(str(self).lstrip())
diff --git a/stdlib/src/builtin/value.mojo b/stdlib/src/builtin/value.mojo
index 3dc291c522..af565bc129 100644
--- a/stdlib/src/builtin/value.mojo
+++ b/stdlib/src/builtin/value.mojo
@@ -112,7 +112,7 @@ trait ExplicitlyCopyable:
a `read-only` argument of `Self`.
Example implementing the `ExplicitlyCopyable` trait on `Foo` which requires
- the `__init__(.., Self)` method:
+ the `fn(self) -> Self` method:
```mojo
struct Foo(ExplicitlyCopyable):
@@ -122,17 +122,16 @@ trait ExplicitlyCopyable:
fn __init__(out self, s: String):
self.s = s
- @implicit
- fn __init__(out self, copy: Self):
+ fn copy(self) -> Self:
print("explicitly copying value")
- self.s = copy.s
+ return Foo(self.s)
```
You can now copy objects inside a generic function:
```mojo
fn copy_return[T: ExplicitlyCopyable](foo: T) -> T:
- var copy = T(foo)
+ var copy = foo.copy()
return copy
var foo = Foo("test")
@@ -144,15 +143,11 @@ trait ExplicitlyCopyable:
```
"""
- # Note:
- # `other` is a required named argument for the time being to minimize
- # implicit conversion overload ambiguity errors, particularly
- # with SIMD and Int.
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Explicitly construct a deep copy of the provided value.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
...
diff --git a/stdlib/src/collections/counter.mojo b/stdlib/src/collections/counter.mojo
index 55baedf606..5992cf585f 100644
--- a/stdlib/src/collections/counter.mojo
+++ b/stdlib/src/collections/counter.mojo
@@ -70,13 +70,13 @@ struct Counter[V: KeyElement](Sized, CollectionElement, Boolable):
self._data[item] = self._data.get(item, 0) + 1
@always_inline
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Create a new Counter by copying another Counter.
- Args:
- other: The Counter to copy.
+ Returns:
+ A copy of the value.
"""
- self._data = Dict[V, Int](other=other._data)
+ return Self(self._data.copy())
@staticmethod
fn fromkeys(keys: List[V, *_], value: Int) -> Self:
@@ -295,7 +295,7 @@ struct Counter[V: KeyElement](Sized, CollectionElement, Boolable):
A new Counter with the counts from the other Counter subtracted from
this Counter.
"""
- var result = Counter[V](other=self)
+ var result = self.copy()
result.subtract(other)
diff --git a/stdlib/src/collections/deque.mojo b/stdlib/src/collections/deque.mojo
index e8c1138071..f55c345f79 100644
--- a/stdlib/src/collections/deque.mojo
+++ b/stdlib/src/collections/deque.mojo
@@ -23,7 +23,7 @@ from collections import Deque
from collections import Optional
-from bit import bit_ceil
+from bit import next_power_of_two
from memory import UnsafePointer
# ===-----------------------------------------------------------------------===#
@@ -105,18 +105,18 @@ struct Deque[ElementType: CollectionElement](
if capacity <= 0:
deque_capacity = self.default_capacity
else:
- deque_capacity = bit_ceil(capacity)
+ deque_capacity = next_power_of_two(capacity)
if min_capacity <= 0:
min_deque_capacity = self.default_capacity
else:
- min_deque_capacity = bit_ceil(min_capacity)
+ min_deque_capacity = next_power_of_two(min_capacity)
if maxlen <= 0:
max_deque_len = -1
else:
max_deque_len = maxlen
- max_deque_capacity = bit_ceil(maxlen)
+ max_deque_capacity = next_power_of_two(maxlen)
if max_deque_capacity == maxlen:
max_deque_capacity <<= 1
deque_capacity = min(deque_capacity, max_deque_capacity)
@@ -168,24 +168,25 @@ struct Deque[ElementType: CollectionElement](
self._tail = args_length
- @implicit
- fn __init__(out self, other: Self):
+ fn copy(self) -> Self:
"""Creates a deepcopy of the given deque.
- Args:
- other: The deque to copy.
+ Returns:
+ A copy of the value.
"""
- self = Self(
- capacity=other._capacity,
- min_capacity=other._min_capacity,
- maxlen=other._maxlen,
- shrink=other._shrink,
+ var copy = Self(
+ capacity=self._capacity,
+ min_capacity=self._min_capacity,
+ maxlen=self._maxlen,
+ shrink=self._shrink,
)
- for i in range(len(other)):
- offset = other._physical_index(other._head + i)
- (self._data + i).init_pointee_copy((other._data + offset)[])
+ for i in range(len(self)):
+ offset = self._physical_index(self._head + i)
+ (copy._data + i).init_pointee_copy((self._data + offset)[])
+
+ copy._tail = len(self)
- self._tail = len(other)
+ return copy^
fn __moveinit__(out self, owned existing: Self):
"""Moves data of an existing deque into a new one.
@@ -221,7 +222,7 @@ struct Deque[ElementType: CollectionElement](
Returns:
The newly created deque with the properties of `self`.
"""
- new = Self(other=self)
+ new = self.copy()
for element in other:
new.append(element[])
return new^
@@ -251,7 +252,7 @@ struct Deque[ElementType: CollectionElement](
maxlen=self._maxlen,
shrink=self._shrink,
)
- new = Self(other=self)
+ new = self.copy()
for _ in range(n - 1):
for element in self:
new.append(element[])
@@ -267,7 +268,7 @@ struct Deque[ElementType: CollectionElement](
self.clear()
return
- orig = Self(other=self)
+ orig = self.copy()
for _ in range(n - 1):
for element in orig:
self.append(element[])
@@ -937,7 +938,7 @@ struct Deque[ElementType: CollectionElement](
n_total: The total number of elements the new buffer should support.
n_retain: The number of existing elements to keep in the deque.
"""
- new_capacity = bit_ceil(n_total)
+ new_capacity = next_power_of_two(n_total)
if new_capacity == n_total:
new_capacity <<= 1
diff --git a/stdlib/src/collections/dict.mojo b/stdlib/src/collections/dict.mojo
index f6b36900dc..9761dec244 100644
--- a/stdlib/src/collections/dict.mojo
+++ b/stdlib/src/collections/dict.mojo
@@ -192,7 +192,7 @@ struct _DictValueIter[
# Cast through a pointer to grant additional mutability because
# _DictEntryIter.next erases it.
return Self.ref_type.address_of(
- UnsafePointer.address_of(entry_ref[].value).bitcast[
+ UnsafePointer.address_of(entry_ref[].value).origin_cast[
origin=dict_origin
]()[]
)
@@ -216,7 +216,7 @@ struct DictEntry[K: KeyElement, V: CollectionElement](
V: The value type of the dict.
"""
- var hash: Int
+ var hash: UInt64
"""`key.__hash__()`, stored so hashing isn't re-computed during dict lookup."""
var key: K
"""The unique key for the entry."""
@@ -234,23 +234,21 @@ struct DictEntry[K: KeyElement, V: CollectionElement](
self.key = key^
self.value = value^
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy an existing entry.
- Args:
- other: The existing entry to copy.
+ Returns:
+ A copy of the value.
"""
- self.hash = other.hash
- self.key = other.key
- self.value = other.value
+ return self
- fn reap_value(owned self) -> V as out:
+ fn reap_value(owned self, out result: V):
"""Take the value from an owned entry.
Returns:
The value of the entry.
"""
- out = self.value^
+ result = self.value^
__disable_del self
@@ -319,7 +317,7 @@ struct _DictIndex:
fn __moveinit__(out self, owned existing: Self):
self.data = existing.data
- fn get_index(self, reserved: Int, slot: Int) -> Int:
+ fn get_index(self, reserved: Int, slot: UInt64) -> Int:
if reserved <= 128:
var data = self.data.bitcast[Int8]()
return int(data.load(slot & (reserved - 1)))
@@ -333,7 +331,7 @@ struct _DictIndex:
var data = self.data.bitcast[Int64]()
return int(data.load(slot & (reserved - 1)))
- fn set_index(mut self, reserved: Int, slot: Int, value: Int):
+ fn set_index(mut self, reserved: Int, slot: UInt64, value: Int):
if reserved <= 128:
var data = self.data.bitcast[Int8]()
return data.store(slot & (reserved - 1), value)
@@ -455,11 +453,18 @@ struct Dict[K: KeyElement, V: CollectionElement](
# don't churn and compact on repeated insert/delete, and instead amortize
# compaction cost to O(1) amortized cost.
- # Fields
+ # ===-------------------------------------------------------------------===#
+ # Aliases
+ # ===-------------------------------------------------------------------===#
+
alias EMPTY = _EMPTY
alias REMOVED = _REMOVED
alias _initial_reservation = 8
+ # ===-------------------------------------------------------------------===#
+ # Fields
+ # ===-------------------------------------------------------------------===#
+
var size: Int
"""The number of elements currently stored in the dict."""
var _n_entries: Int
@@ -517,16 +522,13 @@ struct Dict[K: KeyElement, V: CollectionElement](
return len(self._entries)
@always_inline
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy an existing dictiontary.
- Args:
- other: The existing dict.
+ Returns:
+ A copy of the value.
"""
- self.size = other.size
- self._n_entries = other._n_entries
- self._index = other._index.copy(other._reserved())
- self._entries = other._entries
+ return self
@staticmethod
fn fromkeys(keys: List[K, *_], value: V) -> Self:
@@ -648,7 +650,7 @@ struct Dict[K: KeyElement, V: CollectionElement](
Returns:
The result of the merge.
"""
- var result = Dict(other=self)
+ var result = self.copy()
result.update(other)
return result^
@@ -754,12 +756,11 @@ struct Dict[K: KeyElement, V: CollectionElement](
An optional value containing a copy of the value if it was present,
otherwise an empty Optional.
"""
- try: # TODO(MOCO-604): push usage through
- return self._find_ref(key)
- except:
- return None
- # TODO(MOCO-604): Return Optional[Pointer] instead of raising
+ # TODO(MOCO-604): push usage through
+ # TODO(MOCO-1522): Drop `[T=V]` after fixing param inference issue.
+ return self.get_ptr(key).copied[T=V]()
+
fn _find_ref(
ref self, key: K
) raises -> ref [self._entries[0].value().value] Self.V:
@@ -772,16 +773,36 @@ struct Dict[K: KeyElement, V: CollectionElement](
An optional value containing a reference to the value if it is
present, otherwise an empty Optional.
"""
+ if entry := self.get_ptr(key):
+ # SAFETY: We just checked that `entry` is populated.
+ return entry.unsafe_value()[]
+ else:
+ raise "KeyError"
+
+ fn get_ptr(
+ ref self, key: K
+ ) -> Optional[Pointer[V, __origin_of(self._entries[0].value().value)]]:
+ """Get a pointer to a value in the dictionary by key.
+
+ Args:
+ key: The key to search for in the dictionary.
+
+ Returns:
+ An optional value containing a pointer to the value if it is
+ present, otherwise an empty Optional.
+ """
var hash = hash(key)
var found: Bool
- var slot: Int
+ var slot: UInt64
var index: Int
found, slot, index = self._find_index(hash, key)
if found:
var entry = Pointer.address_of(self._entries[index])
debug_assert(entry[].__bool__(), "entry in index must be full")
- return entry[].value().value
- raise "KeyError"
+ # SAFETY: We just checked that `entry` is present.
+ return Pointer.address_of(entry[].unsafe_value().value)
+
+ return None
fn get(self, key: K) -> Optional[V]:
"""Get a value from the dictionary by key.
@@ -839,7 +860,7 @@ struct Dict[K: KeyElement, V: CollectionElement](
"""
var hash = hash(key)
var found: Bool
- var slot: Int
+ var slot: UInt64
var index: Int
found, slot, index = self._find_index(hash, key)
if found:
@@ -972,7 +993,7 @@ struct Dict[K: KeyElement, V: CollectionElement](
if not safe_context:
self._maybe_resize()
var found: Bool
- var slot: Int
+ var slot: UInt64
var index: Int
found, slot, index = self._find_index(entry.hash, entry.key)
@@ -982,30 +1003,30 @@ struct Dict[K: KeyElement, V: CollectionElement](
self.size += 1
self._n_entries += 1
- fn _get_index(self, slot: Int) -> Int:
+ fn _get_index(self, slot: UInt64) -> Int:
return self._index.get_index(self._reserved(), slot)
- fn _set_index(mut self, slot: Int, index: Int):
+ fn _set_index(mut self, slot: UInt64, index: Int):
return self._index.set_index(self._reserved(), slot, index)
- fn _next_index_slot(self, mut slot: Int, mut perturb: UInt64):
+ fn _next_index_slot(self, mut slot: UInt64, mut perturb: UInt64):
alias PERTURB_SHIFT = 5
perturb >>= PERTURB_SHIFT
slot = ((5 * slot) + int(perturb + 1)) & (self._reserved() - 1)
- fn _find_empty_index(self, hash: Int) -> Int:
+ fn _find_empty_index(self, hash: UInt64) -> UInt64:
var slot = hash & (self._reserved() - 1)
- var perturb = bitcast[DType.uint64](Int64(hash))
+ var perturb = hash
while True:
var index = self._get_index(slot)
if index == Self.EMPTY:
return slot
self._next_index_slot(slot, perturb)
- fn _find_index(self, hash: Int, key: K) -> (Bool, Int, Int):
+ fn _find_index(self, hash: UInt64, key: K) -> (Bool, UInt64, Int):
# Return (found, slot, index)
var slot = hash & (self._reserved() - 1)
- var perturb = bitcast[DType.uint64](Int64(hash))
+ var perturb = hash
while True:
var index = self._get_index(slot)
if index == Self.EMPTY:
@@ -1087,13 +1108,13 @@ struct OwnedKwargsDict[V: CollectionElement](
"""Initialize an empty keyword dictionary."""
self._dict = Dict[Self.key_type, V]()
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy an existing keyword dictionary.
- Args:
- other: The existing keyword dictionary.
+ Returns:
+ A copy of the value.
"""
- self._dict = other._dict
+ return self
fn __copyinit__(out self, existing: Self):
"""Copy an existing keyword dictionary.
diff --git a/stdlib/src/collections/inline_array.mojo b/stdlib/src/collections/inline_array.mojo
index 6901ed1327..973406574b 100644
--- a/stdlib/src/collections/inline_array.mojo
+++ b/stdlib/src/collections/inline_array.mojo
@@ -80,10 +80,7 @@ struct InlineArray[
" 'unsafe_uninitialized'."
),
]()
- self._array = __mlir_op.`kgen.param.constant`[
- _type = Self.type,
- value = __mlir_attr[`#kgen.unknown : `, Self.type],
- ]()
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(self))
@always_inline
fn __init__(out self, *, unsafe_uninitialized: Bool):
@@ -106,10 +103,7 @@ struct InlineArray[
Always set to `True` (it's not actually used inside the constructor).
"""
_inline_array_construction_checks[size]()
- self._array = __mlir_op.`kgen.param.constant`[
- _type = Self.type,
- value = __mlir_attr[`#kgen.unknown : `, Self.type],
- ]()
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(self))
fn __init__(
mut self,
@@ -129,11 +123,7 @@ struct InlineArray[
unsafe_assume_initialized: The array of `UnsafeMaybeUninitialized` elements.
"""
- self._array = __mlir_op.`kgen.param.constant`[
- _type = Self.type,
- value = __mlir_attr[`#kgen.unknown : `, Self.type],
- ]()
-
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(self))
for i in range(Self.size):
unsafe_assume_initialized[i].unsafe_ptr().move_pointee_into(
self.unsafe_ptr() + i
@@ -148,10 +138,7 @@ struct InlineArray[
fill: The element to fill each index.
"""
_inline_array_construction_checks[size]()
- self._array = __mlir_op.`kgen.param.constant`[
- _type = Self.type,
- value = __mlir_attr[`#kgen.unknown : `, Self.type],
- ]()
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(self))
@parameter
for i in range(size):
@@ -183,10 +170,7 @@ struct InlineArray[
debug_assert(len(storage) == size, "Elements must be of length size")
_inline_array_construction_checks[size]()
- self._array = __mlir_op.`kgen.param.constant`[
- _type = Self.type,
- value = __mlir_attr[`#kgen.unknown : `, Self.type],
- ]()
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(self))
# Move each element into the array storage.
@parameter
@@ -199,18 +183,20 @@ struct InlineArray[
__get_mvalue_as_litref(storage)
)
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Explicitly copy the provided value.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- self = Self(unsafe_uninitialized=True)
+ var copy = Self(unsafe_uninitialized=True)
for idx in range(size):
- var ptr = self.unsafe_ptr() + idx
- ptr.init_pointee_copy(other[idx])
+ var ptr = copy.unsafe_ptr() + idx
+ ptr.init_pointee_copy(self[idx])
+
+ return copy^
fn __copyinit__(out self, other: Self):
"""Copy construct the array.
@@ -219,7 +205,7 @@ struct InlineArray[
other: The array to copy.
"""
- self = Self(other=other)
+ self = other.copy()
fn __del__(owned self):
"""Deallocate the array."""
diff --git a/stdlib/src/collections/inline_list.mojo b/stdlib/src/collections/inline_list.mojo
index f98e307940..798f71d5f8 100644
--- a/stdlib/src/collections/inline_list.mojo
+++ b/stdlib/src/collections/inline_list.mojo
@@ -120,7 +120,7 @@ struct InlineList[ElementType: CollectionElementNew, capacity: Int = 16](Sized):
debug_assert(len(values) <= capacity, "List is full.")
self = Self()
for value in values:
- self.append(ElementType(other=value[]))
+ self.append(value[].copy())
@always_inline
fn __del__(owned self):
diff --git a/stdlib/src/collections/list.mojo b/stdlib/src/collections/list.mojo
index f0bc3d0c6a..1f0d42bde8 100644
--- a/stdlib/src/collections/list.mojo
+++ b/stdlib/src/collections/list.mojo
@@ -114,15 +114,16 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False](
self.size = 0
self.capacity = 0
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Creates a deep copy of the given list.
- Args:
- other: The list to copy.
+ Returns:
+ A copy of the value.
"""
- self = Self(capacity=other.capacity)
- for e in other:
- self.append(e[])
+ var copy = Self(capacity=self.capacity)
+ for e in self:
+ copy.append(e[])
+ return copy^
fn __init__(out self, *, capacity: Int):
"""Constructs a list with the given capacity.
@@ -134,7 +135,6 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False](
self.size = 0
self.capacity = capacity
- @implicit
fn __init__(out self, owned *values: T):
"""Constructs a list from the given values.
@@ -166,7 +166,6 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False](
self.size = length
- @implicit
fn __init__(out self, span: Span[T]):
"""Constructs a list from the a Span of values.
@@ -177,7 +176,9 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False](
for value in span:
self.append(value[])
- fn __init__(mut self, *, ptr: UnsafePointer[T], length: Int, capacity: Int):
+ fn __init__(
+ out self, *, ptr: UnsafePointer[T], length: UInt, capacity: UInt
+ ):
"""Constructs a list from a pointer, its length, and its capacity.
Args:
@@ -316,7 +317,7 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False](
# avoid the copy since it would be cleared immediately anyways
if x == 0:
return Self()
- var result = List(other=self)
+ var result = self.copy()
result.__mul(x)
return result^
@@ -337,7 +338,7 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False](
Returns:
The newly created list.
"""
- var result = List(other=self)
+ var result = self.copy()
result.extend(other^)
return result^
@@ -496,9 +497,13 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False](
Args:
value: The value to append.
+
+ Notes:
+ If there is no capacity left, resizes to twice the current capacity.
+ Except for 0 capacity where it sets 1.
"""
if self.size >= self.capacity:
- self._realloc(max(1, self.capacity * 2))
+ self._realloc(self.capacity * 2 | int(self.capacity == 0))
(self.data + self.size).init_pointee_move(value^)
self.size += 1
@@ -545,7 +550,7 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False](
if x == 0:
self.clear()
return
- var orig = List(other=self)
+ var orig = self.copy()
self.reserve(len(self) * x)
for i in range(x - 1):
self.extend(orig)
@@ -590,6 +595,64 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False](
# list.
self.size = final_size
+ fn extend[
+ D: DType, //
+ ](mut self: List[Scalar[D], *_, **_], value: SIMD[D, _]):
+ """Extends this list with the elements of a vector.
+
+ Parameters:
+ D: The DType.
+
+ Args:
+ value: The value to append.
+
+ Notes:
+ If there is no capacity left, resizes to `len(self) + value.size`.
+ """
+ self.reserve(self.size + value.size)
+ (self.data + self.size).store(value)
+ self.size += value.size
+
+ fn extend[
+ D: DType, //
+ ](mut self: List[Scalar[D], *_, **_], value: SIMD[D, _], *, count: Int):
+ """Extends this list with `count` number of elements from a vector.
+
+ Parameters:
+ D: The DType.
+
+ Args:
+ value: The value to append.
+ count: The ammount of items to append. Must be less than or equal to
+ `value.size`.
+
+ Notes:
+ If there is no capacity left, resizes to `len(self) + count`.
+ """
+ debug_assert(count <= value.size, "count must be <= value.size")
+ self.reserve(self.size + count)
+ var v_ptr = UnsafePointer.address_of(value).bitcast[Scalar[D]]()
+ memcpy(self.data + self.size, v_ptr, count)
+ self.size += count
+
+ fn extend[
+ D: DType, //
+ ](mut self: List[Scalar[D], *_, **_], value: Span[Scalar[D]]):
+ """Extends this list with the elements of a `Span`.
+
+ Parameters:
+ D: The DType.
+
+ Args:
+ value: The value to append.
+
+ Notes:
+ If there is no capacity left, resizes to `len(self) + len(value)`.
+ """
+ self.reserve(self.size + len(value))
+ memcpy(self.data + self.size, value.unsafe_ptr(), len(value))
+ self.size += len(value)
+
fn pop(mut self, i: Int = -1) -> T:
"""Pops a value from the list at the given index.
@@ -937,6 +1000,19 @@ struct List[T: CollectionElement, hint_trivial_type: Bool = False](
"""
return self.data
+ fn _cast_hint_trivial_type[
+ hint_trivial_type: Bool
+ ](owned self) -> List[T, hint_trivial_type]:
+ var size = self.size
+ var capacity = self.capacity
+
+ # TODO: Why doesn't `__disable_del self` work here?
+ var data = self.steal_data()
+
+ return List[T, hint_trivial_type](
+ ptr=data, length=size, capacity=capacity
+ )
+
fn _clip(value: Int, start: Int, end: Int) -> Int:
return max(start, min(value, end))
diff --git a/stdlib/src/collections/optional.mojo b/stdlib/src/collections/optional.mojo
index 0e318980e9..b96d3d694a 100644
--- a/stdlib/src/collections/optional.mojo
+++ b/stdlib/src/collections/optional.mojo
@@ -42,6 +42,12 @@ struct _NoneType(CollectionElement, CollectionElementNew):
fn __init__(out self, *, other: Self):
pass
+ fn __copyinit__(out self, other: Self):
+ pass
+
+ fn copy(self) -> Self:
+ return _NoneType()
+
# ===-----------------------------------------------------------------------===#
# Optional
@@ -124,13 +130,13 @@ struct Optional[T: CollectionElement](
"""
self = Self()
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy construct an Optional.
- Args:
- other: The Optional to copy.
+ Returns:
+ A copy of the value.
"""
- self = other
+ return self
# ===-------------------------------------------------------------------===#
# Operator dunders
@@ -382,6 +388,48 @@ struct Optional[T: CollectionElement](
return self._value[T]
return default
+ fn copied[
+ mut: Bool,
+ origin: Origin[mut], //,
+ T: CollectionElement,
+ ](self: Optional[Pointer[T, origin]]) -> Optional[T]:
+ """Converts an Optional containing a Pointer to an Optional of an owned
+ value by copying.
+
+ If `self` is an empty `Optional`, the returned `Optional` will be empty
+ as well.
+
+ Parameters:
+ mut: Mutability of the pointee origin.
+ origin: Origin of the contained `Pointer`.
+ T: Type of the owned result value.
+
+ Returns:
+ An Optional containing an owned copy of the pointee value.
+
+ # Examples
+
+ Copy the value of an `Optional[Pointer[_]]`
+
+ ```mojo
+ from collections import Optional
+
+ var data = String("foo")
+
+ var opt = Optional(Pointer.address_of(data))
+
+ # TODO(MOCO-1522): Drop `[T=String]` after fixing param inference issue.
+ var opt_owned: Optional[String] = opt.copied[T=String]()
+ ```
+ .
+ """
+ if self:
+ # SAFETY: We just checked that `self` is populated.
+ # Perform an implicit copy
+ return self.unsafe_value()[]
+ else:
+ return None
+
# ===-----------------------------------------------------------------------===#
# OptionalReg
diff --git a/stdlib/src/collections/string/__init__.mojo b/stdlib/src/collections/string/__init__.mojo
new file mode 100644
index 0000000000..97f9fdc563
--- /dev/null
+++ b/stdlib/src/collections/string/__init__.mojo
@@ -0,0 +1,27 @@
+# ===----------------------------------------------------------------------=== #
+# Copyright (c) 2024, Modular Inc. All rights reserved.
+#
+# Licensed under the Apache License v2.0 with LLVM Exceptions:
+# https://llvm.org/LICENSE.txt
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ===----------------------------------------------------------------------=== #
+"""Implements the string package."""
+
+from .string import (
+ String,
+ ascii,
+ atof,
+ atol,
+ chr,
+ isdigit,
+ islower,
+ isprintable,
+ isupper,
+ ord,
+)
+from .string_slice import StringSlice, StaticString
diff --git a/stdlib/src/utils/_unicode.mojo b/stdlib/src/collections/string/_unicode.mojo
similarity index 99%
rename from stdlib/src/utils/_unicode.mojo
rename to stdlib/src/collections/string/_unicode.mojo
index fb61a24cd9..69bb129418 100644
--- a/stdlib/src/utils/_unicode.mojo
+++ b/stdlib/src/collections/string/_unicode.mojo
@@ -10,10 +10,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# ===----------------------------------------------------------------------=== #
+
from bit import count_leading_zeros
from memory import UnsafePointer, memcpy
-
-from ._unicode_lookups import *
+from collections.string._unicode_lookups import *
fn _uppercase_mapping_index(rune: Int) -> Int:
diff --git a/stdlib/src/utils/_unicode_lookups.mojo b/stdlib/src/collections/string/_unicode_lookups.mojo
similarity index 100%
rename from stdlib/src/utils/_unicode_lookups.mojo
rename to stdlib/src/collections/string/_unicode_lookups.mojo
diff --git a/stdlib/src/utils/_utf8_validation.mojo b/stdlib/src/collections/string/_utf8_validation.mojo
similarity index 100%
rename from stdlib/src/utils/_utf8_validation.mojo
rename to stdlib/src/collections/string/_utf8_validation.mojo
index eb514733ca..31327dce89 100644
--- a/stdlib/src/utils/_utf8_validation.mojo
+++ b/stdlib/src/collections/string/_utf8_validation.mojo
@@ -26,9 +26,9 @@ https://github.com/simdutf/SimdUnicode/blob/main/src/UTF8.cs
"""
from base64._b64encode import _sub_with_saturation
+from memory import UnsafePointer, Span
from sys.intrinsics import llvm_intrinsic
-from memory import UnsafePointer, Span
alias TOO_SHORT: UInt8 = 1 << 0
alias TOO_LONG: UInt8 = 1 << 1
diff --git a/stdlib/src/utils/format.mojo b/stdlib/src/collections/string/format.mojo
similarity index 98%
rename from stdlib/src/utils/format.mojo
rename to stdlib/src/collections/string/format.mojo
index 752a34898d..abaeb26c10 100644
--- a/stdlib/src/utils/format.mojo
+++ b/stdlib/src/collections/string/format.mojo
@@ -13,8 +13,8 @@
"""Implements Formatting utilities."""
from collections import Optional
-
from memory import UnsafePointer
+from utils import Variant
# TODO: _FormatCurlyEntry and _FormatSpec should be public in the future for
# people who want to write their own templating engines. This is not yet done
@@ -65,17 +65,9 @@ struct _FormatCurlyEntry(CollectionElement, CollectionElementNew):
alias _args_t = VariadicPack[element_trait=_CurlyEntryFormattable, *_]
"""Args types that are formattable by curly entry."""
- fn __init__(out self, *, other: Self):
- """Construct a format entry by copying another.
-
- Args:
- other: The other format entry.
- """
- self.first_curly = other.first_curly
- self.last_curly = other.last_curly
- self.conversion_flag = other.conversion_flag
- self.field = Self._FieldVariantType(other=other.field)
- self.format_spec = other.format_spec
+ fn copy(self) -> Self:
+ """Construct a format entry by copying another."""
+ return self
fn __init__(
mut self,
diff --git a/stdlib/src/utils/inline_string.mojo b/stdlib/src/collections/string/inline_string.mojo
similarity index 86%
rename from stdlib/src/utils/inline_string.mojo
rename to stdlib/src/collections/string/inline_string.mojo
index 7ddb0df082..6cb7203e6d 100644
--- a/stdlib/src/utils/inline_string.mojo
+++ b/stdlib/src/collections/string/inline_string.mojo
@@ -16,12 +16,12 @@
"""
from collections import InlineArray, Optional
+from collections.string import StringSlice
+from memory import UnsafePointer, memcpy, Span
from os import abort
from sys import sizeof
+from utils import Variant, StringRef
-from memory import UnsafePointer, memcpy, Span
-
-from utils import StringSlice, Variant
# ===-----------------------------------------------------------------------===#
# InlineString
@@ -91,34 +91,18 @@ struct InlineString(Sized, Stringable, CollectionElement, CollectionElementNew):
"""
self._storage = Self.Layout(heap_string^)
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy the object.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- self = other
+ return self
# ===------------------------------------------------------------------=== #
# Operator dunders
# ===------------------------------------------------------------------=== #
- fn __iadd__(mut self, literal: StringLiteral):
- """Appends another string to this string.
-
- Args:
- literal: The string to append.
- """
- self.__iadd__(StringRef(literal))
-
- fn __iadd__(mut self, string: String):
- """Appends another string to this string.
-
- Args:
- string: The string to append.
- """
- self.__iadd__(string.as_string_slice())
-
fn __iadd__(mut self, str_slice: StringSlice):
"""Appends another string to this string.
@@ -147,31 +131,18 @@ struct InlineString(Sized, Stringable, CollectionElement, CollectionElementNew):
# Begin by heap allocating enough space to store the combined
# string.
var buffer = List[UInt8](capacity=total_len)
-
# Copy the bytes from the current small string layout
- memcpy(
- dest=buffer.unsafe_ptr(),
- src=self._storage[_FixedString[Self.SMALL_CAP]].unsafe_ptr(),
- count=len(self),
+ var span_self = Span[Byte, __origin_of(self)](
+ ptr=self._storage[_FixedString[Self.SMALL_CAP]].unsafe_ptr(),
+ length=len(self),
)
-
+ buffer.extend(span_self)
# Copy the bytes from the additional string.
- memcpy(
- dest=buffer.unsafe_ptr() + len(self),
- src=str_slice.unsafe_ptr(),
- count=str_slice.byte_length(),
- )
-
- # Record that we've initialized `total_len` count of elements
- # in `buffer`
- buffer.size = total_len
-
- # Add the NUL byte
- buffer.append(0)
-
+ buffer.extend(str_slice.as_bytes())
+ buffer.append(0) # Add the NUL byte
self._storage = Self.Layout(String(buffer^))
- fn __add__(self, other: StringLiteral) -> Self:
+ fn __add__(self, other: StringSlice) -> Self:
"""Construct a string by appending another string at the end of this string.
Args:
@@ -182,22 +153,8 @@ struct InlineString(Sized, Stringable, CollectionElement, CollectionElementNew):
"""
var string = self
- string += StringRef(other)
- return string
-
- fn __add__(self, other: String) -> Self:
- """Construct a string by appending another string at the end of this string.
-
- Args:
- other: The string to append.
-
- Returns:
- A new string containing the concatenation of `self` and `other`.
- """
-
- var string = self
- string += other.as_string_slice()
- return string
+ string += other
+ return string^
fn __add__(self, other: InlineString) -> Self:
"""Construct a string by appending another string at the end of this string.
@@ -333,13 +290,9 @@ struct _FixedString[CAP: Int](
self.buffer = InlineArray[UInt8, CAP](unsafe_uninitialized=True)
self.size = 0
- fn __init__(out self, *, other: Self):
- """Copy the object.
-
- Args:
- other: The value to copy.
- """
- self = other
+ fn copy(self) -> Self:
+ """Copy the object."""
+ return self
fn __init__(out self, literal: StringLiteral) raises:
"""Constructs a FixedString value given a string literal.
@@ -395,22 +348,6 @@ struct _FixedString[CAP: Int](
# Operator dunders
# ===------------------------------------------------------------------=== #
- fn __iadd__(mut self, literal: StringLiteral) raises:
- """Appends another string to this string.
-
- Args:
- literal: The string to append.
- """
- self.__iadd__(literal.as_string_slice())
-
- fn __iadd__(mut self, string: String) raises:
- """Appends another string to this string.
-
- Args:
- string: The string to append.
- """
- self.__iadd__(string.as_string_slice())
-
@always_inline
fn __iadd__(mut self, str_slice: StringSlice) raises:
"""Appends another string to this string.
diff --git a/stdlib/src/collections/string.mojo b/stdlib/src/collections/string/string.mojo
similarity index 90%
rename from stdlib/src/collections/string.mojo
rename to stdlib/src/collections/string/string.mojo
index 06cd2afeb5..7cbbd2a884 100644
--- a/stdlib/src/collections/string.mojo
+++ b/stdlib/src/collections/string/string.mojo
@@ -10,10 +10,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
# ===----------------------------------------------------------------------=== #
-"""Implements basic object methods for working with strings.
-
-These are Mojo built-ins, so you don't need to import them.
-"""
+"""Implements basic object methods for working with strings."""
from collections import KeyElement, List, Optional
from collections._index_normalization import normalize_index
@@ -30,20 +27,20 @@ from utils import (
IndexList,
StaticString,
StringRef,
- StringSlice,
Variant,
Writable,
Writer,
write_args,
)
-from utils._unicode import (
+from collections.string._unicode import (
is_lowercase,
is_uppercase,
to_lowercase,
to_uppercase,
)
-from utils.format import _CurlyEntryFormattable, _FormatCurlyEntry
-from utils.string_slice import (
+from collections.string.format import _CurlyEntryFormattable, _FormatCurlyEntry
+from collections.string.string_slice import (
+ StringSlice,
_shift_unicode_to_utf8,
_StringSliceIter,
_to_string_list,
@@ -56,22 +53,6 @@ from utils.string_slice import (
# ===----------------------------------------------------------------------=== #
-fn ord(s: String) -> Int:
- """Returns an integer that represents the given one-character string.
-
- Given a string representing one character, return an integer
- representing the code point of that character. For example, `ord("a")`
- returns the integer `97`. This is the inverse of the `chr()` function.
-
- Args:
- s: The input string slice, which must contain only a single character.
-
- Returns:
- An integer representing the code point of the given character.
- """
- return ord(s.as_string_slice())
-
-
fn ord(s: StringSlice) -> Int:
"""Returns an integer that represents the given one-character string.
@@ -203,7 +184,7 @@ fn _repr_ascii(c: UInt8) -> String:
@always_inline
-fn ascii(value: String) -> String:
+fn ascii(value: StringSlice) -> String:
"""Get the ASCII representation of the object.
Args:
@@ -216,8 +197,8 @@ fn ascii(value: String) -> String:
var result = String()
var use_dquote = False
- for idx in range(len(value._buffer) - 1):
- var char = value._buffer[idx]
+ for idx in range(len(value._slice)):
+ var char = value._slice[idx]
result += _repr_ascii(char)
use_dquote = use_dquote or (char == ord_squote)
@@ -232,11 +213,42 @@ fn ascii(value: String) -> String:
# ===----------------------------------------------------------------------=== #
-fn _atol(str_slice: StringSlice, base: Int = 10) raises -> Int:
- """Implementation of `atol` for StringSlice inputs.
+fn atol(str_slice: StringSlice, base: Int = 10) raises -> Int:
+ """Parses and returns the given string as an integer in the given base.
- Please see its docstring for details.
+ If base is set to 0, the string is parsed as an Integer literal, with the
+ following considerations:
+ - '0b' or '0B' prefix indicates binary (base 2)
+ - '0o' or '0O' prefix indicates octal (base 8)
+ - '0x' or '0X' prefix indicates hexadecimal (base 16)
+ - Without a prefix, it's treated as decimal (base 10)
+
+ Args:
+ str_slice: A string to be parsed as an integer in the given base.
+ base: Base used for conversion, value must be between 2 and 36, or 0.
+
+ Returns:
+ An integer value that represents the string.
+
+ Raises:
+ If the given string cannot be parsed as an integer value or if an
+ incorrect base is provided.
+
+ Examples:
+ >>> atol("32")
+ 32
+ >>> atol("FF", 16)
+ 255
+ >>> atol("0xFF", 0)
+ 255
+ >>> atol("0b1010", 0)
+ 10
+
+ Notes:
+ This follows [Python's integer literals](
+ https://docs.python.org/3/reference/lexical_analysis.html#integers).
"""
+
if (base != 0) and (base < 2 or base > 36):
raise Error("Base must be >= 2 and <= 36, or 0.")
if not str_slice:
@@ -430,55 +442,28 @@ fn _identify_base(str_slice: StringSlice, start: Int) -> Tuple[Int, Int]:
return 10, start
-fn atol(str: String, base: Int = 10) raises -> Int:
- """Parses and returns the given string as an integer in the given base.
+fn _atof_error(str_ref: StringSlice) -> Error:
+ return Error("String is not convertible to float: '" + str(str_ref) + "'")
- If base is set to 0, the string is parsed as an Integer literal, with the
- following considerations:
- - '0b' or '0B' prefix indicates binary (base 2)
- - '0o' or '0O' prefix indicates octal (base 8)
- - '0x' or '0X' prefix indicates hexadecimal (base 16)
- - Without a prefix, it's treated as decimal (base 10)
- Args:
- str: A string to be parsed as an integer in the given base.
- base: Base used for conversion, value must be between 2 and 36, or 0.
+fn atof(str_slice: StringSlice) raises -> Float64:
+ """Parses the given string as a floating point and returns that value.
- Returns:
- An integer value that represents the string.
+ For example, `atof("2.25")` returns `2.25`.
Raises:
- If the given string cannot be parsed as an integer value or if an
- incorrect base is provided.
+ If the given string cannot be parsed as an floating point value, for
+ example in `atof("hi")`.
- Examples:
- >>> atol("32")
- 32
- >>> atol("FF", 16)
- 255
- >>> atol("0xFF", 0)
- 255
- >>> atol("0b1010", 0)
- 10
+ Args:
+ str_slice: A string to be parsed as a floating point.
- Notes:
- This follows [Python's integer literals](
- https://docs.python.org/3/reference/lexical_analysis.html#integers).
+ Returns:
+ An floating point value that represents the string, or otherwise raises.
"""
- return _atol(str.as_string_slice(), base)
-
-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:
- """Implementation of `atof` for StringRef inputs.
-
- Please see its docstring for details.
- """
- if not str_ref:
- raise _atof_error(str_ref)
+ if not str_slice:
+ raise _atof_error(str_slice)
var result: Float64 = 0.0
var exponent: Int = 0
@@ -495,9 +480,9 @@ fn _atof(str_ref: StringSlice) raises -> Float64:
alias ord_E = UInt8(ord("E"))
var start: Int = 0
- var str_ref_strip = str_ref.strip()
- var str_len = len(str_ref_strip)
- var buff = str_ref_strip.unsafe_ptr()
+ var str_slice_strip = str_slice.strip()
+ var str_len = len(str_slice_strip)
+ var buff = str_slice_strip.unsafe_ptr()
# check sign, inf, nan
if buff[start] == ord_plus:
@@ -546,13 +531,13 @@ fn _atof(str_ref: StringSlice) raises -> Float64:
start += 1
exponent += sign * shift
if not has_number:
- raise _atof_error(str_ref)
+ raise _atof_error(str_slice)
# check for f/F at the end
if buff[start] == ord_f or buff[start] == ord_F:
start += 1
# check if string got fully parsed
if start != str_len:
- raise _atof_error(str_ref)
+ raise _atof_error(str_slice)
# apply shift
# NOTE: Instead of `var result *= 10.0 ** exponent`, we calculate a positive
# integer factor as shift and multiply or divide by it based on the shift
@@ -567,24 +552,6 @@ fn _atof(str_ref: StringSlice) raises -> Float64:
return result * sign
-fn atof(str: String) raises -> Float64:
- """Parses the given string as a floating point and returns that value.
-
- For example, `atof("2.25")` returns `2.25`.
-
- Raises:
- If the given string cannot be parsed as an floating point value, for
- example in `atof("hi")`.
-
- Args:
- str: A string to be parsed as a floating point.
-
- Returns:
- An floating point value that represents the string, or otherwise raises.
- """
- return _atof(str.as_string_slice())
-
-
# ===----------------------------------------------------------------------=== #
# isdigit
# ===----------------------------------------------------------------------=== #
@@ -783,8 +750,7 @@ struct String(
# ===------------------------------------------------------------------=== #
@always_inline
- @implicit
- fn __init__(out self, owned impl: List[UInt8, *_]):
+ fn __init__(out self, owned buffer: List[UInt8, *_]):
"""Construct a string from a buffer of bytes without copying the
allocated data.
@@ -795,57 +761,17 @@ struct String(
buf.append(ord('H'))
buf.append(ord('i'))
buf.append(0)
- var hi = String(buf)
+ var hi = String(buffer=buf)
```
Args:
- impl: The buffer.
+ buffer: The buffer.
"""
debug_assert(
- len(impl) > 0 and impl[-1] == 0,
- "expected last element of String buffer to be null terminator",
- )
- # We make a backup because steal_data() will clear size and capacity.
- var size = impl.size
- debug_assert(
- impl[size - 1] == 0,
+ len(buffer) > 0 and buffer[-1] == 0,
"expected last element of String buffer to be null terminator",
)
- var capacity = impl.capacity
- self._buffer = Self._buffer_type(
- ptr=impl.steal_data(), length=size, capacity=capacity
- )
-
- @always_inline
- @implicit
- fn __init__(out self, impl: Self._buffer_type):
- """Construct a string from a buffer of bytes, copying the allocated
- data. Use the transfer operator ^ to avoid the copy.
-
- The buffer must be terminated with a null byte:
-
- ```mojo
- var buf = List[UInt8]()
- buf.append(ord('H'))
- buf.append(ord('i'))
- buf.append(0)
- var hi = String(buf)
- ```
-
- Args:
- impl: The buffer.
- """
- debug_assert(
- len(impl) > 0 and impl[-1] == 0,
- "expected last element of String buffer to be null terminator",
- )
- # We make a backup because steal_data() will clear size and capacity.
- var size = impl.size
- debug_assert(
- impl[size - 1] == 0,
- "expected last element of String buffer to be null terminator",
- )
- self._buffer = impl
+ self._buffer = buffer^._cast_hint_trivial_type[True]()
@always_inline
fn __init__(out self):
@@ -861,50 +787,43 @@ struct String(
"""
self._buffer = Self._buffer_type(capacity=capacity)
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Explicitly copy the provided value.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- self = other # Just use the implicit copyinit.
+ return self # Just use the implicit copyinit.
- @implicit
- fn __init__(out self, str: StringRef):
+ fn __init__(out self, strref: StringRef):
"""Construct a string from a StringRef object.
Args:
- str: The StringRef from which to construct this string object.
+ strref: The StringRef from which to construct this string object.
"""
- var length = len(str)
+ var length = len(strref)
var buffer = Self._buffer_type()
# +1 for null terminator, initialized to 0
buffer.resize(length + 1, 0)
- memcpy(dest=buffer.data, src=str.data, count=length)
+ memcpy(dest=buffer.data, src=strref.data, count=length)
self = Self(buffer^)
- @implicit
fn __init__(out self, str_slice: StringSlice):
"""Construct a string from a string slice.
- This will allocate a new string that copies the string contents from
- the provided string slice `str_slice`.
-
Args:
str_slice: The string slice from which to construct this string.
+
+ Notes:
+ This will allocate a new string that copies the string contents from
+ the provided string slice.
"""
- # Calculate length in bytes
- var length: Int = len(str_slice.as_bytes())
- var buffer = Self._buffer_type()
- # +1 for null terminator, initialized to 0
- buffer.resize(length + 1, 0)
- memcpy(
- dest=buffer.data,
- src=str_slice.as_bytes().unsafe_ptr(),
- count=length,
- )
- self = Self(buffer^)
+ var length = str_slice.byte_length()
+ var ptr = UnsafePointer[Byte].alloc(length + 1) # null terminator
+ memcpy(ptr, str_slice.unsafe_ptr(), length)
+ ptr[length] = 0
+ self = String(ptr=ptr, length=length + 1)
@always_inline
@implicit
@@ -917,7 +836,7 @@ struct String(
self = literal.__str__()
@always_inline
- fn __init__(out self, *, ptr: UnsafePointer[Byte], length: Int):
+ fn __init__(out self, *, ptr: UnsafePointer[Byte], length: UInt):
"""Creates a string from the buffer. Note that the string now owns
the buffer.
@@ -1109,7 +1028,7 @@ struct String(
start, end, step = span.indices(self.byte_length())
var r = range(start, end, step)
if step == 1:
- return StringRef(self._buffer.data + start, len(r))
+ return String(StringRef(self._buffer.data + start, len(r)))
var buffer = Self._buffer_type()
var result_len = len(r)
@@ -1226,30 +1145,6 @@ struct String(
ptr[sum_len] = 0
return Self(buffer^)
- @always_inline
- fn __add__(self, other: String) -> String:
- """Creates a string by appending another string at the end.
-
- Args:
- other: The string to append.
-
- Returns:
- The new constructed string.
- """
- return Self._add[True](self.as_bytes(), other.as_bytes())
-
- @always_inline
- fn __add__(self, other: StringLiteral) -> String:
- """Creates a string by appending a string literal at the end.
-
- Args:
- other: The string literal to append.
-
- Returns:
- The new constructed string.
- """
- return Self._add[False](self.as_bytes(), other.as_bytes())
-
@always_inline
fn __add__(self, other: StringSlice) -> String:
"""Creates a string by appending a string slice at the end.
@@ -1262,30 +1157,6 @@ struct String(
"""
return Self._add[False](self.as_bytes(), other.as_bytes())
- @always_inline
- fn __radd__(self, other: String) -> String:
- """Creates a string by prepending another string to the start.
-
- Args:
- other: The string to prepend.
-
- Returns:
- The new constructed string.
- """
- return Self._add[True](other.as_bytes(), self.as_bytes())
-
- @always_inline
- fn __radd__(self, other: StringLiteral) -> String:
- """Creates a string by prepending another string literal to the start.
-
- Args:
- other: The string to prepend.
-
- Returns:
- The new constructed string.
- """
- return Self._add[True](other.as_bytes(), self.as_bytes())
-
@always_inline
fn __radd__(self, other: StringSlice) -> String:
"""Creates a string by prepending another string slice to the start.
@@ -1318,24 +1189,6 @@ struct String(
if not has_null:
s_ptr[sum_len] = 0
- @always_inline
- fn __iadd__(mut self, other: String):
- """Appends another string to this string.
-
- Args:
- other: The string to append.
- """
- self._iadd[True](other.as_bytes())
-
- @always_inline
- fn __iadd__(mut self, other: StringLiteral):
- """Appends another string literal to this string.
-
- Args:
- other: The string to append.
- """
- self._iadd[False](other.as_bytes())
-
@always_inline
fn __iadd__(mut self, other: StringSlice):
"""Appends another string slice to this string.
@@ -1352,7 +1205,7 @@ struct String(
An iterator of references to the string elements.
"""
return _StringSliceIter[__origin_of(self)](
- unsafe_pointer=self.unsafe_ptr(), length=self.byte_length()
+ ptr=self.unsafe_ptr(), length=self.byte_length()
)
fn __reversed__(self) -> _StringSliceIter[__origin_of(self), False]:
@@ -1362,7 +1215,7 @@ struct String(
A reversed iterator of references to the string elements.
"""
return _StringSliceIter[__origin_of(self), forward=False](
- unsafe_pointer=self.unsafe_ptr(), length=self.byte_length()
+ ptr=self.unsafe_ptr(), length=self.byte_length()
)
# ===------------------------------------------------------------------=== #
@@ -1413,34 +1266,7 @@ struct String(
Returns:
A new representation of the string.
"""
- var result = String()
- var use_dquote = False
- for s in self:
- use_dquote = use_dquote or (s == "'")
-
- if s == "\\":
- result += r"\\"
- elif s == "\t":
- result += r"\t"
- elif s == "\n":
- result += r"\n"
- elif s == "\r":
- result += r"\r"
- else:
- var codepoint = ord(s)
- if isprintable(codepoint):
- result += s
- elif codepoint < 0x10:
- result += hex(codepoint, prefix=r"\x0")
- elif codepoint < 0x20 or codepoint == 0x7F:
- result += hex(codepoint, prefix=r"\x")
- else: # multi-byte character
- result += s
-
- if use_dquote:
- return '"' + result + '"'
- else:
- return "'" + result + "'"
+ return repr(StringSlice(self))
fn __fspath__(self) -> String:
"""Return the file system path representation (just the string itself).
@@ -1672,7 +1498,7 @@ struct String(
self._buffer.capacity = 0
return ptr
- fn count(self, substr: String) -> Int:
+ fn count(self, substr: StringSlice) -> Int:
"""Return the number of non-overlapping occurrences of substring
`substr` in the string.
@@ -1685,21 +1511,7 @@ struct String(
Returns:
The number of occurrences of `substr`.
"""
- if not substr:
- return len(self) + 1
-
- var res = 0
- var offset = 0
-
- while True:
- var pos = self.find(substr, offset)
- if pos == -1:
- break
- res += 1
-
- offset = pos + substr.byte_length()
-
- return res
+ return self.as_string_slice().count(substr)
fn __contains__(self, substr: String) -> Bool:
"""Returns True if the substring is contained within the current string.
diff --git a/stdlib/src/utils/string_slice.mojo b/stdlib/src/collections/string/string_slice.mojo
similarity index 86%
rename from stdlib/src/utils/string_slice.mojo
rename to stdlib/src/collections/string/string_slice.mojo
index c465811f1b..977f5b7f76 100644
--- a/stdlib/src/utils/string_slice.mojo
+++ b/stdlib/src/collections/string/string_slice.mojo
@@ -12,27 +12,26 @@
# ===----------------------------------------------------------------------=== #
"""Implements the StringSlice type.
-You can import these APIs from the `utils.string_slice` module.
+You can import these APIs from the `collections.string.string_slice` module.
Examples:
```mojo
-from utils import StringSlice
+from collections.string import StringSlice
```
"""
-from collections import List, Optional
-from collections.string import _atof, _atol, _isspace
-from sys import bitwidthof, simdwidthof
-from sys.intrinsics import unlikely, likely
-
from bit import count_leading_zeros
+from collections import List, Optional
+from collections.string.format import _CurlyEntryFormattable, _FormatCurlyEntry
+from collections.string._utf8_validation import _is_valid_utf8
+from collections.string.string import _isspace
from memory import UnsafePointer, memcmp, memcpy, Span
from memory.memory import _memcmp_impl_unconstrained
-
-from utils.format import _CurlyEntryFormattable, _FormatCurlyEntry
-
-from ._utf8_validation import _is_valid_utf8
+from sys import bitwidthof, simdwidthof
+from sys.intrinsics import unlikely, likely
+from utils.stringref import StringRef, _memmem
+from os import PathLike
alias StaticString = StringSlice[StaticConstantOrigin]
"""An immutable static string slice."""
@@ -184,9 +183,9 @@ struct _StringSliceIter[
var ptr: UnsafePointer[Byte]
var length: Int
- fn __init__(mut self, *, unsafe_pointer: UnsafePointer[Byte], length: Int):
+ fn __init__(out self, *, ptr: UnsafePointer[Byte], length: UInt):
self.index = 0 if forward else length
- self.ptr = unsafe_pointer
+ self.ptr = ptr
self.length = length
fn __iter__(self) -> Self:
@@ -236,14 +235,20 @@ struct _StringSliceIter[
@register_passable("trivial")
struct StringSlice[mut: Bool, //, origin: Origin[mut]](
Stringable,
+ Representable,
Sized,
Writable,
CollectionElement,
CollectionElementNew,
+ EqualityComparable,
Hashable,
+ PathLike,
):
"""A non-owning view to encoded string data.
+ This type is guaranteed to have the same ABI (size, alignment, and field
+ layout) as the `llvm::StringRef` type.
+
Parameters:
mut: Whether the slice is mutable.
origin: The origin of the underlying string data.
@@ -317,7 +322,7 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
self = Self(unsafe_from_utf8=byte_slice)
@always_inline
- fn __init__(out self, *, ptr: UnsafePointer[Byte], length: Int):
+ fn __init__(out self, *, ptr: UnsafePointer[Byte], length: UInt):
"""Construct a `StringSlice` from a pointer to a sequence of UTF-8
encoded bytes and a length.
@@ -331,16 +336,16 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
- `ptr` must point to data that is live for the duration of
`origin`.
"""
- self._slice = Span[Byte, origin](ptr=ptr, length=length)
+ self = Self(unsafe_from_utf8=Span[Byte, origin](ptr=ptr, length=length))
@always_inline
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Explicitly construct a deep copy of the provided `StringSlice`.
- Args:
- other: The `StringSlice` to copy.
+ Returns:
+ A copy of the value.
"""
- self._slice = other._slice
+ return Self(unsafe_from_utf8=self._slice)
@implicit
fn __init__[
@@ -355,11 +360,43 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
value: The string value.
"""
- debug_assert(
- _is_valid_utf8(value.as_bytes()), "value is not valid utf8"
- )
+ # TODO(MOCO-1525):
+ # Support skipping UTF-8 during comptime evaluations, or support
+ # the necessary SIMD intrinsics to allow this to evaluate at compile
+ # time.
+ # debug_assert(
+ # _is_valid_utf8(value.as_bytes()), "value is not valid utf8"
+ # )
+
self = StringSlice[O](unsafe_from_utf8=value.as_bytes())
+ # ===-------------------------------------------------------------------===#
+ # Factory methods
+ # ===-------------------------------------------------------------------===#
+
+ # TODO: Change to `__init__(out self, *, from_utf8: Span[..])` once ambiguity
+ # with existing `unsafe_from_utf8` overload is fixed. Would require
+ # signature comparision to take into account required named arguments.
+ @staticmethod
+ fn from_utf8(from_utf8: Span[Byte, origin]) raises -> StringSlice[origin]:
+ """Construct a new `StringSlice` from a buffer containing UTF-8 encoded
+ data.
+
+ Args:
+ from_utf8: A span of bytes containing UTF-8 encoded data.
+
+ Returns:
+ A new validated `StringSlice` pointing to the provided buffer.
+
+ Raises:
+ An exception is raised if the provided buffer byte values do not
+ form valid UTF-8 encoded codepoints.
+ """
+ if not _is_valid_utf8(from_utf8):
+ raise Error("StringSlice: buffer is not valid UTF-8")
+
+ return StringSlice[origin](unsafe_from_utf8=from_utf8)
+
# ===------------------------------------------------------------------===#
# Trait implementations
# ===------------------------------------------------------------------===#
@@ -373,6 +410,42 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
"""
return String(str_slice=self)
+ fn __repr__(self) -> String:
+ """Return a Mojo-compatible representation of this string slice.
+
+ Returns:
+ Representation of this string slice as a Mojo string literal input
+ form syntax.
+ """
+ var result = String()
+ var use_dquote = False
+ for s in self:
+ use_dquote = use_dquote or (s == "'")
+
+ if s == "\\":
+ result += r"\\"
+ elif s == "\t":
+ result += r"\t"
+ elif s == "\n":
+ result += r"\n"
+ elif s == "\r":
+ result += r"\r"
+ else:
+ var codepoint = ord(s)
+ if isprintable(codepoint):
+ result += s
+ elif codepoint < 0x10:
+ result += hex(codepoint, prefix=r"\x0")
+ elif codepoint < 0x20 or codepoint == 0x7F:
+ result += hex(codepoint, prefix=r"\x")
+ else: # multi-byte character
+ result += s
+
+ if use_dquote:
+ return '"' + result + '"'
+ else:
+ return "'" + result + "'"
+
fn __len__(self) -> Int:
"""Nominally returns the _length in Unicode codepoints_ (not bytes!).
@@ -413,72 +486,76 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
"""
return hash(self._slice._data, self._slice._len)
+ fn __fspath__(self) -> String:
+ """Return the file system path representation of this string.
+
+ Returns:
+ The file system path representation as a string.
+ """
+ return String(self)
+
+ # ===------------------------------------------------------------------===#
+ # Operator dunders
+ # ===------------------------------------------------------------------===#
+
# This decorator informs the compiler that indirect address spaces are not
# dereferenced by the method.
# TODO: replace with a safe model that checks the body of the method for
# accesses to the origin.
@__unsafe_disable_nested_origin_exclusivity
- fn __eq__(self, rhs: StringSlice) -> Bool:
- """Verify if a `StringSlice` is equal to another `StringSlice`.
+ fn __eq__(self, rhs_same: Self) -> Bool:
+ """Verify if a `StringSlice` is equal to another `StringSlice` with the
+ same origin.
Args:
- rhs: The `StringSlice` to compare against.
+ rhs_same: The `StringSlice` to compare against.
Returns:
If the `StringSlice` is equal to the input in length and contents.
"""
- if not self and not rhs:
- return True
- if len(self) != len(rhs):
- return False
- # same pointer and length, so equal
- if self._slice.unsafe_ptr() == rhs._slice.unsafe_ptr():
- return True
- for i in range(len(self)):
- if self._slice[i] != rhs._slice.unsafe_ptr()[i]:
- return False
- return True
+ return Self.__eq__(self, rhs=rhs_same)
- @always_inline
- fn __eq__(self, rhs: String) -> Bool:
- """Verify if a `StringSlice` is equal to a string.
+ # This decorator informs the compiler that indirect address spaces are not
+ # dereferenced by the method.
+ # TODO: replace with a safe model that checks the body of the method for
+ # accesses to the origin.
+ @__unsafe_disable_nested_origin_exclusivity
+ fn __eq__(self, rhs: StringSlice) -> Bool:
+ """Verify if a `StringSlice` is equal to another `StringSlice`.
Args:
- rhs: The `String` to compare against.
+ rhs: The `StringSlice` to compare against.
Returns:
If the `StringSlice` is equal to the input in length and contents.
"""
- return self == rhs.as_string_slice()
-
- @always_inline
- fn __eq__(self, rhs: StringLiteral) -> Bool:
- """Verify if a `StringSlice` is equal to a literal.
- Args:
- rhs: The `StringLiteral` to compare against.
-
- Returns:
- If the `StringSlice` is equal to the input in length and contents.
- """
- return self == rhs.as_string_slice()
+ var s_len = self.byte_length()
+ var s_ptr = self.unsafe_ptr()
+ var rhs_ptr = rhs.unsafe_ptr()
+ if s_len != rhs.byte_length():
+ return False
+ # same pointer and length, so equal
+ elif s_len == 0 or s_ptr == rhs_ptr:
+ return True
+ return memcmp(s_ptr, rhs_ptr, s_len) == 0
- @__unsafe_disable_nested_origin_exclusivity
- @always_inline
- fn __ne__(self, rhs: StringSlice) -> Bool:
- """Verify if span is not equal to another `StringSlice`.
+ fn __ne__(self, rhs_same: Self) -> Bool:
+ """Verify if a `StringSlice` is not equal to another `StringSlice` with
+ the same origin.
Args:
- rhs: The `StringSlice` to compare against.
+ rhs_same: The `StringSlice` to compare against.
Returns:
If the `StringSlice` is not equal to the input in length and
contents.
"""
- return not self == rhs
+ return Self.__ne__(self, rhs=rhs_same)
+ @__unsafe_disable_nested_origin_exclusivity
@always_inline
- fn __ne__(self, rhs: String) -> Bool:
+ fn __ne__(self, rhs: StringSlice) -> Bool:
"""Verify if span is not equal to another `StringSlice`.
Args:
@@ -490,19 +567,6 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
"""
return not self == rhs
- @always_inline
- fn __ne__(self, rhs: StringLiteral) -> Bool:
- """Verify if span is not equal to a `StringLiteral`.
-
- Args:
- rhs: The `StringLiteral` to compare against.
-
- Returns:
- If the `StringSlice` is not equal to the input in length and
- contents.
- """
- return not self == rhs
-
@always_inline
fn __lt__(self, rhs: StringSlice) -> Bool:
"""Verify if the `StringSlice` bytes are strictly less than the input in
@@ -528,7 +592,7 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
An iterator of references to the string elements.
"""
return _StringSliceIter[origin](
- unsafe_pointer=self.unsafe_ptr(), length=self.byte_length()
+ ptr=self.unsafe_ptr(), length=self.byte_length()
)
fn __reversed__(self) -> _StringSliceIter[origin, False]:
@@ -538,7 +602,7 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
A reversed iterator of references to the string elements.
"""
return _StringSliceIter[origin, forward=False](
- unsafe_pointer=self.unsafe_ptr(), length=self.byte_length()
+ ptr=self.unsafe_ptr(), length=self.byte_length()
)
fn __getitem__[IndexerType: Indexer](self, idx: IndexerType) -> String:
@@ -578,7 +642,7 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
Returns:
An integer value that represents the string, or otherwise raises.
"""
- return _atol(self)
+ return atol(self)
@always_inline
fn __float__(self) raises -> Float64:
@@ -588,7 +652,7 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
Returns:
A float value that represents the string, or otherwise raises.
"""
- return _atof(self)
+ return atof(self)
fn __mul__(self, n: Int) -> String:
"""Concatenates the string `n` times.
@@ -926,7 +990,7 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
# is positive, and offset from the end if `start` is negative.
var haystack_str = self._from_start(start)
- var loc = stringref._memmem(
+ var loc = _memmem(
haystack_str.unsafe_ptr(),
haystack_str.byte_length(),
substr.unsafe_ptr(),
@@ -1105,6 +1169,35 @@ struct StringSlice[mut: Bool, //, origin: Origin[mut]](
return output^
+ fn count(self, substr: StringSlice) -> Int:
+ """Return the number of non-overlapping occurrences of substring
+ `substr` in the string.
+
+ If sub is empty, returns the number of empty strings between characters
+ which is the length of the string plus one.
+
+ Args:
+ substr: The substring to count.
+
+ Returns:
+ The number of occurrences of `substr`.
+ """
+ if not substr:
+ return len(self) + 1
+
+ var res = 0
+ var offset = 0
+
+ while True:
+ var pos = self.find(substr, offset)
+ if pos == -1:
+ break
+ res += 1
+
+ offset = pos + substr.byte_length()
+
+ return res
+
# ===-----------------------------------------------------------------------===#
# Utils
diff --git a/stdlib/src/collections/vector.mojo b/stdlib/src/collections/vector.mojo
index 62196e6a15..556c343ea2 100644
--- a/stdlib/src/collections/vector.mojo
+++ b/stdlib/src/collections/vector.mojo
@@ -132,23 +132,26 @@ struct InlinedFixedVector[
self.capacity = capacity
@always_inline
- @implicit
- fn __init__(out self, existing: Self):
+ fn copy(self) -> Self:
"""
Copy constructor.
- Args:
- existing: The `InlinedFixedVector` to copy.
+ Returns:
+ A copy of the value.
"""
- self.static_data = existing.static_data
- self.dynamic_data = UnsafePointer[type]()
- if existing.dynamic_data:
- var ext_len = existing.capacity - size
- self.dynamic_data = UnsafePointer[type].alloc(ext_len)
- memcpy(self.dynamic_data, existing.dynamic_data, ext_len)
+ var copy = Self(capacity=self.capacity)
- self.current_size = existing.current_size
- self.capacity = existing.capacity
+ copy.static_data = self.static_data
+ copy.dynamic_data = UnsafePointer[type]()
+ if self.dynamic_data:
+ var ext_len = self.capacity - size
+ copy.dynamic_data = UnsafePointer[type].alloc(ext_len)
+ memcpy(copy.dynamic_data, self.dynamic_data, ext_len)
+
+ copy.current_size = self.current_size
+ copy.capacity = self.capacity
+
+ return copy^
@always_inline
fn __moveinit__(out self, owned existing: Self):
diff --git a/stdlib/src/math/constants.mojo b/stdlib/src/math/constants.mojo
index 49c814406a..d24c05e8f3 100644
--- a/stdlib/src/math/constants.mojo
+++ b/stdlib/src/math/constants.mojo
@@ -28,3 +28,6 @@ alias e = 2.7182818284590452353602874713526624977572470936999595749669676277
alias tau = 2 * pi
"""The mathematical constant τ = 6.283185.... Tau is a circumference of a circle (2π)."""
+
+alias log2e = 1.442695040888963407359924681001892137426646
+"""log2e = log2(e), where e is Euler's constant."""
diff --git a/stdlib/src/math/math.mojo b/stdlib/src/math/math.mojo
index 9d5f53e0e4..836a0b3c0b 100644
--- a/stdlib/src/math/math.mojo
+++ b/stdlib/src/math/math.mojo
@@ -42,6 +42,7 @@ from utils.index import IndexList
from utils.numerics import FPUtils, isnan, nan
from utils.static_tuple import StaticTuple
+from .constants import log2e
from .polynomial import polynomial_evaluate
# ===----------------------------------------------------------------------=== #
@@ -572,14 +573,13 @@ fn exp[
"""
constrained[type.is_floating_point(), "must be a floating point value"]()
alias neg_ln2 = -0.69314718055966295651160180568695068359375
- alias inv_lg2 = 1.442695040888963407359924681001892137426646
@parameter
if is_nvidia_gpu():
@parameter
if type in (DType.float16, DType.float32):
- return exp2(x * inv_lg2)
+ return exp2(x * log2e)
@parameter
if type not in (DType.float32, DType.float64):
@@ -597,7 +597,7 @@ fn exp[
max_val = 88.3762626647950
var xc = x.clamp(min_val, max_val)
- var k = floor(xc.fma(inv_lg2, 0.5))
+ var k = floor(xc.fma(log2e, 0.5))
var r = k.fma(neg_ln2, xc)
return max(_ldexp_impl(_exp_taylor(r), k), xc)
@@ -740,7 +740,6 @@ fn _log_base[
alias ln2 = 0.69314718055994530942
y = exp.fma(ln2, y)
else:
- alias log2e = 1.4426950408889634073599
y = y.fma(log2e, exp)
return (x == 0).select(Scalar[type].MIN, (x > 0).select(y, nan[type]()))
diff --git a/stdlib/src/memory/arc.mojo b/stdlib/src/memory/arc.mojo
index 8680d06560..6178892617 100644
--- a/stdlib/src/memory/arc.mojo
+++ b/stdlib/src/memory/arc.mojo
@@ -104,14 +104,13 @@ struct ArcPointer[T: Movable](
value^
)
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy the object.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- other._inner[].add_ref()
- self._inner = other._inner
+ return self
fn __copyinit__(out self, existing: Self):
"""Copy an existing reference. Increment the refcount to the object.
diff --git a/stdlib/src/memory/maybe_uninitialized.mojo b/stdlib/src/memory/maybe_uninitialized.mojo
index 8d224bdd88..9ebf803bcb 100644
--- a/stdlib/src/memory/maybe_uninitialized.mojo
+++ b/stdlib/src/memory/maybe_uninitialized.mojo
@@ -36,27 +36,26 @@ struct UnsafeMaybeUninitialized[ElementType: AnyType](CollectionElementNew):
@always_inline
fn __init__(out self):
"""The memory is now considered uninitialized."""
- self._array = __mlir_op.`kgen.param.constant`[
- _type = Self.type,
- value = __mlir_attr[`#kgen.unknown : `, Self.type],
- ]()
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(self))
@doc_private
@always_inline
- fn __init__(out self, *, other: Self):
- """It is not possible to call this method.
+ fn copy(self) -> Self:
+ """This method is not intended to be called.
Trying to call this method will abort.
+
+ Returns:
+ Nothing, this method always aborts.
"""
- abort(
- "You should never call the explicit copy constructor of"
+ return abort[Self](
+ "You should never call the copy() method of"
" UnsafeMaybeUninitialized because it's ambiguous to copy"
" possibly uninitialized memory. Use"
" `UnsafeMaybeUninitialized.copy_from()` instead if you want to"
" trigger an explicit copy of the content of"
" UnsafeMaybeUninitialized. It has very specific semantics."
)
- self = Self()
@always_inline
fn __init__[
diff --git a/stdlib/src/memory/memory.mojo b/stdlib/src/memory/memory.mojo
index 574c13af04..51abfb7b39 100644
--- a/stdlib/src/memory/memory.mojo
+++ b/stdlib/src/memory/memory.mojo
@@ -255,8 +255,8 @@ fn memcpy[
"""
var n = count * sizeof[dest.type]()
_memcpy_impl(
- dest.bitcast[Byte, origin=MutableAnyOrigin](),
- src.bitcast[Byte, origin=MutableAnyOrigin](),
+ dest.bitcast[Byte]().origin_cast[origin=MutableAnyOrigin](),
+ src.bitcast[Byte]().origin_cast[origin=MutableAnyOrigin](),
n,
)
diff --git a/stdlib/src/memory/pointer.mojo b/stdlib/src/memory/pointer.mojo
index dca95022cc..2d1f5fce52 100644
--- a/stdlib/src/memory/pointer.mojo
+++ b/stdlib/src/memory/pointer.mojo
@@ -355,15 +355,15 @@ struct Pointer[
"""
return Pointer(_mlir_value=__get_mvalue_as_litref(value))
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Constructs a copy from another Pointer.
Note that this does **not** copy the underlying data.
- Args:
- other: The `Pointer` to copy.
+ Returns:
+ A copy of the value.
"""
- self._value = other._value
+ return Self(_mlir_value=self._value)
# ===------------------------------------------------------------------===#
# Operator dunders
diff --git a/stdlib/src/memory/span.mojo b/stdlib/src/memory/span.mojo
index 2a0c2d020b..c0d919dff0 100644
--- a/stdlib/src/memory/span.mojo
+++ b/stdlib/src/memory/span.mojo
@@ -116,7 +116,7 @@ struct Span[
# ===------------------------------------------------------------------===#
@always_inline
- fn __init__(out self, *, ptr: UnsafePointer[T], length: Int):
+ fn __init__(out self, *, ptr: UnsafePointer[T], length: UInt):
"""Unsafe construction from a pointer and length.
Args:
@@ -127,14 +127,13 @@ struct Span[
self._len = length
@always_inline
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Explicitly construct a copy of the provided `Span`.
- Args:
- other: The `Span` to copy.
+ Returns:
+ A copy of the `Span`.
"""
- self._data = other._data
- self._len = other._len
+ return self
@always_inline
@implicit
@@ -148,6 +147,7 @@ struct Span[
self._len = len(list)
@always_inline
+ @implicit
fn __init__[
size: Int, //
](mut self, ref [origin]array: InlineArray[T, size]):
diff --git a/stdlib/src/memory/unsafe_pointer.mojo b/stdlib/src/memory/unsafe_pointer.mojo
index f23ed25618..efe6018cd9 100644
--- a/stdlib/src/memory/unsafe_pointer.mojo
+++ b/stdlib/src/memory/unsafe_pointer.mojo
@@ -142,13 +142,13 @@ struct UnsafePointer[
)
@always_inline
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy an existing pointer.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- self.address = other.address
+ return UnsafePointer(self.address)
# ===-------------------------------------------------------------------===#
# Factory methods
@@ -973,12 +973,6 @@ struct UnsafePointer[
@always_inline("nodebug")
fn bitcast[
T: AnyType = Self.type,
- /,
- address_space: AddressSpace = Self.address_space,
- alignment: Int = Self.alignment,
- *,
- mut: Bool = Self.mut,
- origin: Origin[mut] = Origin[mut].cast_from[Self.origin].result,
](self) -> UnsafePointer[
T,
address_space=address_space,
@@ -990,10 +984,6 @@ struct UnsafePointer[
Parameters:
T: The target type.
- address_space: The address space of the result.
- alignment: Alignment of the destination pointer.
- mut: Whether the origin is mutable.
- origin: Origin of the destination pointer.
Returns:
A new UnsafePointer object with the specified type and the same address,
@@ -1005,6 +995,93 @@ struct UnsafePointer[
]._mlir_type,
](self.address)
+ @always_inline("nodebug")
+ fn static_alignment_cast[
+ alignment: Int = Self.alignment
+ ](self) -> UnsafePointer[
+ type,
+ address_space=address_space,
+ alignment=alignment,
+ mut=mut,
+ origin=origin,
+ ]:
+ """Changes the `alignment` of an `UnsafePointer`.
+
+ The static alignment of an UnsafePointer must be greater
+ or equal to the actual alignment of the runtime pointer
+ value. Casting an UnsafePointer to a static alignment greater
+ than its runtime alignment may cause undefined behavior".
+
+ This only changes the compile-time alignment encoded in the type of
+ this pointer. This does not change the alignment of the pointer address
+ at runtime.
+
+
+ Parameters:
+ alignment: Alignment of the destination pointer.
+
+ Returns:
+ A new UnsafePointer object with the same type, address_space, and address,
+ as the original UnsafePointer, and the new specified alignment.
+ """
+ return __mlir_op.`pop.pointer.bitcast`[
+ _type = UnsafePointer[
+ type, address_space=address_space, alignment=alignment
+ ]._mlir_type,
+ ](self.address)
+
+ @always_inline("nodebug")
+ fn origin_cast[
+ mut: Bool = Self.mut,
+ origin: Origin[mut] = Origin[mut].cast_from[Self.origin].result,
+ ](self) -> UnsafePointer[
+ type,
+ address_space=address_space,
+ alignment=alignment,
+ mut=mut,
+ origin=origin,
+ ]:
+ """Changes the origin or mutability of a pointer.
+
+ Parameters:
+ mut: Whether the origin is mutable.
+ origin: Origin of the destination pointer.
+
+ Returns:
+ A new UnsafePointer object with the same type and the same address,
+ as the original UnsafePointer and the new specified mutability and origin.
+ """
+ return __mlir_op.`pop.pointer.bitcast`[
+ _type = UnsafePointer[
+ type, address_space=address_space, alignment=alignment
+ ]._mlir_type,
+ ](self.address)
+
+ @always_inline("nodebug")
+ fn address_space_cast[
+ address_space: AddressSpace = Self.address_space,
+ ](self) -> UnsafePointer[
+ type,
+ address_space=address_space,
+ alignment=alignment,
+ mut=mut,
+ origin=origin,
+ ]:
+ """Casts an UnsafePointer to a different address space.
+
+ Parameters:
+ address_space: The address space of the result.
+
+ Returns:
+ A new UnsafePointer object with the same type and the same address,
+ as the original UnsafePointer and the new address space.
+ """
+ return __mlir_op.`pop.pointer.bitcast`[
+ _type = UnsafePointer[
+ type, address_space=address_space, alignment=alignment
+ ]._mlir_type,
+ ](self.address)
+
@always_inline
fn destroy_pointee(
self: UnsafePointer[type, address_space = AddressSpace.GENERIC, **_]
@@ -1121,7 +1198,7 @@ struct UnsafePointer[
value: The value to emplace.
"""
constrained[mut, _must_be_mut_err]()
- __get_address_as_uninit_lvalue(self.address) = T(other=value)
+ __get_address_as_uninit_lvalue(self.address) = value.copy()
@always_inline
fn move_pointee_into[
diff --git a/stdlib/src/os/os.mojo b/stdlib/src/os/os.mojo
index 86c793fa6b..e80fb30e54 100644
--- a/stdlib/src/os/os.mojo
+++ b/stdlib/src/os/os.mojo
@@ -154,7 +154,7 @@ struct _DirHandle:
)
if name_str == "." or name_str == "..":
continue
- res.append(name_str)
+ res.append(String(name_str))
_ = name^
return res
@@ -180,7 +180,7 @@ struct _DirHandle:
)
if name_str == "." or name_str == "..":
continue
- res.append(name_str)
+ res.append(String(name_str))
_ = name^
return res
diff --git a/stdlib/src/os/path/path.mojo b/stdlib/src/os/path/path.mojo
index 4e65dfbf34..16083fa864 100644
--- a/stdlib/src/os/path/path.mojo
+++ b/stdlib/src/os/path/path.mojo
@@ -233,7 +233,7 @@ fn dirname[PathLike: os.PathLike, //](path: PathLike) -> String:
var i = fspath.rfind(os.sep) + 1
var head = fspath[:i]
if head and head != os.sep * len(head):
- return head.rstrip(os.sep)
+ return String(head.rstrip(String(os.sep)))
return head
@@ -389,7 +389,7 @@ fn basename[PathLike: os.PathLike, //](path: PathLike) -> String:
var i = fspath.rfind(os.sep) + 1
var head = fspath[i:]
if head and head != os.sep * len(head):
- return head.rstrip(os.sep)
+ return String(head.rstrip(String(os.sep)))
return head
diff --git a/stdlib/src/pathlib/path.mojo b/stdlib/src/pathlib/path.mojo
index 5a0f285db1..8e2f5c5042 100644
--- a/stdlib/src/pathlib/path.mojo
+++ b/stdlib/src/pathlib/path.mojo
@@ -15,6 +15,7 @@
import os
from collections import List
+from collections.string import StringSlice
from hashlib._hasher import _HashableWithHasher, _Hasher
from os import PathLike, listdir, stat_result
from sys import external_call, os_is_windows
@@ -83,6 +84,15 @@ struct Path(
"""Initializes a path with the current directory."""
self = cwd()
+ # Note: Not @implicit so that allocation is not implicit.
+ fn __init__(out self, path: StringSlice):
+ """Initializes a path with the provided path.
+
+ Args:
+ path: The file system path.
+ """
+ self.path = String(path)
+
@implicit
fn __init__(out self, path: String):
"""Initializes a path with the provided path.
@@ -92,13 +102,13 @@ struct Path(
"""
self.path = path
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy the object.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- self.path = String(other=other.path)
+ return Self(self.path)
fn __truediv__(self, suffix: Self) -> Self:
"""Joins two paths using the system-defined path separator.
diff --git a/stdlib/src/python/python_object.mojo b/stdlib/src/python/python_object.mojo
index 5fb1847f8f..caeb85a53b 100644
--- a/stdlib/src/python/python_object.mojo
+++ b/stdlib/src/python/python_object.mojo
@@ -254,13 +254,13 @@ struct PythonObject(
"""Initialize the object with a `None` value."""
self = Self(None)
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy the object.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- self = other
+ return self
@implicit
fn __init__(out self, ptr: PyObjectPtr):
diff --git a/stdlib/src/sys/_assembly.mojo b/stdlib/src/sys/_assembly.mojo
index 2074afde29..c48f518cd6 100644
--- a/stdlib/src/sys/_assembly.mojo
+++ b/stdlib/src/sys/_assembly.mojo
@@ -26,9 +26,9 @@ fn inlined_assembly[
*types: AnyType,
constraints: StringLiteral,
has_side_effect: Bool = True,
-](*arguments: *types) -> result_type:
+](*args: *types) -> result_type:
"""Generates assembly via inline assembly."""
- var loaded_pack = arguments.get_loaded_kgen_pack()
+ var loaded_pack = args.get_loaded_kgen_pack()
@parameter
if _mlirtype_is_eq[result_type, NoneType]():
diff --git a/stdlib/src/sys/arg.mojo b/stdlib/src/sys/arg.mojo
index 69a0093630..df777a5adf 100644
--- a/stdlib/src/sys/arg.mojo
+++ b/stdlib/src/sys/arg.mojo
@@ -34,17 +34,22 @@ from sys import external_call
from memory import UnsafePointer
+from collections.string import StringSlice
+
from utils import StringRef
# TODO: When we have global variables, this should be a global list.
-fn argv() -> VariadicList[StringRef]:
+fn argv() -> VariadicList[StringSlice[StaticConstantOrigin]]:
"""The list of command line arguments.
Returns:
The list of command line arguments provided when mojo was invoked.
"""
- var result = VariadicList[StringRef]("")
+ # SAFETY:
+ # It is valid to use `StringSlice` here because `StringSlice` is
+ # guaranteed to be ABI compatible with llvm::StringRef.
+ var result = VariadicList[StringSlice[StaticConstantOrigin]]("")
external_call["KGEN_CompilerRT_GetArgV", NoneType](
Pointer.address_of(result)
)
diff --git a/stdlib/src/sys/ffi.mojo b/stdlib/src/sys/ffi.mojo
index 2d6926568d..429dd1e0f7 100644
--- a/stdlib/src/sys/ffi.mojo
+++ b/stdlib/src/sys/ffi.mojo
@@ -113,6 +113,40 @@ struct RTLD:
alias DEFAULT_RTLD = RTLD.NOW | RTLD.GLOBAL
+struct _OwnedDLHandle:
+ """Represents an owned handle to a dynamically linked library that can be
+ loaded and unloaded.
+
+ This type is intended to replace `DLHandle`, by incrementally introducing
+ ownership semantics to `DLHandle`.
+ """
+
+ var _handle: DLHandle
+
+ # ===-------------------------------------------------------------------===#
+ # Life cycle methods
+ # ===-------------------------------------------------------------------===#
+
+ @always_inline
+ fn __init__(out self, path: String, flags: Int = DEFAULT_RTLD):
+ self._handle = DLHandle(path, flags)
+
+ fn __moveinit__(out self, owned other: Self):
+ self._handle = other._handle
+
+ fn __del__(owned self):
+ """Delete the DLHandle object unloading the associated dynamic library.
+ """
+ self._handle.close()
+
+ # ===-------------------------------------------------------------------===#
+ # Methods
+ # ===-------------------------------------------------------------------===#
+
+ fn handle(self) -> DLHandle:
+ return self._handle
+
+
@value
@register_passable("trivial")
struct DLHandle(CollectionElement, CollectionElementNew, Boolable):
@@ -145,13 +179,13 @@ struct DLHandle(CollectionElement, CollectionElementNew, Boolable):
else:
self.handle = OpaquePointer()
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy the object.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- self = other
+ return self
fn check_symbol(self, name: String) -> Bool:
"""Check that the symbol exists in the dynamic library.
@@ -367,35 +401,22 @@ struct DLHandle(CollectionElement, CollectionElementNew, Boolable):
return self.get_function[fn (__type_of(v)) -> return_type](name)(v)
-@always_inline
-fn _get_dylib[
- name: StringLiteral,
- init_fn: fn (OpaquePointer) -> OpaquePointer,
- destroy_fn: fn (OpaquePointer) -> None,
-](payload: OpaquePointer = OpaquePointer()) -> DLHandle:
- var ptr = _get_global[name, init_fn, destroy_fn](payload).bitcast[
- DLHandle
- ]()
- return ptr[]
-
-
@always_inline
fn _get_dylib_function[
- name: StringLiteral,
+ dylib_global: _Global[_, _OwnedDLHandle, _],
func_name: StringLiteral,
- init_fn: fn (OpaquePointer) -> OpaquePointer,
- destroy_fn: fn (OpaquePointer) -> None,
result_type: AnyTrivialRegType,
-](payload: OpaquePointer = OpaquePointer()) -> result_type:
- alias func_cache_name = name + "/" + func_name
+]() -> result_type:
+ alias func_cache_name = dylib_global.name + "/" + func_name
var func_ptr = _get_global_or_null[func_cache_name]()
if func_ptr:
var result = UnsafePointer.address_of(func_ptr).bitcast[result_type]()[]
_ = func_ptr
return result
- var dylib = _get_dylib[name, init_fn, destroy_fn](payload)
+ var dylib = dylib_global.get_or_create_ptr()[].handle()
var new_func = dylib._get_function[func_name, result_type]()
+
external_call["KGEN_CompilerRT_InsertGlobal", NoneType](
StringRef(func_cache_name),
UnsafePointer.address_of(new_func).bitcast[OpaquePointer]()[],
@@ -414,6 +435,9 @@ struct _Global[
storage_type: Movable,
init_fn: fn () -> storage_type,
]:
+ fn __init__(out self):
+ pass
+
@staticmethod
fn _init_wrapper(payload: OpaquePointer) -> OpaquePointer:
# Struct-based globals don't get to take arguments to their initializer.
@@ -451,7 +475,10 @@ fn _get_global[
destroy_fn: fn (OpaquePointer) -> None,
](payload: OpaquePointer = OpaquePointer()) -> OpaquePointer:
return external_call["KGEN_CompilerRT_GetGlobalOrCreate", OpaquePointer](
- StringRef(name), payload, init_fn, destroy_fn
+ StringRef(name),
+ payload,
+ init_fn,
+ destroy_fn,
)
@@ -469,37 +496,60 @@ fn _get_global_or_null[name: StringLiteral]() -> OpaquePointer:
@always_inline("nodebug")
fn external_call[
- callee: StringLiteral, type: AnyTrivialRegType, *types: AnyType
-](*arguments: *types) -> type:
+ callee: StringLiteral,
+ return_type: AnyTrivialRegType,
+ *types: AnyType,
+](*args: *types) -> return_type:
"""Calls an external function.
Args:
- arguments: The arguments to pass to the external function.
+ args: The arguments to pass to the external function.
Parameters:
- callee: The name of the external function.
- type: The return type.
- types: The argument types.
+ callee: The name of the external function.
+ return_type: The return type.
+ types: The argument types.
Returns:
- The external call result.
+ The external call result.
+ """
+ return external_call[callee, return_type](args)
+
+
+@always_inline("nodebug")
+fn external_call[
+ callee: StringLiteral,
+ return_type: AnyTrivialRegType,
+](args: VariadicPack[element_trait=AnyType]) -> return_type:
+ """Calls an external function.
+
+ Parameters:
+ callee: The name of the external function.
+ return_type: The return type.
+
+ Args:
+ args: The arguments to pass to the external function.
+
+ Returns:
+ The external call result.
"""
# The argument pack will contain references for each value in the pack,
# but we want to pass their values directly into the C printf call. Load
# all the members of the pack.
- var loaded_pack = arguments.get_loaded_kgen_pack()
+ var loaded_pack = args.get_loaded_kgen_pack()
@parameter
- if _mlirtype_is_eq[type, NoneType]():
+ if _mlirtype_is_eq[return_type, NoneType]():
__mlir_op.`pop.external_call`[func = callee.value, _type=None](
loaded_pack
)
- return rebind[type](None)
+ return rebind[return_type](None)
else:
- return __mlir_op.`pop.external_call`[func = callee.value, _type=type](
- loaded_pack
- )
+ return __mlir_op.`pop.external_call`[
+ func = callee.value,
+ _type=return_type,
+ ](loaded_pack)
# ===-----------------------------------------------------------------------===#
@@ -509,18 +559,20 @@ fn external_call[
@always_inline("nodebug")
fn _external_call_const[
- callee: StringLiteral, type: AnyTrivialRegType, *types: AnyType
-](*arguments: *types) -> type:
+ callee: StringLiteral,
+ return_type: AnyTrivialRegType,
+ *types: AnyType,
+](*args: *types) -> return_type:
"""Mark the external function call as having no observable effects to the
program state. This allows the compiler to optimize away successive calls
to the same function.
Args:
- arguments: The arguments to pass to the external function.
+ args: The arguments to pass to the external function.
Parameters:
callee: The name of the external function.
- type: The return type.
+ return_type: The return type.
types: The argument types.
Returns:
@@ -530,7 +582,7 @@ fn _external_call_const[
# The argument pack will contain references for each value in the pack,
# but we want to pass their values directly into the C printf call. Load
# all the members of the pack.
- var loaded_pack = arguments.get_loaded_kgen_pack()
+ var loaded_pack = args.get_loaded_kgen_pack()
return __mlir_op.`pop.external_call`[
func = callee.value,
@@ -541,5 +593,5 @@ fn _external_call_const[
`argMem = none, `,
`inaccessibleMem = none>`,
],
- _type=type,
+ _type=return_type,
](loaded_pack)
diff --git a/stdlib/src/sys/intrinsics.mojo b/stdlib/src/sys/intrinsics.mojo
index 3eb81a505a..1a7242cc63 100644
--- a/stdlib/src/sys/intrinsics.mojo
+++ b/stdlib/src/sys/intrinsics.mojo
@@ -37,25 +37,24 @@ fn llvm_intrinsic[
type: AnyTrivialRegType,
*types: AnyType,
has_side_effect: Bool = True,
-](*arguments: *types) -> type:
- """Calls an LLVM intrinsic with no arguments.
-
- Calls an LLVM intrinsic with the name intrin and return type type.
+](*args: *types) -> type:
+ """Calls an LLVM intrinsic with the name `intrin` and return type `type`.
Parameters:
- intrin: The name of the llvm intrinsic.
- type: The return type of the intrinsic.
- types: The argument types for the function.
- has_side_effect: If `True` the intrinsic will have side effects, otherwise its pure.
+ intrin: The name of the llvm intrinsic.
+ type: The return type of the intrinsic.
+ types: The argument types for the function.
+ has_side_effect: If `True` the intrinsic will have side effects,
+ otherwise its pure.
Args:
- arguments: The arguments to the function.
+ args: The arguments to the function.
Returns:
- The result of calling the llvm intrinsic with no arguments.
+ The result of calling the llvm intrinsic with no arguments.
"""
- var loaded_pack = arguments.get_loaded_kgen_pack()
+ var loaded_pack = args.get_loaded_kgen_pack()
@parameter
if _mlirtype_is_eq[type, NoneType]():
diff --git a/stdlib/src/testing/testing.mojo b/stdlib/src/testing/testing.mojo
index 20173be736..e6235bc616 100644
--- a/stdlib/src/testing/testing.mojo
+++ b/stdlib/src/testing/testing.mojo
@@ -32,8 +32,9 @@ def main():
"""
from collections import Optional
from math import isclose
-
+from memory import memcmp
from builtin._location import __call_location, _SourceLocation
+from utils import StringSlice
# ===----------------------------------------------------------------------=== #
# Assertions
@@ -236,6 +237,87 @@ fn assert_equal[
)
+# TODO(MSTDL-1071):
+# Once Mojo supports parametric traits, implement EqualityComparable for
+# StringSlice such that string slices with different origin types can be
+# compared, then drop this overload.
+@always_inline
+fn assert_equal[
+ O1: ImmutableOrigin,
+ O2: ImmutableOrigin,
+](
+ lhs: List[StringSlice[O1]],
+ rhs: List[StringSlice[O2]],
+ msg: String = "",
+ *,
+ location: Optional[_SourceLocation] = None,
+) raises:
+ """Asserts that two lists are equal.
+
+ Parameters:
+ O1: The origin of lhs.
+ O2: The origin of rhs.
+
+ Args:
+ lhs: The left-hand side list.
+ rhs: The right-hand side list.
+ msg: The message to be printed if the assertion fails.
+ location: The location of the error (default to the `__call_location`).
+
+ Raises:
+ An Error with the provided message if assert fails and `None` otherwise.
+ """
+
+ # Cast `rhs` to have the same origin as `lhs`, so that we can delegate to
+ # `List.__ne__`.
+ var rhs_origin_casted = rebind[List[StringSlice[O1]]](rhs)
+
+ if lhs != rhs_origin_casted:
+ raise _assert_cmp_error["`left == right` comparison"](
+ lhs.__str__(),
+ rhs.__str__(),
+ msg=msg,
+ loc=location.or_else(__call_location()),
+ )
+
+
+@always_inline
+fn assert_equal[
+ D: DType
+](
+ lhs: List[Scalar[D]],
+ rhs: List[Scalar[D]],
+ msg: String = "",
+ *,
+ location: Optional[_SourceLocation] = None,
+) raises:
+ """Asserts that two lists are equal.
+
+ Parameters:
+ D: A DType.
+
+ Args:
+ lhs: The left-hand side list.
+ rhs: The right-hand side list.
+ msg: The message to be printed if the assertion fails.
+ location: The location of the error (default to the `__call_location`).
+
+ Raises:
+ An Error with the provided message if assert fails and `None` otherwise.
+ """
+ var length = len(lhs)
+ if (
+ length != len(rhs)
+ or memcmp(lhs.unsafe_ptr(), rhs.unsafe_ptr(), length) != 0
+ ):
+ raise _assert_cmp_error["`left == right` comparison"](
+ lhs.__str__(),
+ rhs.__str__(),
+ msg=msg,
+ loc=location.or_else(__call_location()),
+ )
+
+
@always_inline
fn assert_not_equal[
T: Testable
diff --git a/stdlib/src/utils/__init__.mojo b/stdlib/src/utils/__init__.mojo
index fa6129cc1c..2e3a0ea21f 100644
--- a/stdlib/src/utils/__init__.mojo
+++ b/stdlib/src/utils/__init__.mojo
@@ -13,11 +13,11 @@
"""Implements the utils package."""
from .index import Index, IndexList, product
-from .inline_string import InlineString
+from collections.string.inline_string import InlineString
from .lock import BlockingScopedLock, BlockingSpinLock, SpinWaiter
from .loop import unroll
from .static_tuple import StaticTuple
-from .string_slice import StaticString, StringSlice
+from collections.string.string_slice import StaticString, StringSlice
from .stringref import StringRef
from .variant import Variant
from .write import Writable, Writer, write_args, write_buffered
diff --git a/stdlib/src/utils/index.mojo b/stdlib/src/utils/index.mojo
index 337e195d3b..8c87763619 100644
--- a/stdlib/src/utils/index.mojo
+++ b/stdlib/src/utils/index.mojo
@@ -20,7 +20,7 @@ from utils import IndexList
```
"""
-from collections.string import _calc_initial_buffer_size
+from collections.string.string import _calc_initial_buffer_size
from sys import bitwidthof
from builtin.dtype import _int_type_of_width, _uint_type_of_width
@@ -28,6 +28,7 @@ from builtin.io import _get_dtype_printf_format, _snprintf
from . import unroll
from .static_tuple import StaticTuple
+from hashlib._hasher import _Hasher
# ===-----------------------------------------------------------------------===#
# Utilities
@@ -513,7 +514,9 @@ struct IndexList[
The resulting index tuple.
"""
- @always_inline
+ # FIXME(#53331) - nodebug is required otherwise we crash in debug
+ # information generation.
+ @always_inline("nodebug")
fn apply_fn[
type: DType
](a: Scalar[type], b: Scalar[type]) -> Scalar[type]:
@@ -828,6 +831,20 @@ struct IndexList[
self.cast[_type_of_width[element_bitwidth, unsigned]()]()
)
+ fn __hash__[H: _Hasher](self, mut hasher: H):
+ """Updates hasher with the underlying bytes.
+
+ Parameters:
+ H: The hasher type.
+
+ Args:
+ hasher: The hasher instance.
+ """
+
+ @parameter
+ for i in range(size):
+ hasher.update(self.data[i])
+
# ===-----------------------------------------------------------------------===#
# Factory functions for creating index.
diff --git a/stdlib/src/utils/static_tuple.mojo b/stdlib/src/utils/static_tuple.mojo
index 0788b54b43..0f118f6486 100644
--- a/stdlib/src/utils/static_tuple.mojo
+++ b/stdlib/src/utils/static_tuple.mojo
@@ -78,13 +78,8 @@ fn _create_array[
debug_assert(size == len(lst), "mismatch in the number of elements")
- var array = __mlir_op.`kgen.param.constant`[
- _type = __mlir_type[`!pop.array<`, size.value, `, `, type, `>`],
- value = __mlir_attr[
- `#kgen.unknown : `,
- __mlir_type[`!pop.array<`, size.value, `, `, type, `>`],
- ],
- ]()
+ var array: __mlir_type[`!pop.array<`, size.value, `, `, type, `>`]
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(array))
@parameter
for idx in range(size):
@@ -129,10 +124,7 @@ struct StaticTuple[element_type: AnyTrivialRegType, size: Int](Sized):
fn __init__(out self):
"""Constructs an empty (undefined) tuple."""
_static_tuple_construction_checks[size]()
- self.array = __mlir_op.`kgen.param.constant`[
- _type = Self.type,
- value = __mlir_attr[`#kgen.unknown : `, Self.type],
- ]()
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(self))
@always_inline
@implicit
diff --git a/stdlib/src/utils/stringref.mojo b/stdlib/src/utils/stringref.mojo
index 4e92e96848..ad78d89db9 100644
--- a/stdlib/src/utils/stringref.mojo
+++ b/stdlib/src/utils/stringref.mojo
@@ -13,7 +13,8 @@
"""Implements the StringRef class.
"""
-from collections.string import _atol, _isspace
+from collections.string import StringSlice
+from collections.string.string import _isspace
from hashlib._hasher import _HashableWithHasher, _Hasher
from sys import simdwidthof
from sys.ffi import c_char
@@ -23,7 +24,6 @@ from builtin.dtype import _uint_type_of_width
from memory import UnsafePointer, memcmp, pack_bits, Span
from memory.memory import _memcmp_impl_unconstrained
-from utils import StringSlice
# ===----------------------------------------------------------------------=== #
# Utilities
@@ -77,14 +77,13 @@ struct StringRef(
self = StringRef(UnsafePointer[UInt8](), 0)
@always_inline
- fn __init__(out self, *, other: Self):
+ fn copy(self) -> Self:
"""Copy the object.
- Args:
- other: The value to copy.
+ Returns:
+ A copy of the value.
"""
- self.data = other.data
- self.length = other.length
+ return StringRef(self.data, self.length)
@always_inline
@implicit
@@ -381,7 +380,7 @@ struct StringRef(
var str_slice = StringSlice[ImmutableAnyOrigin](
unsafe_from_utf8_strref=self
)
- return _atol(str_slice)
+ return atol(str_slice)
@always_inline
fn __len__(self) -> Int:
@@ -597,24 +596,6 @@ struct StringRef(
return StringRef(data, length)
- fn strip(self) -> StringRef:
- """Gets a StringRef with leading and trailing whitespaces removed.
- This only takes C spaces into account: " \\t\\n\\v\\f\\r".
-
- For example, `" mojo "` returns `"mojo"`.
-
- Returns:
- A StringRef with leading and trailing whitespaces removed.
- """
- var start: Int = 0
- var end: Int = len(self)
- var ptr = self.unsafe_ptr()
- while start < end and _isspace(ptr[start]):
- start += 1
- while end > start and _isspace(ptr[end - 1]):
- end -= 1
- return StringRef(ptr + start, end - start)
-
fn split(self, delimiter: StringRef) raises -> List[StringRef]:
"""Split the StringRef by a delimiter.
diff --git a/stdlib/src/utils/variant.mojo b/stdlib/src/utils/variant.mojo
index 6936a3a003..60d9279a30 100644
--- a/stdlib/src/utils/variant.mojo
+++ b/stdlib/src/utils/variant.mojo
@@ -121,7 +121,7 @@ struct Variant[*Ts: CollectionElement](
Args:
unsafe_uninitialized: Marker argument indicating this initializer is unsafe.
"""
- self._impl = __mlir_attr[`#kgen.unknown : `, Self._mlir_type]
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(self))
@implicit
fn __init__[T: CollectionElement](mut self, owned value: T):
@@ -134,25 +134,25 @@ struct Variant[*Ts: CollectionElement](
Args:
value: The value to initialize the variant with.
"""
- self._impl = __mlir_attr[`#kgen.unknown : `, self._mlir_type]
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(self))
alias idx = Self._check[T]()
self._get_discr() = idx
self._get_ptr[T]().init_pointee_move(value^)
- fn __init__(out self, *, other: Self):
+ fn copy(self, out copy: Self):
"""Explicitly creates a deep copy of an existing variant.
- Args:
- other: The value to copy from.
+ Returns:
+ A copy of the value.
"""
- self = Self(unsafe_uninitialized=())
- self._get_discr() = other._get_discr()
+ copy = Self(unsafe_uninitialized=())
+ copy._get_discr() = self._get_discr()
@parameter
for i in range(len(VariadicList(Ts))):
alias T = Ts[i]
- if self._get_discr() == i:
- self._get_ptr[T]().init_pointee_move(other._get_ptr[T]()[])
+ if copy._get_discr() == i:
+ copy._get_ptr[T]().init_pointee_move(self._get_ptr[T]()[])
return
fn __copyinit__(out self, other: Self):
@@ -163,7 +163,7 @@ struct Variant[*Ts: CollectionElement](
"""
# Delegate to explicit copy initializer.
- self = Self(other=other)
+ self = other.copy()
fn __moveinit__(out self, owned other: Self):
"""Move initializer for the variant.
@@ -171,7 +171,7 @@ struct Variant[*Ts: CollectionElement](
Args:
other: The variant to move.
"""
- self._impl = __mlir_attr[`#kgen.unknown : `, self._mlir_type]
+ __mlir_op.`lit.ownership.mark_initialized`(__get_mvalue_as_litref(self))
self._get_discr() = other._get_discr()
@parameter
diff --git a/stdlib/test/bit/test_bit.mojo b/stdlib/test/bit/test_bit.mojo
index 1f1063eee0..bedcc02021 100644
--- a/stdlib/test/bit/test_bit.mojo
+++ b/stdlib/test/bit/test_bit.mojo
@@ -13,8 +13,8 @@
# RUN: %bare-mojo %s
from bit import (
- bit_ceil,
- bit_floor,
+ next_power_of_two,
+ prev_power_of_two,
bit_not,
bit_reverse,
bit_width,
@@ -365,17 +365,17 @@ def test_bit_width_simd():
assert_equal(bit_width(var4), SIMD[int64_t, simd_width](27, 0, 22, 60))
-def test_bit_ceil():
- assert_equal(bit_ceil(-(2**59)), 1)
- assert_equal(bit_ceil(-2), 1)
- assert_equal(bit_ceil(1), 1)
- assert_equal(bit_ceil(2), 2)
- assert_equal(bit_ceil(4), 4)
- assert_equal(bit_ceil(5), 8)
- assert_equal(bit_ceil(2**59 - 3), 2**59)
+def test_next_power_of_two():
+ assert_equal(next_power_of_two(-(2**59)), 1)
+ assert_equal(next_power_of_two(-2), 1)
+ assert_equal(next_power_of_two(1), 1)
+ assert_equal(next_power_of_two(2), 2)
+ assert_equal(next_power_of_two(4), 4)
+ assert_equal(next_power_of_two(5), 8)
+ assert_equal(next_power_of_two(2**59 - 3), 2**59)
-def test_bit_ceil_simd():
+def test_next_power_of_two_simd():
alias simd_width = 4
alias int8_t = DType.int8
alias int16_t = DType.int16
@@ -383,16 +383,20 @@ def test_bit_ceil_simd():
alias int64_t = DType.int64
alias var1 = SIMD[int8_t, simd_width](-114, 0, 2**7 - 3, 2**6)
- assert_equal(bit_ceil(var1), SIMD[int8_t, simd_width](1, 1, 2**7, 2**6))
+ assert_equal(
+ next_power_of_two(var1), SIMD[int8_t, simd_width](1, 1, 2**7, 2**6)
+ )
alias var2 = SIMD[int16_t, simd_width](-11444, 0, 2**12 - 3, 2**13)
assert_equal(
- bit_ceil(var2), SIMD[int16_t, simd_width](1, 1, 2**12, 2**13)
+ next_power_of_two(var2),
+ SIMD[int16_t, simd_width](1, 1, 2**12, 2**13),
)
alias var3 = SIMD[int32_t, simd_width](-111444, 0, 2**14 - 3, 2**29)
assert_equal(
- bit_ceil(var3), SIMD[int32_t, simd_width](1, 1, 2**14, 2**29)
+ next_power_of_two(var3),
+ SIMD[int32_t, simd_width](1, 1, 2**14, 2**29),
)
# TODO: use this line after #2882 is fixed
@@ -401,22 +405,22 @@ def test_bit_ceil_simd():
-111444444, 1, 2**22 - 3, 576460752303423488
)
assert_equal(
- bit_ceil(var4),
+ next_power_of_two(var4),
SIMD[int64_t, simd_width](1, 1, 2**22, 2**59),
)
-def test_bit_floor():
- assert_equal(bit_floor(-(2**59)), 0)
- assert_equal(bit_floor(-2), 0)
- assert_equal(bit_floor(1), 1)
- assert_equal(bit_floor(2), 2)
- assert_equal(bit_floor(4), 4)
- assert_equal(bit_floor(5), 4)
- assert_equal(bit_floor(2**59), 2**59)
+def test_prev_power_of_two():
+ assert_equal(prev_power_of_two(-(2**59)), 0)
+ assert_equal(prev_power_of_two(-2), 0)
+ assert_equal(prev_power_of_two(1), 1)
+ assert_equal(prev_power_of_two(2), 2)
+ assert_equal(prev_power_of_two(4), 4)
+ assert_equal(prev_power_of_two(5), 4)
+ assert_equal(prev_power_of_two(2**59), 2**59)
-def test_bit_floor_simd():
+def test_prev_power_of_two_simd():
alias simd_width = 4
alias int8_t = DType.int8
alias int16_t = DType.int16
@@ -425,17 +429,19 @@ def test_bit_floor_simd():
alias var1 = SIMD[int8_t, simd_width](-114, 0, 2**5 + 3, 2**6)
assert_equal(
- bit_floor(var1), SIMD[int8_t, simd_width](0, 0, 2**5, 2**6)
+ prev_power_of_two(var1), SIMD[int8_t, simd_width](0, 0, 2**5, 2**6)
)
alias var2 = SIMD[int16_t, simd_width](-11444, 0, 2**12 + 3, 2**13)
assert_equal(
- bit_floor(var2), SIMD[int16_t, simd_width](0, 0, 2**12, 2**13)
+ prev_power_of_two(var2),
+ SIMD[int16_t, simd_width](0, 0, 2**12, 2**13),
)
alias var3 = SIMD[int32_t, simd_width](-111444, 0, 2**14 + 3, 2**29)
assert_equal(
- bit_floor(var3), SIMD[int32_t, simd_width](0, 0, 2**14, 2**29)
+ prev_power_of_two(var3),
+ SIMD[int32_t, simd_width](0, 0, 2**14, 2**29),
)
# TODO: use this line after #2882 is fixed
@@ -444,7 +450,7 @@ def test_bit_floor_simd():
-111444444, 1, 2**22 + 3, 576460752303423488
)
assert_equal(
- bit_floor(var4),
+ prev_power_of_two(var4),
SIMD[int64_t, simd_width](0, 1, 2**22, 2**59),
)
@@ -526,10 +532,10 @@ def test_log2_floor():
def main():
test_rotate_bits_int()
test_rotate_bits_simd()
- test_bit_ceil()
- test_bit_ceil_simd()
- test_bit_floor()
- test_bit_floor_simd()
+ test_next_power_of_two()
+ test_next_power_of_two_simd()
+ test_prev_power_of_two()
+ test_prev_power_of_two_simd()
test_bit_width()
test_bit_width_simd()
test_is_power_of_two()
diff --git a/stdlib/test/builtin/test_file.mojo b/stdlib/test/builtin/test_file.mojo
index d30091958e..96043d9952 100644
--- a/stdlib/test/builtin/test_file.mojo
+++ b/stdlib/test/builtin/test_file.mojo
@@ -224,7 +224,7 @@ struct Word:
word.append(self.fourth_letter)
word.append(self.fith_letter)
word.append(0)
- return word
+ return String(word)
def test_file_read_to_dtype_pointer():
diff --git a/stdlib/test/builtin/test_sort.mojo b/stdlib/test/builtin/test_sort.mojo
index 3c98be083f..de1a34e151 100644
--- a/stdlib/test/builtin/test_sort.mojo
+++ b/stdlib/test/builtin/test_sort.mojo
@@ -551,7 +551,7 @@ struct Person(ComparableCollectionElement):
var age: Int
fn __init__(out self, *, other: Self):
- self.name = String(other=other.name)
+ self.name = other.name.copy()
self.age = other.age
fn __lt__(self, other: Self) -> Bool:
diff --git a/stdlib/test/builtin/test_string_literal.mojo b/stdlib/test/builtin/test_string_literal.mojo
index 28ca91a1af..c549a9423c 100644
--- a/stdlib/test/builtin/test_string_literal.mojo
+++ b/stdlib/test/builtin/test_string_literal.mojo
@@ -232,6 +232,18 @@ def test_join():
assert_equal(sep.join(1, 2, 3), "1,2,3")
assert_equal(sep.join(1, "abc", 3), "1,abc,3")
+ var s2 = ",".join(List[UInt8](1, 2, 3))
+ assert_equal(s2, "1,2,3")
+
+ var s3 = ",".join(List[UInt8](1, 2, 3, 4, 5, 6, 7, 8, 9))
+ assert_equal(s3, "1,2,3,4,5,6,7,8,9")
+
+ var s4 = ",".join(List[UInt8]())
+ assert_equal(s4, "")
+
+ var s5 = ",".join(List[UInt8](1))
+ assert_equal(s5, "1")
+
def test_isdigit():
assert_true("123".isdigit())
@@ -263,11 +275,11 @@ def test_iter():
var i = 0
for c in s:
if i == 0:
- assert_equal(c, "o")
+ assert_equal(String(c), "o")
elif i == 1:
- assert_equal(c, "n")
+ assert_equal(String(c), "n")
elif i == 2:
- assert_equal(c, "e")
+ assert_equal(String(c), "e")
def test_layout():
diff --git a/stdlib/test/utils/test_inlined_string.mojo b/stdlib/test/collections/string/test_inlined_string.mojo
similarity index 97%
rename from stdlib/test/utils/test_inlined_string.mojo
rename to stdlib/test/collections/string/test_inlined_string.mojo
index b2bc0d1956..83a191b0a7 100644
--- a/stdlib/test/utils/test_inlined_string.mojo
+++ b/stdlib/test/collections/string/test_inlined_string.mojo
@@ -17,8 +17,8 @@ from os import abort
from testing import assert_equal, assert_true
-from utils import InlineString
-from utils.inline_string import _FixedString
+from collections.string import InlineString
+from collections.string.inline_string import _FixedString
def main():
diff --git a/stdlib/test/collections/test_string.mojo b/stdlib/test/collections/string/test_string.mojo
similarity index 90%
rename from stdlib/test/collections/test_string.mojo
rename to stdlib/test/collections/string/test_string.mojo
index 4d9151b279..53f9f6ace8 100644
--- a/stdlib/test/collections/test_string.mojo
+++ b/stdlib/test/collections/string/test_string.mojo
@@ -12,14 +12,6 @@
# ===----------------------------------------------------------------------=== #
# RUN: %mojo %s
-from collections.string import (
- _calc_initial_buffer_size_int32,
- _calc_initial_buffer_size_int64,
- _isspace,
-)
-
-from memory import UnsafePointer
-from python import Python
from testing import (
assert_equal,
assert_false,
@@ -28,7 +20,15 @@ from testing import (
assert_true,
)
-from utils import StringRef, StringSlice
+from collections.string import StringSlice
+from collections.string.string import (
+ _calc_initial_buffer_size_int32,
+ _calc_initial_buffer_size_int64,
+ _isspace,
+)
+from memory import UnsafePointer
+from python import Python
+from utils import StringRef
@value
@@ -44,32 +44,6 @@ def test_stringable():
assert_equal("a string", str(AString()))
-def test_repr():
- # Standard single-byte characters
- assert_equal(String.__repr__("hello"), "'hello'")
- assert_equal(String.__repr__(str(0)), "'0'")
- assert_equal(String.__repr__("A"), "'A'")
- assert_equal(String.__repr__(" "), "' '")
- assert_equal(String.__repr__("~"), "'~'")
-
- # Special single-byte characters
- assert_equal(String.__repr__("\0"), r"'\x00'")
- assert_equal(String.__repr__("\x06"), r"'\x06'")
- assert_equal(String.__repr__("\x09"), r"'\t'")
- assert_equal(String.__repr__("\n"), r"'\n'")
- assert_equal(String.__repr__("\x0d"), r"'\r'")
- assert_equal(String.__repr__("\x0e"), r"'\x0e'")
- assert_equal(String.__repr__("\x1f"), r"'\x1f'")
- assert_equal(String.__repr__("'"), '"\'"')
- assert_equal(String.__repr__("\\"), r"'\\'")
- assert_equal(String.__repr__("\x7f"), r"'\x7f'")
-
- # Multi-byte characters
- assert_equal(String.__repr__("Örnsköldsvik"), "'Örnsköldsvik'") # 2-byte
- assert_equal(String.__repr__("你好!"), "'你好!'") # 3-byte
- assert_equal(String.__repr__("hello 🔥!"), "'hello 🔥!'") # 4-byte
-
-
def test_constructors():
# Default construction
assert_equal(0, len(String()))
@@ -235,60 +209,6 @@ def test_string_join():
assert_equal(s6, "1,2,3")
-def test_string_literal_join():
- var s2 = ",".join(List[UInt8](1, 2, 3))
- assert_equal(s2, "1,2,3")
-
- var s3 = ",".join(List[UInt8](1, 2, 3, 4, 5, 6, 7, 8, 9))
- assert_equal(s3, "1,2,3,4,5,6,7,8,9")
-
- var s4 = ",".join(List[UInt8]())
- assert_equal(s4, "")
-
- var s5 = ",".join(List[UInt8](1))
- assert_equal(s5, "1")
-
-
-def test_stringref():
- var a = StringRef("AAA")
- var b = StringRef("BBB")
- var c = StringRef("AAA")
-
- assert_equal(3, len(a))
- assert_equal(3, len(b))
- assert_equal(3, len(c))
- assert_equal(4, len("ABBA"))
-
- # Equality operators
- assert_not_equal(a, b)
- assert_not_equal(b, a)
-
- # Self equality
- assert_equal(a, a)
-
- # Value equality
- assert_equal(a, c)
-
-
-def test_stringref_from_dtypepointer():
- var a = StringRef("AAA")
- var b = StringRef(ptr=a.data)
- assert_equal(3, len(a))
- assert_equal(3, len(b))
- assert_equal(a, b)
-
-
-def test_stringref_strip():
- var a = StringRef(" mojo rocks ")
- var b = StringRef("mojo ")
- var c = StringRef(" mojo")
- var d = StringRef("")
- assert_equal(a.strip(), "mojo rocks")
- assert_equal(b.strip(), "mojo")
- assert_equal(c.strip(), "mojo")
- assert_equal(d.strip(), "")
-
-
def test_ord():
# Regular ASCII
assert_equal(ord("A"), 65)
@@ -363,13 +283,13 @@ def test_string_indexing():
def test_atol():
# base 10
- assert_equal(375, atol(String("375")))
- assert_equal(1, atol(String("001")))
- assert_equal(5, atol(String(" 005")))
- assert_equal(13, atol(String(" 013 ")))
- assert_equal(-89, atol(String("-89")))
- assert_equal(-52, atol(String(" -52")))
- assert_equal(-69, atol(String(" -69 ")))
+ assert_equal(375, atol("375"))
+ assert_equal(1, atol("001"))
+ assert_equal(5, atol(" 005"))
+ assert_equal(13, atol(" 013 "))
+ assert_equal(-89, atol("-89"))
+ assert_equal(-52, atol(" -52"))
+ assert_equal(-69, atol(" -69 "))
assert_equal(1_100_200, atol(" 1_100_200"))
# other bases
@@ -393,12 +313,12 @@ def test_atol():
with assert_raises(
contains="String is not convertible to integer with base 10: '9.03'"
):
- _ = atol(String("9.03"))
+ _ = atol("9.03")
with assert_raises(
contains="String is not convertible to integer with base 10: ' 10 1'"
):
- _ = atol(String(" 10 1"))
+ _ = atol(" 10 1")
# start/end with underscore double underscores
with assert_raises(
@@ -455,12 +375,12 @@ def test_atol():
with assert_raises(
contains="String is not convertible to integer with base 10: ''"
):
- _ = atol(String(""))
+ _ = atol("")
with assert_raises(
contains="String expresses an integer too large to store in Int."
):
- _ = atol(String("9223372036854775832"))
+ _ = atol("9223372036854775832")
def test_atol_base_0():
@@ -521,63 +441,63 @@ def test_atol_base_0():
def test_atof():
- assert_equal(375.0, atof(String("375.f")))
- assert_equal(1.0, atof(String("001.")))
- assert_equal(+5.0, atof(String(" +005.")))
- assert_equal(13.0, atof(String(" 013.f ")))
- assert_equal(-89, atof(String("-89")))
- assert_equal(-0.3, atof(String(" -0.3")))
- assert_equal(-69e3, atof(String(" -69E+3 ")))
- assert_equal(123.2e1, atof(String(" 123.2E1 ")))
- assert_equal(23e3, atof(String(" 23E3 ")))
- assert_equal(989343e-13, atof(String(" 989343E-13 ")))
- assert_equal(1.123, atof(String(" 1.123f")))
- assert_equal(0.78, atof(String(" .78 ")))
- assert_equal(121234.0, atof(String(" 121234. ")))
- assert_equal(985031234.0, atof(String(" 985031234.F ")))
- assert_equal(FloatLiteral.negative_zero, atof(String("-0")))
- assert_equal(FloatLiteral.nan, atof(String(" nan")))
- assert_equal(FloatLiteral.infinity, atof(String(" inf ")))
- assert_equal(FloatLiteral.negative_infinity, atof(String("-inf ")))
+ assert_equal(375.0, atof("375.f"))
+ assert_equal(1.0, atof("001."))
+ assert_equal(+5.0, atof(" +005."))
+ assert_equal(13.0, atof(" 013.f "))
+ assert_equal(-89, atof("-89"))
+ assert_equal(-0.3, atof(" -0.3"))
+ assert_equal(-69e3, atof(" -69E+3 "))
+ assert_equal(123.2e1, atof(" 123.2E1 "))
+ assert_equal(23e3, atof(" 23E3 "))
+ assert_equal(989343e-13, atof(" 989343E-13 "))
+ assert_equal(1.123, atof(" 1.123f"))
+ assert_equal(0.78, atof(" .78 "))
+ assert_equal(121234.0, atof(" 121234. "))
+ assert_equal(985031234.0, atof(" 985031234.F "))
+ assert_equal(FloatLiteral.negative_zero, atof("-0"))
+ assert_equal(FloatLiteral.nan, atof(" nan"))
+ assert_equal(FloatLiteral.infinity, atof(" inf "))
+ assert_equal(FloatLiteral.negative_infinity, atof("-inf "))
# Negative cases
with assert_raises(contains="String is not convertible to float: ''"):
- _ = atof(String(""))
+ _ = atof("")
with assert_raises(
contains="String is not convertible to float: ' 123 asd'"
):
- _ = atof(String(" 123 asd"))
+ _ = atof(" 123 asd")
with assert_raises(
contains="String is not convertible to float: ' f.9123 '"
):
- _ = atof(String(" f.9123 "))
+ _ = atof(" f.9123 ")
with assert_raises(
contains="String is not convertible to float: ' 989343E-1A3 '"
):
- _ = atof(String(" 989343E-1A3 "))
+ _ = atof(" 989343E-1A3 ")
with assert_raises(
contains="String is not convertible to float: ' 124124124_2134124124 '"
):
- _ = atof(String(" 124124124_2134124124 "))
+ _ = atof(" 124124124_2134124124 ")
with assert_raises(
contains="String is not convertible to float: ' 123.2E '"
):
- _ = atof(String(" 123.2E "))
+ _ = atof(" 123.2E ")
with assert_raises(
contains="String is not convertible to float: ' --958.23 '"
):
- _ = atof(String(" --958.23 "))
+ _ = atof(" --958.23 ")
with assert_raises(
contains="String is not convertible to float: ' ++94. '"
):
- _ = atof(String(" ++94. "))
+ _ = atof(" ++94. ")
def test_calc_initial_buffer_size_int32():
@@ -640,20 +560,6 @@ def test_find():
assert_equal(-1, String("abc").find("abcd"))
-def test_count():
- var str = String("Hello world")
-
- assert_equal(12, str.count(""))
- assert_equal(1, str.count("Hell"))
- assert_equal(3, str.count("l"))
- assert_equal(1, str.count("ll"))
- assert_equal(1, str.count("ld"))
- assert_equal(0, str.count("universe"))
-
- assert_equal(String("aaaaa").count("a"), 5)
- assert_equal(String("aaaaaa").count("aa"), 3)
-
-
def test_replace():
# Replace empty
var s1 = String("abc")
@@ -1263,7 +1169,7 @@ def test_string_iter():
assert_equal(321, atol(concat))
for v in vs:
- v.unsafe_ptr().bitcast[mut=True]()[] = ord("1")
+ v.unsafe_ptr().origin_cast[mut=True]()[] = ord("1")
# Borrow immutably
for v in vs:
@@ -1276,19 +1182,19 @@ def test_string_iter():
var iterator = vs.__iter__()
assert_equal(5, len(iterator))
var item = iterator.__next__()
- assert_equal("m", item)
+ assert_equal(String("m"), String(item))
assert_equal(4, len(iterator))
item = iterator.__next__()
- assert_equal("o", item)
+ assert_equal(String("o"), String(item))
assert_equal(3, len(iterator))
item = iterator.__next__()
- assert_equal("j", item)
+ assert_equal(String("j"), String(item))
assert_equal(2, len(iterator))
item = iterator.__next__()
- assert_equal("o", item)
+ assert_equal(String("o"), String(item))
assert_equal(1, len(iterator))
item = iterator.__next__()
- assert_equal("🔥", item)
+ assert_equal(String("🔥"), String(item))
assert_equal(0, len(iterator))
var items = List[String](
@@ -1601,12 +1507,7 @@ def main():
test_add()
test_add_string_slice()
test_stringable()
- test_repr()
test_string_join()
- test_string_literal_join()
- test_stringref()
- test_stringref_from_dtypepointer()
- test_stringref_strip()
test_ord()
test_chr()
test_string_indexing()
@@ -1617,7 +1518,6 @@ def main():
test_calc_initial_buffer_size_int64()
test_contains()
test_find()
- test_count()
test_replace()
test_rfind()
test_split()
diff --git a/stdlib/test/utils/test_string_slice.mojo b/stdlib/test/collections/string/test_string_slice.mojo
similarity index 85%
rename from stdlib/test/utils/test_string_slice.mojo
rename to stdlib/test/collections/string/test_string_slice.mojo
index f88ed32dbb..32b6da2bf9 100644
--- a/stdlib/test/utils/test_string_slice.mojo
+++ b/stdlib/test/collections/string/test_string_slice.mojo
@@ -12,12 +12,36 @@
# ===----------------------------------------------------------------------=== #
# RUN: %mojo %s
-from testing import assert_equal, assert_false, assert_true
+from testing import assert_equal, assert_false, assert_true, assert_raises
-from memory import Span
-from utils import StringSlice
-from utils._utf8_validation import _is_valid_utf8
-from utils.string_slice import _count_utf8_continuation_bytes
+from collections.string.string_slice import (
+ StringSlice,
+ _count_utf8_continuation_bytes,
+)
+from collections.string._utf8_validation import _is_valid_utf8
+from memory import Span, UnsafePointer
+
+from sys.info import sizeof, alignof
+
+
+fn test_string_slice_layout() raises:
+ # Test that the layout of `StringSlice` is the same as `llvm::StringRef`.
+ # This is necessary for `StringSlice` to be validly bitcasted to and from
+ # `llvm::StringRef`
+
+ # StringSlice should be two words in size.
+ assert_equal(sizeof[StringSlice[MutableAnyOrigin]](), 2 * sizeof[Int]())
+
+ var str_slice = StringSlice("")
+
+ var base_ptr = int(UnsafePointer.address_of(str_slice))
+ var first_word_ptr = int(UnsafePointer.address_of(str_slice._slice._data))
+ var second_word_ptr = int(UnsafePointer.address_of(str_slice._slice._len))
+
+ # 1st field should be at 0-byte offset from base ptr
+ assert_equal(first_word_ptr - base_ptr, 0)
+ # 2nd field should at 1-word offset from base ptr
+ assert_equal(second_word_ptr - base_ptr, sizeof[Int]())
fn test_string_literal_byte_span() raises:
@@ -178,6 +202,34 @@ fn test_slice_bool() raises:
assert_true(not str2.as_string_slice().__bool__())
+def test_slice_repr():
+ # Standard single-byte characters
+ assert_equal(StringSlice.__repr__("hello"), "'hello'")
+ assert_equal(StringSlice.__repr__(str(0)), "'0'")
+ assert_equal(StringSlice.__repr__("A"), "'A'")
+ assert_equal(StringSlice.__repr__(" "), "' '")
+ assert_equal(StringSlice.__repr__("~"), "'~'")
+
+ # Special single-byte characters
+ assert_equal(StringSlice.__repr__("\0"), r"'\x00'")
+ assert_equal(StringSlice.__repr__("\x06"), r"'\x06'")
+ assert_equal(StringSlice.__repr__("\x09"), r"'\t'")
+ assert_equal(StringSlice.__repr__("\n"), r"'\n'")
+ assert_equal(StringSlice.__repr__("\x0d"), r"'\r'")
+ assert_equal(StringSlice.__repr__("\x0e"), r"'\x0e'")
+ assert_equal(StringSlice.__repr__("\x1f"), r"'\x1f'")
+ assert_equal(StringSlice.__repr__("'"), '"\'"')
+ assert_equal(StringSlice.__repr__("\\"), r"'\\'")
+ assert_equal(StringSlice.__repr__("\x7f"), r"'\x7f'")
+
+ # Multi-byte characters
+ assert_equal(
+ StringSlice.__repr__("Örnsköldsvik"), "'Örnsköldsvik'"
+ ) # 2-byte
+ assert_equal(StringSlice.__repr__("你好!"), "'你好!'") # 3-byte
+ assert_equal(StringSlice.__repr__("hello 🔥!"), "'hello 🔥!'") # 4-byte
+
+
fn test_utf8_validation() raises:
var text = """Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam
varius tellus quis tincidunt dictum. Donec eros orci, ultricies ac metus non
@@ -349,6 +401,17 @@ def test_bad_utf8_sequences():
assert_false(validate_utf8(sequence[]))
+def test_stringslice_from_utf8():
+ for sequence in GOOD_SEQUENCES:
+ var bytes = sequence[].as_bytes()
+ _ = StringSlice.from_utf8(bytes)
+
+ for sequence in BAD_SEQUENCES:
+ with assert_raises(contains="buffer is not valid UTF-8"):
+ var bytes = sequence[].as_bytes()
+ _ = StringSlice.from_utf8(bytes)
+
+
def test_combination_good_utf8_sequences():
# any combination of good sequences should be good
for i in range(0, len(GOOD_SEQUENCES)):
@@ -420,14 +483,6 @@ def test_splitlines():
alias S = StringSlice[StaticConstantOrigin]
alias L = List[StringSlice[StaticConstantOrigin]]
- # FIXME: remove once StringSlice conforms to TestableCollectionElement
- fn _assert_equal[
- O1: ImmutableOrigin, O2: ImmutableOrigin
- ](l1: List[StringSlice[O1]], l2: List[StringSlice[O2]]) raises:
- assert_equal(len(l1), len(l2))
- for i in range(len(l1)):
- assert_equal(str(l1[i]), str(l2[i]))
-
# FIXME: remove once StringSlice conforms to TestableCollectionElement
fn _assert_equal[
O1: ImmutableOrigin
@@ -437,36 +492,36 @@ def test_splitlines():
assert_equal(str(l1[i]), l2[i])
# Test with no line breaks
- _assert_equal(S("hello world").splitlines(), L("hello world"))
+ assert_equal(S("hello world").splitlines(), L("hello world"))
# Test with line breaks
- _assert_equal(S("hello\nworld").splitlines(), L("hello", "world"))
- _assert_equal(S("hello\rworld").splitlines(), L("hello", "world"))
- _assert_equal(S("hello\r\nworld").splitlines(), L("hello", "world"))
+ assert_equal(S("hello\nworld").splitlines(), L("hello", "world"))
+ assert_equal(S("hello\rworld").splitlines(), L("hello", "world"))
+ assert_equal(S("hello\r\nworld").splitlines(), L("hello", "world"))
# Test with multiple different line breaks
s1 = S("hello\nworld\r\nmojo\rlanguage\r\n")
hello_mojo = L("hello", "world", "mojo", "language")
- _assert_equal(s1.splitlines(), hello_mojo)
- _assert_equal(
+ assert_equal(s1.splitlines(), hello_mojo)
+ assert_equal(
s1.splitlines(keepends=True),
L("hello\n", "world\r\n", "mojo\r", "language\r\n"),
)
# Test with an empty string
- _assert_equal(S("").splitlines(), L())
+ assert_equal(S("").splitlines(), L())
# test \v \f \x1c \x1d
s2 = S("hello\vworld\fmojo\x1clanguage\x1d")
- _assert_equal(s2.splitlines(), hello_mojo)
- _assert_equal(
+ assert_equal(s2.splitlines(), hello_mojo)
+ assert_equal(
s2.splitlines(keepends=True),
L("hello\v", "world\f", "mojo\x1c", "language\x1d"),
)
# test \x1c \x1d \x1e
s3 = S("hello\x1cworld\x1dmojo\x1elanguage\x1e")
- _assert_equal(s3.splitlines(), hello_mojo)
- _assert_equal(
+ assert_equal(s3.splitlines(), hello_mojo)
+ assert_equal(
s3.splitlines(keepends=True),
L("hello\x1c", "world\x1d", "mojo\x1e", "language\x1e"),
)
@@ -483,7 +538,7 @@ def test_splitlines():
u = i[]
item = String("").join("hello", u, "world", u, "mojo", u, "language", u)
s = StringSlice(item)
- _assert_equal(s.splitlines(), hello_mojo)
+ assert_equal(s.splitlines(), hello_mojo)
items = List("hello" + u, "world" + u, "mojo" + u, "language" + u)
_assert_equal(s.splitlines(keepends=True), items)
@@ -624,23 +679,41 @@ def test_endswith():
assert_true(ab.endswith("ab"))
+def test_count():
+ var str = StringSlice("Hello world")
+
+ assert_equal(12, str.count(""))
+ assert_equal(1, str.count("Hell"))
+ assert_equal(3, str.count("l"))
+ assert_equal(1, str.count("ll"))
+ assert_equal(1, str.count("ld"))
+ assert_equal(0, str.count("universe"))
+
+ assert_equal(StringSlice("aaaaa").count("a"), 5)
+ assert_equal(StringSlice("aaaaaa").count("aa"), 3)
+
+
def main():
+ test_string_slice_layout()
test_string_literal_byte_span()
test_string_byte_span()
test_heap_string_from_string_slice()
test_slice_len()
test_slice_eq()
test_slice_bool()
+ test_slice_repr()
test_utf8_validation()
test_find()
test_good_utf8_sequences()
test_bad_utf8_sequences()
+ test_stringslice_from_utf8()
test_combination_good_utf8_sequences()
test_combination_bad_utf8_sequences()
test_combination_good_bad_utf8_sequences()
test_combination_10_good_utf8_sequences()
test_combination_10_good_10_bad_utf8_sequences()
test_count_utf8_continuation_bytes()
+ test_count()
test_splitlines()
test_rstrip()
test_lstrip()
diff --git a/stdlib/test/collections/test_counter.mojo b/stdlib/test/collections/test_counter.mojo
index 27f5f3b9e6..a7c7b3e772 100644
--- a/stdlib/test/collections/test_counter.mojo
+++ b/stdlib/test/collections/test_counter.mojo
@@ -75,7 +75,7 @@ def test_copy():
c["a"] = 1
c["b"] = 2
- var copy = Counter[String](other=c)
+ var copy = c.copy()
assert_equal(copy["a"], 1)
assert_equal(copy["b"], 2)
diff --git a/stdlib/test/collections/test_deque.mojo b/stdlib/test/collections/test_deque.mojo
index fd2db54440..a5fdc772f9 100644
--- a/stdlib/test/collections/test_deque.mojo
+++ b/stdlib/test/collections/test_deque.mojo
@@ -690,7 +690,7 @@ fn test_init_variadic_list() raises:
fn test_copy_trivial() raises:
q = Deque(1, 2, 3)
- p = Deque(q)
+ p = q.copy()
assert_equal(p[0], q[0])
p[0] = 3
@@ -709,7 +709,7 @@ fn test_copy_list() raises:
lst1[0] = 7
assert_equal(q[0], List(1, 2, 3))
- p = Deque(q)
+ p = q.copy()
assert_equal(p[0], q[0])
p[0][0] = 7
diff --git a/stdlib/test/collections/test_dict.mojo b/stdlib/test/collections/test_dict.mojo
index 4f8b1e965c..d9252d8f3d 100644
--- a/stdlib/test/collections/test_dict.mojo
+++ b/stdlib/test/collections/test_dict.mojo
@@ -238,7 +238,7 @@ def test_dict_copy():
orig["a"] = 1
# test values copied to new Dict
- var copy = Dict(other=orig)
+ var copy = orig.copy()
assert_equal(1, copy["a"])
# test there are two copies of dict and
@@ -253,7 +253,7 @@ def test_dict_copy_delete_original():
orig["a"] = 1
# test values copied to new Dict
- var copy = Dict(other=orig)
+ var copy = orig.copy()
# don't access the original dict, anymore, confirm that
# deleting the original doesn't violate the integrity of the copy
assert_equal(1, copy["a"])
@@ -264,7 +264,7 @@ def test_dict_copy_add_new_item():
orig["a"] = 1
# test values copied to new Dict
- var copy = Dict(other=orig)
+ var copy = orig.copy()
assert_equal(1, copy["a"])
# test there are two copies of dict and
@@ -278,7 +278,7 @@ def test_dict_copy_calls_copy_constructor():
orig["a"] = CopyCounter()
# test values copied to new Dict
- var copy = Dict(other=orig)
+ var copy = orig.copy()
assert_equal(0, orig["a"].copy_count)
assert_equal(1, copy["a"].copy_count)
assert_equal(0, orig._find_ref("a").copy_count)
@@ -602,6 +602,23 @@ fn test_dict_setdefault() raises:
assert_equal(0, other_dict["b"].copy_count)
+def test_compile_time_dict():
+ alias N = 10
+
+ fn _get_dict() -> Dict[String, Int32]:
+ var res = Dict[String, Int32]()
+ for i in range(N):
+ res[str(i)] = i
+ return res
+
+ alias my_dict = _get_dict()
+
+ @parameter
+ for i in range(N):
+ alias val = my_dict.get(str(i)).value()
+ assert_equal(val, i)
+
+
def main():
test_dict()
test_dict_fromkeys()
@@ -615,3 +632,4 @@ def main():
test_clear()
test_init_initial_capacity()
test_dict_setdefault()
+ test_compile_time_dict()
diff --git a/stdlib/test/collections/test_inline_array.mojo b/stdlib/test/collections/test_inline_array.mojo
index 18a933c6be..29268017ba 100644
--- a/stdlib/test/collections/test_inline_array.mojo
+++ b/stdlib/test/collections/test_inline_array.mojo
@@ -175,7 +175,7 @@ def test_array_unsafe_assume_initialized_constructor_string():
assert_equal(initialized_arr2[2], "world")
# trigger a copy
- var initialized_arr3 = InlineArray(other=initialized_arr2)
+ var initialized_arr3 = initialized_arr2.copy()
assert_equal(initialized_arr3[0], "hello")
assert_equal(initialized_arr3[1], "mojo")
diff --git a/stdlib/test/collections/test_list.mojo b/stdlib/test/collections/test_list.mojo
index 56dab6510b..c6b3e4fb1e 100644
--- a/stdlib/test/collections/test_list.mojo
+++ b/stdlib/test/collections/test_list.mojo
@@ -437,32 +437,35 @@ def test_list_index():
_ = test_list_b.index(20, start=4, stop=5)
-def test_list_extend():
- #
- # Test extending the list [1, 2, 3] with itself
- #
+def test_list_append():
+ var items = List[UInt32]()
+ items.append(1)
+ items.append(2)
+ items.append(3)
+ assert_equal(items, List[UInt32](1, 2, 3))
- vec = List[Int]()
- vec.append(1)
- vec.append(2)
- vec.append(3)
- assert_equal(len(vec), 3)
- assert_equal(vec[0], 1)
- assert_equal(vec[1], 2)
- assert_equal(vec[2], 3)
+def test_list_extend():
+ var items = List[UInt32](1, 2, 3)
+ var copy = items
+ items.extend(copy)
+ assert_equal(items, List[UInt32](1, 2, 3, 1, 2, 3))
+
+ items = List[UInt32](1, 2, 3)
+ copy = List[UInt32](1, 2, 3)
- var copy = vec
- vec.extend(copy)
+ # Extend with span
+ items.extend(Span(copy))
+ assert_equal(items, List[UInt32](1, 2, 3, 1, 2, 3))
- # vec == [1, 2, 3, 1, 2, 3]
- assert_equal(len(vec), 6)
- assert_equal(vec[0], 1)
- assert_equal(vec[1], 2)
- assert_equal(vec[2], 3)
- assert_equal(vec[3], 1)
- assert_equal(vec[4], 2)
- assert_equal(vec[5], 3)
+ # Extend with whole SIMD
+ items = List[UInt32](1, 2, 3)
+ items.extend(SIMD[DType.uint32, 4](1, 2, 3, 4))
+ assert_equal(items, List[UInt32](1, 2, 3, 1, 2, 3, 4))
+ # Extend with part of SIMD
+ items = List[UInt32](1, 2, 3)
+ items.extend(SIMD[DType.uint32, 4](1, 2, 3, 4), count=3)
+ assert_equal(items, List[UInt32](1, 2, 3, 1, 2, 3))
def test_list_extend_non_trivial():
@@ -531,7 +534,7 @@ def test_2d_dynamic_list():
def test_list_explicit_copy():
var list = List[CopyCounter]()
list.append(CopyCounter())
- var list_copy = List(other=list)
+ var list_copy = list.copy()
assert_equal(0, list[0].copy_count)
assert_equal(1, list_copy[0].copy_count)
@@ -539,7 +542,7 @@ def test_list_explicit_copy():
for i in range(10):
l2.append(i)
- var l2_copy = List(other=l2)
+ var l2_copy = l2.copy()
assert_equal(len(l2), len(l2_copy))
for i in range(len(l2)):
assert_equal(l2[i], l2_copy[i])
@@ -551,8 +554,8 @@ struct CopyCountedStruct(CollectionElement):
var value: String
fn __init__(out self, *, other: Self):
- self.counter = CopyCounter(other=other.counter)
- self.value = String(other=other.value)
+ self.counter = other.counter.copy()
+ self.value = other.value.copy()
@implicit
fn __init__(out self, value: String):
@@ -952,6 +955,7 @@ def main():
test_list_reverse_move_count()
test_list_insert()
test_list_index()
+ test_list_append()
test_list_extend()
test_list_extend_non_trivial()
test_list_explicit_copy()
diff --git a/stdlib/test/collections/test_optional.mojo b/stdlib/test/collections/test_optional.mojo
index 70cca5de6f..6fe264cafd 100644
--- a/stdlib/test/collections/test_optional.mojo
+++ b/stdlib/test/collections/test_optional.mojo
@@ -126,7 +126,7 @@ def test_optional_take_mutates():
def test_optional_explicit_copy():
var v1 = Optional[String](String("test"))
- var v2 = Optional(other=v1)
+ var v2 = v1.copy()
assert_equal(v1.value(), "test")
assert_equal(v2.value(), "test")
@@ -157,6 +157,19 @@ def test_optional_equality():
assert_true(n == None)
+def test_optional_copied():
+ var data = String("foo")
+
+ var opt_ref: Optional[Pointer[String, __origin_of(data)]] = Optional(
+ Pointer.address_of(data)
+ )
+
+ # Copy the optional Pointer value.
+ var opt_owned: Optional[String] = opt_ref.copied[T=String]()
+
+ assert_equal(opt_owned.value(), String("foo"))
+
+
def main():
test_basic()
test_optional_reg_basic()
@@ -168,3 +181,4 @@ def main():
test_optional_explicit_copy()
test_optional_str_repr()
test_optional_equality()
+ test_optional_copied()
diff --git a/stdlib/test/memory/test_arc.mojo b/stdlib/test/memory/test_arc.mojo
index 82b5342aea..83d0b4e4e4 100644
--- a/stdlib/test/memory/test_arc.mojo
+++ b/stdlib/test/memory/test_arc.mojo
@@ -54,12 +54,12 @@ def test_deleter_not_called_until_no_references():
def test_deleter_not_called_until_no_references_explicit_copy():
var deleted = False
var p = ArcPointer(ObservableDel(UnsafePointer.address_of(deleted)))
- var p2 = ArcPointer(other=p)
+ var p2 = p.copy()
_ = p^
assert_false(deleted)
var vec = List[ArcPointer[ObservableDel]]()
- vec.append(ArcPointer(other=p2)^)
+ vec.append(p2.copy())
_ = p2^
assert_false(deleted)
_ = vec^
@@ -68,7 +68,7 @@ def test_deleter_not_called_until_no_references_explicit_copy():
def test_count():
var a = ArcPointer(10)
- var b = ArcPointer(other=a)
+ var b = a.copy()
var c = a
assert_equal(3, a.count())
_ = b^
diff --git a/stdlib/test/memory/test_reference.mojo b/stdlib/test/memory/test_reference.mojo
index 44d448e791..6b84cbc900 100644
--- a/stdlib/test/memory/test_reference.mojo
+++ b/stdlib/test/memory/test_reference.mojo
@@ -18,7 +18,7 @@ def test_copy_reference_explicitly():
var a = List[Int](1, 2, 3)
var b = Pointer.address_of(a)
- var c = Pointer(other=b)
+ var c = b.copy()
c[][0] = 4
assert_equal(a[0], 4)
diff --git a/stdlib/test/memory/test_span.mojo b/stdlib/test/memory/test_span.mojo
index 4a3b6dd980..9b52577109 100644
--- a/stdlib/test/memory/test_span.mojo
+++ b/stdlib/test/memory/test_span.mojo
@@ -208,6 +208,19 @@ def test_reversed():
i += 1
+# We don't actually need to call this test
+# but we want to make sure it compiles
+def test_span_coerce():
+ var l = List[Int](1, 2, 3)
+ var a = InlineArray[Int, 3](1, 2, 3)
+
+ fn takes_span(s: Span[Int]):
+ pass
+
+ takes_span(l)
+ takes_span(a)
+
+
def main():
test_span_list_int()
test_span_list_str()
diff --git a/stdlib/test/memory/test_unsafepointer.mojo b/stdlib/test/memory/test_unsafepointer.mojo
index 168ffc7bdf..09b7d11f70 100644
--- a/stdlib/test/memory/test_unsafepointer.mojo
+++ b/stdlib/test/memory/test_unsafepointer.mojo
@@ -133,7 +133,9 @@ def test_bitcast():
assert_equal(int(ptr), int(aliased_ptr))
- assert_equal(ptr.bitcast[ptr.type, alignment=33]().alignment, 33)
+ assert_equal(
+ ptr.bitcast[ptr.type]().static_alignment_cast[33]().alignment, 33
+ )
_ = local
@@ -150,15 +152,15 @@ def test_unsafepointer_string():
def test_eq():
var local = 1
- var p1 = UnsafePointer.address_of(local).bitcast[mut=False]()
+ var p1 = UnsafePointer.address_of(local).origin_cast[mut=False]()
var p2 = p1
assert_equal(p1, p2)
var other_local = 2
- var p3 = UnsafePointer.address_of(other_local).bitcast[mut=False]()
+ var p3 = UnsafePointer.address_of(other_local).origin_cast[mut=False]()
assert_not_equal(p1, p3)
- var p4 = UnsafePointer.address_of(local).bitcast[mut=False]()
+ var p4 = UnsafePointer.address_of(local).origin_cast[mut=False]()
assert_equal(p1, p4)
_ = local
_ = other_local
diff --git a/stdlib/test/test_utils/types.mojo b/stdlib/test/test_utils/types.mojo
index 0e83d44dca..01870acebc 100644
--- a/stdlib/test/test_utils/types.mojo
+++ b/stdlib/test/test_utils/types.mojo
@@ -59,9 +59,9 @@ struct ExplicitCopyOnly(ExplicitlyCopyable):
self.value = value
self.copy_count = 0
- fn __init__(out self, *, other: Self):
- self.value = other.value
- self.copy_count = other.copy_count + 1
+ fn copy(self, out copy: Self):
+ copy = Self(self.value)
+ copy.copy_count = self.copy_count + 1
# ===----------------------------------------------------------------------=== #
@@ -105,6 +105,9 @@ struct CopyCounter(CollectionElement, ExplicitlyCopyable):
fn __copyinit__(out self, existing: Self):
self.copy_count = existing.copy_count + 1
+ fn copy(self) -> Self:
+ return self
+
# ===----------------------------------------------------------------------=== #
# MoveCounter
@@ -135,7 +138,7 @@ struct MoveCounter[T: CollectionElementNew](
Args:
other: The value to copy.
"""
- self.value = T(other=other.value)
+ self.value = other.value.copy()
self.move_count = other.move_count
fn __moveinit__(out self, owned existing: Self):
@@ -146,9 +149,12 @@ struct MoveCounter[T: CollectionElementNew](
# CollectionElement at the moment.
fn __copyinit__(out self, existing: Self):
# print("ERROR: _MoveCounter copy constructor called unexpectedly!")
- self.value = T(other=existing.value)
+ self.value = existing.value.copy()
self.move_count = existing.move_count
+ fn copy(self) -> Self:
+ return self
+
# ===----------------------------------------------------------------------=== #
# ValueDestructorRecorder
@@ -167,6 +173,9 @@ struct ValueDestructorRecorder(ExplicitlyCopyable):
fn __del__(owned self):
self.destructor_counter[].append(self.value)
+ fn copy(self) -> Self:
+ return self
+
# ===----------------------------------------------------------------------=== #
# ObservableDel
diff --git a/stdlib/test/testing/test_assertion.mojo b/stdlib/test/testing/test_assertion.mojo
index 35283b7088..c9aaaf6d9d 100644
--- a/stdlib/test/testing/test_assertion.mojo
+++ b/stdlib/test/testing/test_assertion.mojo
@@ -26,28 +26,31 @@ from testing import (
)
from utils.numerics import inf, nan
+from utils import StringSlice
def test_assert_messages():
+ assertion = "test_assertion.mojo:"
+ assertion_error = ": AssertionError:"
try:
assert_true(False)
except e:
- assert_true("test_assertion.mojo:33:20: AssertionError:" in str(e))
+ assert_true(assertion in str(e) and assertion_error in str(e))
try:
assert_false(True)
except e:
- assert_true("test_assertion.mojo:38:21: AssertionError:" in str(e))
+ assert_true(assertion in str(e) and assertion_error in str(e))
try:
assert_equal(1, 0)
except e:
- assert_true("test_assertion.mojo:43:21: AssertionError:" in str(e))
+ assert_true(assertion in str(e) and assertion_error in str(e))
try:
assert_not_equal(0, 0)
except e:
- assert_true("test_assertion.mojo:48:25: AssertionError:" in str(e))
+ assert_true(assertion in str(e) and assertion_error in str(e))
@value
@@ -237,6 +240,39 @@ def test_assert_custom_location():
assert_true("always_false" in str(e))
+def test_assert_equal_stringslice():
+ str1 = "This is Mojo"
+ str2 = String("This is Mojo")
+ str3 = "This is mojo"
+
+ fn _build(
+ value: StringLiteral, start: Int, end: Int
+ ) -> StringSlice[StaticConstantOrigin]:
+ return StringSlice[StaticConstantOrigin](
+ ptr=value.unsafe_ptr() + start, length=end - start
+ )
+
+ fn _build(
+ read value: String, start: Int, end: Int
+ ) -> StringSlice[__origin_of(value)]:
+ return StringSlice[__origin_of(value)](
+ ptr=value.unsafe_ptr() + start, length=end - start
+ )
+
+ l1 = List(_build(str1, 0, 4), _build(str1, 5, 7), _build(str1, 8, 12))
+ l2 = List(_build(str2, 0, 4), _build(str2, 5, 7), _build(str2, 8, 12))
+ l3 = List(_build(str3, 0, 4), _build(str3, 5, 7), _build(str3, 8, 12))
+ assert_equal(l1, l1)
+ assert_equal(l2, l2)
+ assert_equal(l1, l2)
+
+ with assert_raises():
+ assert_equal(l1, l3)
+
+ with assert_raises():
+ assert_equal(l2, l3)
+
+
def main():
test_assert_equal_is_generic()
test_assert_not_equal_is_generic()
@@ -248,3 +284,4 @@ def main():
test_assert_is()
test_assert_is_not()
test_assert_custom_location()
+ test_assert_equal_stringslice()
diff --git a/stdlib/test/utils/test_stringref.mojo b/stdlib/test/utils/test_stringref.mojo
index 67965d22a4..18f319d4be 100644
--- a/stdlib/test/utils/test_stringref.mojo
+++ b/stdlib/test/utils/test_stringref.mojo
@@ -12,11 +12,46 @@
# ===----------------------------------------------------------------------=== #
# RUN: %mojo %s
-from testing import assert_equal, assert_false, assert_raises, assert_true
+from testing import (
+ assert_equal,
+ assert_false,
+ assert_raises,
+ assert_true,
+ assert_not_equal,
+)
from utils import StringRef
+def test_stringref():
+ var a = StringRef("AAA")
+ var b = StringRef("BBB")
+ var c = StringRef("AAA")
+
+ assert_equal(3, len(a))
+ assert_equal(3, len(b))
+ assert_equal(3, len(c))
+ assert_equal(4, len("ABBA"))
+
+ # Equality operators
+ assert_not_equal(a, b)
+ assert_not_equal(b, a)
+
+ # Self equality
+ assert_equal(a, a)
+
+ # Value equality
+ assert_equal(a, c)
+
+
+def test_stringref_from_pointer():
+ var a = StringRef("AAA")
+ var b = StringRef(ptr=a.data)
+ assert_equal(3, len(a))
+ assert_equal(3, len(b))
+ assert_equal(a, b)
+
+
def test_strref_from_start():
var str = StringRef("Hello")
@@ -169,6 +204,8 @@ def test_str_and_ref():
def main():
+ test_stringref()
+ test_stringref_from_pointer()
test_strref_from_start()
test_stringref_split()
test_comparison_operators()
diff --git a/stdlib/test/utils/test_variant.mojo b/stdlib/test/utils/test_variant.mojo
index f07b3aa099..99dae52a54 100644
--- a/stdlib/test/utils/test_variant.mojo
+++ b/stdlib/test/utils/test_variant.mojo
@@ -116,7 +116,7 @@ def test_explicit_copy():
var v1 = TestVariant(TestCounter())
# Perform explicit copy
- var v2 = TestVariant(other=v1)
+ var v2 = v1.copy()
# Test copy counts
assert_equal(v1[TestCounter].copied, 0)
diff --git a/stdlib/test/utils/test_format.mojo b/stdlib/test/utils/test_write.mojo
similarity index 97%
rename from stdlib/test/utils/test_format.mojo
rename to stdlib/test/utils/test_write.mojo
index 975d26464b..579b573892 100644
--- a/stdlib/test/utils/test_format.mojo
+++ b/stdlib/test/utils/test_write.mojo
@@ -15,7 +15,7 @@
from testing import assert_equal
from utils import Writable, Writer
-from utils.inline_string import _FixedString
+from collections.string.inline_string import _FixedString
fn main() raises:
diff --git a/stdlib/test/utils/test_format_to_stdout.mojo b/stdlib/test/utils/test_write_to_stdout.mojo
similarity index 100%
rename from stdlib/test/utils/test_format_to_stdout.mojo
rename to stdlib/test/utils/test_write_to_stdout.mojo