diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml
new file mode 100644
index 000000000..981ca352b
--- /dev/null
+++ b/.github/workflows/docs.yml
@@ -0,0 +1,70 @@
+name: Deploy Docs
+
+on:
+ push:
+ branches:
+ - main
+ paths:
+ - 'docs/**'
+ - 'mkdocs.yml'
+ pull_request:
+ branches:
+ - main
+ paths:
+ - 'docs/**'
+ - 'mkdocs.yml'
+
+
+# Allow one concurrent deployment
+concurrency:
+ group: "pages"
+ cancel-in-progress: true
+
+jobs:
+ build:
+ # Don't run on forks
+ if: github.repository == 'prefix-dev/pixi'
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v4
+ with:
+ submodules: recursive
+
+ - uses: actions-rs/toolchain@v1
+ with:
+ profile: minimal
+
+ - uses: prefix-dev/setup-pixi@v0.3.0
+ with:
+ pixi-version: v0.6.0
+ cache: true
+
+ - name: Setup Pages
+ uses: actions/configure-pages@v3
+
+ - name: Build pixi Documentation
+ run: pixi run build-docs
+
+ # This adds the following:
+ # - A .nojekyll file to disable Jekyll GitHub Pages builds.
+ - name: Finalize documentation
+ run: |
+ touch site/.nojekyll
+
+ # https://github.com/actions/upload-pages-artifact#file-permissions
+ - run: chmod -c -R +rX site/
+
+ - name: Upload artifact
+ uses: actions/upload-pages-artifact@v2
+ with:
+ path: "site"
+
+ deploy:
+ runs-on: ubuntu-latest
+ needs: build
+ if: github.repository == 'prefix-dev/pixi' && github.ref == 'refs/heads/main'
+ steps:
+ - name: Deploy to GitHub Pages
+ id: deployment
+ uses: actions/deploy-pages@v2
diff --git a/.gitignore b/.gitignore
index b10a97a2e..048b131c8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -6,3 +6,4 @@ __pycache__
**/**/.pixi
**/**/.build
.DS_store
+site/
diff --git a/docs/FAQ.md b/docs/FAQ.md
new file mode 100644
index 000000000..c5c88339b
--- /dev/null
+++ b/docs/FAQ.md
@@ -0,0 +1,33 @@
+
+## What is the difference with `conda`, `mamba`, `poetry`, `pip`
+
+| Tool | Installs python | Builds packages | Runs predefined tasks | Has lockfiles builtin | Fast | Use without python |
+|--------|-----------------|-----------------|-----------------------|-----------------------|------|------------------------------------------------------------------------|
+| Conda | ✅ | ❌ | ❌ | ❌ | ❌ | ❌ |
+| Mamba | ✅ | ❌ | ❌ | ❌ | ✅ | [✅](https://mamba.readthedocs.io/en/latest/user_guide/micromamba.html) |
+| Pip | ❌ | ✅ | ❌ | ❌ | ❌ | ❌ |
+| Pixi | ✅ | 🚧 | ✅ | ✅ | ✅ | ✅ |
+| Poetry | ❌ | ✅ | ❌ | ✅ | ❌ | ❌ |
+
+
+## Why the name `pixi`
+Starting with the name `prefix` we iterated until we had a name that was easy to pronounce, spell and remember.
+There also wasn't a cli tool yet using that name.
+Unlike `px`, `pex`, `pax`, etc.
+We think it sparks curiosity and fun, if you don't agree, I'm sorry, but you can always alias it to whatever you like.
+
+=== "Linux & macOS"
+ ```shell
+ alias not_pixi="pixi"
+ ```
+=== "Windows"
+ PowerShell:
+ ```powershell
+ New-Alias -Name not_pixi -Value pixi
+ ```
+
+## Where is `pixi build`
+**TL;DR**: It's coming we promise!
+
+`pixi build` is going to be the subcommand that can generate a conda package out of a pixi project.
+This requires a solid build tool which we're creating with [`rattler-build`](https://github.com/prefix-dev/rattler-build) which will be used as a library in pixi.
diff --git a/docs/advanced.mdx b/docs/advanced.mdx
deleted file mode 100644
index 263612bfb..000000000
--- a/docs/advanced.mdx
+++ /dev/null
@@ -1,23 +0,0 @@
----
-part: pixi
-title: In depth explanations
-description: Learn how to make your next steps with pixi
----
-
-
-
-
-
-
diff --git a/docs/advanced/advanced_tasks.mdx b/docs/advanced/advanced_tasks.md
similarity index 81%
rename from docs/advanced/advanced_tasks.mdx
rename to docs/advanced/advanced_tasks.md
index aa74390d7..77374a875 100644
--- a/docs/advanced/advanced_tasks.mdx
+++ b/docs/advanced/advanced_tasks.md
@@ -10,7 +10,7 @@ With pixi tasks, this should become much easier to do.
Here are some quick examples
-```toml title="pixi.toml" showLineNumbers
+```toml title="pixi.toml"
[tasks]
# Commands as lists so you can also add documentation in between.
configure = { cmd = [
@@ -57,7 +57,7 @@ pixi task add start ".build/bin/sdl_example" --depends-on build
Results in the following lines added to the `pixi.toml`
-```toml title="pixi.toml" showLineNumbers
+```toml title="pixi.toml"
[tasks]
# Configures CMake
configure = "cmake -G Ninja -S . -B .build"
@@ -92,7 +92,7 @@ pixi task alias style fmt lint
Results in the following `pixi.toml`.
-```toml title="pixi.toml" showLineNumbers
+```toml title="pixi.toml"
fmt = "ruff"
lint = "pylint"
style = { depends_on = ["fmt", "lint"] }
@@ -123,7 +123,7 @@ pixi task add bar "python bar.py" --cwd scripts
```
This will add the following line to `pixi.toml`:
-```toml title="pixi.toml" showLineNumbers
+```toml title="pixi.toml"
[tasks]
bar = { cmd = "python bar.py", cwd = "scripts" }
```
@@ -155,30 +155,30 @@ Next to running actual executable like `./myprogram`, `cmake` or `python` the sh
### Syntax
- **Boolean list:** use `&&` or `||` to separate two commands.
- - `&&`: if the command before `&&` succeeds continue with the next command.
- - `||`: if the command before `||` fails continue with the next command.
+ - `&&`: if the command before `&&` succeeds continue with the next command.
+ - `||`: if the command before `||` fails continue with the next command.
- **Sequential lists:** use `;` to run two commands without checking if the first command failed or succeeded.
- **Environment variables:**
- - Set env variable using: `export ENV_VAR=value`
- - Use env variable using: `$ENV_VAR`
- - unset env variable using `unset ENV_VAR`
+ - Set env variable using: `export ENV_VAR=value`
+ - Use env variable using: `$ENV_VAR`
+ - unset env variable using `unset ENV_VAR`
- **Shell variables:** Shell variables are similar to environment variables, but won’t be exported to spawned commands.
- - Set them: `VAR=value`
- - use them: `VAR=value && echo $VAR`
+ - Set them: `VAR=value`
+ - use them: `VAR=value && echo $VAR`
- **Pipelines:** Use the stdout output of a command into the stdin a following command
- - `|`: `echo Hello | python receiving_app.py`
- - `|&`: use this to also get the stderr as input.
+ - `|`: `echo Hello | python receiving_app.py`
+ - `|&`: use this to also get the stderr as input.
- **Command substitution:** `$()` to use the output of a command as input for another command.
- - `python main.py $(git rev-parse HEAD)`
+ - `python main.py $(git rev-parse HEAD)`
- **Negate exit code:** `! ` before any command will negate the exit code from 1 to 0 or visa-versa.
- **Redirects:** `>` to redirect the stdout to a file.
- - `echo hello > file.txt` will put `hello` in `file.txt` and overwrite existing text.
- - `python main.py 2> file.txt` will put the `stderr` output in `file.txt`.
- - `python main.py &> file.txt` will put the `stderr` **and** `stdout` in `file.txt`.
- - `echo hello > file.txt` will append `hello` to the existing `file.txt`.
+ - `echo hello > file.txt` will put `hello` in `file.txt` and overwrite existing text.
+ - `python main.py 2> file.txt` will put the `stderr` output in `file.txt`.
+ - `python main.py &> file.txt` will put the `stderr` **and** `stdout` in `file.txt`.
+ - `echo hello > file.txt` will append `hello` to the existing `file.txt`.
- **Glob expansion:** `*` to expand all options.
- - `echo *.py` will echo all filenames that end with `.py`
- - `echo **/*.py` will echo all filenames that end with `.py` in this directory and all descendant directories.
- - `echo data[0-9].csv` will echo all filenames that have a single number after `data` and before `.csv`
+ - `echo *.py` will echo all filenames that end with `.py`
+ - `echo **/*.py` will echo all filenames that end with `.py` in this directory and all descendant directories.
+ - `echo data[0-9].csv` will echo all filenames that have a single number after `data` and before `.csv`
More info in [`deno_task_shell` documentation](https://deno.land/manual@v1.35.0/tools/task_runner#task-runner).
diff --git a/docs/authentication.mdx b/docs/advanced/authentication.md
similarity index 100%
rename from docs/authentication.mdx
rename to docs/advanced/authentication.md
diff --git a/docs/advanced/explain_info_command.mdx b/docs/advanced/explain_info_command.md
similarity index 98%
rename from docs/advanced/explain_info_command.mdx
rename to docs/advanced/explain_info_command.md
index 4831b2f81..d2d6b6975 100644
--- a/docs/advanced/explain_info_command.mdx
+++ b/docs/advanced/explain_info_command.md
@@ -73,7 +73,7 @@ It will re-download everything it needs the next time you install a project.
### Auth storage
-Check the [authentication documentation](./../authentication)
+Check the [authentication documentation](authentication.md)
### Cache size
diff --git a/docs/advanced/multi_platform_configuration.mdx b/docs/advanced/multi_platform_configuration.md
similarity index 91%
rename from docs/advanced/multi_platform_configuration.mdx
rename to docs/advanced/multi_platform_configuration.md
index 3522ace46..e23459fc5 100644
--- a/docs/advanced/multi_platform_configuration.mdx
+++ b/docs/advanced/multi_platform_configuration.md
@@ -4,12 +4,12 @@ title: Multi platform config
description: Learn how to set up for different platforms/OS's
---
-[Pixi's vision](./../vision) includes being supported on all major platforms. Sometimes that needs some extra configuration to work well.
+[Pixi's vision](../vision.md) includes being supported on all major platforms. Sometimes that needs some extra configuration to work well.
On this page, you will learn what you can configure to align better with the platform you are making your application for.
Here is an example `pixi.toml` that highlights some of the features:
-```toml showLineNumbers title="pixi.toml"
+```toml title="pixi.toml"
[project]
# Default project info....
# A list of platforms you are supporting with your package.
@@ -61,7 +61,7 @@ If you are targeting a specific platform in your target specifier that was not s
It might happen that you want to install a certain dependency only on a specific platform, or you might want to use a different version on different platforms.
-```toml title="pixi.toml" showLineNumbers
+```toml title="pixi.toml"
[dependencies]
python = ">=3.8"
@@ -90,7 +90,7 @@ pixi add --build --platform osx-64 clang
Which results in this.
-```toml title="pixi.toml" showlinenumbers
+```toml title="pixi.toml"
[target.win-64.host-dependencies]
posix = "1.0.0.*"
@@ -105,7 +105,7 @@ Generated activation scripts are often in this category, default scripts in unix
To deal with this, you can define your activation scripts using the target definition.
-```toml title="pixi.toml" showlinenumbers
+```toml title="pixi.toml"
[activation]
scripts = ["setup.sh", "local_setup.bash"]
diff --git a/docs/basic_usage.mdx b/docs/basic_usage.md
similarity index 84%
rename from docs/basic_usage.mdx
rename to docs/basic_usage.md
index 91bb7facf..8e8ea07de 100644
--- a/docs/basic_usage.mdx
+++ b/docs/basic_usage.md
@@ -3,8 +3,7 @@ part: pixi
title: Basic usage
description: Taking your first steps with pixi
---
-
-Make sure that you have `pixi` installed, this should print the help function, check the [installation manual](overview) if it doesn't.
+Ensure you've got `pixi` set up. If running `pixi` doesn't show the help, see the [getting started](index.md) if it doesn't.
```shell
pixi
@@ -25,7 +24,7 @@ pixi add python
Create a file named `hello_world.py` in the directory and paste the following code into the file.
-```python title="hello_world.py" showLineNumbers
+```py title="hello_world.py"
def hello():
print("Hello World, to the new revolution in package management.")
@@ -60,11 +59,13 @@ exit
```
You've just learned the basic features of pixi:
-1. adding a dependency.
+
+1. initializing a project
+2. adding a dependency.
2. adding a task, and executing it.
3. running a program.
+
Feel free to play around with what you just learned like adding more tasks, dependencies or code.
-If you want to learn more, checkout out our [in-depth documentation](./advanced)
Happy coding!
diff --git a/docs/cli.mdx b/docs/cli.md
similarity index 88%
rename from docs/cli.mdx
rename to docs/cli.md
index 573ffb32a..843aac9bd 100644
--- a/docs/cli.mdx
+++ b/docs/cli.md
@@ -16,7 +16,7 @@ description: All pixi cli subcommands
This command is used to create a new project.
It initializes a `pixi.toml` file and also prepares a `.gitignore` to prevent the environment from being added to `git`.
-#### Options
+##### Options
- `--channel (-c)`: specify a channel that the project uses. Defaults to `conda-forge`. (Allowed to be used more than once)
@@ -31,9 +31,9 @@ pixi init --channel conda-forge --channel bioconda myproject
Adds dependencies to the `pixi.toml`.
It will only add if the package with its version constraint is able to work with rest of the dependencies in the project.
-[More info](./advanced/multi_platform_configuration) on multi platform configuration.
+[More info](advanced/multi_platform_configuration.md) on multi-platform configuration.
-#### Options
+##### Options
- `--manifest-path`: the path to `pixi.toml`, by default it searches for one in the parent directories.
- `--host`: Specify that it is a host dependency, important for building a package.
@@ -56,7 +56,7 @@ pixi add --platform osx-64 --build clang
Installs all dependencies specified in the lockfile `pixi.lock`.
Which gets generated on `pixi add` or when you manually change the `pixi.toml` file and run `pixi install`.
-#### Options
+##### Options
- `--manifest-path`: the path to `pixi.toml`, by default it searches for one in the parent directories.
- `--frozen`: install the environment as defined in the lockfile. Without checking the status of the lockfile.
@@ -77,7 +77,7 @@ The custom tasks defined in the `pixi.toml` are also available through the run c
You cannot run `pixi run source setup.bash` as `source` is not available in the `deno_task_shell` commandos and not an executable.
-#### Options
+##### Options
- `--manifest-path`: the path to `pixi.toml`, by default it searches for one in the parent directories.
- `--frozen`: install the environment as defined in the lockfile. Without checking the status of the lockfile.
@@ -91,19 +91,21 @@ pixi run --frozen python
pixi run --locked python
# If you have specified a custom task in the pixi.toml you can run it with run as well
pixi run build
+# Extra arguments will be passed to the tasks command.
+pixi run task argument1 argument2
```
-:::info
-In `pixi` the [`deno_task_shell`](https://deno.land/manual@v1.35.0/tools/task_runner#task-runner) is the underlying runner of the run command.
-Checkout their [documentation](https://deno.land/manual@v1.35.0/tools/task_runner#task-runner) for the syntax and available commands.
-This is done so that the run commands can be run across all platforms.
-:::
+!!! info
+ In `pixi` the [`deno_task_shell`](https://deno.land/manual@v1.35.0/tools/task_runner#task-runner) is the underlying runner of the run command.
+ Checkout their [documentation](https://deno.land/manual@v1.35.0/tools/task_runner#task-runner) for the syntax and available commands.
+ This is done so that the run commands can be run across all platforms.
+
## `task`
If you want to make a shorthand for a specific command you can add a task for it.
-#### Options
+##### Options
- `--manifest-path`: the path to `pixi.toml`, by default it searches for one in the parent directories.
@@ -111,7 +113,7 @@ If you want to make a shorthand for a specific command you can add a task for it
Add a task to the `pixi.toml`, use `--depends-on` to add tasks you want to run before this task, e.g. build before an execute task.
-#### Options
+##### Options
- `--platform`: the platform for which this task should be added.
- `--depends-on`: the task it depends on to be run before the one your adding.
- `--cwd`: the working directory for the task relative to the root of the project.
@@ -139,6 +141,8 @@ Which you can then run with the `run` command:
```shell
pixi run cow
+# Extra arguments will be passed to the tasks command.
+pixi run test --test test1
```
### `task remove`
@@ -165,18 +169,18 @@ cow = "cowpy \"Hello User\""
moo = { depends_on = ["cow"] }
```
-:::info
-In `pixi` the [`deno_task_shell`](https://deno.land/manual@v1.35.0/tools/task_runner#task-runner) is the underlying runner of the tasks.
-Checkout their [documentation](https://deno.land/manual@v1.35.0/tools/task_runner#task-runner) for the syntax and available commands.
-This is done so that the tasks defined can be run across all platforms.
-:::
+!!! info
+ In `pixi` the [`deno_task_shell`](https://deno.land/manual@v1.35.0/tools/task_runner#task-runner) is the underlying runner of the tasks.
+ Checkout their [documentation](https://deno.land/manual@v1.35.0/tools/task_runner#task-runner) for the syntax and available commands.
+ This is done so that the tasks defined can be run across all platforms.
+
## `shell`
This command starts a new shell in the project's environment.
To exit the pixi shell, simply run `exit`.
-#### Options
+#####Options
- `--manifest-path`: the path to `pixi.toml`, by default it searches for one in the parent directories.
- `--frozen`: install the environment as defined in the lockfile. Without checking the status of the lockfile.
@@ -196,9 +200,9 @@ exit
## `info`
Shows helpful information about the pixi installation, cache directories, disk usage, and more.
-More information [here](./advanced/explain_info_command).
+More information [here](advanced/explain_info_command.md).
-#### Options
+#####Options
- `--extended`: extend the information with more slow queries to the system, like directory sizes.
- `--json`: Get a machine-readable version of the information as output.
@@ -225,11 +229,11 @@ This command is used to authenticate the user's access to remote hosts such as `
Store authentication information for given host.
-:::tip
-The host is real hostname not a channel.
-:::
+!!! tip
+ The host is real hostname not a channel.
+
-#### Options
+##### Options
- `--token`: The token to use for authentication with prefix.dev.
- `--username`: The username to use for basic HTTP authentication
@@ -263,7 +267,7 @@ global(system) level.
This command installs a package into its own environment and adds the binary to `PATH`, allowing you to access it anywhere on your system without activating the environment.
-#### Options
+##### Options
- `--channel (-c)`: specify a channel that the project uses. Defaults to `conda-forge`. (Allowed to be used more than once)
@@ -320,7 +324,7 @@ pixi global remove pre-commit
This subcommand allows you to modify the project configuration through the command line interface.
-#### Options
+##### Options
- `--manifest-path`: the path to `pixi.toml`, by default it searches for one in the parent directories.
- `--no-install`: do not update the environment, only add changed packages to the lock-file.
@@ -330,7 +334,7 @@ This subcommand allows you to modify the project configuration through the comma
Add channels to the channel list in the project configuration.
When you add channels, the channels are tested for existence, added to the lockfile and the environment is reinstalled.
-#### Options
+##### Options
- `--no-install`: do not update the environment, only add changed packages to the lock-file.
diff --git a/docs/configuration.mdx b/docs/configuration.md
similarity index 85%
rename from docs/configuration.mdx
rename to docs/configuration.md
index b3a027f5c..1b49965f8 100644
--- a/docs/configuration.mdx
+++ b/docs/configuration.md
@@ -51,13 +51,13 @@ If you want to use channels hosted on `anaconda.org` you only need to use the na
channels = ["conda-forge", "robostack", "bioconda", "nvidia", "pytorch"]
```
-Channels situated on the file system are also supported with file paths:
+Channels situated on the file system are also supported with **absolute** file paths:
```toml
[project]
channels = ["conda-forge", "file:///home/user/staged-recipes/build_artifacts"]
```
-To access private or public channels on [prefix.dev](prefix.dev) or [Quetz](https://github.com/mamba-org/quetz) use the url including the hostname:
+To access private or public channels on [prefix.dev](https://prefix.dev/channels) or [Quetz](https://github.com/mamba-org/quetz) use the url including the hostname:
```toml
[project]
channels = ["conda-forge", "https://repo.prefix.dev/channel-name"]
@@ -115,7 +115,7 @@ URL of the project source repository.
repository = "https://github.com/prefix-dev/pixi"
```
-### `documentation`
+### `documentation` (optional)
URL of the project documentation.
```toml
[project]
@@ -126,8 +126,8 @@ documentation = "https://pixi.sh"
Tasks are a way to automate certain custom commands in your project.
For example, a `lint` or `format` step.
Tasks in a pixi project are essentially cross-platform shell commands, with a unified syntax across platforms.
-For more in-depth information, check the [Advanced tasks documentation](advanced/advanced_tasks).
-Pixi's tasks are run in a pixi environment using `pixi run` and are executed using the [`deno_task_shell`](advanced/advanced_tasks#our-task-runner-deno_task_shell).
+For more in-depth information, check the [Advanced tasks documentation](advanced/advanced_tasks.md).
+Pixi's tasks are run in a pixi environment using `pixi run` and are executed using the [`deno_task_shell`](advanced/advanced_tasks.md#our-task-runner-deno_task_shell).
```toml
[tasks]
@@ -136,10 +136,10 @@ cmd = { cmd="echo Same as a simple task but now more verbose"}
depending = { cmd="echo run after simple", depends_on="simple"}
alias = { depends_on=["depending"]}
```
-You can modify this table using [`pixi task`](cli#task).
-:::note
-Specify different tasks for different platforms using the [target](#the-target-table) table
-:::
+You can modify this table using [`pixi task`](cli.md#task).
+!!! note
+ Specify different tasks for different platforms using the [target](#the-target-table) table
+
## The `system-requirements` table
The system requirements are used to define minimal system specifications used during dependency resolution.
@@ -214,13 +214,13 @@ package2 = ">1.2,<=1.4"
package3 = ">=1.2.3|<1.0.0"
```
-:::tip
-The dependencies can be easily added using the `pixi add` command line.
-Running `add` for an existing dependency will replace it with the newest it can use.
-:::
-:::note
-To specify different dependencies for different platforms use the [target](#the-target-table) table
-:::
+!!! tip
+ The dependencies can be easily added using the `pixi add` command line.
+ Running `add` for an existing dependency will replace it with the newest it can use.
+
+!!! note
+ To specify different dependencies for different platforms use the [target](#the-target-table) table
+
### `dependencies`
Add any conda package dependency that you want to install into the environment.
@@ -232,11 +232,11 @@ python = ">3.9,<=3.11"
rust = "1.72"
```
-:::note
-All packages added to the `dependencies` table are also included as dependencies of the binary build by `pixi build`.
+!!!note
+ All packages added to the `dependencies` table are also included as dependencies of the binary build by `pixi build`.
+
+ To only include certain packages in different stages of the build see [`build-dependencies`](#build-dependencies) and [`host-dependencies`](#host-dependencies).
-To only include certain packages in different stages of the build see [`build-dependencies`](#build-dependencies) and [`host-dependencies`](#host-dependencies).
-:::
### `host-dependencies`
@@ -270,12 +270,12 @@ Typical examples of build dependencies are:
If the project is cross-compiled, the architecture of the build and target machine might differ.
* `cmake` is invoked on the build machine to generate additional code- or project-files which are then include in the compilation process.
-:::info
-The _build_ target refers to the machine that will execute the build.
-Programs and libraries installed by these dependencies will be executed on the build machine.
+!!! info
+ The _build_ target refers to the machine that will execute the build.
+ Programs and libraries installed by these dependencies will be executed on the build machine.
+
+ For example, if you compile on a MacBook with an Apple Silicon chip but target Linux x86_64 then your *build* platform is `osx-arm64` and your *host* platform is `linux-64`.
-For example, if you compile on a MacBook with an Apple Silicon chip but target Linux x86_64 then your *build* platform is `osx-arm64` and your *host* platform is `linux-64`.
-:::
## The `activation` table
If you want to run an activation script inside the environment when either doing a `pixi run` or `pixi shell` these can be defined here.
@@ -285,9 +285,9 @@ The scripts defined in this table will be sourced when the environment is activa
[activation]
scripts = ["env_setup.sh"]
```
-:::note
-Specify different scripts for different platforms using the [target](#the-target-table) table
-:::
+!!! note
+ Specify different scripts for different platforms using the [target](#the-target-table) table
+
## The `target` table
@@ -295,8 +295,9 @@ The target table is a table that allows for platform specific configuration.
Allowing you to make different sets of tasks or dependencies per platform.
The target table is currently implemented for the following sub-tables:
+
- [`activation`](#the-activation-table)
-- [`dependencies`](#the-dependencies-table)
+- [`dependencies`](#dependencies)
- [`tasks`](#the-tasks-table)
The target table is defined using `[target.PLATFORM.SUB-TABLE]`.
diff --git a/docs/examples.mdx b/docs/examples.mdx
deleted file mode 100644
index ebae798fb..000000000
--- a/docs/examples.mdx
+++ /dev/null
@@ -1,23 +0,0 @@
----
-part: pixi
-title: Examples
-description: Examples of projects run with pixi
----
-
-
-
-
-
-
diff --git a/docs/examples/cpp-sdl.mdx b/docs/examples/cpp-sdl.md
similarity index 67%
rename from docs/examples/cpp-sdl.mdx
rename to docs/examples/cpp-sdl.md
index cd5602582..03e83622e 100644
--- a/docs/examples/cpp-sdl.mdx
+++ b/docs/examples/cpp-sdl.md
@@ -4,7 +4,7 @@ title: SDL example
description: How to build and run an SDL application in C++
---
-![](/assets/docs/sdl_examle.png)
+![](https://storage.googleapis.com/prefix-cms-images/docs/sdl_examle.png)
The `cpp-sdl` example is located in the pixi repository.
```shell
@@ -23,7 +23,7 @@ Run the `start` command
pixi run start
```
-Using the [`depends_on`](../advanced/advanced_tasks#depends-on) feature you only needed to run the `start` task but under water it is running the following tasks.
+Using the [`depends_on`](../advanced/advanced_tasks.md#depends-on) feature you only needed to run the `start` task but under water it is running the following tasks.
```shell
# Configure the CMake project
diff --git a/docs/examples/opencv.mdx b/docs/examples/opencv.md
similarity index 86%
rename from docs/examples/opencv.mdx
rename to docs/examples/opencv.md
index da9fc7a67..690d46caf 100644
--- a/docs/examples/opencv.mdx
+++ b/docs/examples/opencv.md
@@ -25,7 +25,7 @@ pixi run start
```
The screen that starts should look like this:
-![](/assets/docs/opencv_face_recognition.png)
+![](https://storage.googleapis.com/prefix-cms-images/docs/opencv_face_recognition.png)
Check out the `webcame_capture.py` to see how we detect a face.
@@ -49,4 +49,4 @@ After that press `ESC` which will start the calibration.
When the calibration is done, the camera will be used again to find the distance to the checkerboard.
-![](/assets/docs/calibration_board_detected.png)
+![](https://storage.googleapis.com/prefix-cms-images/docs/calibration_board_detected.png)
diff --git a/docs/examples/ros2-nav2.mdx b/docs/examples/ros2-nav2.md
similarity index 100%
rename from docs/examples/ros2-nav2.mdx
rename to docs/examples/ros2-nav2.md
diff --git a/docs/index.md b/docs/index.md
new file mode 100644
index 000000000..40ca2ecef
--- /dev/null
+++ b/docs/index.md
@@ -0,0 +1,113 @@
+---
+part: pixi
+title: Getting Started
+description: Package management made easy
+---
+
+Pixi is a package management tool for developers.
+It allows the developer to install libraries and applications in a reproducible way.
+Use pixi cross-platform, on Windows, Mac and Linux.
+
+## Installation
+
+To install `pixi` you can run the following command in your terminal:
+
+=== "Linux & macOS"
+ ```shell
+ curl -fsSL https://pixi.sh/install.sh | bash
+ ```
+
+ The above invocation will automatically download the latest version of `pixi`, extract it, and move the `pixi` binary to `~/.pixi/bin`.
+ If this directory does not already exist, the script will create it.
+
+ The script will also update your `~/.bash_profile` to include `~/.pixi/bin` in your PATH, allowing you to invoke the `pixi` command from anywhere.
+
+=== "Windows"
+ PowerShell:
+ ```powershell
+ iwr -useb https://pixi.sh/install.ps1 | iex
+ ```
+
+ The above invocation will automatically download the latest version of `pixi`, extract it, and move the `pixi` binary to `LocalAppData/pixi/bin`.
+ If this directory does not already exist, the script will create it.
+
+ The command will also automatically add `LocalAppData/pixi/bin` to your path allowing you to invoke `pixi` from anywhere.
+
+
+!!! tip
+
+ You might need to restart your terminal or source your shell for the changes to take effect.
+
+
+## Autocompletion
+
+To get autocompletion run:
+
+=== "Linux & macOS"
+ ```shell
+ # Pick your shell (use `echo $SHELL` to find the shell you are using.):
+ echo 'eval "$(pixi completion --shell bash)"' >> ~/.bashrc
+ echo 'eval "$(pixi completion --shell zsh)"' >> ~/.zshrc
+ echo 'pixi completion --shell fish | source' >> ~/.config/fish/config.fish
+ echo 'eval (pixi completion --shell elvish | slurp)' >> ~/.elvish/rc.elv
+ ```
+=== "Windows"
+ PowerShell:
+ ```powershell
+ Add-Content -Path $PROFILE -Value '(& pixi completion --shell powershell) | Out-String | Invoke-Expression'
+ ```
+
+
+And then restart the shell or source the shell config file.
+
+## Alternative installation methods
+
+Although we recommend installing pixi through the above method we also provide additional installation methods.
+
+### Homebrew
+
+Pixi is available via homebrew. To install pixi via homebrew simply run:
+
+```shell
+brew install pixi
+```
+
+### Windows installer
+
+We provide an `msi` installer on [our Github releases page](https://github.com/prefix-dev/pixi/releases/latest).
+The installer will download pixi and add it to the path.
+
+### Install from source
+
+pixi is 100% written in Rust, and therefore it can be installed, built and tested with cargo.
+To start using pixi from a source build run:
+
+```shell
+cargo install --locked --git https://github.com/prefix-dev/pixi.git
+```
+
+or when you want to make changes use:
+
+```shell
+cargo build
+cargo test
+```
+
+If you have any issues building because of the dependency on `rattler` checkout
+it's [compile steps](https://github.com/mamba-org/rattler/tree/main#give-it-a-try)
+
+## Uninstall
+
+To uninstall pixi from your system, simply remove the binary.
+
+=== "Linux & macOS"
+ ```shell
+ rm ~/.pixi/bin/pixi
+ ```
+=== "Windows"
+ ```shell
+ $PIXI_BIN = "$Env:LocalAppData\pixi\bin\pixi"; Remove-Item -Path $PIXI_BIN
+ ```
+
+After this command, you can still use the tools you installed with pixi.
+To remove these as well, just remove the whole `~/.pixi` directory and remove the directory from your path.
diff --git a/docs/installation.mdx b/docs/installation.mdx
deleted file mode 100644
index 3fba8e94f..000000000
--- a/docs/installation.mdx
+++ /dev/null
@@ -1,103 +0,0 @@
----
-part: pixi
-title: Installation
-description: Learn how to install pixi on your machine
----
-
-To install pixi you can run the following command in your terminal:
-
-```bash
-curl -fsSL https://raw.githubusercontent.com/prefix-dev/pixi/main/install/install.sh | bash
-```
-
-Or on windows
-
-```shell
-iwr -useb https://raw.githubusercontent.com/prefix-dev/pixi/main/install/install.ps1 | iex
-```
-
-The above invocation will automatically download the latest version of `pixi`, extract it, and move the `pixi` binary to `~/.pixi/bin` (or `LocalAppData/pixi/bin` on Windows).
-If this directory does not already exist, the script will create it.
-
-On unix based platforms (linux and macOS) it will also update your ~/.bash_profile to include ~/.pixi/bin in your PATH, allowing you to invoke the pixi command from anywhere.
-
-On Windows `LocalAppData/pixi/bin` is automatically added to the path.
-
-> **Note**: You might need to restart your terminal or source your shell for the changes to take effect.
-
-## Alternative installation methods
-
-Although we recommend installing pixi through the above method we also provide additional installation methods.
-
-### Homebrew
-
-Pixi is available via homebrew. To install pixi via homebrew simply run:
-
-```shell
-brew install pixi
-```
-
-### Windows installer
-
-We provide an `msi` installer on [our Github releases page](https://github.com/prefix-dev/pixi/releases/latest).
-The installer will download pixi and add it to the path.
-
-### Install from source
-
-pixi is 100% written in Rust and therefore it can be installed, build and
-tested with cargo.
-To start using pixi from a source build run:
-
-```shell
-cargo install --locked --git https://github.com/prefix-dev/pixi.git
-```
-
-or when you want to make changes use:
-
-```shell
-cargo build
-cargo test
-```
-
-If you have any issues building because of the dependency on `rattler` checkout
-it's [compile steps](https://github.com/mamba-org/rattler/tree/main#give-it-a-try)
-
-## Uninstall
-
-To uninstall the pixi binary should be removed.
-Delete pixi from the `$PIXI_DIR` which is default to `~/.pixi/bin/pixi`
-
-So on linux its:
-
-```shell
-rm ~/.pixi/bin/pixi
-```
-
-and on windows:
-
-```shell
-$PIXI_BIN = "$Env:LocalAppData\pixi\bin\pixi"; Remove-Item -Path $PIXI_BIN
-```
-
-After this command you can still use the tools you installed with pixi.
-To remove these as well just remove the whole `~/.pixi` directory and remove the directory from your path.
-
-## Autocompletion
-
-To get autocompletion run:
-
-```shell
-# On unix (MacOS or Linux), pick your shell (use `echo $SHELL` to find the shell you are using.):
-echo 'eval "$(pixi completion --shell bash)"' >> ~/.bashrc
-echo 'eval "$(pixi completion --shell zsh)"' >> ~/.zshrc
-echo 'pixi completion --shell fish | source' >> ~/.config/fish/config.fish
-echo 'eval (pixi completion --shell elvish | slurp)' >> ~/.elvish/rc.elv
-```
-
-For PowerShell on Windows:
-
-```pwsh
-Add-Content -Path $PROFILE -Value '(& pixi completion --shell powershell) | Out-String | Invoke-Expression'
-```
-
-And then restart the shell or source the shell config file.
diff --git a/docs/overview.mdx b/docs/overview.mdx
deleted file mode 100644
index 9a1f9394a..000000000
--- a/docs/overview.mdx
+++ /dev/null
@@ -1,142 +0,0 @@
----
-part: pixi
-title: Getting Started
-description: Package management made easy
----
-
-Pixi is a package management tool for developers.
-It allows the developer to install libraries and applications in a reproducible way.
-Use pixi cross-platform, on Windows, Mac and Linux.
-
-# Installation
-
-To install `pixi` you can run the following command in your terminal:
-
-
-
- ```bash
- curl -fsSL https://pixi.sh/install.sh | bash
- ```
-
- The above invocation will automatically download the latest version of `pixi`, extract it, and move the `pixi` binary to `~/.pixi/bin`.
- If this directory does not already exist, the script will create it.
-
- The script will also update your `~/.bash_profile` to include `~/.pixi/bin` in your PATH, allowing you to invoke the `pixi` command from anywhere.
-
-
-
- ```shell
- iwr -useb https://pixi.sh/install.ps1 | iex
- ```
-
- The above invocation will automatically download the latest version of `pixi`, extract it, and move the `pixi` binary to `LocalAppData/pixi/bin`.
- If this directory does not already exist, the script will create it.
-
- The command will also automatically add `LocalAppData/pixi/bin` to your path allowing you to invoke `pixi` from anywhere.
-
-
-
-
-:::tip
-
-You might need to restart your terminal or source your shell for the changes to take effect.
-
-:::
-
-# Autocompletion
-
-To get autocompletion run:
-
-
-
- ```shell
- # Pick your shell (use `echo $SHELL` to find the shell you are using.):
- echo 'eval "$(pixi completion --shell bash)"' >> ~/.bashrc
- echo 'eval "$(pixi completion --shell zsh)"' >> ~/.zshrc
- echo 'pixi completion --shell fish | source' >> ~/.config/fish/config.fish
- echo 'eval (pixi completion --shell elvish | slurp)' >> ~/.elvish/rc.elv
- ```
-
-
- ```powershell
- Add-Content -Path $PROFILE -Value '(& pixi completion --shell powershell) | Out-String | Invoke-Expression'
- ```
-
-
-
-And then restart the shell or source the shell config file.
-
-## Alternative installation methods
-
-Although we recommend installing pixi through the above method we also provide additional installation methods.
-
-### Homebrew
-
-Pixi is available via homebrew. To install pixi via homebrew simply run:
-
-```shell
-brew install pixi
-```
-
-### Windows installer
-
-We provide an `msi` installer on [our Github releases page](https://github.com/prefix-dev/pixi/releases/latest).
-The installer will download pixi and add it to the path.
-
-### Install from source
-
-pixi is 100% written in Rust, and therefore it can be installed, built and tested with cargo.
-To start using pixi from a source build run:
-
-```shell
-cargo install --locked --git https://github.com/prefix-dev/pixi.git
-```
-
-or when you want to make changes use:
-
-```shell
-cargo build
-cargo test
-```
-
-If you have any issues building because of the dependency on `rattler` checkout
-it's [compile steps](https://github.com/mamba-org/rattler/tree/main#give-it-a-try)
-
-## Uninstall
-
-To uninstall pixi from your system, simply remove the binary.
-
-
-
- ```shell
- rm ~/.pixi/bin/pixi
- ```
-
-
- ```shell
- $PIXI_BIN = "$Env:LocalAppData\pixi\bin\pixi"; Remove-Item -Path $PIXI_BIN
- ```
-
-
-
-After this command, you can still use the tools you installed with pixi.
-To remove these as well, just remove the whole `~/.pixi` directory and remove the directory from your path.
-
-
-
-
-
-
-
diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css
new file mode 100644
index 000000000..224b52c33
--- /dev/null
+++ b/docs/stylesheets/extra.css
@@ -0,0 +1,5 @@
+:root {
+ --md-primary-fg-color: #fabd0e;
+ --md-primary-fg-color--light: #ffe9ad;
+ --md-primary-fg-color--dark: #916a00;
+}
diff --git a/docs/vision.mdx b/docs/vision.md
similarity index 97%
rename from docs/vision.mdx
rename to docs/vision.md
index 9ff36c81c..4ffbbfd6d 100644
--- a/docs/vision.mdx
+++ b/docs/vision.md
@@ -4,10 +4,12 @@ title: Pixi Vision
description: What is the vision for pixi?
---
+# Vision
+
We created `pixi` because we want to have a cargo/npm/yarn like package management experience for conda. We really love what the conda packaging ecosystem achieves, but we think that the user experience can be improved a lot.
Modern package managers like `cargo` have shown us, how great a package manager can be. We want to bring that experience to the conda ecosystem.
-# Pixi values
+## Pixi values
We want to make pixi a great experience for everyone, so we have a few values that we want to uphold:
@@ -17,11 +19,11 @@ We want to make pixi a great experience for everyone, so we have a few values th
4. **Single Tool**. We want to integrate most common uses when working on a development project with Pixi, so it should support at least dependency management, command management, building and uploading packages. You should not need to reach to another external tool for this.
5. **Fun**. It should be fun to use pixi and not cause frustrations, you should not need to think about it a lot and it should generally just get out of your way.
-# Conda
+## Conda
We are building on top of the conda packaging ecosystem, this means that we have a huge number of packages available for different platforms on [conda-forge](https://conda-forge.org/). We believe the conda packaging ecosystem provides a solid base to manage your dependencies. Conda-forge is community maintained and very open to contributions. It is widely used in data science and scientific computing, robotics and other fields. And has a proven track record.
-# Target languages
+## Target languages
Essentially, we are language agnostics, we are targeting any language that can be installed with conda. Including: C++, Python, Rust, Zig etc.
But we do believe the python ecosystem can benefit from a good package manager that is based on conda.
diff --git a/mkdocs.yml b/mkdocs.yml
new file mode 100644
index 000000000..059890500
--- /dev/null
+++ b/mkdocs.yml
@@ -0,0 +1,72 @@
+site_name: "Pixi by prefix.dev"
+
+extra:
+ homepage: https://prefix.dev
+
+theme:
+ name: material
+ favicon: https://prefix.dev/logo_light_no_text.svg
+ logo: https://prefix.dev/logo_light_no_text.svg
+ site_url: https://prefix.dev
+ palette:
+ primary: custom
+ icon:
+ edit: material/pencil
+ view: material/eye
+ features:
+ - content.tabs.link
+ - content.code.copy
+ - content.action.edit
+ # - content.code.select Sponsor only
+ - navigation.instant
+ - navigation.instant.progress
+ - navigation.tracking
+ - navigation.sections
+ - navigation.top
+
+
+
+extra_css:
+ - stylesheets/extra.css
+
+repo_url: https://github.com/prefix-dev/pixi/
+edit_uri: edit/main/docs/
+
+markdown_extensions:
+ - admonition
+ - footnotes
+ - pymdownx.highlight:
+ anchor_linenums: true
+ line_spans: __span
+ pygments_lang_class: true
+ - pymdownx.inlinehilite
+ - pymdownx.snippets
+ - pymdownx.details
+ - pymdownx.superfences
+ - pymdownx.tabbed:
+ alternate_style: true
+ - toc:
+ toc_depth: 3
+ permalink: "#"
+
+nav:
+ - Getting Started : index.md
+ - Basic Usage: basic_usage.md
+ - Reference (CLI): cli.md
+ - Configuration: configuration.md
+ - Vision: vision.md
+ - Indepth:
+ - Authentication: advanced/authentication.md
+ - Tasks: advanced/advanced_tasks.md
+ - Multi Platform: advanced/multi_platform_configuration.md
+ - Info command: advanced/explain_info_command.md
+ - Examples:
+ - C++/Cmake: examples/cpp-sdl.md
+ - OpenCV: examples/opencv.md
+ - ROS2: examples/ros2-nav2.md
+ - Community: Community.md
+ - FAQ: FAQ.md
+
+
+plugins:
+ - search
diff --git a/pixi.lock b/pixi.lock
index 180455e33..5b56a003d 100644
--- a/pixi.lock
+++ b/pixi.lock
@@ -18,50 +18,135 @@ metadata:
inputs_metadata: null
custom_metadata: null
package:
-- name: _libgcc_mutex
+- platform: linux-64
+ name: _libgcc_mutex
version: '0.1'
+ category: main
manager: conda
- platform: linux-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
hash:
md5: d7c89558ba9fa0495403155b64376d81
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
- optional: false
- category: main
build: conda_forge
arch: x86_64
subdir: linux-64
build_number: 0
-- name: _openmp_mutex
+- platform: linux-64
+ name: _openmp_mutex
version: '4.5'
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgomp: '>=7.5.0'
- _libgcc_mutex: ==0.1 conda_forge
+ - libgomp >=7.5.0
+ - _libgcc_mutex ==0.1 conda_forge
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
hash:
md5: 73aaf86a425cc6e73fcf236a5a46396d
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
- optional: false
- category: main
build: 2_gnu
arch: x86_64
subdir: linux-64
build_number: 0
-- name: binutils
+- platform: linux-64
+ name: babel
+ version: 2.13.1
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ - pytz
+ - setuptools
+ url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: 3ccff479c246692468f604df9c85ef26
+ sha256: 1f955c700db16f65b16c9e9c1613436480d5497970b8030b7a9ebe1620cc2147
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 6948100
+ timestamp: 1698174685067
+- platform: osx-64
+ name: babel
+ version: 2.13.1
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ - pytz
+ - setuptools
+ url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: 3ccff479c246692468f604df9c85ef26
+ sha256: 1f955c700db16f65b16c9e9c1613436480d5497970b8030b7a9ebe1620cc2147
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 6948100
+ timestamp: 1698174685067
+- platform: osx-arm64
+ name: babel
+ version: 2.13.1
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ - pytz
+ - setuptools
+ url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: 3ccff479c246692468f604df9c85ef26
+ sha256: 1f955c700db16f65b16c9e9c1613436480d5497970b8030b7a9ebe1620cc2147
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 6948100
+ timestamp: 1698174685067
+- platform: win-64
+ name: babel
+ version: 2.13.1
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ - pytz
+ - setuptools
+ url: https://conda.anaconda.org/conda-forge/noarch/babel-2.13.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: 3ccff479c246692468f604df9c85ef26
+ sha256: 1f955c700db16f65b16c9e9c1613436480d5497970b8030b7a9ebe1620cc2147
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 6948100
+ timestamp: 1698174685067
+- platform: linux-64
+ name: binutils
version: '2.40'
+ category: main
manager: conda
- platform: linux-64
dependencies:
- binutils_impl_linux-64: '>=2.40,<2.41.0a0'
+ - binutils_impl_linux-64 >=2.40,<2.41.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/binutils-2.40-hdd6e379_0.conda
hash:
md5: ccc940fddbc3fcd3d79cd4c654c4b5c4
sha256: 35f3b042f295fd7387de11cf426ca8ee5257e5c98b88560c6c5ad4ef3c85d38c
- optional: false
- category: main
build: hdd6e379_0
arch: x86_64
subdir: linux-64
@@ -70,36 +155,34 @@ package:
license_family: GPL
size: 30469
timestamp: 1674833987166
-- name: binutils_impl_linux-64
+- platform: linux-64
+ name: binutils_impl_linux-64
version: '2.40'
+ category: main
manager: conda
- platform: linux-64
dependencies:
- ld_impl_linux-64: ==2.40 h41732ed_0
- sysroot_linux-64: '*'
+ - ld_impl_linux-64 ==2.40 h41732ed_0
+ - sysroot_linux-64 *
url: https://conda.anaconda.org/conda-forge/linux-64/binutils_impl_linux-64-2.40-hf600244_0.conda
hash:
md5: 33084421a8c0af6aef1b439707f7662a
sha256: a7e0ea2b71a5b03d82e5a58fb6b612ab1c44d72ce161f9aa441f7ba467cd4c8d
- optional: false
- category: main
build: hf600244_0
arch: x86_64
subdir: linux-64
build_number: 0
-- name: binutils_linux-64
+- platform: linux-64
+ name: binutils_linux-64
version: '2.40'
+ category: main
manager: conda
- platform: linux-64
dependencies:
- binutils_impl_linux-64: 2.40.*
- sysroot_linux-64: '*'
+ - binutils_impl_linux-64 2.40.*
+ - sysroot_linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/binutils_linux-64-2.40-hbdbef99_2.conda
hash:
md5: adfebae9fdc63a598495dfe3b006973a
sha256: 333f3339d94c93bcc02a723e3e460cb6ff6075e05f5247e15bef5dcdcec541a3
- optional: false
- category: main
build: hbdbef99_2
arch: x86_64
subdir: linux-64
@@ -108,18 +191,113 @@ package:
license_family: BSD
size: 28178
timestamp: 1694604071236
-- name: bzip2
+- platform: linux-64
+ name: brotli-python
+ version: 1.1.0
+ category: main
+ manager: conda
+ dependencies:
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ url: https://conda.anaconda.org/conda-forge/linux-64/brotli-python-1.1.0-py311hb755f60_1.conda
+ hash:
+ md5: cce9e7c3f1c307f2a5fb08a2922d6164
+ sha256: 559093679e9fdb6061b7b80ca0f9a31fe6ffc213f1dae65bc5c82e2cd1a94107
+ build: py311hb755f60_1
+ arch: x86_64
+ subdir: linux-64
+ build_number: 1
+ constrains:
+ - libbrotlicommon 1.1.0 hd590300_1
+ license: MIT
+ license_family: MIT
+ size: 351340
+ timestamp: 1695990160360
+- platform: osx-64
+ name: brotli-python
+ version: 1.1.0
+ category: main
+ manager: conda
+ dependencies:
+ - libcxx >=15.0.7
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ url: https://conda.anaconda.org/conda-forge/osx-64/brotli-python-1.1.0-py311hdf8f085_1.conda
+ hash:
+ md5: 546fdccabb90492fbaf2da4ffb78f352
+ sha256: 0f5e0a7de58006f349220365e32db521a1fe494c37ee455e5ecf05b8fe567dcc
+ build: py311hdf8f085_1
+ arch: x86_64
+ subdir: osx-64
+ build_number: 1
+ constrains:
+ - libbrotlicommon 1.1.0 h0dc2134_1
+ license: MIT
+ license_family: MIT
+ size: 366864
+ timestamp: 1695990449997
+- platform: osx-arm64
+ name: brotli-python
+ version: 1.1.0
+ category: main
+ manager: conda
+ dependencies:
+ - libcxx >=15.0.7
+ - python >=3.11,<3.12.0a0
+ - python >=3.11,<3.12.0a0 *_cpython
+ - python_abi 3.11.* *_cp311
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/brotli-python-1.1.0-py311ha891d26_1.conda
+ hash:
+ md5: 5e802b015e33447d1283d599d21f052b
+ sha256: 2d78c79ccf2c17236c52ef217a4c34b762eb7908a6903d94439f787aac1c8f4b
+ build: py311ha891d26_1
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 1
+ constrains:
+ - libbrotlicommon 1.1.0 hb547adb_1
+ license: MIT
+ license_family: MIT
+ size: 343332
+ timestamp: 1695991223439
+- platform: win-64
+ name: brotli-python
+ version: 1.1.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ url: https://conda.anaconda.org/conda-forge/win-64/brotli-python-1.1.0-py311h12c1d0e_1.conda
+ hash:
+ md5: 42fbf4e947c17ea605e6a4d7f526669a
+ sha256: 5390e1e5e8e159d4893ecbfd2c08ca75ef51bdce1a4a44ff4ee9e2d596004aac
+ build: py311h12c1d0e_1
+ arch: x86_64
+ subdir: win-64
+ build_number: 1
+ constrains:
+ - libbrotlicommon 1.1.0 hcfcfb64_1
+ license: MIT
+ license_family: MIT
+ size: 322086
+ timestamp: 1695990976742
+- platform: linux-64
+ name: bzip2
version: 1.0.8
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=9.3.0'
+ - libgcc-ng >=9.3.0
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2
hash:
md5: a1fd65c7ccbf10880423d82bca54eb54
sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa
- optional: false
- category: main
build: h7f98852_4
arch: x86_64
subdir: linux-64
@@ -128,17 +306,16 @@ package:
license_family: BSD
size: 495686
timestamp: 1606604745109
-- name: bzip2
+- platform: osx-64
+ name: bzip2
version: 1.0.8
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/bzip2-1.0.8-h0d85af4_4.tar.bz2
hash:
md5: 37edc4e6304ca87316e160f5ca0bd1b5
sha256: 60ba4c64f5d0afca0d283c7addba577d3e2efc0db86002808dadb0498661b2f2
- optional: false
- category: main
build: h0d85af4_4
arch: x86_64
subdir: osx-64
@@ -147,50 +324,47 @@ package:
license_family: BSD
size: 158829
timestamp: 1618862580095
-- name: bzip2
+- platform: osx-arm64
+ name: bzip2
version: 1.0.8
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/bzip2-1.0.8-h3422bc3_4.tar.bz2
hash:
md5: fc76ace7b94fb1f694988ab1b14dd248
sha256: a3efbd06ad1432edb0163c48225421f34c2660f5cc002283a8d27e791320b549
- optional: false
- category: main
build: h3422bc3_4
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: bzip2
+- platform: win-64
+ name: bzip2
version: 1.0.8
+ category: main
manager: conda
- platform: win-64
dependencies:
- vc: '>=14.1,<15.0a0'
- vs2015_runtime: '>=14.16.27012'
+ - vc >=14.1,<15.0a0
+ - vs2015_runtime >=14.16.27012
url: https://conda.anaconda.org/conda-forge/win-64/bzip2-1.0.8-h8ffe710_4.tar.bz2
hash:
md5: 7c03c66026944073040cb19a4f3ec3c9
sha256: 5389dad4e73e4865bb485f460fc60b120bae74404003d457ecb1a62eb7abf0c1
- optional: false
- category: main
build: h8ffe710_4
arch: x86_64
subdir: win-64
build_number: 0
-- name: c-ares
+- platform: linux-64
+ name: c-ares
version: 1.19.1
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=12'
+ - libgcc-ng >=12
url: https://conda.anaconda.org/conda-forge/linux-64/c-ares-1.19.1-hd590300_0.conda
hash:
md5: e8c18d865be43e2fb3f7a145b6adf1f5
sha256: c4276b1a0e8f18ab08018b1881666656742b325e0fcf2354f714e924d28683b6
- optional: false
- category: main
build: hd590300_0
arch: x86_64
subdir: linux-64
@@ -199,17 +373,16 @@ package:
license_family: MIT
size: 113362
timestamp: 1684782732180
-- name: c-ares
+- platform: osx-64
+ name: c-ares
version: 1.19.1
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/c-ares-1.19.1-h0dc2134_0.conda
hash:
md5: b3e62631b4e1b9801477523ce1d6f355
sha256: 1de09d540facc3833e3f0a280ae987859f310f535726eff66d6f4a66045bd32c
- optional: false
- category: main
build: h0dc2134_0
arch: x86_64
subdir: osx-64
@@ -218,17 +391,16 @@ package:
license_family: MIT
size: 103004
timestamp: 1684783034995
-- name: c-ares
+- platform: osx-arm64
+ name: c-ares
version: 1.19.1
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/c-ares-1.19.1-hb547adb_0.conda
hash:
md5: e7fc7430440d255e3a9c7e5a52f7b294
sha256: fc9d0fcfb30c20c0032b294120b6ba9c01078ddb372c34dd491214c598aecc06
- optional: false
- category: main
build: hb547adb_0
arch: aarch64
subdir: osx-arm64
@@ -237,20 +409,19 @@ package:
license_family: MIT
size: 101998
timestamp: 1684783026131
-- name: c-compiler
+- platform: linux-64
+ name: c-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- binutils: '*'
- gcc: '*'
- gcc_linux-64: 12.*
+ - binutils
+ - gcc
+ - gcc_linux-64 12.*
url: https://conda.anaconda.org/conda-forge/linux-64/c-compiler-1.6.0-hd590300_0.conda
hash:
md5: ea6c792f792bdd7ae6e7e2dee32f0a48
sha256: d741ff93d5f71a83a9be0f592682f31ca2d468c37177f18a8d1a2469bb821c05
- optional: false
- category: main
build: hd590300_0
arch: x86_64
subdir: linux-64
@@ -258,21 +429,20 @@ package:
license: BSD
size: 6184
timestamp: 1689097480051
-- name: c-compiler
+- platform: osx-64
+ name: c-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- cctools: '>=949.0.1'
- clang_osx-64: 15.*
- ld64: '>=530'
- llvm-openmp: '*'
+ - cctools >=949.0.1
+ - clang_osx-64 15.*
+ - ld64 >=530
+ - llvm-openmp
url: https://conda.anaconda.org/conda-forge/osx-64/c-compiler-1.6.0-h63c33a9_0.conda
hash:
md5: d7f3b8d3a85b4e7eded31adb611bb665
sha256: fe43bbe1b7c809b618808123a662333c20417bc98ffa5dc7d6da23c3c8ec236b
- optional: false
- category: main
build: h63c33a9_0
arch: x86_64
subdir: osx-64
@@ -280,21 +450,20 @@ package:
license: BSD
size: 6250
timestamp: 1689097835926
-- name: c-compiler
+- platform: osx-arm64
+ name: c-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- cctools: '>=949.0.1'
- clang_osx-arm64: 15.*
- ld64: '>=530'
- llvm-openmp: '*'
+ - cctools >=949.0.1
+ - clang_osx-arm64 15.*
+ - ld64 >=530
+ - llvm-openmp
url: https://conda.anaconda.org/conda-forge/osx-arm64/c-compiler-1.6.0-hd291e01_0.conda
hash:
md5: 7d58fb216ad601b545826449d8d4c34e
sha256: f2e837668ff628ef8b5d54fffbfe9596cdd3820f7c5a3fc5ad48b259ff99a501
- optional: false
- category: main
build: hd291e01_0
arch: aarch64
subdir: osx-arm64
@@ -302,18 +471,17 @@ package:
license: BSD
size: 6269
timestamp: 1689097851052
-- name: c-compiler
+- platform: win-64
+ name: c-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- vs2019_win-64: '*'
+ - vs2019_win-64
url: https://conda.anaconda.org/conda-forge/win-64/c-compiler-1.6.0-hcfcfb64_0.conda
hash:
md5: 9246624ea9ea636c9801b3279f88f3a4
sha256: 10d113359a3906d9eda66062ab3a36e0f21381c8448ec50c7a9e09e0a9bb4f21
- optional: false
- category: main
build: hcfcfb64_0
arch: x86_64
subdir: win-64
@@ -321,182 +489,249 @@ package:
license: BSD
size: 6381
timestamp: 1689097760340
-- name: ca-certificates
+- platform: linux-64
+ name: ca-certificates
version: 2023.5.7
+ category: main
manager: conda
- platform: linux-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2023.5.7-hbcca054_0.conda
hash:
md5: f5c65075fc34438d5b456c7f3f5ab695
sha256: 0cf1bb3d0bfc5519b60af2c360fa4888fb838e1476b1e0f65b9dbc48b45c7345
- optional: false
- category: main
build: hbcca054_0
arch: x86_64
subdir: linux-64
build_number: 0
-- name: ca-certificates
+- platform: osx-64
+ name: ca-certificates
version: 2023.5.7
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/ca-certificates-2023.5.7-h8857fd0_0.conda
hash:
md5: b704e4b79ba0d887c4870b7b09d6a4df
sha256: a06c9c788de81da3a3868ac56781680cc1fc50a0b5a545d4453818975c141b2c
- optional: false
- category: main
build: h8857fd0_0
arch: x86_64
subdir: osx-64
build_number: 0
-- name: ca-certificates
+- platform: osx-arm64
+ name: ca-certificates
version: 2023.5.7
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/ca-certificates-2023.5.7-hf0a4a13_0.conda
hash:
md5: a8387be82224743cf849fb907790b91a
sha256: 27214b54d1cb9a92455689e20d0007a0ff9ace99b853867d53a05a04c24bdae5
- optional: false
- category: main
build: hf0a4a13_0
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: ca-certificates
+- platform: win-64
+ name: ca-certificates
version: 2023.5.7
+ category: main
manager: conda
- platform: win-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/win-64/ca-certificates-2023.5.7-h56e8100_0.conda
hash:
md5: 604212634bd8c4d6f20d44b946e8eedb
sha256: d0488a3e7a86cc11f8c847a7c12a5f1fb8567f05646faae78944807862f9d167
- optional: false
- category: main
build: h56e8100_0
arch: x86_64
subdir: win-64
build_number: 0
-- name: cctools
+- platform: osx-64
+ name: cctools
version: 973.0.1
+ category: main
manager: conda
- platform: osx-64
dependencies:
- cctools_osx-64: ==973.0.1 habff3f6_14
- ld64: ==609 ha91a046_14
- libllvm15: '>=15.0.7,<15.1.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-64/cctools-973.0.1-hd9ad811_14.conda
+ - cctools_osx-64 973.0.1 habff3f6_15
+ - ld64 609 ha91a046_15
+ - libllvm15 >=15.0.7,<15.1.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-64/cctools-973.0.1-hd9ad811_15.conda
hash:
- md5: 2fbb98b0cef591025f5f1b17730a0b5b
- sha256: 2466d8a164ab7d6d9308445bec0413fac4c6f488df4a5b6b903bca2b0f4c4b08
- optional: false
- category: main
- build: hd9ad811_14
+ md5: 00374d616829d1e4d2266e571147848a
+ sha256: 6fc0e86e24687cde3476e04f001ac1edf5813c0caa15b72c913b660533428987
+ build: hd9ad811_15
arch: x86_64
subdir: osx-64
- build_number: 14
+ build_number: 15
license: APSL-2.0
license_family: Other
- size: 21930
- timestamp: 1690768082194
-- name: cctools
+ size: 21917
+ timestamp: 1697075797642
+- platform: osx-arm64
+ name: cctools
version: 973.0.1
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- cctools_osx-arm64: ==973.0.1 h2a25c60_14
- ld64: ==609 h89fa09d_14
- libllvm15: '>=15.0.7,<15.1.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-973.0.1-hd1ac623_14.conda
+ - cctools_osx-arm64 973.0.1 h2a25c60_15
+ - ld64 609 h89fa09d_15
+ - libllvm15 >=15.0.7,<15.1.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools-973.0.1-hd1ac623_15.conda
hash:
- md5: 46c0f28ac1c5f417f46e028212f72f91
- sha256: d7520a360b9d9ea0690f20403d19a9bee5069f5844aa2f092c5bd24816f0a84d
- optional: false
- category: main
- build: hd1ac623_14
+ md5: bea60d4b6c7112c9d906cd8380498c99
+ sha256: 19355c566c376acba7beed4c6f68a2c09fa1b5bbbbcacc6375c2fcb90faf6063
+ build: hd1ac623_15
arch: aarch64
subdir: osx-arm64
- build_number: 14
+ build_number: 15
license: APSL-2.0
license_family: Other
- size: 22053
- timestamp: 1690768497252
-- name: cctools_osx-64
+ size: 21948
+ timestamp: 1697075946023
+- platform: osx-64
+ name: cctools_osx-64
version: 973.0.1
+ category: main
manager: conda
- platform: osx-64
dependencies:
- ld64_osx-64: '>=609,<610.0a0'
- libcxx: '*'
- libllvm15: '>=15.0.7,<15.1.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- sigtool: '*'
- url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-973.0.1-habff3f6_14.conda
+ - ld64_osx-64 >=609,<610.0a0
+ - libcxx
+ - libllvm15 >=15.0.7,<15.1.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - sigtool
+ url: https://conda.anaconda.org/conda-forge/osx-64/cctools_osx-64-973.0.1-habff3f6_15.conda
hash:
- md5: f08fbd275d1df88503af3ad946c08582
- sha256: ddb114073cd1f3004a0a2f243d6d5d14ce0d30c3d94794e1706e9bda5a42237a
- optional: false
- category: main
- build: habff3f6_14
+ md5: 015a19b3900b9fce20a48551e66f7699
+ sha256: ca00afdafb22d6c363921f1c81b35fabd9b7eefee7e1ea2ad4f0fe920b63d035
+ build: habff3f6_15
arch: x86_64
subdir: osx-64
- build_number: 14
+ build_number: 15
constrains:
- - clang 15.0.*
- - ld64 609.*
- cctools 973.0.1.*
+ - ld64 609.*
+ - clang 15.0.*
license: APSL-2.0
license_family: Other
- size: 1117928
- timestamp: 1690768048658
-- name: cctools_osx-arm64
+ size: 1116869
+ timestamp: 1697075736696
+- platform: osx-arm64
+ name: cctools_osx-arm64
version: 973.0.1
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- ld64_osx-arm64: '>=609,<610.0a0'
- libcxx: '*'
- libllvm15: '>=15.0.7,<15.1.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- sigtool: '*'
- url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-973.0.1-h2a25c60_14.conda
+ - ld64_osx-arm64 >=609,<610.0a0
+ - libcxx
+ - libllvm15 >=15.0.7,<15.1.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - sigtool
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/cctools_osx-arm64-973.0.1-h2a25c60_15.conda
hash:
- md5: 09f973985e770a7fbbca9a299af51a8b
- sha256: 3c0b4237f5751617c2fa63180ae56ae8c39c349b1b30d78a651b0274758b65d1
- optional: false
- category: main
- build: h2a25c60_14
+ md5: e177015a6a6500334b9cac9144fc657d
+ sha256: 723e1888736b0376b7ca16cc1a0e96a038aa92eabb6b15978cfa3ce7586767f0
+ build: h2a25c60_15
arch: aarch64
subdir: osx-arm64
- build_number: 14
+ build_number: 15
constrains:
- - ld64 609.*
- clang 15.0.*
+ - ld64 609.*
- cctools 973.0.1.*
license: APSL-2.0
license_family: Other
- size: 1122294
- timestamp: 1690768462517
-- name: cffi
+ size: 1123180
+ timestamp: 1697075906785
+- platform: linux-64
+ name: certifi
+ version: 2023.7.22
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda
+ hash:
+ md5: 7f3dbc9179b4dde7da98dfb151d0ad22
+ sha256: db66e31866ff4250c190788769e3a8a1709237c3e9c38d7143aae95ab75fcb31
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: ISC
+ noarch: python
+ size: 153791
+ timestamp: 1690024617757
+- platform: osx-64
+ name: certifi
+ version: 2023.7.22
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda
+ hash:
+ md5: 7f3dbc9179b4dde7da98dfb151d0ad22
+ sha256: db66e31866ff4250c190788769e3a8a1709237c3e9c38d7143aae95ab75fcb31
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: ISC
+ noarch: python
+ size: 153791
+ timestamp: 1690024617757
+- platform: osx-arm64
+ name: certifi
+ version: 2023.7.22
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda
+ hash:
+ md5: 7f3dbc9179b4dde7da98dfb151d0ad22
+ sha256: db66e31866ff4250c190788769e3a8a1709237c3e9c38d7143aae95ab75fcb31
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: ISC
+ noarch: python
+ size: 153791
+ timestamp: 1690024617757
+- platform: win-64
+ name: certifi
+ version: 2023.7.22
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/certifi-2023.7.22-pyhd8ed1ab_0.conda
+ hash:
+ md5: 7f3dbc9179b4dde7da98dfb151d0ad22
+ sha256: db66e31866ff4250c190788769e3a8a1709237c3e9c38d7143aae95ab75fcb31
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: ISC
+ noarch: python
+ size: 153791
+ timestamp: 1690024617757
+- platform: linux-64
+ name: cffi
version: 1.15.1
+ category: main
manager: conda
- platform: linux-64
dependencies:
- python: '>=3.11,<3.12.0a0'
- python_abi: 3.11.* *_cp311
- pycparser: '*'
- libffi: '>=3.4,<4.0a0'
- libgcc-ng: '>=12'
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - pycparser *
+ - libffi >=3.4,<4.0a0
+ - libgcc-ng >=12
url: https://conda.anaconda.org/conda-forge/linux-64/cffi-1.15.1-py311h409f033_3.conda
hash:
md5: 9025d0786dbbe4bc91fd8e85502decce
sha256: 7161bcdf1a304f76e88a05ed435c03ee92864ee5e8f4c938e35b089b3861b5a7
- optional: false
- category: main
build: py311h409f033_3
arch: x86_64
subdir: linux-64
@@ -505,21 +740,20 @@ package:
license_family: MIT
size: 295516
timestamp: 1671179478348
-- name: cffi
+- platform: osx-64
+ name: cffi
version: 1.15.1
+ category: main
manager: conda
- platform: osx-64
dependencies:
- python: '>=3.11,<3.12.0a0'
- python_abi: 3.11.* *_cp311
- pycparser: '*'
- libffi: '>=3.4,<4.0a0'
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - pycparser *
+ - libffi >=3.4,<4.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/cffi-1.15.1-py311ha86e640_3.conda
hash:
md5: 5967be4da33261eada7cc79593f71088
sha256: 436a99652d9b13ed4b945f05740b50c79447b581aa400f69607f56c4960b806d
- optional: false
- category: main
build: py311ha86e640_3
arch: x86_64
subdir: osx-64
@@ -528,21 +762,20 @@ package:
license_family: MIT
size: 280535
timestamp: 1671179829333
-- name: cffi
+- platform: osx-arm64
+ name: cffi
version: 1.15.1
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- python: '>=3.11,<3.12.0a0 *_cpython'
- python_abi: 3.11.* *_cp311
- pycparser: '*'
- libffi: '>=3.4,<4.0a0'
+ - python >=3.11,<3.12.0a0 *_cpython
+ - python_abi 3.11.* *_cp311
+ - pycparser *
+ - libffi >=3.4,<4.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/cffi-1.15.1-py311hae827db_3.conda
hash:
md5: bb7a416f8871a6cf6ddec76450d6cf7b
sha256: 28bf7f7c1ded35d270660183990056b6192e3fe06eaebb1043fd4b97ccea2b98
- optional: false
- category: main
build: py311hae827db_3
arch: aarch64
subdir: osx-arm64
@@ -551,23 +784,22 @@ package:
license_family: MIT
size: 278614
timestamp: 1671179791632
-- name: cffi
+- platform: win-64
+ name: cffi
version: 1.15.1
+ category: main
manager: conda
- platform: win-64
dependencies:
- ucrt: '>=10.0.20348.0'
- python: '>=3.11,<3.12.0a0'
- python_abi: 3.11.* *_cp311
- pycparser: '*'
- vc: '>=14.2,<15'
- vs2015_runtime: '>=14.29.30139'
+ - ucrt >=10.0.20348.0
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - pycparser *
+ - vc >=14.2,<15
+ - vs2015_runtime >=14.29.30139
url: https://conda.anaconda.org/conda-forge/win-64/cffi-1.15.1-py311h7d9ee11_3.conda
hash:
md5: a8524727eb956b4741e25a64af79edb8
sha256: 49ce08187365f97c67476d504411de0a17e69b972ab6b80521d01dc80dd657e6
- optional: false
- category: main
build: py311h7d9ee11_3
arch: x86_64
subdir: win-64
@@ -576,18 +808,17 @@ package:
license_family: MIT
size: 292953
timestamp: 1671179769667
-- name: cfgv
+- platform: linux-64
+ name: cfgv
version: 3.3.1
+ category: main
manager: conda
- platform: linux-64
dependencies:
- python: '>=3.6.1'
+ - python >=3.6.1
url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: ebb5f5f7dc4f1a3780ef7ea7738db08c
sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: linux-64
@@ -597,18 +828,17 @@ package:
noarch: python
size: 10788
timestamp: 1629909423398
-- name: cfgv
+- platform: osx-64
+ name: cfgv
version: 3.3.1
+ category: main
manager: conda
- platform: osx-64
dependencies:
- python: '>=3.6.1'
+ - python >=3.6.1
url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: ebb5f5f7dc4f1a3780ef7ea7738db08c
sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: osx-64
@@ -618,18 +848,17 @@ package:
noarch: python
size: 10788
timestamp: 1629909423398
-- name: cfgv
+- platform: osx-arm64
+ name: cfgv
version: 3.3.1
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- python: '>=3.6.1'
+ - python >=3.6.1
url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: ebb5f5f7dc4f1a3780ef7ea7738db08c
sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: aarch64
subdir: osx-arm64
@@ -639,18 +868,17 @@ package:
noarch: python
size: 10788
timestamp: 1629909423398
-- name: cfgv
+- platform: win-64
+ name: cfgv
version: 3.3.1
+ category: main
manager: conda
- platform: win-64
dependencies:
- python: '>=3.6.1'
+ - python >=3.6.1
url: https://conda.anaconda.org/conda-forge/noarch/cfgv-3.3.1-pyhd8ed1ab_0.tar.bz2
hash:
md5: ebb5f5f7dc4f1a3780ef7ea7738db08c
sha256: fbc03537a27ef756162c49b1d0608bf7ab12fa5e38ceb8563d6f4859e835ac5c
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: win-64
@@ -660,18 +888,97 @@ package:
noarch: python
size: 10788
timestamp: 1629909423398
-- name: clang
+- platform: linux-64
+ name: charset-normalizer
+ version: 3.3.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: 7f4a9e3fcff3f6356ae99244a014da6a
+ sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 46597
+ timestamp: 1698833765762
+- platform: osx-64
+ name: charset-normalizer
+ version: 3.3.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: 7f4a9e3fcff3f6356ae99244a014da6a
+ sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 46597
+ timestamp: 1698833765762
+- platform: osx-arm64
+ name: charset-normalizer
+ version: 3.3.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: 7f4a9e3fcff3f6356ae99244a014da6a
+ sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 46597
+ timestamp: 1698833765762
+- platform: win-64
+ name: charset-normalizer
+ version: 3.3.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/charset-normalizer-3.3.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: 7f4a9e3fcff3f6356ae99244a014da6a
+ sha256: 20cae47d31fdd58d99c4d2e65fbdcefa0b0de0c84e455ba9d6356a4bdbc4b5b9
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 46597
+ timestamp: 1698833765762
+- platform: osx-64
+ name: clang
version: 15.0.7
+ category: main
manager: conda
- platform: osx-64
dependencies:
- clang-15: ==15.0.7 default_hdb78580_3
+ - clang-15 15.0.7 default_hdb78580_3
url: https://conda.anaconda.org/conda-forge/osx-64/clang-15.0.7-h694c41f_3.conda
hash:
md5: 8a48d466e519b8db7dda7c5d27cc1d31
sha256: 3eab054ba786b0b80609bea17342385dcbdce69c6158e6ec7443f4f940c92883
- optional: false
- category: main
build: h694c41f_3
arch: x86_64
subdir: osx-64
@@ -685,18 +992,17 @@ package:
license_family: Apache
size: 132843
timestamp: 1690549855885
-- name: clang
+- platform: osx-arm64
+ name: clang
version: 15.0.7
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- clang-15: ==15.0.7 default_h5dc8d65_3
+ - clang-15 15.0.7 default_h5dc8d65_3
url: https://conda.anaconda.org/conda-forge/osx-arm64/clang-15.0.7-hce30654_3.conda
hash:
md5: 0871ba77c4bec31504b371a4f2525a7b
sha256: 7eceef0863863c7e6c8752ca8359dedebc87cc9fba108856533115e2d9a8d9ba
- optional: false
- category: main
build: hce30654_3
arch: aarch64
subdir: osx-arm64
@@ -710,20 +1016,19 @@ package:
license_family: Apache
size: 133018
timestamp: 1690549798814
-- name: clang-15
+- platform: osx-64
+ name: clang-15
version: 15.0.7
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libclang-cpp15: ==15.0.7 default_hdb78580_3
- libcxx: '>=15.0.7'
- libllvm15: '>=15.0.7,<15.1.0a0'
+ - libclang-cpp15 15.0.7 default_hdb78580_3
+ - libcxx >=15.0.7
+ - libllvm15 >=15.0.7,<15.1.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/clang-15-15.0.7-default_hdb78580_3.conda
hash:
md5: 688d6b9e178cb7786a07e3cfca2a8f09
sha256: 686abd626e3fe42c040c77e38b5c07d4fe5cd6f1561feb4b92ffbbba6b36e262
- optional: false
- category: main
build: default_hdb78580_3
arch: x86_64
subdir: osx-64
@@ -737,20 +1042,19 @@ package:
license_family: Apache
size: 794748
timestamp: 1690549737577
-- name: clang-15
+- platform: osx-arm64
+ name: clang-15
version: 15.0.7
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libclang-cpp15: ==15.0.7 default_h5dc8d65_3
- libcxx: '>=15.0.7'
- libllvm15: '>=15.0.7,<15.1.0a0'
+ - libclang-cpp15 15.0.7 default_h5dc8d65_3
+ - libcxx >=15.0.7
+ - libllvm15 >=15.0.7,<15.1.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/clang-15-15.0.7-default_h5dc8d65_3.conda
hash:
md5: 3b214c8a23030d3a04389cbcd4bb84e4
sha256: 92d974b4675fa1f56f5ba1f396cc811a830ecbba0195ef1697235298535fad39
- optional: false
- category: main
build: default_h5dc8d65_3
arch: aarch64
subdir: osx-arm64
@@ -764,67 +1068,102 @@ package:
license_family: Apache
size: 795051
timestamp: 1690549670667
-- name: clang_osx-64
+- platform: osx-64
+ name: clang_impl_osx-64
version: 15.0.7
+ category: main
manager: conda
- platform: osx-64
dependencies:
- cctools_osx-64: '*'
- clang: 15.0.7.*
- compiler-rt: 15.0.7.*
- ld64_osx-64: '*'
- llvm-tools: 15.0.7.*
- url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-15.0.7-h03d6864_3.conda
+ - cctools_osx-64
+ - clang 15.0.7.*
+ - compiler-rt 15.0.7.*
+ - ld64_osx-64
+ - llvm-tools 15.0.7.*
+ url: https://conda.anaconda.org/conda-forge/osx-64/clang_impl_osx-64-15.0.7-h03d6864_6.conda
hash:
- md5: 9dfd4e8cbc51c07a7b1ad59ad8415fad
- sha256: 1257bf432219240be7b3eddde72fcfad1e85c8eacea2871e6f9121d66eccd965
- optional: false
- category: main
- build: h03d6864_3
+ md5: d48ec30d072d16029d56a2aa6e47b5a9
+ sha256: b5f6643336b3c6ed7b0df47e50b1697a625a56c06fb365031f823e1f3072e293
+ build: h03d6864_6
arch: x86_64
subdir: osx-64
- build_number: 3
+ build_number: 6
license: BSD-3-Clause
license_family: BSD
- size: 20620
- timestamp: 1684463185776
-- name: clang_osx-arm64
+ size: 17513
+ timestamp: 1698100428923
+- platform: osx-arm64
+ name: clang_impl_osx-arm64
version: 15.0.7
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- cctools_osx-arm64: '*'
- clang: 15.0.7.*
- compiler-rt: 15.0.7.*
- ld64_osx-arm64: '*'
- llvm-tools: 15.0.7.*
- url: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-15.0.7-h77e971b_3.conda
+ - cctools_osx-arm64
+ - clang 15.0.7.*
+ - compiler-rt 15.0.7.*
+ - ld64_osx-arm64
+ - llvm-tools 15.0.7.*
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/clang_impl_osx-arm64-15.0.7-h77e971b_6.conda
+ hash:
+ md5: 9601e8b7f026068456c08a3eee9d453a
+ sha256: 4100e7ad7d3932611a31b3b6cbc3c2340db580b1dfb8dc05d2c57681148739b2
+ build: h77e971b_6
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 6
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17716
+ timestamp: 1698100635950
+- platform: osx-64
+ name: clang_osx-64
+ version: 15.0.7
+ category: main
+ manager: conda
+ dependencies:
+ - clang_impl_osx-64 15.0.7 h03d6864_6
+ url: https://conda.anaconda.org/conda-forge/osx-64/clang_osx-64-15.0.7-hb91bd55_6.conda
hash:
- md5: 4799cb60f8ff17edaf3574b28681d2a0
- sha256: 556ab57b9d190bf3ad2b9e7ba3c164157f8d163489a65235c0cfe52478521da0
- optional: false
+ md5: acea2fd2b383c33e9b727b636b2672cb
+ sha256: 8db9ad5876b5c3d12fa6e5c67dcd2dd11577e9aedf1f6db8b61860689c3a6356
+ build: hb91bd55_6
+ arch: x86_64
+ subdir: osx-64
+ build_number: 6
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 20598
+ timestamp: 1698100444702
+- platform: osx-arm64
+ name: clang_osx-arm64
+ version: 15.0.7
category: main
- build: h77e971b_3
+ manager: conda
+ dependencies:
+ - clang_impl_osx-arm64 15.0.7 h77e971b_6
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/clang_osx-arm64-15.0.7-h54d7cd3_6.conda
+ hash:
+ md5: 1eacc867f5e1114eaff48e7d6c08007e
+ sha256: e2e065818caf031a9241e92d189a8750d48028d8b3f0cfa92324d733adba614d
+ build: h54d7cd3_6
arch: aarch64
subdir: osx-arm64
- build_number: 3
+ build_number: 6
license: BSD-3-Clause
license_family: BSD
- size: 20618
- timestamp: 1684463162877
-- name: clangdev
+ size: 20662
+ timestamp: 1698100648643
+- platform: win-64
+ name: clangdev
version: 5.0.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- vs2015_runtime: '*'
- vc: 14.*
+ - vs2015_runtime
+ - vc 14.*
url: https://conda.anaconda.org/conda-forge/win-64/clangdev-5.0.0-flang_3.tar.bz2
hash:
md5: afbd5f59b9358ee37e73fbfb1515c3b6
sha256: e5661a405acc14bd4941c576daebc3959b6f94f0cfd22b66f2a3f3198a3ec609
- optional: false
- category: main
build: flang_3
arch: x86_64
subdir: win-64
@@ -832,18 +1171,17 @@ package:
features: flang
license: NCSA
size: 198174317
-- name: clangxx
+- platform: osx-64
+ name: clangxx
version: 15.0.7
+ category: main
manager: conda
- platform: osx-64
dependencies:
- clang: ==15.0.7 h694c41f_3
+ - clang 15.0.7 h694c41f_3
url: https://conda.anaconda.org/conda-forge/osx-64/clangxx-15.0.7-default_hdb78580_3.conda
hash:
md5: 58df9ff86fefc7684670be729b41412f
sha256: b68fbe1f7c401401622b61f9e65be6fffae4104727c2f39feacede5c393fa65e
- optional: false
- category: main
build: default_hdb78580_3
arch: x86_64
subdir: osx-64
@@ -852,18 +1190,17 @@ package:
license_family: Apache
size: 132973
timestamp: 1690549872764
-- name: clangxx
+- platform: osx-arm64
+ name: clangxx
version: 15.0.7
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- clang: ==15.0.7 hce30654_3
+ - clang 15.0.7 hce30654_3
url: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx-15.0.7-default_h610c423_3.conda
hash:
md5: 1919a441b26f5cd1181870be6b4ce31a
sha256: 59e1545bac0207bb8b82c3718a16ec79dd9ac218eb00679f8cb5ed2cd115ffe3
- optional: false
- category: main
build: default_h610c423_3
arch: aarch64
subdir: osx-arm64
@@ -872,66 +1209,269 @@ package:
license_family: Apache
size: 133212
timestamp: 1690549817560
-- name: clangxx_osx-64
+- platform: osx-64
+ name: clangxx_impl_osx-64
+ version: 15.0.7
+ category: main
+ manager: conda
+ dependencies:
+ - __osx >=10.9
+ - clang_osx-64 15.0.7 hb91bd55_6
+ - clangxx 15.0.7.*
+ - libcxx >=15.0.7
+ - libllvm15 >=15.0.7,<15.1.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_impl_osx-64-15.0.7-h3d2d1bf_6.conda
+ hash:
+ md5: 078a573cbedf1e34e5966c8d867f7ba3
+ sha256: dafe4db74b909964f13eb1870ec3c968e58eb7473f9c431bc459ff371facc5ea
+ build: h3d2d1bf_6
+ arch: x86_64
+ subdir: osx-64
+ build_number: 6
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17696
+ timestamp: 1698100460114
+- platform: osx-arm64
+ name: clangxx_impl_osx-arm64
version: 15.0.7
+ category: main
manager: conda
- platform: osx-64
dependencies:
- clang_osx-64: ==15.0.7 h03d6864_3
- clangxx: 15.0.7.*
- libcxx: '>=15.0.7'
- libllvm15: '>=15.0.7,<15.1.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-15.0.7-h2133e9c_3.conda
+ - clang_osx-arm64 15.0.7 h54d7cd3_6
+ - clangxx 15.0.7.*
+ - libcxx >=15.0.7
+ - libllvm15 >=15.0.7,<15.1.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_impl_osx-arm64-15.0.7-h768a7fd_6.conda
hash:
- md5: 2ff16b86a981da4b1a2658423db664bb
- sha256: 04900d8758347c81d8f3904ba513fced2cb86af258d6ce70f8377e2515c9ec51
- optional: false
+ md5: 914b24809e452f46891df028cdaad506
+ sha256: 03318cce948fdd28762cdb1cd1a48edea40dc363ca64255bc8c21e5492a64bb8
+ build: h768a7fd_6
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 6
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 17807
+ timestamp: 1698100665707
+- platform: osx-64
+ name: clangxx_osx-64
+ version: 15.0.7
category: main
- build: h2133e9c_3
+ manager: conda
+ dependencies:
+ - clang_osx-64 15.0.7 hb91bd55_6
+ - clangxx_impl_osx-64 15.0.7 h3d2d1bf_6
+ url: https://conda.anaconda.org/conda-forge/osx-64/clangxx_osx-64-15.0.7-h655633e_6.conda
+ hash:
+ md5: 4635902b855661470b43a7b48b5e55d6
+ sha256: f3c59ff3285b98e4d1dc1dfd86eab0e3a6323608b12d12a4be5c1edd7e0ec7e7
+ build: h655633e_6
arch: x86_64
subdir: osx-64
- build_number: 3
+ build_number: 6
license: BSD-3-Clause
license_family: BSD
- size: 19427
- timestamp: 1684463207952
-- name: clangxx_osx-arm64
+ size: 19394
+ timestamp: 1698100472970
+- platform: osx-arm64
+ name: clangxx_osx-arm64
version: 15.0.7
+ category: main
+ manager: conda
+ dependencies:
+ - clang_osx-arm64 15.0.7 h54d7cd3_6
+ - clangxx_impl_osx-arm64 15.0.7 h768a7fd_6
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-15.0.7-h77e971b_6.conda
+ hash:
+ md5: 3f65a988ce3856c472136893d33ad776
+ sha256: 7ec6ab7f5578e28a752acf806a24d503d171756f3c9795da88dd7829789e487f
+ build: h77e971b_6
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 6
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 19459
+ timestamp: 1698100680003
+- platform: linux-64
+ name: click
+ version: 8.1.7
+ category: main
+ manager: conda
+ dependencies:
+ - __unix
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda
+ hash:
+ md5: f3ad426304898027fc619827ff428eca
+ sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec
+ build: unix_pyh707e725_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 84437
+ timestamp: 1692311973840
+- platform: osx-64
+ name: click
+ version: 8.1.7
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- clang_osx-arm64: ==15.0.7 h77e971b_3
- clangxx: 15.0.7.*
- libcxx: '>=15.0.7'
- libllvm15: '>=15.0.7,<15.1.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-arm64/clangxx_osx-arm64-15.0.7-h768a7fd_3.conda
+ - __unix
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda
hash:
- md5: 16e11574eeb3cfa3da194692da449aeb
- sha256: 83c774c3dd206f4772a4a0abd10d21ad4aa9aa472fc9e2af16bf0b9a07476684
- optional: false
+ md5: f3ad426304898027fc619827ff428eca
+ sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec
+ build: unix_pyh707e725_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 84437
+ timestamp: 1692311973840
+- platform: osx-arm64
+ name: click
+ version: 8.1.7
category: main
- build: h768a7fd_3
+ manager: conda
+ dependencies:
+ - __unix
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-unix_pyh707e725_0.conda
+ hash:
+ md5: f3ad426304898027fc619827ff428eca
+ sha256: f0016cbab6ac4138a429e28dbcb904a90305b34b3fe41a9b89d697c90401caec
+ build: unix_pyh707e725_0
arch: aarch64
subdir: osx-arm64
- build_number: 3
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 84437
+ timestamp: 1692311973840
+- platform: win-64
+ name: click
+ version: 8.1.7
+ category: main
+ manager: conda
+ dependencies:
+ - __win
+ - colorama
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/click-8.1.7-win_pyh7428d3b_0.conda
+ hash:
+ md5: 3549ecbceb6cd77b91a105511b7d0786
+ sha256: 90236b113b9a20041736e80b80ee965167f9aac0468315c55e2bad902d673fb0
+ build: win_pyh7428d3b_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 85051
+ timestamp: 1692312207348
+- platform: linux-64
+ name: colorama
+ version: 0.4.6
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 3faab06a954c2a04039983f2c4a50d99
+ sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 25170
+ timestamp: 1666700778190
+- platform: osx-64
+ name: colorama
+ version: 0.4.6
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 3faab06a954c2a04039983f2c4a50d99
+ sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 25170
+ timestamp: 1666700778190
+- platform: osx-arm64
+ name: colorama
+ version: 0.4.6
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 3faab06a954c2a04039983f2c4a50d99
+ sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 25170
+ timestamp: 1666700778190
+- platform: win-64
+ name: colorama
+ version: 0.4.6
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/colorama-0.4.6-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 3faab06a954c2a04039983f2c4a50d99
+ sha256: 2c1b2e9755ce3102bca8d69e8f26e4f087ece73f50418186aee7c74bef8e1698
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
license: BSD-3-Clause
license_family: BSD
- size: 19504
- timestamp: 1684463181478
-- name: compiler-rt
+ noarch: python
+ size: 25170
+ timestamp: 1666700778190
+- platform: osx-64
+ name: compiler-rt
version: 15.0.7
+ category: main
manager: conda
- platform: osx-64
dependencies:
- clang: 15.0.7.*
- clangxx: 15.0.7.*
- compiler-rt_osx-64: 15.0.7.*
+ - clang 15.0.7.*
+ - clangxx 15.0.7.*
+ - compiler-rt_osx-64 15.0.7.*
url: https://conda.anaconda.org/conda-forge/osx-64/compiler-rt-15.0.7-he1888fc_1.conda
hash:
md5: 8ec296a4b097aeb2d85eafaf745c770a
sha256: 90a2dd7a9baf8d6ddde9d11ad682dbd74f74c1f40ce0e4e9df7c356b0275ca31
- optional: false
- category: main
build: he1888fc_1
arch: x86_64
subdir: osx-64
@@ -940,20 +1480,19 @@ package:
license_family: APACHE
size: 92129
timestamp: 1684403261646
-- name: compiler-rt
+- platform: osx-arm64
+ name: compiler-rt
version: 15.0.7
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- clang: 15.0.7.*
- clangxx: 15.0.7.*
- compiler-rt_osx-arm64: 15.0.7.*
+ - clang 15.0.7.*
+ - clangxx 15.0.7.*
+ - compiler-rt_osx-arm64 15.0.7.*
url: https://conda.anaconda.org/conda-forge/osx-arm64/compiler-rt-15.0.7-hf8d1dfb_1.conda
hash:
md5: 355703f3e33fd12037800d28680845cb
sha256: d2ab8bc610038e40dafdb6b6172343553f1f3aba4e9a4c540e878474062b1b89
- optional: false
- category: main
build: hf8d1dfb_1
arch: aarch64
subdir: osx-arm64
@@ -962,19 +1501,18 @@ package:
license_family: APACHE
size: 92034
timestamp: 1684403020973
-- name: compiler-rt_osx-64
+- platform: osx-64
+ name: compiler-rt_osx-64
version: 15.0.7
+ category: main
manager: conda
- platform: osx-64
dependencies:
- clang: 15.0.7.*
- clangxx: 15.0.7.*
+ - clang 15.0.7.*
+ - clangxx 15.0.7.*
url: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-64-15.0.7-he1888fc_1.conda
hash:
md5: e1f93ea86259a549f2dcbfd245bf0422
sha256: a2c19b4ec885e668266f5dd0e90193d9436c0be63c370c91ae1b840a19071159
- optional: false
- category: main
build: he1888fc_1
arch: x86_64
subdir: osx-64
@@ -986,19 +1524,18 @@ package:
noarch: generic
size: 11208907
timestamp: 1684403213219
-- name: compiler-rt_osx-arm64
+- platform: osx-arm64
+ name: compiler-rt_osx-arm64
version: 15.0.7
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- clang: 15.0.7.*
- clangxx: 15.0.7.*
+ - clang 15.0.7.*
+ - clangxx 15.0.7.*
url: https://conda.anaconda.org/conda-forge/noarch/compiler-rt_osx-arm64-15.0.7-hf8d1dfb_1.conda
hash:
md5: 0722cbdc69a52c82acc4e265913a21cd
sha256: 5a801e344b2a18983199190cb34ad798e3ce5966a4a4031c74f7e395d8c38802
- optional: false
- category: main
build: hf8d1dfb_1
arch: aarch64
subdir: osx-arm64
@@ -1010,20 +1547,19 @@ package:
noarch: generic
size: 11283089
timestamp: 1684402974671
-- name: compilers
+- platform: linux-64
+ name: compilers
version: 1.6.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- c-compiler: ==1.6.0 hd590300_0
- cxx-compiler: ==1.6.0 h00ab1b0_0
- fortran-compiler: ==1.6.0 heb67821_0
+ - c-compiler 1.6.0 hd590300_0
+ - cxx-compiler 1.6.0 h00ab1b0_0
+ - fortran-compiler 1.6.0 heb67821_0
url: https://conda.anaconda.org/conda-forge/linux-64/compilers-1.6.0-ha770c72_0.conda
hash:
md5: e2259de4640a51a28c21931ae98e4975
sha256: 05bce88c6f89327746ffcf53801994bce3eca758875e3c542594e12c09cb6db9
- optional: false
- category: main
build: ha770c72_0
arch: x86_64
subdir: linux-64
@@ -1032,20 +1568,19 @@ package:
license_family: BSD
size: 6983
timestamp: 1689097491629
-- name: compilers
+- platform: osx-64
+ name: compilers
version: 1.6.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- c-compiler: ==1.6.0 h63c33a9_0
- cxx-compiler: ==1.6.0 h1c7c39f_0
- fortran-compiler: ==1.6.0 h932d759_0
+ - c-compiler 1.6.0 h63c33a9_0
+ - cxx-compiler 1.6.0 h1c7c39f_0
+ - fortran-compiler 1.6.0 h932d759_0
url: https://conda.anaconda.org/conda-forge/osx-64/compilers-1.6.0-h694c41f_0.conda
hash:
md5: d4c66ca84aa87a6c63f4c8a6498052d9
sha256: 6974c4b9a90e596f93af265fd5f01bb057cf5acb13c66f7c3d231998dde2a9bb
- optional: false
- category: main
build: h694c41f_0
arch: x86_64
subdir: osx-64
@@ -1054,20 +1589,19 @@ package:
license_family: BSD
size: 7104
timestamp: 1689097861954
-- name: compilers
+- platform: osx-arm64
+ name: compilers
version: 1.6.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- c-compiler: ==1.6.0 hd291e01_0
- cxx-compiler: ==1.6.0 h1995070_0
- fortran-compiler: ==1.6.0 h5a50232_0
+ - c-compiler 1.6.0 hd291e01_0
+ - cxx-compiler 1.6.0 h1995070_0
+ - fortran-compiler 1.6.0 h5a50232_0
url: https://conda.anaconda.org/conda-forge/osx-arm64/compilers-1.6.0-hce30654_0.conda
hash:
md5: 63282d3d857557088735f66775f44083
sha256: 458c434679254a6dd3cc12c1a3de5ddb05da18aa413c403cb3f4997c9b1d6f6d
- optional: false
- category: main
build: hce30654_0
arch: aarch64
subdir: osx-arm64
@@ -1076,20 +1610,19 @@ package:
license_family: BSD
size: 7127
timestamp: 1689097909496
-- name: compilers
+- platform: win-64
+ name: compilers
version: 1.6.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- c-compiler: ==1.6.0 hcfcfb64_0
- cxx-compiler: ==1.6.0 h91493d7_0
- fortran-compiler: ==1.6.0 h9655429_0
+ - c-compiler 1.6.0 hcfcfb64_0
+ - cxx-compiler 1.6.0 h91493d7_0
+ - fortran-compiler 1.6.0 h9655429_0
url: https://conda.anaconda.org/conda-forge/win-64/compilers-1.6.0-h57928b3_0.conda
hash:
md5: facaaa8d95a05c2dd3ca06eb3dca3c2c
sha256: 925898d204b2cb0c43e7001ac956e2c34154e7d5eba03aa2356701600cd44245
- optional: false
- category: main
build: h57928b3_0
arch: x86_64
subdir: win-64
@@ -1098,24 +1631,23 @@ package:
license_family: BSD
size: 7396
timestamp: 1689097773566
-- name: curl
+- platform: linux-64
+ name: curl
version: 8.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- krb5: '>=1.21.2,<1.22.0a0'
- libcurl: ==8.3.0 hca28451_0
- libgcc-ng: '>=12'
- libssh2: '>=1.11.0,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.2,<4.0a0'
- zstd: '>=1.5.5,<1.6.0a0'
+ - krb5 >=1.21.2,<1.22.0a0
+ - libcurl ==8.3.0 hca28451_0
+ - libgcc-ng >=12
+ - libssh2 >=1.11.0,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.2,<4.0a0
+ - zstd >=1.5.5,<1.6.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/curl-8.3.0-hca28451_0.conda
hash:
md5: 0ac38ede40fe025be0f449c46b9f3cf0
sha256: a45a26e8b32ec06bebed9d0b7be73190d3c91bcec55d433da5e2c28509e9d629
- optional: false
- category: main
build: hca28451_0
arch: x86_64
subdir: linux-64
@@ -1124,23 +1656,22 @@ package:
license_family: MIT
size: 93269
timestamp: 1694599619424
-- name: curl
+- platform: osx-64
+ name: curl
version: 8.3.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- krb5: '>=1.21.2,<1.22.0a0'
- libcurl: ==8.3.0 h5f667d7_0
- libssh2: '>=1.11.0,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.2,<4.0a0'
- zstd: '>=1.5.5,<1.6.0a0'
+ - krb5 >=1.21.2,<1.22.0a0
+ - libcurl ==8.3.0 h5f667d7_0
+ - libssh2 >=1.11.0,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.2,<4.0a0
+ - zstd >=1.5.5,<1.6.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/curl-8.3.0-h5f667d7_0.conda
hash:
md5: 6cc27c69f4073003e87cf0aaf60695e3
sha256: e189a6dd74bb89b82dc86be99a38751bbf3b7b0a0a59cf737866dde2aea96f66
- optional: false
- category: main
build: h5f667d7_0
arch: x86_64
subdir: osx-64
@@ -1149,23 +1680,22 @@ package:
license_family: MIT
size: 151327
timestamp: 1694600042667
-- name: curl
+- platform: osx-arm64
+ name: curl
version: 8.3.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- krb5: '>=1.21.2,<1.22.0a0'
- libcurl: ==8.3.0 hc52a3a8_0
- libssh2: '>=1.11.0,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.2,<4.0a0'
- zstd: '>=1.5.5,<1.6.0a0'
+ - krb5 >=1.21.2,<1.22.0a0
+ - libcurl ==8.3.0 hc52a3a8_0
+ - libssh2 >=1.11.0,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.2,<4.0a0
+ - zstd >=1.5.5,<1.6.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/curl-8.3.0-hc52a3a8_0.conda
hash:
md5: 1d92dbaa4d4c44724de56b9f47bc1717
sha256: 89105ee741ac79c203a3c026db7cdebe89f75a3354985cda5ab8984ff2743ebe
- optional: false
- category: main
build: hc52a3a8_0
arch: aarch64
subdir: osx-arm64
@@ -1174,20 +1704,19 @@ package:
license_family: MIT
size: 151441
timestamp: 1694600197922
-- name: cxx-compiler
+- platform: linux-64
+ name: cxx-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- c-compiler: ==1.6.0 hd590300_0
- gxx: '*'
- gxx_linux-64: 12.*
+ - c-compiler 1.6.0 hd590300_0
+ - gxx
+ - gxx_linux-64 12.*
url: https://conda.anaconda.org/conda-forge/linux-64/cxx-compiler-1.6.0-h00ab1b0_0.conda
hash:
md5: 364c6ae36c4e36fcbd4d273cf4db78af
sha256: 472b6b7f967df1db634c67d71c6b31cd186d18b5d0548196c2e426833ff17d99
- optional: false
- category: main
build: h00ab1b0_0
arch: x86_64
subdir: linux-64
@@ -1195,19 +1724,18 @@ package:
license: BSD
size: 6179
timestamp: 1689097484095
-- name: cxx-compiler
+- platform: osx-64
+ name: cxx-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- c-compiler: ==1.6.0 h63c33a9_0
- clangxx_osx-64: 15.*
+ - c-compiler 1.6.0 h63c33a9_0
+ - clangxx_osx-64 15.*
url: https://conda.anaconda.org/conda-forge/osx-64/cxx-compiler-1.6.0-h1c7c39f_0.conda
hash:
md5: 9adaf7c9d4e1e15e70a8dd46befbbab2
sha256: dc0860c05ef3083192b8ff4ac8242403f05a550cc42c7709ec8c9f4eaa88e993
- optional: false
- category: main
build: h1c7c39f_0
arch: x86_64
subdir: osx-64
@@ -1215,19 +1743,18 @@ package:
license: BSD
size: 6258
timestamp: 1689097854160
-- name: cxx-compiler
+- platform: osx-arm64
+ name: cxx-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- c-compiler: ==1.6.0 hd291e01_0
- clangxx_osx-arm64: 15.*
+ - c-compiler 1.6.0 hd291e01_0
+ - clangxx_osx-arm64 15.*
url: https://conda.anaconda.org/conda-forge/osx-arm64/cxx-compiler-1.6.0-h1995070_0.conda
hash:
md5: 35c1be0a08578238276ca9417fc1615c
sha256: f0a94c6312d0fd9e3d3c3546894bafa9f9b8b20a411bee0767ad4dac916f3eb5
- optional: false
- category: main
build: h1995070_0
arch: aarch64
subdir: osx-arm64
@@ -1235,18 +1762,17 @@ package:
license: BSD
size: 6301
timestamp: 1689097905706
-- name: cxx-compiler
+- platform: win-64
+ name: cxx-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- vs2019_win-64: '*'
+ - vs2019_win-64
url: https://conda.anaconda.org/conda-forge/win-64/cxx-compiler-1.6.0-h91493d7_0.conda
hash:
md5: b1219f0b49bd243c7139cb9c42c4710c
sha256: 625af0fe202d3df70ba29bb6c80f3e45887b571a87dfd5bff94fa75577e2c417
- optional: false
- category: main
build: h91493d7_0
arch: x86_64
subdir: win-64
@@ -1254,18 +1780,17 @@ package:
license: BSD
size: 6421
timestamp: 1689097764951
-- name: distlib
+- platform: linux-64
+ name: distlib
version: 0.3.7
+ category: main
manager: conda
- platform: linux-64
dependencies:
- python: ==2.7|>=3.6
+ - python ==2.7|>=3.6
url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda
hash:
md5: 12d8aae6994f342618443a8f05c652a0
sha256: 13c887cb4a29e1e853a118cfc0e42b72a7e1d1c50c66c0974885d37f0db30619
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: linux-64
@@ -1275,18 +1800,17 @@ package:
noarch: python
size: 273692
timestamp: 1689598624555
-- name: distlib
+- platform: osx-64
+ name: distlib
version: 0.3.7
+ category: main
manager: conda
- platform: osx-64
dependencies:
- python: ==2.7|>=3.6
+ - python ==2.7|>=3.6
url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda
hash:
md5: 12d8aae6994f342618443a8f05c652a0
sha256: 13c887cb4a29e1e853a118cfc0e42b72a7e1d1c50c66c0974885d37f0db30619
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: osx-64
@@ -1296,18 +1820,17 @@ package:
noarch: python
size: 273692
timestamp: 1689598624555
-- name: distlib
+- platform: osx-arm64
+ name: distlib
version: 0.3.7
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- python: ==2.7|>=3.6
+ - python ==2.7|>=3.6
url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda
hash:
md5: 12d8aae6994f342618443a8f05c652a0
sha256: 13c887cb4a29e1e853a118cfc0e42b72a7e1d1c50c66c0974885d37f0db30619
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: aarch64
subdir: osx-arm64
@@ -1317,18 +1840,17 @@ package:
noarch: python
size: 273692
timestamp: 1689598624555
-- name: distlib
+- platform: win-64
+ name: distlib
version: 0.3.7
+ category: main
manager: conda
- platform: win-64
dependencies:
- python: ==2.7|>=3.6
+ - python ==2.7|>=3.6
url: https://conda.anaconda.org/conda-forge/noarch/distlib-0.3.7-pyhd8ed1ab_0.conda
hash:
md5: 12d8aae6994f342618443a8f05c652a0
sha256: 13c887cb4a29e1e853a118cfc0e42b72a7e1d1c50c66c0974885d37f0db30619
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: win-64
@@ -1338,18 +1860,17 @@ package:
noarch: python
size: 273692
timestamp: 1689598624555
-- name: filelock
+- platform: linux-64
+ name: filelock
version: 3.12.2
+ category: main
manager: conda
- platform: linux-64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.2-pyhd8ed1ab_0.conda
hash:
md5: 53522ec72e6adae42bd373ef58357230
sha256: 1cbae9f05860f2e566e2977f14dfcd5494beb22c028b0a853ade4ec381d9de71
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: linux-64
@@ -1358,18 +1879,17 @@ package:
noarch: python
size: 14904
timestamp: 1686612932730
-- name: filelock
+- platform: osx-64
+ name: filelock
version: 3.12.2
+ category: main
manager: conda
- platform: osx-64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.2-pyhd8ed1ab_0.conda
hash:
md5: 53522ec72e6adae42bd373ef58357230
sha256: 1cbae9f05860f2e566e2977f14dfcd5494beb22c028b0a853ade4ec381d9de71
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: osx-64
@@ -1378,18 +1898,17 @@ package:
noarch: python
size: 14904
timestamp: 1686612932730
-- name: filelock
+- platform: osx-arm64
+ name: filelock
version: 3.12.2
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.2-pyhd8ed1ab_0.conda
hash:
md5: 53522ec72e6adae42bd373ef58357230
sha256: 1cbae9f05860f2e566e2977f14dfcd5494beb22c028b0a853ade4ec381d9de71
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: aarch64
subdir: osx-arm64
@@ -1398,18 +1917,17 @@ package:
noarch: python
size: 14904
timestamp: 1686612932730
-- name: filelock
+- platform: win-64
+ name: filelock
version: 3.12.2
+ category: main
manager: conda
- platform: win-64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/filelock-3.12.2-pyhd8ed1ab_0.conda
hash:
md5: 53522ec72e6adae42bd373ef58357230
sha256: 1cbae9f05860f2e566e2977f14dfcd5494beb22c028b0a853ade4ec381d9de71
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: win-64
@@ -1418,66 +1936,62 @@ package:
noarch: python
size: 14904
timestamp: 1686612932730
-- name: flang
+- platform: win-64
+ name: flang
version: 5.0.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- clangdev: '* flang*'
- libflang: ==5.0.0 h6538335_20180525
- openmp: ==5.0.0
- vc: '>=14,<15.0a0'
+ - clangdev 5.0.0
+ - libflang 5.0.0 h6538335_20180525
+ - openmp 5.0.0
+ - vc >=14,<15.0a0
+ - clangdev * flang*
url: https://conda.anaconda.org/conda-forge/win-64/flang-5.0.0-he025d50_20180525.tar.bz2
hash:
md5: 6a25fea497e9da30b0aa386db4722fc2
sha256: 7094bc2242e52aea89b8c83e54770028b0668b12e063b405c3423fbfb94f6fa2
- optional: false
- category: main
build: he025d50_20180525
arch: x86_64
subdir: win-64
build_number: 20180525
- track_features:
- - flang
+ track_features: flang
license: Apache 2.0
size: 2777448
timestamp: 1527899241687
-- name: flang_win-64
+- platform: win-64
+ name: flang_win-64
version: 5.0.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- flang: 5.0.0.*
+ - flang 5.0.0.*
url: https://conda.anaconda.org/conda-forge/win-64/flang_win-64-5.0.0-h13ae965_20180526.tar.bz2
hash:
md5: 311b7fe1652dab00ff1086865e965764
sha256: 7d006dbff4b97a598b7909c8c00e6f6c770f720ba60e2745137aad2183cbb8a8
- optional: false
- category: main
build: h13ae965_20180526
arch: x86_64
subdir: win-64
build_number: 20180526
- track_features:
- - flang
+ track_features: flang
license: Apache 2.0
size: 4799
timestamp: 1611788765006
-- name: fortran-compiler
+- platform: linux-64
+ name: fortran-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- binutils: '*'
- c-compiler: ==1.6.0 hd590300_0
- gfortran: '*'
- gfortran_linux-64: 12.*
+ - binutils
+ - c-compiler 1.6.0 hd590300_0
+ - gfortran
+ - gfortran_linux-64 12.*
url: https://conda.anaconda.org/conda-forge/linux-64/fortran-compiler-1.6.0-heb67821_0.conda
hash:
md5: b65c49dda97ae497abcbdf3a8ba0018f
sha256: 6b7be32c77fc70740c9f6ff7fd3a99af2d333255072f1044757fbf0641769bd5
- optional: false
- category: main
build: heb67821_0
arch: x86_64
subdir: linux-64
@@ -1485,22 +1999,21 @@ package:
license: BSD
size: 6192
timestamp: 1689097488167
-- name: fortran-compiler
+- platform: osx-64
+ name: fortran-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- cctools: '>=949.0.1'
- gfortran: '*'
- gfortran_osx-64: 12.*
- ld64: '>=530'
- llvm-openmp: '*'
+ - cctools >=949.0.1
+ - gfortran
+ - gfortran_osx-64 12.*
+ - ld64 >=530
+ - llvm-openmp
url: https://conda.anaconda.org/conda-forge/osx-64/fortran-compiler-1.6.0-h932d759_0.conda
hash:
md5: d2bc049eae716dd6879079ddd209ffc3
sha256: 7f06cc52100448d728e2d22ec048972d3fc6e502939cb05d08517a116003e7ed
- optional: false
- category: main
build: h932d759_0
arch: x86_64
subdir: osx-64
@@ -1508,22 +2021,21 @@ package:
license: BSD
size: 6274
timestamp: 1689097845528
-- name: fortran-compiler
+- platform: osx-arm64
+ name: fortran-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- cctools: '>=949.0.1'
- gfortran: '*'
- gfortran_osx-arm64: 12.*
- ld64: '>=530'
- llvm-openmp: '*'
+ - cctools >=949.0.1
+ - gfortran
+ - gfortran_osx-arm64 12.*
+ - ld64 >=530
+ - llvm-openmp
url: https://conda.anaconda.org/conda-forge/osx-arm64/fortran-compiler-1.6.0-h5a50232_0.conda
hash:
md5: acf45cbd8bb968abe2e1476536d565c9
sha256: 05803f2bf726adb85b4ad4b6acbd68e3710f8f09936be10b17bb72ded0fff318
- optional: false
- category: main
build: h5a50232_0
arch: aarch64
subdir: osx-arm64
@@ -1531,18 +2043,17 @@ package:
license: BSD
size: 6334
timestamp: 1689097892948
-- name: fortran-compiler
+- platform: win-64
+ name: fortran-compiler
version: 1.6.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- flang_win-64: 5.*
+ - flang_win-64 5.*
url: https://conda.anaconda.org/conda-forge/win-64/fortran-compiler-1.6.0-h9655429_0.conda
hash:
md5: a6a7c4a0852e2eaf6960b784da4b290b
sha256: 57cf596104ba80fe6d21303de2b5c11dc4a93d465f9025db47d38684921df0da
- optional: false
- category: main
build: h9655429_0
arch: x86_64
subdir: win-64
@@ -1550,18 +2061,17 @@ package:
license: BSD
size: 6450
timestamp: 1689097769579
-- name: gcc
+- platform: linux-64
+ name: gcc
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- gcc_impl_linux-64: 12.3.0.*
+ - gcc_impl_linux-64 12.3.0.*
url: https://conda.anaconda.org/conda-forge/linux-64/gcc-12.3.0-h8d2909c_2.conda
hash:
md5: e2f2f81f367e14ca1f77a870bda2fe59
sha256: 1bbf077688822993c39518056fb43d83ff0920eb42fef11e8714d2a298cc0f27
- optional: false
- category: main
build: h8d2909c_2
arch: x86_64
subdir: linux-64
@@ -1570,24 +2080,23 @@ package:
license_family: BSD
size: 27086
timestamp: 1694604171830
-- name: gcc_impl_linux-64
+- platform: linux-64
+ name: gcc_impl_linux-64
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- binutils_impl_linux-64: '>=2.39'
- libgcc-devel_linux-64: ==12.3.0 h8bca6fd_2
- libgcc-ng: '>=12.3.0'
- libgomp: '>=12.3.0'
- libsanitizer: ==12.3.0 h0f45ef3_2
- libstdcxx-ng: '>=12.3.0'
- sysroot_linux-64: '*'
+ - binutils_impl_linux-64 >=2.39
+ - libgcc-devel_linux-64 ==12.3.0 h8bca6fd_2
+ - libgcc-ng >=12.3.0
+ - libgomp >=12.3.0
+ - libsanitizer ==12.3.0 h0f45ef3_2
+ - libstdcxx-ng >=12.3.0
+ - sysroot_linux-64 *
url: https://conda.anaconda.org/conda-forge/linux-64/gcc_impl_linux-64-12.3.0-he2b93b0_2.conda
hash:
md5: 2f4d8677dc7dd87f93e9abfb2ce86808
sha256: 62a897343229e6dc4a3ace4f419a30e60a0a22ce7d0eac0b9bfb8f0308cf3de5
- optional: false
- category: main
build: he2b93b0_2
arch: x86_64
subdir: linux-64
@@ -1596,20 +2105,19 @@ package:
license_family: GPL
size: 51573870
timestamp: 1695218760476
-- name: gcc_linux-64
+- platform: linux-64
+ name: gcc_linux-64
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- binutils_linux-64: ==2.40 hbdbef99_2
- gcc_impl_linux-64: 12.3.0.*
- sysroot_linux-64: '*'
+ - binutils_linux-64 2.40 hbdbef99_2
+ - gcc_impl_linux-64 12.3.0.*
+ - sysroot_linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/gcc_linux-64-12.3.0-h76fc315_2.conda
hash:
md5: 11517e7b5c910c5b5d6985c0c7eb7f50
sha256: 86f6db7399ec0362e4c4025939debbfebc8ad9ccef75e3c0e4069f85b149f24d
- optional: false
- category: main
build: h76fc315_2
arch: x86_64
subdir: linux-64
@@ -1618,18 +2126,17 @@ package:
license_family: BSD
size: 30351
timestamp: 1694604476800
-- name: gettext
+- platform: linux-64
+ name: gettext
version: 0.21.1
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=12'
+ - libgcc-ng >=12
url: https://conda.anaconda.org/conda-forge/linux-64/gettext-0.21.1-h27087fc_0.tar.bz2
hash:
md5: 14947d8770185e5153fdd04d4673ed37
sha256: 4fcfedc44e4c9a053f0416f9fc6ab6ed50644fca3a761126dbd00d09db1f546a
- optional: false
- category: main
build: h27087fc_0
arch: x86_64
subdir: linux-64
@@ -1637,18 +2144,17 @@ package:
license: LGPL-2.1-or-later AND GPL-3.0-or-later
size: 4320628
timestamp: 1665673494324
-- name: gettext
+- platform: osx-64
+ name: gettext
version: 0.21.1
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libiconv: '>=1.17,<2.0a0'
+ - libiconv >=1.17,<2.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/gettext-0.21.1-h8a4c099_0.tar.bz2
hash:
md5: 1e3aff29ce703d421c43f371ad676cc5
sha256: 915d3cd2d777b9b3fc2e87a25901b8e4a6aa1b2b33cf2ba54e9e9ed4f6b67d94
- optional: false
- category: main
build: h8a4c099_0
arch: x86_64
subdir: osx-64
@@ -1656,52 +2162,49 @@ package:
license: LGPL-2.1-or-later AND GPL-3.0-or-later
size: 4153781
timestamp: 1665674106245
-- name: gettext
+- platform: osx-arm64
+ name: gettext
version: 0.21.1
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libiconv: '>=1.17,<2.0a0'
+ - libiconv >=1.17,<2.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/gettext-0.21.1-h0186832_0.tar.bz2
hash:
md5: 63d2ff6fddfa74e5458488fd311bf635
sha256: 093b2f96dc4b48e4952ab8946facec98b34b708a056251fc19c23c3aad30039e
- optional: false
- category: main
build: h0186832_0
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: gettext
+- platform: win-64
+ name: gettext
version: 0.21.1
+ category: main
manager: conda
- platform: win-64
dependencies:
- libiconv: '>=1.17,<2.0a0'
+ - libiconv >=1.17,<2.0a0
url: https://conda.anaconda.org/conda-forge/win-64/gettext-0.21.1-h5728263_0.tar.bz2
hash:
md5: 299d4fd6798a45337042ff5a48219e5f
sha256: 71c75b0a4dc2cf95d2860ea0076edf9f5558baeb4dacaeecb32643b199074616
- optional: false
- category: main
build: h5728263_0
arch: x86_64
subdir: win-64
build_number: 0
-- name: gfortran
+- platform: linux-64
+ name: gfortran
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- gcc: 12.3.0.*
- gcc_impl_linux-64: 12.3.0.*
- gfortran_impl_linux-64: 12.3.0.*
+ - gcc 12.3.0.*
+ - gcc_impl_linux-64 12.3.0.*
+ - gfortran_impl_linux-64 12.3.0.*
url: https://conda.anaconda.org/conda-forge/linux-64/gfortran-12.3.0-h499e0f7_2.conda
hash:
md5: 0558a8c44eb7a18e6682bd3a8ae6dcab
sha256: 5cc7101ce3f44517b1416e1da6e64f107db8a0e8a31d552d3f6ecd4096c2c5ba
- optional: false
- category: main
build: h499e0f7_2
arch: x86_64
subdir: linux-64
@@ -1710,20 +2213,19 @@ package:
license_family: BSD
size: 26559
timestamp: 1694604486300
-- name: gfortran
+- platform: osx-64
+ name: gfortran
version: 12.3.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- cctools: '*'
- gfortran_osx-64: ==12.3.0
- ld64: '*'
+ - cctools
+ - gfortran_osx-64 12.3.0
+ - ld64
url: https://conda.anaconda.org/conda-forge/osx-64/gfortran-12.3.0-h2c809b3_1.conda
hash:
md5: c48adbaa8944234b80ef287c37e329b0
sha256: e3f99a1f5c88949413b949a1668fff74276f4d434c5fd0d7cb92ff504c6c2189
- optional: false
- category: main
build: h2c809b3_1
arch: x86_64
subdir: osx-64
@@ -1732,20 +2234,19 @@ package:
license_family: GPL
size: 31910
timestamp: 1692106711872
-- name: gfortran
+- platform: osx-arm64
+ name: gfortran
version: 12.3.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- cctools: '*'
- gfortran_osx-arm64: ==12.3.0
- ld64: '*'
+ - cctools
+ - gfortran_osx-arm64 12.3.0
+ - ld64
url: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran-12.3.0-h1ca8e4b_1.conda
hash:
md5: 158beb35b98f5bd8e74ffe9f3af1cb29
sha256: 5944ff2f751f68e16882bb970be0a8c62a4f7cd7f3ca5ccec6fd237a4d9e3200
- optional: false
- category: main
build: h1ca8e4b_1
arch: aarch64
subdir: osx-arm64
@@ -1754,22 +2255,22 @@ package:
license_family: GPL
size: 31942
timestamp: 1692106730571
-- name: gfortran_impl_linux-64
+- platform: linux-64
+ name: gfortran_impl_linux-64
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- gcc_impl_linux-64: '>=12.3.0'
- libgcc-ng: '>=4.9'
- libgfortran5: '>=12.3.0'
- libstdcxx-ng: '>=4.9'
- sysroot_linux-64: '*'
+ - gcc_impl_linux-64 >=12.3.0
+ - libgcc-ng >=12.3.0
+ - libgcc-ng >=4.9
+ - libgfortran5 >=12.3.0
+ - libstdcxx-ng >=4.9
+ - sysroot_linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_impl_linux-64-12.3.0-hfcedea8_2.conda
hash:
md5: 09d48cadff6669068c3bf7ae7dc8ea4a
sha256: 9078e20e88b14b89b4185b2ae61d40147b0006678c41dc3970f6f3e37df69a7e
- optional: false
- category: main
build: hfcedea8_2
arch: x86_64
subdir: linux-64
@@ -1778,27 +2279,26 @@ package:
license_family: GPL
size: 15338850
timestamp: 1695218919922
-- name: gfortran_impl_osx-64
+- platform: osx-64
+ name: gfortran_impl_osx-64
version: 12.3.0
+ category: main
manager: conda
- platform: osx-64
- dependencies:
- gmp: '>=6.2.1,<7.0a0'
- isl: '>=0.25,<0.26.0a0'
- libcxx: '>=15.0.7'
- libgfortran-devel_osx-64: 12.3.0.*
- libgfortran5: '>=12.3.0'
- libiconv: '>=1.17,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- mpc: '>=1.3.1,<2.0a0'
- mpfr: '>=4.2.0,<5.0a0'
- zlib: '*'
+ dependencies:
+ - gmp >=6.2.1,<7.0a0
+ - isl >=0.25,<0.26.0a0
+ - libcxx >=15.0.7
+ - libgfortran-devel_osx-64 12.3.0.*
+ - libgfortran5 >=12.3.0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - mpc >=1.3.1,<2.0a0
+ - mpfr >=4.2.0,<5.0a0
+ - zlib
url: https://conda.anaconda.org/conda-forge/osx-64/gfortran_impl_osx-64-12.3.0-h54fd467_1.conda
hash:
md5: 5f4d40236e204c6e62cd0a316244f316
sha256: fd0fe164d8e784fc23ac55511ed800c21970f4f1b1e52bc42be67c67734edc74
- optional: false
- category: main
build: h54fd467_1
arch: x86_64
subdir: osx-64
@@ -1807,27 +2307,26 @@ package:
license_family: GPL
size: 20576597
timestamp: 1690184449426
-- name: gfortran_impl_osx-arm64
+- platform: osx-arm64
+ name: gfortran_impl_osx-arm64
version: 12.3.0
+ category: main
manager: conda
- platform: osx-arm64
- dependencies:
- gmp: '>=6.2.1,<7.0a0'
- isl: '>=0.25,<0.26.0a0'
- libcxx: '>=15.0.7'
- libgfortran-devel_osx-arm64: 12.3.0.*
- libgfortran5: '>=12.3.0'
- libiconv: '>=1.17,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- mpc: '>=1.3.1,<2.0a0'
- mpfr: '>=4.2.0,<5.0a0'
- zlib: '*'
+ dependencies:
+ - gmp >=6.2.1,<7.0a0
+ - isl >=0.25,<0.26.0a0
+ - libcxx >=15.0.7
+ - libgfortran-devel_osx-arm64 12.3.0.*
+ - libgfortran5 >=12.3.0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - mpc >=1.3.1,<2.0a0
+ - mpfr >=4.2.0,<5.0a0
+ - zlib
url: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_impl_osx-arm64-12.3.0-hbbb9e1e_1.conda
hash:
md5: 21ac0fb1a74b1edd0b53d0508f418723
sha256: 1e748f5692932833bdd9daecb6caf735e36a8f76e597ceeea6069f6936261976
- optional: false
- category: main
build: hbbb9e1e_1
arch: aarch64
subdir: osx-arm64
@@ -1836,21 +2335,20 @@ package:
license_family: GPL
size: 17487856
timestamp: 1690186425928
-- name: gfortran_linux-64
+- platform: linux-64
+ name: gfortran_linux-64
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- binutils_linux-64: ==2.40 hbdbef99_2
- gcc_linux-64: ==12.3.0 h76fc315_2
- gfortran_impl_linux-64: 12.3.0.*
- sysroot_linux-64: '*'
+ - binutils_linux-64 2.40 hbdbef99_2
+ - gcc_linux-64 12.3.0 h76fc315_2
+ - gfortran_impl_linux-64 12.3.0.*
+ - sysroot_linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/gfortran_linux-64-12.3.0-h7fe76b4_2.conda
hash:
md5: 3a749210487c0358b6f135a648cbbf60
sha256: ab6131d71bfa568b10f9e34e07ed5757625c7a2b6adca87c25db622f1dffe81b
- optional: false
- category: main
build: h7fe76b4_2
arch: x86_64
subdir: linux-64
@@ -1859,25 +2357,24 @@ package:
license_family: BSD
size: 28785
timestamp: 1694604513817
-- name: gfortran_osx-64
+- platform: osx-64
+ name: gfortran_osx-64
version: 12.3.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- cctools_osx-64: '*'
- clang: '*'
- clang_osx-64: '*'
- gfortran_impl_osx-64: ==12.3.0
- ld64_osx-64: '*'
- libgfortran: 5.*
- libgfortran-devel_osx-64: ==12.3.0
- libgfortran5: '>=12.3.0'
+ - cctools_osx-64
+ - clang
+ - clang_osx-64
+ - gfortran_impl_osx-64 12.3.0
+ - ld64_osx-64
+ - libgfortran 5.*
+ - libgfortran-devel_osx-64 12.3.0
+ - libgfortran5 >=12.3.0
url: https://conda.anaconda.org/conda-forge/osx-64/gfortran_osx-64-12.3.0-h18f7dce_1.conda
hash:
md5: 436af2384c47aedb94af78a128e174f1
sha256: 527c03edaa1f1faec95476d5045c67c8b1a792dc2ce80cdd22f3db0f0b8a867d
- optional: false
- category: main
build: h18f7dce_1
arch: x86_64
subdir: osx-64
@@ -1886,25 +2383,24 @@ package:
license_family: GPL
size: 34958
timestamp: 1692106693203
-- name: gfortran_osx-arm64
+- platform: osx-arm64
+ name: gfortran_osx-arm64
version: 12.3.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- cctools_osx-arm64: '*'
- clang: '*'
- clang_osx-arm64: '*'
- gfortran_impl_osx-arm64: ==12.3.0
- ld64_osx-arm64: '*'
- libgfortran: 5.*
- libgfortran-devel_osx-arm64: ==12.3.0
- libgfortran5: '>=12.3.0'
+ - cctools_osx-arm64
+ - clang
+ - clang_osx-arm64
+ - gfortran_impl_osx-arm64 12.3.0
+ - ld64_osx-arm64
+ - libgfortran 5.*
+ - libgfortran-devel_osx-arm64 12.3.0
+ - libgfortran5 >=12.3.0
url: https://conda.anaconda.org/conda-forge/osx-arm64/gfortran_osx-arm64-12.3.0-h57527a5_1.conda
hash:
md5: 7d8ce258d478b7dbcc2728168a6959a1
sha256: 45b2b76f6db8f6e150239761d3ee2b64d94628c3bf65af0a09924bbfdb8d16e6
- optional: false
- category: main
build: h57527a5_1
arch: aarch64
subdir: osx-arm64
@@ -1913,79 +2409,156 @@ package:
license_family: GPL
size: 35073
timestamp: 1692106707604
-- name: git
- version: 2.42.0
+- platform: linux-64
+ name: ghp-import
+ version: 2.1.0
+ category: main
manager: conda
- platform: linux-64
- dependencies:
- curl: '*'
- gettext: '*'
- libexpat: '>=2.5.0,<3.0a0'
- libgcc-ng: '>=12'
- libiconv: '>=1.17,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.2,<4.0a0'
- pcre2: '>=10.40,<10.41.0a0'
- perl: 5.*
- url: https://conda.anaconda.org/conda-forge/linux-64/git-2.42.0-pl5321h86e50cf_0.conda
+ dependencies:
+ - python >=3.6
+ - python-dateutil >=2.8.1
+ url: https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2
hash:
- md5: 96ad24c67e0056d171385859c43218a2
- sha256: 6f6b3d60da46f53f1e1708a63d6ce5f119e6aba0f5243326b7ecaf3b0cdbc6d4
- optional: false
- category: main
- build: pl5321h86e50cf_0
+ md5: 6d8d61116031a3f5b1f32e7899785866
+ sha256: 097d9b4c946b195800bc68f68393370049238509b08ef828c06fbf481bbc139c
+ build: pyhd8ed1ab_0
arch: x86_64
subdir: linux-64
build_number: 0
- license: GPL-2.0-or-later and LGPL-2.1-or-later
- size: 9744309
- timestamp: 1692712850682
-- name: git
- version: 2.42.0
+ license: LicenseRef-Tumbolia-Public
+ noarch: python
+ size: 15504
+ timestamp: 1651585848291
+- platform: osx-64
+ name: ghp-import
+ version: 2.1.0
+ category: main
manager: conda
- platform: osx-64
- dependencies:
- __osx: '>=10.9'
- curl: '*'
- gettext: '*'
- libexpat: '>=2.5.0,<3.0a0'
- libiconv: '>=1.17,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.2,<4.0a0'
- pcre2: '>=10.40,<10.41.0a0'
- perl: 5.*
- url: https://conda.anaconda.org/conda-forge/osx-64/git-2.42.0-pl5321hbb4c4ee_0.conda
+ dependencies:
+ - python >=3.6
+ - python-dateutil >=2.8.1
+ url: https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2
hash:
- md5: 8ac00689b2ba60b5e052282be9cf571d
- sha256: dfbc33e7e24328506520c9964f10dec918a69be5136be0819fbb1c5aafe1fef2
- optional: false
- category: main
- build: pl5321hbb4c4ee_0
+ md5: 6d8d61116031a3f5b1f32e7899785866
+ sha256: 097d9b4c946b195800bc68f68393370049238509b08ef828c06fbf481bbc139c
+ build: pyhd8ed1ab_0
arch: x86_64
subdir: osx-64
build_number: 0
- license: GPL-2.0-or-later and LGPL-2.1-or-later
- size: 6866908
- timestamp: 1692713223540
-- name: git
- version: 2.42.0
+ license: LicenseRef-Tumbolia-Public
+ noarch: python
+ size: 15504
+ timestamp: 1651585848291
+- platform: osx-arm64
+ name: ghp-import
+ version: 2.1.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- curl: '*'
- gettext: '*'
- libexpat: '>=2.5.0,<3.0a0'
- libiconv: '>=1.17,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.2,<4.0a0'
- pcre2: '>=10.40,<10.41.0a0'
- perl: 5.*
- url: https://conda.anaconda.org/conda-forge/osx-arm64/git-2.42.0-pl5321h46e2b6d_0.conda
+ - python >=3.6
+ - python-dateutil >=2.8.1
+ url: https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2
hash:
- md5: c909b3aef69e4971acf433f5caaf4c91
- sha256: 3727e5288c532cb56a1dac0b303193e8a791d0b60b6e514eaafeda5a1de04d5b
- optional: false
+ md5: 6d8d61116031a3f5b1f32e7899785866
+ sha256: 097d9b4c946b195800bc68f68393370049238509b08ef828c06fbf481bbc139c
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: LicenseRef-Tumbolia-Public
+ noarch: python
+ size: 15504
+ timestamp: 1651585848291
+- platform: win-64
+ name: ghp-import
+ version: 2.1.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ - python-dateutil >=2.8.1
+ url: https://conda.anaconda.org/conda-forge/noarch/ghp-import-2.1.0-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 6d8d61116031a3f5b1f32e7899785866
+ sha256: 097d9b4c946b195800bc68f68393370049238509b08ef828c06fbf481bbc139c
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: LicenseRef-Tumbolia-Public
+ noarch: python
+ size: 15504
+ timestamp: 1651585848291
+- platform: linux-64
+ name: git
+ version: 2.42.0
+ category: main
+ manager: conda
+ dependencies:
+ - curl *
+ - gettext *
+ - libexpat >=2.5.0,<3.0a0
+ - libgcc-ng >=12
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.2,<4.0a0
+ - pcre2 >=10.40,<10.41.0a0
+ - perl 5.*
+ url: https://conda.anaconda.org/conda-forge/linux-64/git-2.42.0-pl5321h86e50cf_0.conda
+ hash:
+ md5: 96ad24c67e0056d171385859c43218a2
+ sha256: 6f6b3d60da46f53f1e1708a63d6ce5f119e6aba0f5243326b7ecaf3b0cdbc6d4
+ build: pl5321h86e50cf_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: GPL-2.0-or-later and LGPL-2.1-or-later
+ size: 9744309
+ timestamp: 1692712850682
+- platform: osx-64
+ name: git
+ version: 2.42.0
+ category: main
+ manager: conda
+ dependencies:
+ - __osx >=10.9
+ - curl *
+ - gettext *
+ - libexpat >=2.5.0,<3.0a0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.2,<4.0a0
+ - pcre2 >=10.40,<10.41.0a0
+ - perl 5.*
+ url: https://conda.anaconda.org/conda-forge/osx-64/git-2.42.0-pl5321hbb4c4ee_0.conda
+ hash:
+ md5: 8ac00689b2ba60b5e052282be9cf571d
+ sha256: dfbc33e7e24328506520c9964f10dec918a69be5136be0819fbb1c5aafe1fef2
+ build: pl5321hbb4c4ee_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: GPL-2.0-or-later and LGPL-2.1-or-later
+ size: 6866908
+ timestamp: 1692713223540
+- platform: osx-arm64
+ name: git
+ version: 2.42.0
category: main
+ manager: conda
+ dependencies:
+ - curl *
+ - gettext *
+ - libexpat >=2.5.0,<3.0a0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.2,<4.0a0
+ - pcre2 >=10.40,<10.41.0a0
+ - perl 5.*
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/git-2.42.0-pl5321h46e2b6d_0.conda
+ hash:
+ md5: c909b3aef69e4971acf433f5caaf4c91
+ sha256: 3727e5288c532cb56a1dac0b303193e8a791d0b60b6e514eaafeda5a1de04d5b
build: pl5321h46e2b6d_0
arch: aarch64
subdir: osx-arm64
@@ -1993,17 +2566,16 @@ package:
license: GPL-2.0-or-later and LGPL-2.1-or-later
size: 8875946
timestamp: 1692713309317
-- name: git
+- platform: win-64
+ name: git
version: 2.42.0
+ category: main
manager: conda
- platform: win-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/win-64/git-2.42.0-h57928b3_0.conda
hash:
md5: 20f9c59e8dcabb25477f28958be0d6a0
sha256: 679e31548118fbfb8c5316dc24ec394703ab271483399aff3cab7c4adc29db3b
- optional: false
- category: main
build: h57928b3_0
arch: x86_64
subdir: win-64
@@ -2011,18 +2583,17 @@ package:
license: GPL-2.0-or-later and LGPL-2.1-or-later
size: 117936049
timestamp: 1692713512397
-- name: gmp
+- platform: osx-64
+ name: gmp
version: 6.2.1
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libcxx: '>=10.0.1'
+ - libcxx >=10.0.1
url: https://conda.anaconda.org/conda-forge/osx-64/gmp-6.2.1-h2e338ed_0.tar.bz2
hash:
md5: dedc96914428dae572a39e69ee2a392f
sha256: d6386708f6b7bcf790c57e985a5ca5636ec6ccaed0493b8ddea231aaeb8bfb00
- optional: false
- category: main
build: h2e338ed_0
arch: x86_64
subdir: osx-64
@@ -2030,18 +2601,17 @@ package:
license: GPL-2.0-or-later AND LGPL-3.0-or-later
size: 792127
timestamp: 1605751675650
-- name: gmp
+- platform: osx-arm64
+ name: gmp
version: 6.2.1
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libcxx: '>=11.0.0'
+ - libcxx >=11.0.0
url: https://conda.anaconda.org/conda-forge/osx-arm64/gmp-6.2.1-h9f76cd9_0.tar.bz2
hash:
md5: f8140773b6ca51bf32feec9b4290a8c5
sha256: 2fd12c3e78b6c632f7f34883b942b973bdd24302c74f2b9b78e776b654baf591
- optional: false
- category: main
build: h9f76cd9_0
arch: aarch64
subdir: osx-arm64
@@ -2049,19 +2619,18 @@ package:
license: GPL-2.0-or-later AND LGPL-3.0-or-later
size: 570567
timestamp: 1605751606013
-- name: gxx
+- platform: linux-64
+ name: gxx
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- gcc: 12.3.0.*
- gxx_impl_linux-64: 12.3.0.*
+ - gcc 12.3.0.*
+ - gxx_impl_linux-64 12.3.0.*
url: https://conda.anaconda.org/conda-forge/linux-64/gxx-12.3.0-h8d2909c_2.conda
hash:
md5: 673bac341be6b90ef9e8abae7e52ca46
sha256: 5fd65768fb602fd21466831c96e7a2355a4df692507abbd481aa65a777151d85
- optional: false
- category: main
build: h8d2909c_2
arch: x86_64
subdir: linux-64
@@ -2070,20 +2639,19 @@ package:
license_family: BSD
size: 26539
timestamp: 1694604501713
-- name: gxx_impl_linux-64
+- platform: linux-64
+ name: gxx_impl_linux-64
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- gcc_impl_linux-64: ==12.3.0 he2b93b0_2
- libstdcxx-devel_linux-64: ==12.3.0 h8bca6fd_2
- sysroot_linux-64: '*'
+ - gcc_impl_linux-64 12.3.0 he2b93b0_2
+ - libstdcxx-devel_linux-64 12.3.0 h8bca6fd_2
+ - sysroot_linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/gxx_impl_linux-64-12.3.0-he2b93b0_2.conda
hash:
md5: f89b9916afc36fc5562fbfc11330a8a2
sha256: 1ca91c1a3892b61da7efe150f9a1830e18aac82f563b27bf707520cb3297cc7a
- optional: false
- category: main
build: he2b93b0_2
arch: x86_64
subdir: linux-64
@@ -2092,21 +2660,20 @@ package:
license_family: GPL
size: 12667490
timestamp: 1695218983245
-- name: gxx_linux-64
+- platform: linux-64
+ name: gxx_linux-64
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- binutils_linux-64: ==2.40 hbdbef99_2
- gcc_linux-64: ==12.3.0 h76fc315_2
- gxx_impl_linux-64: 12.3.0.*
- sysroot_linux-64: '*'
+ - binutils_linux-64 2.40 hbdbef99_2
+ - gcc_linux-64 12.3.0 h76fc315_2
+ - gxx_impl_linux-64 12.3.0.*
+ - sysroot_linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/gxx_linux-64-12.3.0-h8a814eb_2.conda
hash:
md5: f517b1525e9783849bd56a5dc45a9960
sha256: 9878771cf1316230150a795d213a2f1dd7dead07dc0bccafae20533d631d5e69
- optional: false
- category: main
build: h8a814eb_2
arch: x86_64
subdir: linux-64
@@ -2115,17 +2682,16 @@ package:
license_family: BSD
size: 28640
timestamp: 1694604524890
-- name: icu
+- platform: osx-64
+ name: icu
version: '73.2'
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/icu-73.2-hf5e326d_0.conda
hash:
md5: 5cc301d759ec03f28328428e28f65591
sha256: f66362dc36178ac9b7c7a9b012948a9d2d050b3debec24bbd94aadbc44854185
- optional: false
- category: main
build: hf5e326d_0
arch: x86_64
subdir: osx-64
@@ -2134,17 +2700,16 @@ package:
license_family: MIT
size: 11787527
timestamp: 1692901622519
-- name: icu
+- platform: osx-arm64
+ name: icu
version: '73.2'
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/icu-73.2-hc8870d7_0.conda
hash:
md5: 8521bd47c0e11c5902535bb1a17c565f
sha256: ff9cd0c6cd1349954c801fb443c94192b637e1b414514539f3c49c56a39f51b1
- optional: false
- category: main
build: hc8870d7_0
arch: aarch64
subdir: osx-arm64
@@ -2153,19 +2718,18 @@ package:
license_family: MIT
size: 11997841
timestamp: 1692902104771
-- name: identify
+- platform: linux-64
+ name: identify
version: 2.5.26
+ category: main
manager: conda
- platform: linux-64
dependencies:
- ukkonen: '*'
- python: '>=3.6'
+ - ukkonen *
+ - python >=3.6
url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.26-pyhd8ed1ab_0.conda
hash:
md5: 1ca86f154e13f4aa20b48e20d6bbf924
sha256: 9ee6fe7a65b17684c6fc46adb2b35e08a3bf48c7d39bed5a9c17ee6050574066
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: linux-64
@@ -2175,19 +2739,18 @@ package:
noarch: python
size: 78043
timestamp: 1690062001851
-- name: identify
+- platform: osx-64
+ name: identify
version: 2.5.26
+ category: main
manager: conda
- platform: osx-64
dependencies:
- ukkonen: '*'
- python: '>=3.6'
+ - ukkonen *
+ - python >=3.6
url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.26-pyhd8ed1ab_0.conda
hash:
md5: 1ca86f154e13f4aa20b48e20d6bbf924
sha256: 9ee6fe7a65b17684c6fc46adb2b35e08a3bf48c7d39bed5a9c17ee6050574066
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: osx-64
@@ -2197,19 +2760,18 @@ package:
noarch: python
size: 78043
timestamp: 1690062001851
-- name: identify
+- platform: osx-arm64
+ name: identify
version: 2.5.26
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- ukkonen: '*'
- python: '>=3.6'
+ - ukkonen *
+ - python >=3.6
url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.26-pyhd8ed1ab_0.conda
hash:
md5: 1ca86f154e13f4aa20b48e20d6bbf924
sha256: 9ee6fe7a65b17684c6fc46adb2b35e08a3bf48c7d39bed5a9c17ee6050574066
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: aarch64
subdir: osx-arm64
@@ -2219,19 +2781,18 @@ package:
noarch: python
size: 78043
timestamp: 1690062001851
-- name: identify
+- platform: win-64
+ name: identify
version: 2.5.26
+ category: main
manager: conda
- platform: win-64
dependencies:
- ukkonen: '*'
- python: '>=3.6'
+ - ukkonen *
+ - python >=3.6
url: https://conda.anaconda.org/conda-forge/noarch/identify-2.5.26-pyhd8ed1ab_0.conda
hash:
md5: 1ca86f154e13f4aa20b48e20d6bbf924
sha256: 9ee6fe7a65b17684c6fc46adb2b35e08a3bf48c7d39bed5a9c17ee6050574066
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: win-64
@@ -2241,18 +2802,181 @@ package:
noarch: python
size: 78043
timestamp: 1690062001851
-- name: isl
+- platform: linux-64
+ name: idna
+ version: '3.4'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 34272b248891bddccc64479f9a7fffed
+ sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 56742
+ timestamp: 1663625484114
+- platform: osx-64
+ name: idna
+ version: '3.4'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 34272b248891bddccc64479f9a7fffed
+ sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 56742
+ timestamp: 1663625484114
+- platform: osx-arm64
+ name: idna
+ version: '3.4'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 34272b248891bddccc64479f9a7fffed
+ sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 56742
+ timestamp: 1663625484114
+- platform: win-64
+ name: idna
+ version: '3.4'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/idna-3.4-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 34272b248891bddccc64479f9a7fffed
+ sha256: 9887c35c374ec1847f167292d3fde023cb4c994a4ceeec283072b95440131f09
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 56742
+ timestamp: 1663625484114
+- platform: linux-64
+ name: importlib-metadata
+ version: 6.8.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ - zipp >=0.5
+ url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda
+ hash:
+ md5: 4e9f59a060c3be52bc4ddc46ee9b6946
+ sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf
+ build: pyha770c72_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 25910
+ timestamp: 1688754651944
+- platform: osx-64
+ name: importlib-metadata
+ version: 6.8.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ - zipp >=0.5
+ url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda
+ hash:
+ md5: 4e9f59a060c3be52bc4ddc46ee9b6946
+ sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf
+ build: pyha770c72_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 25910
+ timestamp: 1688754651944
+- platform: osx-arm64
+ name: importlib-metadata
+ version: 6.8.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ - zipp >=0.5
+ url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda
+ hash:
+ md5: 4e9f59a060c3be52bc4ddc46ee9b6946
+ sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf
+ build: pyha770c72_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 25910
+ timestamp: 1688754651944
+- platform: win-64
+ name: importlib-metadata
+ version: 6.8.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ - zipp >=0.5
+ url: https://conda.anaconda.org/conda-forge/noarch/importlib-metadata-6.8.0-pyha770c72_0.conda
+ hash:
+ md5: 4e9f59a060c3be52bc4ddc46ee9b6946
+ sha256: 2797ed927d65324309b6c630190d917b9f2111e0c217b721f80429aeb57f9fcf
+ build: pyha770c72_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 25910
+ timestamp: 1688754651944
+- platform: osx-64
+ name: isl
version: '0.25'
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libcxx: '>=13.0.1'
+ - libcxx >=13.0.1
url: https://conda.anaconda.org/conda-forge/osx-64/isl-0.25-hb486fe8_0.tar.bz2
hash:
md5: 45a9a46c78c0ea5c275b535f7923bde3
sha256: f0a10b2be179809d4444bee0a60d5aa286b306520d55897b29d22b9848ab71fb
- optional: false
- category: main
build: hb486fe8_0
arch: x86_64
subdir: osx-64
@@ -2261,18 +2985,17 @@ package:
license_family: MIT
size: 918877
timestamp: 1656870452902
-- name: isl
+- platform: osx-arm64
+ name: isl
version: '0.25'
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libcxx: '>=13.0.1'
+ - libcxx >=13.0.1
url: https://conda.anaconda.org/conda-forge/osx-arm64/isl-0.25-h9a09cb3_0.tar.bz2
hash:
md5: b0c90b63ffeb9e2d045be8f5bc64741c
sha256: 6c6b486de9db1c2c897b24f6b0eb9a1ecdaf355ede1ee2ccb0c1aaee4bd9ef59
- optional: false
- category: main
build: h9a09cb3_0
arch: aarch64
subdir: osx-arm64
@@ -2281,33 +3004,115 @@ package:
license_family: MIT
size: 859063
timestamp: 1656870362879
-- name: kernel-headers_linux-64
+- platform: linux-64
+ name: jinja2
+ version: 3.1.2
+ category: main
+ manager: conda
+ dependencies:
+ - markupsafe >=2.0
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2
+ hash:
+ md5: c8490ed5c70966d232fdd389d0dbed37
+ sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5
+ build: pyhd8ed1ab_1
+ arch: x86_64
+ subdir: linux-64
+ build_number: 1
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 101443
+ timestamp: 1654302514195
+- platform: osx-64
+ name: jinja2
+ version: 3.1.2
+ category: main
+ manager: conda
+ dependencies:
+ - markupsafe >=2.0
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2
+ hash:
+ md5: c8490ed5c70966d232fdd389d0dbed37
+ sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5
+ build: pyhd8ed1ab_1
+ arch: x86_64
+ subdir: osx-64
+ build_number: 1
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 101443
+ timestamp: 1654302514195
+- platform: osx-arm64
+ name: jinja2
+ version: 3.1.2
+ category: main
+ manager: conda
+ dependencies:
+ - markupsafe >=2.0
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2
+ hash:
+ md5: c8490ed5c70966d232fdd389d0dbed37
+ sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5
+ build: pyhd8ed1ab_1
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 1
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 101443
+ timestamp: 1654302514195
+- platform: win-64
+ name: jinja2
+ version: 3.1.2
+ category: main
+ manager: conda
+ dependencies:
+ - markupsafe >=2.0
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2
+ hash:
+ md5: c8490ed5c70966d232fdd389d0dbed37
+ sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5
+ build: pyhd8ed1ab_1
+ arch: x86_64
+ subdir: win-64
+ build_number: 1
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 101443
+ timestamp: 1654302514195
+- platform: linux-64
+ name: kernel-headers_linux-64
version: 2.6.32
+ category: main
manager: conda
- platform: linux-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/kernel-headers_linux-64-2.6.32-he073ed8_15.tar.bz2
hash:
md5: 5dd5127afd710f91f6a75821bac0a4f0
sha256: c9f33acc0f1095bd4e7a2b577dfa41fc3fef3713b3975e8467a0fbed188fe6f4
- optional: false
- category: main
build: he073ed8_15
arch: x86_64
subdir: linux-64
build_number: 0
-- name: keyutils
+- platform: linux-64
+ name: keyutils
version: 1.6.1
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=10.3.0'
+ - libgcc-ng >=10.3.0
url: https://conda.anaconda.org/conda-forge/linux-64/keyutils-1.6.1-h166bdaf_0.tar.bz2
hash:
md5: 30186d27e2c9fa62b45fb1476b7200e3
sha256: 150c05a6e538610ca7c43beb3a40d65c90537497a4f6a5f4d15ec0451b6f5ebb
- optional: false
- category: main
build: h166bdaf_0
arch: x86_64
subdir: linux-64
@@ -2315,22 +3120,21 @@ package:
license: LGPL-2.1-or-later
size: 117831
timestamp: 1646151697040
-- name: krb5
+- platform: linux-64
+ name: krb5
version: 1.21.2
+ category: main
manager: conda
- platform: linux-64
dependencies:
- keyutils: '>=1.6.1,<2.0a0'
- libedit: '>=3.1.20191231,<4.0a0'
- libgcc-ng: '>=12'
- libstdcxx-ng: '>=12'
- openssl: '>=3.1.2,<4.0a0'
+ - keyutils >=1.6.1,<2.0a0
+ - libedit >=3.1.20191231,<4.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - openssl >=3.1.2,<4.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/krb5-1.21.2-h659d440_0.conda
hash:
md5: cd95826dbd331ed1be26bdf401432844
sha256: 259bfaae731989b252b7d2228c1330ef91b641c9d68ff87dae02cbae682cb3e4
- optional: false
- category: main
build: h659d440_0
arch: x86_64
subdir: linux-64
@@ -2339,20 +3143,19 @@ package:
license_family: MIT
size: 1371181
timestamp: 1692097755782
-- name: krb5
+- platform: osx-64
+ name: krb5
version: 1.21.2
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libcxx: '>=15.0.7'
- libedit: '>=3.1.20191231,<4.0a0'
- openssl: '>=3.1.2,<4.0a0'
+ - libcxx >=15.0.7
+ - libedit >=3.1.20191231,<4.0a0
+ - openssl >=3.1.2,<4.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/krb5-1.21.2-hb884880_0.conda
hash:
md5: 80505a68783f01dc8d7308c075261b2f
sha256: 081ae2008a21edf57c048f331a17c65d1ccb52d6ca2f87ee031a73eff4dc0fc6
- optional: false
- category: main
build: hb884880_0
arch: x86_64
subdir: osx-64
@@ -2361,20 +3164,19 @@ package:
license_family: MIT
size: 1183568
timestamp: 1692098004387
-- name: krb5
+- platform: osx-arm64
+ name: krb5
version: 1.21.2
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libcxx: '>=15.0.7'
- libedit: '>=3.1.20191231,<4.0a0'
- openssl: '>=3.1.2,<4.0a0'
+ - libcxx >=15.0.7
+ - libedit >=3.1.20191231,<4.0a0
+ - openssl >=3.1.2,<4.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/krb5-1.21.2-h92f50d5_0.conda
hash:
md5: 92f1cff174a538e0722bf2efb16fc0b2
sha256: 70bdb9b4589ec7c7d440e485ae22b5a352335ffeb91a771d4c162996c3070875
- optional: false
- category: main
build: h92f50d5_0
arch: aarch64
subdir: osx-arm64
@@ -2383,138 +3185,132 @@ package:
license_family: MIT
size: 1195575
timestamp: 1692098070699
-- name: ld64
+- platform: osx-64
+ name: ld64
version: '609'
+ category: main
manager: conda
- platform: osx-64
dependencies:
- ld64_osx-64: ==609 h0fd476b_14
- libllvm15: '>=15.0.7,<15.1.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-64/ld64-609-ha91a046_14.conda
+ - ld64_osx-64 609 h0fd476b_15
+ - libllvm15 >=15.0.7,<15.1.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-64/ld64-609-ha91a046_15.conda
hash:
- md5: ec7082eb79ea5db88c97b7bcad3db986
- sha256: 89483e16c632ca19de8b27f679b6eb48a847096bde21eb50ee662963f4b96e95
- optional: false
- category: main
- build: ha91a046_14
+ md5: 3c27099076bcf8fdde53785efb46dbf1
+ sha256: 5c13ce2916f592adb29301dfbbcfe773437744f2890881615210b041b6276fc2
+ build: ha91a046_15
arch: x86_64
subdir: osx-64
- build_number: 14
+ build_number: 15
constrains:
- cctools 973.0.1.*
- cctools_osx-64 973.0.1.*
license: APSL-2.0
license_family: Other
- size: 19166
- timestamp: 1690768066030
-- name: ld64
+ size: 19091
+ timestamp: 1697075759131
+- platform: osx-arm64
+ name: ld64
version: '609'
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- ld64_osx-arm64: ==609 hc4dc95b_14
- libllvm15: '>=15.0.7,<15.1.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-609-h89fa09d_14.conda
+ - ld64_osx-arm64 609 hc4dc95b_15
+ - libllvm15 >=15.0.7,<15.1.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64-609-h89fa09d_15.conda
hash:
- md5: 5d2c82c220addd4630baaa7118a301d3
- sha256: 1bddb451bb0f2e95414239c43a528ec6039f8c84a9b84a212a3a0d851c74306b
- optional: false
- category: main
- build: h89fa09d_14
+ md5: 920d98b2054e806dbe4c5fb8f54cad31
+ sha256: 6a4370f5984a429a8695bb4f87b879ec2a4af284b0859de863a938cc4a758b81
+ build: h89fa09d_15
arch: aarch64
subdir: osx-arm64
- build_number: 14
+ build_number: 15
constrains:
- - cctools_osx-arm64 973.0.1.*
- cctools 973.0.1.*
+ - cctools_osx-arm64 973.0.1.*
license: APSL-2.0
license_family: Other
- size: 19226
- timestamp: 1690768480431
-- name: ld64_osx-64
+ size: 19147
+ timestamp: 1697075929066
+- platform: osx-64
+ name: ld64_osx-64
version: '609'
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libcxx: '*'
- libllvm15: '>=15.0.7,<15.1.0a0'
- sigtool: '*'
- tapi: '>=1100.0.11,<1101.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-609-h0fd476b_14.conda
+ - libcxx
+ - libllvm15 >=15.0.7,<15.1.0a0
+ - sigtool
+ - tapi >=1100.0.11,<1101.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-64/ld64_osx-64-609-h0fd476b_15.conda
hash:
- md5: 3aa0a91888b5c1771630b86f42c9d2da
- sha256: 5a86a26201dc8f14e7a28b7234b4031d76a50ccbbc6cb448cc7818c01189b3ac
- optional: false
- category: main
- build: h0fd476b_14
+ md5: f98d11f8e568521e1e3f88cbe5a4d53c
+ sha256: 6d793058554a46ffd4a059bf3bd33741856bfcbdaeab8e11cc1dc2df1137f7f0
+ build: h0fd476b_15
arch: x86_64
subdir: osx-64
- build_number: 14
+ build_number: 15
constrains:
- - cctools_osx-64 973.0.1.*
- cctools 973.0.1.*
- - clang >=15.0.7,<16.0a0
- ld 609.*
+ - clang >=15.0.7,<16.0a0
+ - cctools_osx-64 973.0.1.*
license: APSL-2.0
license_family: Other
- size: 1057004
- timestamp: 1690767877853
-- name: ld64_osx-arm64
+ size: 1062203
+ timestamp: 1697075547194
+- platform: osx-arm64
+ name: ld64_osx-arm64
version: '609'
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libcxx: '*'
- libllvm15: '>=15.0.7,<15.1.0a0'
- sigtool: '*'
- tapi: '>=1100.0.11,<1101.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-609-hc4dc95b_14.conda
+ - libcxx
+ - libllvm15 >=15.0.7,<15.1.0a0
+ - sigtool
+ - tapi >=1100.0.11,<1101.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ld64_osx-arm64-609-hc4dc95b_15.conda
hash:
- md5: 1d41ae30b0c077ef3feab2f2e27bd593
- sha256: 138f187e16d6952cb4f54ae1abef014a368948f0eb568c472f0798aa76fd959d
- optional: false
- category: main
- build: hc4dc95b_14
+ md5: 19220ad0db4efb72970ab401ebbd7c33
+ sha256: 78696e68684c8f8e4507bcdf3e072b5c0f6eb7af58383eb339a5035999039cb2
+ build: hc4dc95b_15
arch: aarch64
subdir: osx-arm64
- build_number: 14
+ build_number: 15
constrains:
- - cctools_osx-arm64 973.0.1.*
- clang >=15.0.7,<16.0a0
- cctools 973.0.1.*
- ld 609.*
+ - cctools_osx-arm64 973.0.1.*
license: APSL-2.0
license_family: Other
- size: 1041974
- timestamp: 1690768191902
-- name: ld_impl_linux-64
+ size: 1046454
+ timestamp: 1697075685770
+- platform: linux-64
+ name: ld_impl_linux-64
version: '2.40'
+ category: main
manager: conda
- platform: linux-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.40-h41732ed_0.conda
hash:
md5: 7aca3059a1729aa76c597603f10b0dd3
sha256: f6cc89d887555912d6c61b295d398cff9ec982a3417d38025c45d5dd9b9e79cd
- optional: false
- category: main
build: h41732ed_0
arch: x86_64
subdir: linux-64
build_number: 0
-- name: libclang-cpp15
+- platform: osx-64
+ name: libclang-cpp15
version: 15.0.7
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libcxx: '>=15.0.7'
- libllvm15: '>=15.0.7,<15.1.0a0'
+ - libcxx >=15.0.7
+ - libllvm15 >=15.0.7,<15.1.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/libclang-cpp15-15.0.7-default_hdb78580_3.conda
hash:
md5: 73639154fe4a7ca500d1361eef58fb65
sha256: 413c923b922c6d440f5e10012b65a733ff53d00af01298935b31a1567af2cb12
- optional: false
- category: main
build: default_hdb78580_3
arch: x86_64
subdir: osx-64
@@ -2523,19 +3319,18 @@ package:
license_family: Apache
size: 12426526
timestamp: 1690549605370
-- name: libclang-cpp15
+- platform: osx-arm64
+ name: libclang-cpp15
version: 15.0.7
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libcxx: '>=15.0.7'
- libllvm15: '>=15.0.7,<15.1.0a0'
+ - libcxx >=15.0.7
+ - libllvm15 >=15.0.7,<15.1.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/libclang-cpp15-15.0.7-default_h5dc8d65_3.conda
hash:
md5: 99c37593de0f76769f089218e493f083
sha256: 33375e4e41f06c90c3a50f5efe15e9ad488243585a1dc994d3d9a897313d1cc4
- optional: false
- category: main
build: default_h5dc8d65_3
arch: aarch64
subdir: osx-arm64
@@ -2544,24 +3339,23 @@ package:
license_family: Apache
size: 11402301
timestamp: 1690549536998
-- name: libcurl
+- platform: linux-64
+ name: libcurl
version: 8.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- krb5: '>=1.21.2,<1.22.0a0'
- libgcc-ng: '>=12'
- libnghttp2: '>=1.52.0,<2.0a0'
- libssh2: '>=1.11.0,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.2,<4.0a0'
- zstd: '>=1.5.5,<1.6.0a0'
+ - krb5 >=1.21.2,<1.22.0a0
+ - libgcc-ng >=12
+ - libnghttp2 >=1.52.0,<2.0a0
+ - libssh2 >=1.11.0,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.2,<4.0a0
+ - zstd >=1.5.5,<1.6.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/libcurl-8.3.0-hca28451_0.conda
hash:
md5: 4ab41bee09a2d2e08de5f09d6f1eef62
sha256: 177b2d2cd552dcb88c0ce74b14512e1a8cd44146645120529e19755eb493232e
- optional: false
- category: main
build: hca28451_0
arch: x86_64
subdir: linux-64
@@ -2570,23 +3364,22 @@ package:
license_family: MIT
size: 388309
timestamp: 1694599609110
-- name: libcurl
+- platform: osx-64
+ name: libcurl
version: 8.3.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- krb5: '>=1.21.2,<1.22.0a0'
- libnghttp2: '>=1.52.0,<2.0a0'
- libssh2: '>=1.11.0,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.2,<4.0a0'
- zstd: '>=1.5.5,<1.6.0a0'
+ - krb5 >=1.21.2,<1.22.0a0
+ - libnghttp2 >=1.52.0,<2.0a0
+ - libssh2 >=1.11.0,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.2,<4.0a0
+ - zstd >=1.5.5,<1.6.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/libcurl-8.3.0-h5f667d7_0.conda
hash:
md5: ec1ea8499d8ef2599ffb230b7a97a9bd
sha256: ffff8ac8d1a3671a22ba22fc75f7a5668ae47e80ceef97e1d29050d7d43c41ad
- optional: false
- category: main
build: h5f667d7_0
arch: x86_64
subdir: osx-64
@@ -2595,23 +3388,22 @@ package:
license_family: MIT
size: 366255
timestamp: 1694600019936
-- name: libcurl
+- platform: osx-arm64
+ name: libcurl
version: 8.3.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- krb5: '>=1.21.2,<1.22.0a0'
- libnghttp2: '>=1.52.0,<2.0a0'
- libssh2: '>=1.11.0,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.2,<4.0a0'
- zstd: '>=1.5.5,<1.6.0a0'
+ - krb5 >=1.21.2,<1.22.0a0
+ - libnghttp2 >=1.52.0,<2.0a0
+ - libssh2 >=1.11.0,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.2,<4.0a0
+ - zstd >=1.5.5,<1.6.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/libcurl-8.3.0-hc52a3a8_0.conda
hash:
md5: f7cd06ec16f40bf40c565977c363d1fd
sha256: e4fb2f81a81449d6185129ade6c8c90cbde3259555a4080b742a566b29dbb535
- optional: false
- category: main
build: hc52a3a8_0
arch: aarch64
subdir: osx-arm64
@@ -2620,17 +3412,16 @@ package:
license_family: MIT
size: 359883
timestamp: 1694600164644
-- name: libcxx
+- platform: osx-64
+ name: libcxx
version: 16.0.6
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/libcxx-16.0.6-hd57cbcb_0.conda
hash:
md5: 7d6972792161077908b62971802f289a
sha256: 9063271847cf05f3a6cc6cae3e7f0ced032ab5f3a3c9d3f943f876f39c5c2549
- optional: false
- category: main
build: hd57cbcb_0
arch: x86_64
subdir: osx-64
@@ -2639,34 +3430,32 @@ package:
license_family: Apache
size: 1142172
timestamp: 1686896907750
-- name: libcxx
+- platform: osx-arm64
+ name: libcxx
version: 16.0.5
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/libcxx-16.0.5-h4653b0c_0.conda
hash:
md5: d36fb4372ff02b2d1596366ee1d984bc
sha256: 14452e6dab03eb5260101cca926b4b96764f28726e5965067d0ba0101949e9e4
- optional: false
- category: main
build: h4653b0c_0
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: libedit
+- platform: linux-64
+ name: libedit
version: 3.1.20191231
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=7.5.0'
- ncurses: '>=6.2,<7.0.0a0'
+ - libgcc-ng >=7.5.0
+ - ncurses >=6.2,<7.0.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/libedit-3.1.20191231-he28a2e2_2.tar.bz2
hash:
md5: 4d331e44109e3f0e19b4cb8f9b82f3e1
sha256: a57d37c236d8f7c886e01656f4949d9dcca131d2a0728609c6f7fa338b65f1cf
- optional: false
- category: main
build: he28a2e2_2
arch: x86_64
subdir: linux-64
@@ -2675,18 +3464,17 @@ package:
license_family: BSD
size: 123878
timestamp: 1597616541093
-- name: libedit
+- platform: osx-64
+ name: libedit
version: 3.1.20191231
+ category: main
manager: conda
- platform: osx-64
dependencies:
- ncurses: '>=6.2,<7.0.0a0'
+ - ncurses >=6.2,<7.0.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/libedit-3.1.20191231-h0678c8f_2.tar.bz2
hash:
md5: 6016a8a1d0e63cac3de2c352cd40208b
sha256: dbd3c3f2eca1d21c52e4c03b21930bbce414c4592f8ce805801575b9e9256095
- optional: false
- category: main
build: h0678c8f_2
arch: x86_64
subdir: osx-64
@@ -2695,18 +3483,17 @@ package:
license_family: BSD
size: 105382
timestamp: 1597616576726
-- name: libedit
+- platform: osx-arm64
+ name: libedit
version: 3.1.20191231
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- ncurses: '>=6.2,<7.0.0a0'
+ - ncurses >=6.2,<7.0.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/libedit-3.1.20191231-hc8eb9b7_2.tar.bz2
hash:
md5: 30e4362988a2623e9eb34337b83e01f9
sha256: 3912636197933ecfe4692634119e8644904b41a58f30cad9d1fc02f6ba4d9fca
- optional: false
- category: main
build: hc8eb9b7_2
arch: aarch64
subdir: osx-arm64
@@ -2715,18 +3502,17 @@ package:
license_family: BSD
size: 96607
timestamp: 1597616630749
-- name: libev
+- platform: linux-64
+ name: libev
version: '4.33'
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=7.5.0'
+ - libgcc-ng >=7.5.0
url: https://conda.anaconda.org/conda-forge/linux-64/libev-4.33-h516909a_1.tar.bz2
hash:
md5: 6f8720dff19e17ce5d48cfe7f3d2f0a3
sha256: 8c9635aa0ea28922877dc96358f9547f6a55fc7e2eb75a556b05f1725496baf9
- optional: false
- category: main
build: h516909a_1
arch: x86_64
subdir: linux-64
@@ -2735,17 +3521,16 @@ package:
license_family: BSD
size: 106190
timestamp: 1598867915
-- name: libev
+- platform: osx-64
+ name: libev
version: '4.33'
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/libev-4.33-haf1e3a3_1.tar.bz2
hash:
md5: 79dc2be110b2a3d1e97ec21f691c50ad
sha256: c4154d424431898d84d6afb8b32e3ba749fe5d270d322bb0af74571a3cb09c6b
- optional: false
- category: main
build: haf1e3a3_1
arch: x86_64
subdir: osx-64
@@ -2754,17 +3539,16 @@ package:
license_family: BSD
size: 101424
timestamp: 1598868359024
-- name: libev
+- platform: osx-arm64
+ name: libev
version: '4.33'
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/libev-4.33-h642e427_1.tar.bz2
hash:
md5: 566dbf70fe79eacdb3c3d3d195a27f55
sha256: eb7325eb2e6bd4c291cb9682781b35b8c0f68cb72651c35a5b9dd22707ebd25c
- optional: false
- category: main
build: h642e427_1
arch: aarch64
subdir: osx-arm64
@@ -2773,18 +3557,17 @@ package:
license_family: BSD
size: 100668
timestamp: 1598868103393
-- name: libexpat
+- platform: linux-64
+ name: libexpat
version: 2.5.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=12'
+ - libgcc-ng >=12
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.5.0-hcb278e6_1.conda
hash:
md5: 6305a3dd2752c76335295da4e581f2fd
sha256: 74c98a563777ae2ad71f1f74d458a8ab043cee4a513467c159ccf159d0e461f3
- optional: false
- category: main
build: hcb278e6_1
arch: x86_64
subdir: linux-64
@@ -2795,17 +3578,16 @@ package:
license_family: MIT
size: 77980
timestamp: 1680190528313
-- name: libexpat
+- platform: osx-64
+ name: libexpat
version: 2.5.0
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/libexpat-2.5.0-hf0c8a7f_1.conda
hash:
md5: 6c81cb022780ee33435cca0127dd43c9
sha256: 80024bd9f44d096c4cc07fb2bac76b5f1f7553390112dab3ad6acb16a05f0b96
- optional: false
- category: main
build: hf0c8a7f_1
arch: x86_64
subdir: osx-64
@@ -2816,17 +3598,16 @@ package:
license_family: MIT
size: 69602
timestamp: 1680191040160
-- name: libexpat
+- platform: osx-arm64
+ name: libexpat
version: 2.5.0
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/libexpat-2.5.0-hb7217d7_1.conda
hash:
md5: 5a097ad3d17e42c148c9566280481317
sha256: 7d143a9c991579ad4207f84c632650a571c66329090daa32b3c87cf7311c3381
- optional: false
- category: main
build: hb7217d7_1
arch: aarch64
subdir: osx-arm64
@@ -2837,17 +3618,16 @@ package:
license_family: MIT
size: 63442
timestamp: 1680190916539
-- name: libexpat
+- platform: win-64
+ name: libexpat
version: 2.5.0
+ category: main
manager: conda
- platform: win-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/win-64/libexpat-2.5.0-h63175ca_1.conda
hash:
md5: 636cc3cbbd2e28bcfd2f73b2044aac2c
sha256: 794b2a9be72f176a2767c299574d330ffb76b2ed75d7fd20bee3bbadce5886cf
- optional: false
- category: main
build: h63175ca_1
arch: x86_64
subdir: win-64
@@ -2858,18 +3638,17 @@ package:
license_family: MIT
size: 138689
timestamp: 1680190844101
-- name: libffi
+- platform: linux-64
+ name: libffi
version: 3.4.2
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=9.4.0'
+ - libgcc-ng >=9.4.0
url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
hash:
md5: d645c6d2ac96843a2bfaccd2d62b3ac3
sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
- optional: false
- category: main
build: h7f98852_5
arch: x86_64
subdir: linux-64
@@ -2878,17 +3657,16 @@ package:
license_family: MIT
size: 58292
timestamp: 1636488182923
-- name: libffi
+- platform: osx-64
+ name: libffi
version: 3.4.2
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/libffi-3.4.2-h0d85af4_5.tar.bz2
hash:
md5: ccb34fb14960ad8b125962d3d79b31a9
sha256: 7a2d27a936ceee6942ea4d397f9c7d136f12549d86f7617e8b6bad51e01a941f
- optional: false
- category: main
build: h0d85af4_5
arch: x86_64
subdir: osx-64
@@ -2897,71 +3675,66 @@ package:
license_family: MIT
size: 51348
timestamp: 1636488394370
-- name: libffi
+- platform: osx-arm64
+ name: libffi
version: 3.4.2
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/libffi-3.4.2-h3422bc3_5.tar.bz2
hash:
md5: 086914b672be056eb70fd4285b6783b6
sha256: 41b3d13efb775e340e4dba549ab5c029611ea6918703096b2eaa9c015c0750ca
- optional: false
- category: main
build: h3422bc3_5
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: libffi
+- platform: win-64
+ name: libffi
version: 3.4.2
+ category: main
manager: conda
- platform: win-64
dependencies:
- vc: '>=14.1,<15.0a0'
- vs2015_runtime: '>=14.16.27012'
+ - vc >=14.1,<15.0a0
+ - vs2015_runtime >=14.16.27012
url: https://conda.anaconda.org/conda-forge/win-64/libffi-3.4.2-h8ffe710_5.tar.bz2
hash:
md5: 2c96d1b6915b408893f9472569dee135
sha256: 1951ab740f80660e9bc07d2ed3aefb874d78c107264fd810f24a1a6211d4b1a5
- optional: false
- category: main
build: h8ffe710_5
arch: x86_64
subdir: win-64
build_number: 0
-- name: libflang
+- platform: win-64
+ name: libflang
version: 5.0.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- openmp: ==5.0.0
- vc: '>=14,<15.0a0'
+ - openmp 5.0.0
+ - vc >=14,<15.0a0
url: https://conda.anaconda.org/conda-forge/win-64/libflang-5.0.0-h6538335_20180525.tar.bz2
hash:
md5: 9f473a344e18668e99a93f7e21a54b69
sha256: 0b893b511190332320f4a3e3d6424fbd350271ffbca34eb25b5cd8bc451f1a05
- optional: false
- category: main
build: h6538335_20180525
arch: x86_64
subdir: win-64
build_number: 20180525
- track_features:
- - flang
+ track_features: flang
license: Apache 2.0
size: 531143
timestamp: 1527899216421
-- name: libgcc-devel_linux-64
+- platform: linux-64
+ name: libgcc-devel_linux-64
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-devel_linux-64-12.3.0-h8bca6fd_2.conda
hash:
md5: ed613582de7b8569fdc53ca141be176a
sha256: 7e12d0496389017ca526254913b24d9024e1728c849a0d6476a4b7fde9d03cba
- optional: false
- category: main
build: h8bca6fd_2
arch: x86_64
subdir: linux-64
@@ -2970,35 +3743,39 @@ package:
license_family: GPL
size: 2405867
timestamp: 1695218559716
-- name: libgcc-ng
- version: 13.1.0
+- platform: linux-64
+ name: libgcc-ng
+ version: 13.2.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- _libgcc_mutex: ==0.1 conda_forge
- _openmp_mutex: '>=4.5'
- url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.1.0-he5830b7_0.conda
+ - _libgcc_mutex 0.1 conda_forge
+ - _openmp_mutex >=4.5
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-13.2.0-h807b86a_2.conda
hash:
- md5: cd93f779ff018dd85c7544c015c9db3c
- sha256: fba897a02f35b2b5e6edc43a746d1fa6970a77b422f258246316110af8966911
- optional: false
- category: main
- build: he5830b7_0
+ md5: c28003b0be0494f9a7664389146716ff
+ sha256: d361d3c87c376642b99c1fc25cddec4b9905d3d9b9203c1c545b8c8c1b04539a
+ build: h807b86a_2
arch: x86_64
subdir: linux-64
- build_number: 0
-- name: libgfortran
+ build_number: 2
+ constrains:
+ - libgomp 13.2.0 h807b86a_2
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 771133
+ timestamp: 1695219384393
+- platform: osx-64
+ name: libgfortran
version: 5.0.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libgfortran5: ==13.2.0 h2873a65_1
+ - libgfortran5 13.2.0 h2873a65_1
url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran-5.0.0-13_2_0_h97931a8_1.conda
hash:
md5: b55fd11ab6318a6e67ac191309701d5a
sha256: 5be1a59316e5063f4e6492ea86d692600a7b8e32caa25269f8a3b386a028e5f3
- optional: false
- category: main
build: 13_2_0_h97931a8_1
arch: x86_64
subdir: osx-64
@@ -3007,18 +3784,17 @@ package:
license_family: GPL
size: 109855
timestamp: 1694165674845
-- name: libgfortran
+- platform: osx-arm64
+ name: libgfortran
version: 5.0.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libgfortran5: ==13.2.0 hf226fd6_1
+ - libgfortran5 13.2.0 hf226fd6_1
url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran-5.0.0-13_2_0_hd922786_1.conda
hash:
md5: 1ad37a5c60c250bb2b4a9f75563e181c
sha256: bc8750e7893e693fa380bf2f342d4a5ce44995467cbdf72e56a00e5106b4892d
- optional: false
- category: main
build: 13_2_0_hd922786_1
arch: aarch64
subdir: osx-arm64
@@ -3027,17 +3803,16 @@ package:
license_family: GPL
size: 110095
timestamp: 1694172198016
-- name: libgfortran-devel_osx-64
+- platform: osx-64
+ name: libgfortran-devel_osx-64
version: 12.3.0
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-64-12.3.0-h0b6f5ec_1.conda
hash:
md5: ecc03a145b87ed6b8806fb02dc0e13c4
sha256: ad8b64109c141b35ab86296f5d536558c3d837924bf53ea87ce881a8fa82765a
- optional: false
- category: main
build: h0b6f5ec_1
arch: x86_64
subdir: osx-64
@@ -3047,17 +3822,16 @@ package:
noarch: generic
size: 453925
timestamp: 1690184407070
-- name: libgfortran-devel_osx-arm64
+- platform: osx-arm64
+ name: libgfortran-devel_osx-arm64
version: 12.3.0
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/libgfortran-devel_osx-arm64-12.3.0-hc62be1c_1.conda
hash:
md5: 83f84bb2f0f059f0faafbd5ba1a43e2b
sha256: a7c75fc14e1245e68325f886dae8dbb269a826eeb79eefaad2cac77f234cefe5
- optional: false
- category: main
build: hc62be1c_1
arch: aarch64
subdir: osx-arm64
@@ -3067,39 +3841,38 @@ package:
noarch: generic
size: 401642
timestamp: 1690186380443
-- name: libgfortran5
+- platform: linux-64
+ name: libgfortran5
version: 13.2.0
+ category: main
manager: conda
- platform: linux-64
- dependencies: {}
- url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_0.conda
+ dependencies:
+ - libgcc-ng >=13.2.0
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-13.2.0-ha4646dd_2.conda
hash:
- md5: aa3ee989b0eba634e47197adbaa84fdd
- sha256: 8d47fa23bf4ec56a4330684b01a552a49d26f06dbc99878807f7e6953f812cb7
- optional: false
- category: main
- build: ha4646dd_0
+ md5: 78fdab09d9138851dde2b5fe2a11019e
+ sha256: 55ecf5c46c05a98b4822a041d6e1cb196a7b0606126eb96b24131b7d2c8ca561
+ build: ha4646dd_2
arch: x86_64
subdir: linux-64
- build_number: 0
+ build_number: 2
constrains:
- libgfortran-ng 13.2.0
license: GPL-3.0-only WITH GCC-exception-3.1
license_family: GPL
- size: 1441599
- timestamp: 1694376224134
-- name: libgfortran5
+ size: 1441830
+ timestamp: 1695219403435
+- platform: osx-64
+ name: libgfortran5
version: 13.2.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- llvm-openmp: '>=8.0.0'
+ - llvm-openmp >=8.0.0
url: https://conda.anaconda.org/conda-forge/osx-64/libgfortran5-13.2.0-h2873a65_1.conda
hash:
md5: 3af564516b5163cd8cc08820413854bc
sha256: 44de8930eef3b14d4d9fdfe419e6c909c13b7c859617d3616d5a5e964f3fcf63
- optional: false
- category: main
build: h2873a65_1
arch: x86_64
subdir: osx-64
@@ -3110,18 +3883,17 @@ package:
license_family: GPL
size: 1571764
timestamp: 1694165583047
-- name: libgfortran5
+- platform: osx-arm64
+ name: libgfortran5
version: 13.2.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- llvm-openmp: '>=8.0.0'
+ - llvm-openmp >=8.0.0
url: https://conda.anaconda.org/conda-forge/osx-arm64/libgfortran5-13.2.0-hf226fd6_1.conda
hash:
md5: 4480d71b98c87faafab132d33e23135e
sha256: cb9cb11e49a6a8466ea7556a723080d3aeefd556df9b444b941afc5b54368b22
- optional: false
- category: main
build: hf226fd6_1
arch: aarch64
subdir: osx-arm64
@@ -3132,78 +3904,78 @@ package:
license_family: GPL
size: 995733
timestamp: 1694172076009
-- name: libglib
+- platform: osx-arm64
+ name: libglib
version: 2.76.3
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libcxx: '>=15.0.7'
- pcre2: '>=10.40,<10.41.0a0'
- gettext: '>=0.21.1,<1.0a0'
- libffi: '>=3.4,<4.0a0'
- libiconv: '>=1.17,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
+ - libcxx >=15.0.7
+ - pcre2 >=10.40,<10.41.0a0
+ - gettext >=0.21.1,<1.0a0
+ - libffi >=3.4,<4.0a0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/libglib-2.76.3-h24e9cb9_0.conda
hash:
md5: 30b160e9e8ca46b28491ca85eab61dce
sha256: 5b31f80d89224fbfbd0c46b313f6a8d3c43f20f2ae57613cd25d46524a3ca23d
- optional: false
- category: main
build: h24e9cb9_0
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: libglib
+- platform: win-64
+ name: libglib
version: 2.76.3
+ category: main
manager: conda
- platform: win-64
dependencies:
- pcre2: '>=10.40,<10.41.0a0'
- libffi: '>=3.4,<4.0a0'
- libiconv: '>=1.17,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.2,<15'
- gettext: '>=0.21.1,<1.0a0'
- vc14_runtime: '>=14.29.30139'
+ - pcre2 >=10.40,<10.41.0a0
+ - libffi >=3.4,<4.0a0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - gettext >=0.21.1,<1.0a0
+ - vc14_runtime >=14.29.30139
url: https://conda.anaconda.org/conda-forge/win-64/libglib-2.76.3-he8f3873_0.conda
hash:
md5: 4695e6acaf4790170161048d56cb51fc
sha256: 170d42dcf0c73f5846dfb0c4a241c065cd9830c644d98042f076f25c309e7571
- optional: false
- category: main
build: he8f3873_0
arch: x86_64
subdir: win-64
build_number: 0
-- name: libgomp
- version: 13.1.0
+- platform: linux-64
+ name: libgomp
+ version: 13.2.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- _libgcc_mutex: ==0.1 conda_forge
- url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.1.0-he5830b7_0.conda
+ - _libgcc_mutex 0.1 conda_forge
+ url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-13.2.0-h807b86a_2.conda
hash:
- md5: 56ca14d57ac29a75d23a39eb3ee0ddeb
- sha256: 5d441d80b57f857ad305a65169a6b915d4fd6735cdc9e9bded35d493c91ef16d
- optional: false
- category: main
- build: he5830b7_0
+ md5: e2042154faafe61969556f28bade94b9
+ sha256: e1e82348f8296abfe344162b3b5f0ddc2f504759ebeb8b337ba99beaae583b15
+ build: h807b86a_2
arch: x86_64
subdir: linux-64
- build_number: 0
-- name: libiconv
+ build_number: 2
+ license: GPL-3.0-only WITH GCC-exception-3.1
+ license_family: GPL
+ size: 421133
+ timestamp: 1695219303065
+- platform: linux-64
+ name: libiconv
version: '1.17'
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=10.3.0'
+ - libgcc-ng >=10.3.0
url: https://conda.anaconda.org/conda-forge/linux-64/libiconv-1.17-h166bdaf_0.tar.bz2
hash:
md5: b62b52da46c39ee2bc3c162ac7f1804d
sha256: 6a81ebac9f1aacdf2b4f945c87ad62b972f0f69c8e0981d68e111739e6720fd7
- optional: false
- category: main
build: h166bdaf_0
arch: x86_64
subdir: linux-64
@@ -3211,68 +3983,64 @@ package:
license: GPL and LGPL
size: 1450368
timestamp: 1652700749886
-- name: libiconv
+- platform: osx-64
+ name: libiconv
version: '1.17'
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/libiconv-1.17-hac89ed1_0.tar.bz2
hash:
md5: 691d103d11180486154af49c037b7ed9
sha256: 4a3294037d595754f7da7c11a41f3922f995aaa333f3cb66f02d8afa032a7bc2
- optional: false
- category: main
build: hac89ed1_0
arch: x86_64
subdir: osx-64
build_number: 0
-- name: libiconv
+- platform: osx-arm64
+ name: libiconv
version: '1.17'
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/libiconv-1.17-he4db4b2_0.tar.bz2
hash:
md5: 686f9c755574aa221f29fbcf36a67265
sha256: 2eb33065783b802f71d52bef6f15ce0fafea0adc8506f10ebd0d490244087bec
- optional: false
- category: main
build: he4db4b2_0
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: libiconv
+- platform: win-64
+ name: libiconv
version: '1.17'
+ category: main
manager: conda
- platform: win-64
dependencies:
- vc: '>=14.1,<15'
- vs2015_runtime: '>=14.16.27033'
+ - vc >=14.1,<15
+ - vs2015_runtime >=14.16.27033
url: https://conda.anaconda.org/conda-forge/win-64/libiconv-1.17-h8ffe710_0.tar.bz2
hash:
md5: 050119977a86e4856f0416e2edcf81bb
sha256: 657c2a992c896475021a25faebd9ccfaa149c5d70c7dc824d4069784b686cea1
- optional: false
- category: main
build: h8ffe710_0
arch: x86_64
subdir: win-64
build_number: 0
-- name: libllvm15
+- platform: osx-64
+ name: libllvm15
version: 15.0.7
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libcxx: '>=15'
- libxml2: '>=2.11.4,<2.12.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- zstd: '>=1.5.2,<1.6.0a0'
+ - libcxx >=15
+ - libxml2 >=2.11.4,<2.12.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - zstd >=1.5.2,<1.6.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/libllvm15-15.0.7-he4b1e75_3.conda
hash:
md5: ecc6df80c4b0445ac0de9cabae189db3
sha256: 02c7f5fe1ae9cdf4b0152cc76fef0ccb26137075054bdd9336ebf956fd22d8c9
- optional: false
- category: main
build: he4b1e75_3
arch: x86_64
subdir: osx-64
@@ -3281,20 +4049,19 @@ package:
license_family: Apache
size: 23877550
timestamp: 1690533932497
-- name: libllvm15
+- platform: osx-arm64
+ name: libllvm15
version: 15.0.7
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libcxx: '>=15'
- libxml2: '>=2.11.4,<2.12.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
+ - libcxx >=15
+ - libxml2 >=2.11.4,<2.12.0a0
+ - libzlib >=1.2.13,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/libllvm15-15.0.7-h504e6bf_3.conda
hash:
md5: cef4a00532f06f6797fbe2425d4db2a7
sha256: 8fbe19f2133c501a43a45f4dab701adf5206ed61f4bd6317f287a8d87409fdee
- optional: false
- category: main
build: h504e6bf_3
arch: aarch64
subdir: osx-arm64
@@ -3303,23 +4070,22 @@ package:
license_family: Apache
size: 21956912
timestamp: 1690530007064
-- name: libnghttp2
+- platform: linux-64
+ name: libnghttp2
version: 1.52.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- c-ares: '>=1.18.1,<2.0a0'
- libev: '>=4.33,<4.34.0a0'
- libgcc-ng: '>=12'
- libstdcxx-ng: '>=12'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.0.8,<4.0a0'
+ - c-ares >=1.18.1,<2.0a0
+ - libev >=4.33,<4.34.0a0
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.0.8,<4.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/libnghttp2-1.52.0-h61bc06f_0.conda
hash:
md5: 613955a50485812985c059e7b269f42e
sha256: ecd6b08c2b5abe7d1586428c4dd257dcfa00ee53700d79cdc8bca098fdfbd79a
- optional: false
- category: main
build: h61bc06f_0
arch: x86_64
subdir: linux-64
@@ -3328,22 +4094,21 @@ package:
license_family: MIT
size: 622366
timestamp: 1677678076121
-- name: libnghttp2
+- platform: osx-64
+ name: libnghttp2
version: 1.52.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- c-ares: '>=1.18.1,<2.0a0'
- libcxx: '>=14.0.6'
- libev: '>=4.33,<4.34.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.0.8,<4.0a0'
+ - c-ares >=1.18.1,<2.0a0
+ - libcxx >=14.0.6
+ - libev >=4.33,<4.34.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.0.8,<4.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/libnghttp2-1.52.0-he2ab024_0.conda
hash:
md5: 12ac7d100bf260263e30a019517f42a2
sha256: 093e4f3f62b3b07befa403e84a1f550cffe3b3961e435d42a75284f44be5f68a
- optional: false
- category: main
build: he2ab024_0
arch: x86_64
subdir: osx-64
@@ -3352,22 +4117,21 @@ package:
license_family: MIT
size: 613074
timestamp: 1677678399575
-- name: libnghttp2
+- platform: osx-arm64
+ name: libnghttp2
version: 1.52.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- c-ares: '>=1.18.1,<2.0a0'
- libcxx: '>=14.0.6'
- libev: '>=4.33,<4.34.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.0.8,<4.0a0'
+ - c-ares >=1.18.1,<2.0a0
+ - libcxx >=14.0.6
+ - libev >=4.33,<4.34.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.0.8,<4.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/libnghttp2-1.52.0-hae82a92_0.conda
hash:
md5: 1d319e95a0216f801293626a00337712
sha256: 1a3944d6295dcbecdf6489ce8a05fe416ad401727c901ec390e9200a351bdb10
- optional: false
- category: main
build: hae82a92_0
arch: aarch64
subdir: osx-arm64
@@ -3376,18 +4140,17 @@ package:
license_family: MIT
size: 564295
timestamp: 1677678452375
-- name: libnsl
+- platform: linux-64
+ name: libnsl
version: 2.0.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=9.4.0'
+ - libgcc-ng >=9.4.0
url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2
hash:
md5: 39b1328babf85c7c3a61636d9cd50206
sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad
- optional: false
- category: main
build: h7f98852_0
arch: x86_64
subdir: linux-64
@@ -3396,18 +4159,17 @@ package:
license_family: GPL
size: 31236
timestamp: 1633040059627
-- name: libsanitizer
+- platform: linux-64
+ name: libsanitizer
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=12.3.0'
+ - libgcc-ng >=12.3.0
url: https://conda.anaconda.org/conda-forge/linux-64/libsanitizer-12.3.0-h0f45ef3_2.conda
hash:
md5: 4655db64eca78a6fcc4fb654fc1f8d57
sha256: a58add0b4477c59aee324b508d834267360b659f9c543f551ca4442196e656fe
- optional: false
- category: main
build: h0f45ef3_2
arch: x86_64
subdir: linux-64
@@ -3416,19 +4178,18 @@ package:
license_family: GPL
size: 3910499
timestamp: 1695218679356
-- name: libsqlite
+- platform: linux-64
+ name: libsqlite
version: 3.42.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libzlib: '>=1.2.13,<1.3.0a0'
- libgcc-ng: '>=12'
+ - libzlib >=1.2.13,<1.3.0a0
+ - libgcc-ng >=12
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.42.0-h2797004_0.conda
hash:
md5: fdaae20a1cf7cd62130a0973190a31b7
sha256: 72e958870f49174ebc0ddcd4129e9a9f48de815f20aa3b553f136b514f29bb3a
- optional: false
- category: main
build: h2797004_0
arch: x86_64
subdir: linux-64
@@ -3436,18 +4197,17 @@ package:
license: Unlicense
size: 828910
timestamp: 1684264791037
-- name: libsqlite
+- platform: osx-64
+ name: libsqlite
version: 3.42.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libzlib: '>=1.2.13,<1.3.0a0'
+ - libzlib >=1.2.13,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/libsqlite-3.42.0-h58db7d2_0.conda
hash:
md5: a7d3b44b7b0c9901ac7813b7a0462893
sha256: 182689f4b1a5ed638cd615c7774e1a9974842bc127c59173f1d25e31a8795eef
- optional: false
- category: main
build: h58db7d2_0
arch: x86_64
subdir: osx-64
@@ -3455,18 +4215,17 @@ package:
license: Unlicense
size: 878744
timestamp: 1684265213849
-- name: libsqlite
+- platform: osx-arm64
+ name: libsqlite
version: 3.42.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libzlib: '>=1.2.13,<1.3.0a0'
+ - libzlib >=1.2.13,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/libsqlite-3.42.0-hb31c410_0.conda
hash:
md5: 6ae1bbf3ae393a45a75685072fffbe8d
sha256: 120913cf0fb694546fbaf95dff211ac5c1e3e91bc69c73350891a05dc106355f
- optional: false
- category: main
build: hb31c410_0
arch: aarch64
subdir: osx-arm64
@@ -3474,20 +4233,19 @@ package:
license: Unlicense
size: 822883
timestamp: 1684265273102
-- name: libsqlite
+- platform: win-64
+ name: libsqlite
version: 3.42.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.2,<15'
- vc14_runtime: '>=14.29.30139'
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
url: https://conda.anaconda.org/conda-forge/win-64/libsqlite-3.42.0-hcfcfb64_0.conda
hash:
md5: 9a71d93deb99cc09d8939d5235b5909a
sha256: 70bc1fdb72de847807355c13144666d4f151894f9b141ee559f5d243bdf577e2
- optional: false
- category: main
build: hcfcfb64_0
arch: x86_64
subdir: win-64
@@ -3495,20 +4253,19 @@ package:
license: Unlicense
size: 839797
timestamp: 1684265312954
-- name: libssh2
+- platform: linux-64
+ name: libssh2
version: 1.11.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=12'
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.1,<4.0a0'
+ - libgcc-ng >=12
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.1,<4.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/libssh2-1.11.0-h0841786_0.conda
hash:
md5: 1f5a58e686b13bcfde88b93f547d23fe
sha256: 50e47fd9c4f7bf841a11647ae7486f65220cfc988ec422a4475fe8d5a823824d
- optional: false
- category: main
build: h0841786_0
arch: x86_64
subdir: linux-64
@@ -3517,19 +4274,18 @@ package:
license_family: BSD
size: 271133
timestamp: 1685837707056
-- name: libssh2
+- platform: osx-64
+ name: libssh2
version: 1.11.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.1,<4.0a0'
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.1,<4.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/libssh2-1.11.0-hd019ec5_0.conda
hash:
md5: ca3a72efba692c59a90d4b9fc0dfe774
sha256: f3886763b88f4b24265db6036535ef77b7b77ce91b1cbe588c0fbdd861eec515
- optional: false
- category: main
build: hd019ec5_0
arch: x86_64
subdir: osx-64
@@ -3538,19 +4294,18 @@ package:
license_family: BSD
size: 259556
timestamp: 1685837820566
-- name: libssh2
+- platform: osx-arm64
+ name: libssh2
version: 1.11.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libzlib: '>=1.2.13,<1.3.0a0'
- openssl: '>=3.1.1,<4.0a0'
+ - libzlib >=1.2.13,<1.3.0a0
+ - openssl >=3.1.1,<4.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/libssh2-1.11.0-h7a5bd25_0.conda
hash:
md5: 029f7dc931a3b626b94823bc77830b01
sha256: bb57d0c53289721fff1eeb3103a1c6a988178e88d8a8f4345b0b91a35f0e0015
- optional: false
- category: main
build: h7a5bd25_0
arch: aarch64
subdir: osx-arm64
@@ -3559,17 +4314,16 @@ package:
license_family: BSD
size: 255610
timestamp: 1685837894256
-- name: libstdcxx-devel_linux-64
+- platform: linux-64
+ name: libstdcxx-devel_linux-64
version: 12.3.0
+ category: main
manager: conda
- platform: linux-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-devel_linux-64-12.3.0-h8bca6fd_2.conda
hash:
md5: 7268a17e56eb099d1b8869bbbf46de4c
sha256: e8483069599561ef24b884c898442eadc510190f978fa388db3281b10c3c084e
- optional: false
- category: main
build: h8bca6fd_2
arch: x86_64
subdir: linux-64
@@ -3578,33 +4332,31 @@ package:
license_family: GPL
size: 8542654
timestamp: 1695218598349
-- name: libstdcxx-ng
+- platform: linux-64
+ name: libstdcxx-ng
version: 13.1.0
+ category: main
manager: conda
- platform: linux-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-13.1.0-hfd8a6a1_0.conda
hash:
md5: 067bcc23164642f4c226da631f2a2e1d
sha256: 6f9eb2d7a96687938c0001166a3b308460a8eb02b10e9d0dd9e251f0219ea05c
- optional: false
- category: main
build: hfd8a6a1_0
arch: x86_64
subdir: linux-64
build_number: 0
-- name: libuuid
+- platform: linux-64
+ name: libuuid
version: 2.38.1
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=12'
+ - libgcc-ng >=12
url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
hash:
md5: 40b61aab5c7ba9ff276c41cfffe6b80b
sha256: 787eb542f055a2b3de553614b25f09eefb0a0931b0c87dbcce6efdfd92f04f18
- optional: false
- category: main
build: h0b41bf4_0
arch: x86_64
subdir: linux-64
@@ -3613,21 +4365,20 @@ package:
license_family: BSD
size: 33601
timestamp: 1680112270483
-- name: libxml2
+- platform: osx-64
+ name: libxml2
version: 2.11.5
+ category: main
manager: conda
- platform: osx-64
dependencies:
- icu: '>=73.2,<74.0a0'
- libiconv: '>=1.17,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- xz: '>=5.2.6,<6.0a0'
+ - icu >=73.2,<74.0a0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - xz >=5.2.6,<6.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/libxml2-2.11.5-h3346baf_1.conda
hash:
md5: 7584dee6af7de378aed0ae49aebedb8a
sha256: d901fab32e57a43c44e630fb1c4d0a163d23b109eecd6c68b9ee371800760bca
- optional: false
- category: main
build: h3346baf_1
arch: x86_64
subdir: osx-64
@@ -3636,21 +4387,20 @@ package:
license_family: MIT
size: 623399
timestamp: 1692960844532
-- name: libxml2
+- platform: osx-arm64
+ name: libxml2
version: 2.11.5
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- icu: '>=73.2,<74.0a0'
- libiconv: '>=1.17,<2.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- xz: '>=5.2.6,<6.0a0'
+ - icu >=73.2,<74.0a0
+ - libiconv >=1.17,<2.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - xz >=5.2.6,<6.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/libxml2-2.11.5-h25269f3_1.conda
hash:
md5: 627b5d1377536b5b632ba53cd1455555
sha256: 8291549b87aca48e9cd4aec124af01b5037acd16f8ad14083d7af23c8bb6bebe
- optional: false
- category: main
build: h25269f3_1
arch: aarch64
subdir: osx-arm64
@@ -3659,33 +4409,31 @@ package:
license_family: MIT
size: 614831
timestamp: 1692960705224
-- name: libzlib
+- platform: linux-64
+ name: libzlib
version: 1.2.13
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=12'
+ - libgcc-ng >=12
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.13-hd590300_5.conda
hash:
md5: f36c115f1ee199da648e0597ec2047ad
sha256: 370c7c5893b737596fd6ca0d9190c9715d89d888b8c88537ae1ef168c25e82e4
- optional: false
- category: main
build: hd590300_5
arch: x86_64
subdir: linux-64
build_number: 0
-- name: libzlib
+- platform: osx-64
+ name: libzlib
version: 1.2.13
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.13-h8a1eda9_5.conda
hash:
md5: 4a3ad23f6e16f99c04e166767193d700
sha256: fc58ad7f47ffea10df1f2165369978fba0a1cc32594aad778f5eec725f334867
- optional: false
- category: main
build: h8a1eda9_5
arch: x86_64
subdir: osx-64
@@ -3696,50 +4444,47 @@ package:
license_family: Other
size: 59404
timestamp: 1686575566695
-- name: libzlib
+- platform: osx-arm64
+ name: libzlib
version: 1.2.13
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.13-h53f4e23_5.conda
hash:
md5: 1a47f5236db2e06a320ffa0392f81bd8
sha256: ab1c8aefa2d54322a63aaeeefe9cf877411851738616c4068e0dccc66b9c758a
- optional: false
- category: main
build: h53f4e23_5
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: libzlib
+- platform: win-64
+ name: libzlib
version: 1.2.13
+ category: main
manager: conda
- platform: win-64
dependencies:
- ucrt: '>=10.0.20348.0'
- vc: '>=14.2,<15'
- vc14_runtime: '>=14.29.30139'
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.13-hcfcfb64_5.conda
hash:
md5: 5fdb9c6a113b6b6cb5e517fd972d5f41
sha256: c161822ee8130b71e08b6d282b9919c1de2c5274b29921a867bca0f7d30cad26
- optional: false
- category: main
build: hcfcfb64_5
arch: x86_64
subdir: win-64
build_number: 0
-- name: llvm-meta
+- platform: win-64
+ name: llvm-meta
version: 5.0.0
+ category: main
manager: conda
- platform: win-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/llvm-meta-5.0.0-0.tar.bz2
hash:
md5: 213b5b5ad34008147a824460e50a691c
sha256: 090bbeacc3297ff579b53f55ad184f05c30e316fe9d5d7df63df1d2ad4578b79
- optional: false
- category: main
build: '0'
arch: x86_64
subdir: win-64
@@ -3748,63 +4493,60 @@ package:
license_family: BSD
noarch: generic
size: 2667
-- name: llvm-openmp
- version: 16.0.6
+- platform: osx-64
+ name: llvm-openmp
+ version: 17.0.4
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
- url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-16.0.6-hff08bdf_0.conda
+ dependencies: []
+ url: https://conda.anaconda.org/conda-forge/osx-64/llvm-openmp-17.0.4-hb6ac08f_0.conda
hash:
- md5: 39a5227d906f75102bf8586741690128
- sha256: 0fbcf1c9e15dbb22d337063550ebcadbeb96b2a012e633f80255c8c720e4f832
- optional: false
- category: main
- build: hff08bdf_0
+ md5: 31391b68245bc68504169e98ffaf2c44
+ sha256: d49b6958d22075de5fb707fd5f593cfa4be059015db48b7f1cd5e47e7efde2ff
+ build: hb6ac08f_0
arch: x86_64
subdir: osx-64
build_number: 0
constrains:
- - openmp 16.0.6|16.0.6.*
+ - openmp 17.0.4|17.0.4.*
license: Apache-2.0 WITH LLVM-exception
license_family: APACHE
- size: 295823
- timestamp: 1686865427800
-- name: llvm-openmp
- version: 16.0.6
+ size: 299744
+ timestamp: 1698833439461
+- platform: osx-arm64
+ name: llvm-openmp
+ version: 17.0.4
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
- url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-16.0.6-h1c12783_0.conda
+ dependencies: []
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-openmp-17.0.4-hcd81f8e_0.conda
hash:
- md5: 52e5730888439f7f55fd4f83905581b4
- sha256: f5cbb852853a7a931716d55e39515876f61fefd0cb4e055f286adc2dc3bc9d2a
- optional: false
- category: main
- build: h1c12783_0
+ md5: 88618857d4b3fadc13649d1a25cf1e4c
+ sha256: 99a8145f38c02f317d1293eaf0e34af028d94d6854dfb2dd044702995cf74b89
+ build: hcd81f8e_0
arch: aarch64
subdir: osx-arm64
build_number: 0
constrains:
- - openmp 16.0.6|16.0.6.*
+ - openmp 17.0.4|17.0.4.*
license: Apache-2.0 WITH LLVM-exception
license_family: APACHE
- size: 268740
- timestamp: 1686865657336
-- name: llvm-tools
+ size: 274893
+ timestamp: 1698833582372
+- platform: osx-64
+ name: llvm-tools
version: 15.0.7
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libllvm15: ==15.0.7 he4b1e75_3
- libxml2: '>=2.11.4,<2.12.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- zstd: '>=1.5.2,<1.6.0a0'
+ - libllvm15 15.0.7 he4b1e75_3
+ - libxml2 >=2.11.4,<2.12.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - zstd >=1.5.2,<1.6.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/llvm-tools-15.0.7-he4b1e75_3.conda
hash:
md5: 7177e9334a86af1b1581f14607ced61c
sha256: 93bf3db0bb0db82d91be7226374c239e88d885b850ab9791ec6755c63ffecc82
- optional: false
- category: main
build: he4b1e75_3
arch: x86_64
subdir: osx-64
@@ -3818,20 +4560,19 @@ package:
license_family: Apache
size: 11380889
timestamp: 1690534088911
-- name: llvm-tools
+- platform: osx-arm64
+ name: llvm-tools
version: 15.0.7
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libllvm15: ==15.0.7 h504e6bf_3
- libxml2: '>=2.11.4,<2.12.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
+ - libllvm15 15.0.7 h504e6bf_3
+ - libxml2 >=2.11.4,<2.12.0a0
+ - libzlib >=1.2.13,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/llvm-tools-15.0.7-h504e6bf_3.conda
hash:
md5: 56a351b4eba7ce574fa2702770e74252
sha256: 102c7da379f508e55b60a24625a3174b85d7e716ead452c1d7c88f84174b7a99
- optional: false
- category: main
build: h504e6bf_3
arch: aarch64
subdir: osx-arm64
@@ -3845,156 +4586,18 @@ package:
license_family: Apache
size: 10034129
timestamp: 1690530165545
-- name: mpc
- version: 1.3.1
- manager: conda
- platform: osx-64
- dependencies:
- gmp: '>=6.2.1,<7.0a0'
- mpfr: '>=4.1.0,<5.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.3.1-h81bd1dd_0.conda
- hash:
- md5: c752c0eb6c250919559172c011e5f65b
- sha256: 2ae945a15c8a984d581dcfb974ad3b5d877a6527de2c95a3363e6b4490b2f312
- optional: false
- category: main
- build: h81bd1dd_0
- arch: x86_64
- subdir: osx-64
- build_number: 0
- license: LGPL-3.0-or-later
- license_family: LGPL
- size: 109064
- timestamp: 1674264109148
-- name: mpc
- version: 1.3.1
- manager: conda
- platform: osx-arm64
- dependencies:
- gmp: '>=6.2.1,<7.0a0'
- mpfr: '>=4.1.0,<5.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.3.1-h91ba8db_0.conda
- hash:
- md5: 362af269d860ae49580f8f032a68b0df
- sha256: 6d8d4f8befca279f022c1c212241ad6672cb347181452555414e277484ad534c
- optional: false
- category: main
- build: h91ba8db_0
- arch: aarch64
- subdir: osx-arm64
- build_number: 0
- license: LGPL-3.0-or-later
- license_family: LGPL
- size: 103657
- timestamp: 1674264097592
-- name: mpfr
- version: 4.2.0
- manager: conda
- platform: osx-64
- dependencies:
- gmp: '>=6.2.1,<7.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.0-h4f9bd69_0.conda
- hash:
- md5: f48a2f4515be334c5cfeed82517b96e0
- sha256: 5ba848dc2642dc16e54cc44c3bc21d83033abeccc053434c84b4ecc7a43b627a
- optional: false
- category: main
- build: h4f9bd69_0
- arch: x86_64
- subdir: osx-64
- build_number: 0
- license: LGPL-3.0-only
- license_family: LGPL
- size: 376446
- timestamp: 1678380484788
-- name: mpfr
- version: 4.2.0
- manager: conda
- platform: osx-arm64
- dependencies:
- gmp: '>=6.2.1,<7.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.0-he09a6ba_0.conda
- hash:
- md5: 6ec2fb83ce146e5bc944020027d6c9e4
- sha256: 6f05ed642052fce5bf0bbf9dea78a5f4a17f252d5706604d1155e324e0c431c9
- optional: false
- category: main
- build: he09a6ba_0
- arch: aarch64
- subdir: osx-arm64
- build_number: 0
- license: LGPL-3.0-only
- license_family: LGPL
- size: 343909
- timestamp: 1678380200136
-- name: ncurses
- version: '6.4'
- manager: conda
- platform: linux-64
- dependencies:
- libgcc-ng: '>=12'
- url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda
- hash:
- md5: 681105bccc2a3f7f1a837d47d39c9179
- sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a
- optional: false
- category: main
- build: hcb278e6_0
- arch: x86_64
- subdir: linux-64
- build_number: 0
- license: X11 AND BSD-3-Clause
- size: 880967
- timestamp: 1686076725450
-- name: ncurses
- version: '6.4'
- manager: conda
- platform: osx-64
- dependencies: {}
- url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda
- hash:
- md5: c3dbae2411164d9b02c69090a9a91857
- sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd
- optional: false
- category: main
- build: hf0c8a7f_0
- arch: x86_64
- subdir: osx-64
- build_number: 0
- license: X11 AND BSD-3-Clause
- size: 828118
- timestamp: 1686077056765
-- name: ncurses
- version: '6.4'
- manager: conda
- platform: osx-arm64
- dependencies: {}
- url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda
- hash:
- md5: 318337fb9d0c53ba635efb7888242373
- sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780
- optional: false
+- platform: linux-64
+ name: markdown
+ version: 3.5.1
category: main
- build: h7ea286d_0
- arch: aarch64
- subdir: osx-arm64
- build_number: 0
- license: X11 AND BSD-3-Clause
- size: 799196
- timestamp: 1686077139703
-- name: nodeenv
- version: 1.8.0
manager: conda
- platform: linux-64
dependencies:
- setuptools: '*'
- python: ==2.7|>=3.7
- url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda
+ - importlib-metadata >=4.4
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/markdown-3.5.1-pyhd8ed1ab_0.conda
hash:
- md5: 2a75b296096adabbabadd5e9782e5fcc
- sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd
- optional: false
- category: main
+ md5: 323495027ffa625701129acebf861412
+ sha256: 35e8990504cf8dc7e2bb63efd855fb0a0d5c0d77bf79403235e757c24a83ec1d
build: pyhd8ed1ab_0
arch: x86_64
subdir: linux-64
@@ -4002,21 +4605,20 @@ package:
license: BSD-3-Clause
license_family: BSD
noarch: python
- size: 34358
- timestamp: 1683893151613
-- name: nodeenv
- version: 1.8.0
+ size: 76573
+ timestamp: 1698797645633
+- platform: osx-64
+ name: markdown
+ version: 3.5.1
+ category: main
manager: conda
- platform: osx-64
dependencies:
- setuptools: '*'
- python: ==2.7|>=3.7
- url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda
+ - importlib-metadata >=4.4
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/markdown-3.5.1-pyhd8ed1ab_0.conda
hash:
- md5: 2a75b296096adabbabadd5e9782e5fcc
- sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd
- optional: false
- category: main
+ md5: 323495027ffa625701129acebf861412
+ sha256: 35e8990504cf8dc7e2bb63efd855fb0a0d5c0d77bf79403235e757c24a83ec1d
build: pyhd8ed1ab_0
arch: x86_64
subdir: osx-64
@@ -4024,21 +4626,20 @@ package:
license: BSD-3-Clause
license_family: BSD
noarch: python
- size: 34358
- timestamp: 1683893151613
-- name: nodeenv
- version: 1.8.0
+ size: 76573
+ timestamp: 1698797645633
+- platform: osx-arm64
+ name: markdown
+ version: 3.5.1
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- setuptools: '*'
- python: ==2.7|>=3.7
- url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda
+ - importlib-metadata >=4.4
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/markdown-3.5.1-pyhd8ed1ab_0.conda
hash:
- md5: 2a75b296096adabbabadd5e9782e5fcc
- sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd
- optional: false
- category: main
+ md5: 323495027ffa625701129acebf861412
+ sha256: 35e8990504cf8dc7e2bb63efd855fb0a0d5c0d77bf79403235e757c24a83ec1d
build: pyhd8ed1ab_0
arch: aarch64
subdir: osx-arm64
@@ -4046,21 +4647,20 @@ package:
license: BSD-3-Clause
license_family: BSD
noarch: python
- size: 34358
- timestamp: 1683893151613
-- name: nodeenv
- version: 1.8.0
+ size: 76573
+ timestamp: 1698797645633
+- platform: win-64
+ name: markdown
+ version: 3.5.1
+ category: main
manager: conda
- platform: win-64
dependencies:
- setuptools: '*'
- python: ==2.7|>=3.7
- url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda
+ - importlib-metadata >=4.4
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/markdown-3.5.1-pyhd8ed1ab_0.conda
hash:
- md5: 2a75b296096adabbabadd5e9782e5fcc
- sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd
- optional: false
- category: main
+ md5: 323495027ffa625701129acebf861412
+ sha256: 35e8990504cf8dc7e2bb63efd855fb0a0d5c0d77bf79403235e757c24a83ec1d
build: pyhd8ed1ab_0
arch: x86_64
subdir: win-64
@@ -4068,40 +4668,785 @@ package:
license: BSD-3-Clause
license_family: BSD
noarch: python
- size: 34358
- timestamp: 1683893151613
-- name: openmp
- version: 5.0.0
+ size: 76573
+ timestamp: 1698797645633
+- platform: linux-64
+ name: markupsafe
+ version: 2.1.3
+ category: main
manager: conda
- platform: win-64
dependencies:
- llvm-meta: ==5.0.0|5.0.0.*
- vc: 14.*
- url: https://conda.anaconda.org/conda-forge/win-64/openmp-5.0.0-vc14_1.tar.bz2
+ - libgcc-ng >=12
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.3-py311h459d7ec_1.conda
+ hash:
+ md5: 71120b5155a0c500826cf81536721a15
+ sha256: e1a9930f35e39bf65bc293e24160b83ebf9f800f02749f65358e1c04882ee6b0
+ build: py311h459d7ec_1
+ arch: x86_64
+ subdir: linux-64
+ build_number: 1
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 27174
+ timestamp: 1695367575909
+- platform: osx-64
+ name: markupsafe
+ version: 2.1.3
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ url: https://conda.anaconda.org/conda-forge/osx-64/markupsafe-2.1.3-py311h2725bcf_1.conda
+ hash:
+ md5: 52ee86f482b552e547e2b1d6c01adf55
+ sha256: 5a8f8caa89eeba6ea6e9e96d3e7c109b675bc3c6ed4b109b8931757da2411d48
+ build: py311h2725bcf_1
+ arch: x86_64
+ subdir: osx-64
+ build_number: 1
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 25917
+ timestamp: 1695367980802
+- platform: osx-arm64
+ name: markupsafe
+ version: 2.1.3
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.11,<3.12.0a0
+ - python >=3.11,<3.12.0a0 *_cpython
+ - python_abi 3.11.* *_cp311
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/markupsafe-2.1.3-py311heffc1b2_1.conda
+ hash:
+ md5: 5a7b68cb9eea46bea31aaf2d11d0dd2f
+ sha256: 307c1e3b2e4a2a992a6c94975910adff88cc523e2c9a41e81b2d506d8c9e7359
+ build: py311heffc1b2_1
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 1
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 26764
+ timestamp: 1695368008221
+- platform: win-64
+ name: markupsafe
+ version: 2.1.3
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ url: https://conda.anaconda.org/conda-forge/win-64/markupsafe-2.1.3-py311ha68e1ae_1.conda
+ hash:
+ md5: bc93b9d445824cfce3933b5dcc1087b4
+ sha256: 435c4c2df8d98cd49d8332d22b6f4847fc4b594500f0cdf0f9437274c668642b
+ build: py311ha68e1ae_1
+ arch: x86_64
+ subdir: win-64
+ build_number: 1
+ constrains:
+ - jinja2 >=3.0.0
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 29466
+ timestamp: 1695367841578
+- platform: linux-64
+ name: mergedeep
+ version: 1.3.4
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 1a160a3cab5cb6bd46264b52cd6f69a2
+ sha256: 41ad8c16876820981adfc6e17a62935c950214bd9a9bb092e6aaefdc89a33f0b
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 9598
+ timestamp: 1612711404414
+- platform: osx-64
+ name: mergedeep
+ version: 1.3.4
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 1a160a3cab5cb6bd46264b52cd6f69a2
+ sha256: 41ad8c16876820981adfc6e17a62935c950214bd9a9bb092e6aaefdc89a33f0b
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 9598
+ timestamp: 1612711404414
+- platform: osx-arm64
+ name: mergedeep
+ version: 1.3.4
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 1a160a3cab5cb6bd46264b52cd6f69a2
+ sha256: 41ad8c16876820981adfc6e17a62935c950214bd9a9bb092e6aaefdc89a33f0b
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 9598
+ timestamp: 1612711404414
+- platform: win-64
+ name: mergedeep
+ version: 1.3.4
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/mergedeep-1.3.4-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 1a160a3cab5cb6bd46264b52cd6f69a2
+ sha256: 41ad8c16876820981adfc6e17a62935c950214bd9a9bb092e6aaefdc89a33f0b
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 9598
+ timestamp: 1612711404414
+- platform: linux-64
+ name: mkdocs
+ version: 1.5.3
+ category: main
+ manager: conda
+ dependencies:
+ - click >=7.0
+ - colorama >=0.4
+ - ghp-import >=1.0
+ - importlib-metadata >=4.3
+ - jinja2 >=2.11.1
+ - markdown >=3.2.1
+ - markupsafe >=2.0.1
+ - mergedeep >=1.3.4
+ - packaging >=20.5
+ - pathspec >=0.11.1
+ - platformdirs >=2.2.0
+ - python >=3.7
+ - pyyaml >=5.1
+ - pyyaml-env-tag >=0.1
+ - typing-extensions >=3.10
+ - watchdog >=2.0
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.5.3-pyhd8ed1ab_0.conda
+ hash:
+ md5: 1e432aebaa009b030cce33a554939d8e
+ sha256: cd57f3805a38bc3b3356a37d4bd9af7e227972286f61eae3c88d356216bc7159
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ constrains:
+ - babel >=2.9.0
+ license: BSD-2-Clause
+ license_family: BSD
+ noarch: python
+ size: 2862150
+ timestamp: 1695086687269
+- platform: osx-64
+ name: mkdocs
+ version: 1.5.3
+ category: main
+ manager: conda
+ dependencies:
+ - click >=7.0
+ - colorama >=0.4
+ - ghp-import >=1.0
+ - importlib-metadata >=4.3
+ - jinja2 >=2.11.1
+ - markdown >=3.2.1
+ - markupsafe >=2.0.1
+ - mergedeep >=1.3.4
+ - packaging >=20.5
+ - pathspec >=0.11.1
+ - platformdirs >=2.2.0
+ - python >=3.7
+ - pyyaml >=5.1
+ - pyyaml-env-tag >=0.1
+ - typing-extensions >=3.10
+ - watchdog >=2.0
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.5.3-pyhd8ed1ab_0.conda
+ hash:
+ md5: 1e432aebaa009b030cce33a554939d8e
+ sha256: cd57f3805a38bc3b3356a37d4bd9af7e227972286f61eae3c88d356216bc7159
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ constrains:
+ - babel >=2.9.0
+ license: BSD-2-Clause
+ license_family: BSD
+ noarch: python
+ size: 2862150
+ timestamp: 1695086687269
+- platform: osx-arm64
+ name: mkdocs
+ version: 1.5.3
+ category: main
+ manager: conda
+ dependencies:
+ - click >=7.0
+ - colorama >=0.4
+ - ghp-import >=1.0
+ - importlib-metadata >=4.3
+ - jinja2 >=2.11.1
+ - markdown >=3.2.1
+ - markupsafe >=2.0.1
+ - mergedeep >=1.3.4
+ - packaging >=20.5
+ - pathspec >=0.11.1
+ - platformdirs >=2.2.0
+ - python >=3.7
+ - pyyaml >=5.1
+ - pyyaml-env-tag >=0.1
+ - typing-extensions >=3.10
+ - watchdog >=2.0
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.5.3-pyhd8ed1ab_0.conda
+ hash:
+ md5: 1e432aebaa009b030cce33a554939d8e
+ sha256: cd57f3805a38bc3b3356a37d4bd9af7e227972286f61eae3c88d356216bc7159
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ constrains:
+ - babel >=2.9.0
+ license: BSD-2-Clause
+ license_family: BSD
+ noarch: python
+ size: 2862150
+ timestamp: 1695086687269
+- platform: win-64
+ name: mkdocs
+ version: 1.5.3
+ category: main
+ manager: conda
+ dependencies:
+ - click >=7.0
+ - colorama >=0.4
+ - ghp-import >=1.0
+ - importlib-metadata >=4.3
+ - jinja2 >=2.11.1
+ - markdown >=3.2.1
+ - markupsafe >=2.0.1
+ - mergedeep >=1.3.4
+ - packaging >=20.5
+ - pathspec >=0.11.1
+ - platformdirs >=2.2.0
+ - python >=3.7
+ - pyyaml >=5.1
+ - pyyaml-env-tag >=0.1
+ - typing-extensions >=3.10
+ - watchdog >=2.0
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-1.5.3-pyhd8ed1ab_0.conda
+ hash:
+ md5: 1e432aebaa009b030cce33a554939d8e
+ sha256: cd57f3805a38bc3b3356a37d4bd9af7e227972286f61eae3c88d356216bc7159
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ constrains:
+ - babel >=2.9.0
+ license: BSD-2-Clause
+ license_family: BSD
+ noarch: python
+ size: 2862150
+ timestamp: 1695086687269
+- platform: linux-64
+ name: mkdocs-material
+ version: 9.4.4
+ category: main
+ manager: conda
+ dependencies:
+ - babel ~=2.10
+ - colorama ~=0.4
+ - jinja2 ~=3.0
+ - markdown ~=3.2
+ - mkdocs ~=1.5
+ - mkdocs-material-extensions ~=1.1
+ - paginate ~=0.5
+ - pygments ~=2.16
+ - pymdown-extensions ~=10.2
+ - python >=3.8
+ - regex ~=2022.4
+ - requests ~=2.26
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.4.4-pyhd8ed1ab_0.conda
+ hash:
+ md5: 28d85ea8a0afd0fc07029ed11b103dbc
+ sha256: 9bcf1aeae9c9fd79c8a0d9445c0ec4d5d4bae45a824b61762446486f3d6e1742
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 4723013
+ timestamp: 1696558178032
+- platform: osx-64
+ name: mkdocs-material
+ version: 9.4.4
+ category: main
+ manager: conda
+ dependencies:
+ - babel ~=2.10
+ - colorama ~=0.4
+ - jinja2 ~=3.0
+ - markdown ~=3.2
+ - mkdocs ~=1.5
+ - mkdocs-material-extensions ~=1.1
+ - paginate ~=0.5
+ - pygments ~=2.16
+ - pymdown-extensions ~=10.2
+ - python >=3.8
+ - regex ~=2022.4
+ - requests ~=2.26
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.4.4-pyhd8ed1ab_0.conda
+ hash:
+ md5: 28d85ea8a0afd0fc07029ed11b103dbc
+ sha256: 9bcf1aeae9c9fd79c8a0d9445c0ec4d5d4bae45a824b61762446486f3d6e1742
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 4723013
+ timestamp: 1696558178032
+- platform: osx-arm64
+ name: mkdocs-material
+ version: 9.4.4
+ category: main
+ manager: conda
+ dependencies:
+ - babel ~=2.10
+ - colorama ~=0.4
+ - jinja2 ~=3.0
+ - markdown ~=3.2
+ - mkdocs ~=1.5
+ - mkdocs-material-extensions ~=1.1
+ - paginate ~=0.5
+ - pygments ~=2.16
+ - pymdown-extensions ~=10.2
+ - python >=3.8
+ - regex ~=2022.4
+ - requests ~=2.26
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.4.4-pyhd8ed1ab_0.conda
+ hash:
+ md5: 28d85ea8a0afd0fc07029ed11b103dbc
+ sha256: 9bcf1aeae9c9fd79c8a0d9445c0ec4d5d4bae45a824b61762446486f3d6e1742
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 4723013
+ timestamp: 1696558178032
+- platform: win-64
+ name: mkdocs-material
+ version: 9.4.4
+ category: main
+ manager: conda
+ dependencies:
+ - babel ~=2.10
+ - colorama ~=0.4
+ - jinja2 ~=3.0
+ - markdown ~=3.2
+ - mkdocs ~=1.5
+ - mkdocs-material-extensions ~=1.1
+ - paginate ~=0.5
+ - pygments ~=2.16
+ - pymdown-extensions ~=10.2
+ - python >=3.8
+ - regex ~=2022.4
+ - requests ~=2.26
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-9.4.4-pyhd8ed1ab_0.conda
+ hash:
+ md5: 28d85ea8a0afd0fc07029ed11b103dbc
+ sha256: 9bcf1aeae9c9fd79c8a0d9445c0ec4d5d4bae45a824b61762446486f3d6e1742
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 4723013
+ timestamp: 1696558178032
+- platform: linux-64
+ name: mkdocs-material-extensions
+ version: '1.3'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.3-pyhd8ed1ab_0.conda
+ hash:
+ md5: bc28ff6866fa49b9b42003f452548fef
+ sha256: c680da9057be36caf51dd9dc1a0099e42d88dad5f6d978afe3c34eaa4315d166
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ constrains:
+ - mkdocs-material >=5.0.0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 16018
+ timestamp: 1697517649353
+- platform: osx-64
+ name: mkdocs-material-extensions
+ version: '1.3'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.3-pyhd8ed1ab_0.conda
+ hash:
+ md5: bc28ff6866fa49b9b42003f452548fef
+ sha256: c680da9057be36caf51dd9dc1a0099e42d88dad5f6d978afe3c34eaa4315d166
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ constrains:
+ - mkdocs-material >=5.0.0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 16018
+ timestamp: 1697517649353
+- platform: osx-arm64
+ name: mkdocs-material-extensions
+ version: '1.3'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.3-pyhd8ed1ab_0.conda
+ hash:
+ md5: bc28ff6866fa49b9b42003f452548fef
+ sha256: c680da9057be36caf51dd9dc1a0099e42d88dad5f6d978afe3c34eaa4315d166
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ constrains:
+ - mkdocs-material >=5.0.0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 16018
+ timestamp: 1697517649353
+- platform: win-64
+ name: mkdocs-material-extensions
+ version: '1.3'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/mkdocs-material-extensions-1.3-pyhd8ed1ab_0.conda
+ hash:
+ md5: bc28ff6866fa49b9b42003f452548fef
+ sha256: c680da9057be36caf51dd9dc1a0099e42d88dad5f6d978afe3c34eaa4315d166
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ constrains:
+ - mkdocs-material >=5.0.0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 16018
+ timestamp: 1697517649353
+- platform: osx-64
+ name: mpc
+ version: 1.3.1
+ category: main
+ manager: conda
+ dependencies:
+ - gmp >=6.2.1,<7.0a0
+ - mpfr >=4.1.0,<5.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-64/mpc-1.3.1-h81bd1dd_0.conda
+ hash:
+ md5: c752c0eb6c250919559172c011e5f65b
+ sha256: 2ae945a15c8a984d581dcfb974ad3b5d877a6527de2c95a3363e6b4490b2f312
+ build: h81bd1dd_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ size: 109064
+ timestamp: 1674264109148
+- platform: osx-arm64
+ name: mpc
+ version: 1.3.1
+ category: main
+ manager: conda
+ dependencies:
+ - gmp >=6.2.1,<7.0a0
+ - mpfr >=4.1.0,<5.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/mpc-1.3.1-h91ba8db_0.conda
+ hash:
+ md5: 362af269d860ae49580f8f032a68b0df
+ sha256: 6d8d4f8befca279f022c1c212241ad6672cb347181452555414e277484ad534c
+ build: h91ba8db_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: LGPL-3.0-or-later
+ license_family: LGPL
+ size: 103657
+ timestamp: 1674264097592
+- platform: osx-64
+ name: mpfr
+ version: 4.2.1
+ category: main
+ manager: conda
+ dependencies:
+ - gmp >=6.2.1,<7.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-64/mpfr-4.2.1-h0c69b56_0.conda
+ hash:
+ md5: d545aecded064848432bc994075dfccf
+ sha256: e7c93a5399661b0528981c6fd53e8614eee3f9ba97f92e8167c092c4a5d9368c
+ build: h0c69b56_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 376506
+ timestamp: 1698004330751
+- platform: osx-arm64
+ name: mpfr
+ version: 4.2.1
+ category: main
+ manager: conda
+ dependencies:
+ - gmp >=6.2.1,<7.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/mpfr-4.2.1-h9546428_0.conda
+ hash:
+ md5: a0d56e1ff4ac1babc2e95516aeba7d24
+ sha256: 811ca63177cf638ac01442fc8d1148d3a0cef18dc1f870fceed1feb24be6fd8f
+ build: h9546428_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: LGPL-3.0-only
+ license_family: LGPL
+ size: 353557
+ timestamp: 1698004132019
+- platform: linux-64
+ name: ncurses
+ version: '6.4'
+ category: main
+ manager: conda
+ dependencies:
+ - libgcc-ng >=12
+ url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.4-hcb278e6_0.conda
+ hash:
+ md5: 681105bccc2a3f7f1a837d47d39c9179
+ sha256: ccf61e61d58a8a7b2d66822d5568e2dc9387883dd9b2da61e1d787ece4c4979a
+ build: hcb278e6_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: X11 AND BSD-3-Clause
+ size: 880967
+ timestamp: 1686076725450
+- platform: osx-64
+ name: ncurses
+ version: '6.4'
+ category: main
+ manager: conda
+ dependencies: []
+ url: https://conda.anaconda.org/conda-forge/osx-64/ncurses-6.4-hf0c8a7f_0.conda
+ hash:
+ md5: c3dbae2411164d9b02c69090a9a91857
+ sha256: 7841b1fce1ffb0bfb038f9687b92f04d64acab1f7cb96431972386ea98c7b2fd
+ build: hf0c8a7f_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: X11 AND BSD-3-Clause
+ size: 828118
+ timestamp: 1686077056765
+- platform: osx-arm64
+ name: ncurses
+ version: '6.4'
+ category: main
+ manager: conda
+ dependencies: []
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/ncurses-6.4-h7ea286d_0.conda
+ hash:
+ md5: 318337fb9d0c53ba635efb7888242373
+ sha256: 017e230a1f912e15005d4c4f3d387119190b53240f9ae0ba8a319dd958901780
+ build: h7ea286d_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: X11 AND BSD-3-Clause
+ size: 799196
+ timestamp: 1686077139703
+- platform: linux-64
+ name: nodeenv
+ version: 1.8.0
+ category: main
+ manager: conda
+ dependencies:
+ - setuptools *
+ - python ==2.7|>=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: 2a75b296096adabbabadd5e9782e5fcc
+ sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 34358
+ timestamp: 1683893151613
+- platform: osx-64
+ name: nodeenv
+ version: 1.8.0
+ category: main
+ manager: conda
+ dependencies:
+ - setuptools *
+ - python ==2.7|>=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: 2a75b296096adabbabadd5e9782e5fcc
+ sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 34358
+ timestamp: 1683893151613
+- platform: osx-arm64
+ name: nodeenv
+ version: 1.8.0
+ category: main
+ manager: conda
+ dependencies:
+ - setuptools *
+ - python ==2.7|>=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: 2a75b296096adabbabadd5e9782e5fcc
+ sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 34358
+ timestamp: 1683893151613
+- platform: win-64
+ name: nodeenv
+ version: 1.8.0
+ category: main
+ manager: conda
+ dependencies:
+ - setuptools *
+ - python ==2.7|>=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/nodeenv-1.8.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: 2a75b296096adabbabadd5e9782e5fcc
+ sha256: 1320306234552717149f36f825ddc7e27ea295f24829e9db4cc6ceaff0b032bd
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 34358
+ timestamp: 1683893151613
+- platform: win-64
+ name: openmp
+ version: 5.0.0
+ category: main
+ manager: conda
+ dependencies:
+ - llvm-meta 5.0.0|5.0.0.*
+ - vc 14.*
+ url: https://conda.anaconda.org/conda-forge/win-64/openmp-5.0.0-vc14_1.tar.bz2
hash:
md5: 8284c925330fa53668ade00db3c9e787
sha256: 05c19170938b589f59049679d4e0679c98160fecc6fd1bf721b0f4980bd235dd
- optional: false
- category: main
build: vc14_1
arch: x86_64
subdir: win-64
build_number: 1
license: NCSA
size: 590466
-- name: openssl
+- platform: linux-64
+ name: openssl
version: 3.1.3
+ category: main
manager: conda
- platform: linux-64
dependencies:
- ca-certificates: '*'
- libgcc-ng: '>=12'
+ - ca-certificates *
+ - libgcc-ng >=12
url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.1.3-hd590300_0.conda
hash:
md5: 7bb88ce04c8deb9f7d763ae04a1da72f
sha256: f4e35f506c7e8ab7dfdc47255b0d5aa8ce0c99028ae0affafd274333042c4f70
- optional: false
- category: main
build: hd590300_0
arch: x86_64
subdir: linux-64
@@ -4112,18 +5457,17 @@ package:
license_family: Apache
size: 2642850
timestamp: 1695158025027
-- name: openssl
+- platform: osx-64
+ name: openssl
version: 3.1.3
+ category: main
manager: conda
- platform: osx-64
dependencies:
- ca-certificates: '*'
+ - ca-certificates *
url: https://conda.anaconda.org/conda-forge/osx-64/openssl-3.1.3-h8a1eda9_0.conda
hash:
md5: 26f9b58f905547e658e9587f8e8cfe43
sha256: 69731ce62d4b68e538af559747da53f837ae0bbca519b38f2eea28680eb9e8d1
- optional: false
- category: main
build: h8a1eda9_0
arch: x86_64
subdir: osx-64
@@ -4134,18 +5478,17 @@ package:
license_family: Apache
size: 2329752
timestamp: 1695158667922
-- name: openssl
+- platform: osx-arm64
+ name: openssl
version: 3.1.3
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- ca-certificates: '*'
+ - ca-certificates *
url: https://conda.anaconda.org/conda-forge/osx-arm64/openssl-3.1.3-h53f4e23_0.conda
hash:
md5: 40d01d3f39589f54b618ddd28a5a48cb
sha256: d9af6208610d4985322b8eade79215f1ded6e2a2b41b0a885714b971a36a5bae
- optional: false
- category: main
build: h53f4e23_0
arch: aarch64
subdir: osx-arm64
@@ -4156,39 +5499,277 @@ package:
license_family: Apache
size: 2225422
timestamp: 1695158154709
-- name: openssl
+- platform: win-64
+ name: openssl
version: 3.1.1
+ category: main
manager: conda
- platform: win-64
dependencies:
- ucrt: '>=10.0.20348.0'
- ca-certificates: '*'
- vc: '>=14.2,<15'
- vc14_runtime: '>=14.29.30139'
+ - ucrt >=10.0.20348.0
+ - ca-certificates *
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
url: https://conda.anaconda.org/conda-forge/win-64/openssl-3.1.1-hcfcfb64_1.conda
hash:
md5: 1d913a5de46c6b2f7e4cfbd26b106b8b
sha256: 4424486fb9a2aeaba912a8dd8a5b5cdb6fcd65d7708fd854e3ea27449bb352a3
- optional: false
- category: main
build: hcfcfb64_1
arch: x86_64
subdir: win-64
build_number: 0
-- name: pcre2
+- platform: linux-64
+ name: packaging
+ version: '23.2'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: 79002079284aa895f883c6b7f3f88fd6
+ sha256: 69b3ace6cca2dab9047b2c24926077d81d236bef45329d264b394001e3c3e52f
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 49452
+ timestamp: 1696202521121
+- platform: osx-64
+ name: packaging
+ version: '23.2'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: 79002079284aa895f883c6b7f3f88fd6
+ sha256: 69b3ace6cca2dab9047b2c24926077d81d236bef45329d264b394001e3c3e52f
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 49452
+ timestamp: 1696202521121
+- platform: osx-arm64
+ name: packaging
+ version: '23.2'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: 79002079284aa895f883c6b7f3f88fd6
+ sha256: 69b3ace6cca2dab9047b2c24926077d81d236bef45329d264b394001e3c3e52f
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 49452
+ timestamp: 1696202521121
+- platform: win-64
+ name: packaging
+ version: '23.2'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/packaging-23.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: 79002079284aa895f883c6b7f3f88fd6
+ sha256: 69b3ace6cca2dab9047b2c24926077d81d236bef45329d264b394001e3c3e52f
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 49452
+ timestamp: 1696202521121
+- platform: linux-64
+ name: paginate
+ version: 0.5.6
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.4
+ url: https://conda.anaconda.org/conda-forge/noarch/paginate-0.5.6-pyhd8ed1ab_0.conda
+ hash:
+ md5: 5d454974a1b5c6f4d468f91812331d53
+ sha256: 8d9d18c2892d49c33fab3e215cdbc55a2ba30a28c1f52e5e5d61cb435803726b
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 18537
+ timestamp: 1693246970487
+- platform: osx-64
+ name: paginate
+ version: 0.5.6
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.4
+ url: https://conda.anaconda.org/conda-forge/noarch/paginate-0.5.6-pyhd8ed1ab_0.conda
+ hash:
+ md5: 5d454974a1b5c6f4d468f91812331d53
+ sha256: 8d9d18c2892d49c33fab3e215cdbc55a2ba30a28c1f52e5e5d61cb435803726b
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 18537
+ timestamp: 1693246970487
+- platform: osx-arm64
+ name: paginate
+ version: 0.5.6
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.4
+ url: https://conda.anaconda.org/conda-forge/noarch/paginate-0.5.6-pyhd8ed1ab_0.conda
+ hash:
+ md5: 5d454974a1b5c6f4d468f91812331d53
+ sha256: 8d9d18c2892d49c33fab3e215cdbc55a2ba30a28c1f52e5e5d61cb435803726b
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 18537
+ timestamp: 1693246970487
+- platform: win-64
+ name: paginate
+ version: 0.5.6
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.4
+ url: https://conda.anaconda.org/conda-forge/noarch/paginate-0.5.6-pyhd8ed1ab_0.conda
+ hash:
+ md5: 5d454974a1b5c6f4d468f91812331d53
+ sha256: 8d9d18c2892d49c33fab3e215cdbc55a2ba30a28c1f52e5e5d61cb435803726b
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 18537
+ timestamp: 1693246970487
+- platform: linux-64
+ name: pathspec
+ version: 0.11.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: e41debb259e68490e3ab81e46b639ab6
+ sha256: 7bcfa6d86359d45572ba9ccaeaedc04b0452e2654fe44b6fe378d0d37b8745e1
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: MPL-2.0
+ license_family: MOZILLA
+ noarch: python
+ size: 38649
+ timestamp: 1690598108100
+- platform: osx-64
+ name: pathspec
+ version: 0.11.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: e41debb259e68490e3ab81e46b639ab6
+ sha256: 7bcfa6d86359d45572ba9ccaeaedc04b0452e2654fe44b6fe378d0d37b8745e1
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: MPL-2.0
+ license_family: MOZILLA
+ noarch: python
+ size: 38649
+ timestamp: 1690598108100
+- platform: osx-arm64
+ name: pathspec
+ version: 0.11.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: e41debb259e68490e3ab81e46b639ab6
+ sha256: 7bcfa6d86359d45572ba9ccaeaedc04b0452e2654fe44b6fe378d0d37b8745e1
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: MPL-2.0
+ license_family: MOZILLA
+ noarch: python
+ size: 38649
+ timestamp: 1690598108100
+- platform: win-64
+ name: pathspec
+ version: 0.11.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/pathspec-0.11.2-pyhd8ed1ab_0.conda
+ hash:
+ md5: e41debb259e68490e3ab81e46b639ab6
+ sha256: 7bcfa6d86359d45572ba9ccaeaedc04b0452e2654fe44b6fe378d0d37b8745e1
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: MPL-2.0
+ license_family: MOZILLA
+ noarch: python
+ size: 38649
+ timestamp: 1690598108100
+- platform: linux-64
+ name: pcre2
version: '10.40'
+ category: main
manager: conda
- platform: linux-64
dependencies:
- bzip2: '>=1.0.8,<2.0a0'
- libgcc-ng: '>=12'
- libzlib: '>=1.2.12,<1.3.0a0'
+ - bzip2 >=1.0.8,<2.0a0
+ - libgcc-ng >=12
+ - libzlib >=1.2.12,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/pcre2-10.40-hc3806b6_0.tar.bz2
hash:
md5: 69e2c796349cd9b273890bee0febfe1b
sha256: 7a29ec847556eed4faa1646010baae371ced69059a4ade43851367a076d6108a
- optional: false
- category: main
build: hc3806b6_0
arch: x86_64
subdir: linux-64
@@ -4197,19 +5778,18 @@ package:
license_family: BSD
size: 2412495
timestamp: 1665562915343
-- name: pcre2
+- platform: osx-64
+ name: pcre2
version: '10.40'
+ category: main
manager: conda
- platform: osx-64
dependencies:
- bzip2: '>=1.0.8,<2.0a0'
- libzlib: '>=1.2.12,<1.3.0a0'
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.2.12,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/pcre2-10.40-h1c4e4bc_0.tar.bz2
hash:
md5: e0f80c8f3a0352a54eddfe59cd2b25b1
sha256: 60265b48c96decbea89a19a7bc34be88d9b95d4725fd4dbdae158529c601875a
- optional: false
- category: main
build: h1c4e4bc_0
arch: x86_64
subdir: osx-64
@@ -4218,56 +5798,53 @@ package:
license_family: BSD
size: 2552113
timestamp: 1665563254214
-- name: pcre2
+- platform: osx-arm64
+ name: pcre2
version: '10.40'
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libzlib: '>=1.2.12,<1.3.0a0'
- bzip2: '>=1.0.8,<2.0a0'
+ - libzlib >=1.2.12,<1.3.0a0
+ - bzip2 >=1.0.8,<2.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/pcre2-10.40-hb34f9b4_0.tar.bz2
hash:
md5: 721b7288270bafc83586b0f01c2a67f2
sha256: 93503b5e05470ccc87f696c0fdf0d47938e0305b5047eacb85c15d78dcf641fe
- optional: false
- category: main
build: hb34f9b4_0
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: pcre2
+- platform: win-64
+ name: pcre2
version: '10.40'
+ category: main
manager: conda
- platform: win-64
dependencies:
- ucrt: '>=10.0.20348.0'
- bzip2: '>=1.0.8,<2.0a0'
- libzlib: '>=1.2.12,<1.3.0a0'
- vc: '>=14.2,<15'
- vs2015_runtime: '>=14.29.30139'
+ - ucrt >=10.0.20348.0
+ - bzip2 >=1.0.8,<2.0a0
+ - libzlib >=1.2.12,<1.3.0a0
+ - vc >=14.2,<15
+ - vs2015_runtime >=14.29.30139
url: https://conda.anaconda.org/conda-forge/win-64/pcre2-10.40-h17e33f8_0.tar.bz2
hash:
md5: 2519de0d9620dc2bc7e19caf6867136d
sha256: 5833c63548e4fae91da6d77739eab7dc9bf6542e43f105826b23c01bfdd9cb57
- optional: false
- category: main
build: h17e33f8_0
arch: x86_64
subdir: win-64
build_number: 0
-- name: perl
+- platform: linux-64
+ name: perl
version: 5.32.1
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=12'
- libnsl: '>=2.0.0,<2.1.0a0'
+ - libgcc-ng >=12
+ - libnsl >=2.0.0,<2.1.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/perl-5.32.1-4_hd590300_perl5.conda
hash:
md5: 3e785bff761095eb7f8676f4694bd1b1
sha256: 6e18c1488d191cb1a43a483f44fffa75668779a29927319b4adeb10da12ad06b
- optional: false
- category: main
build: 4_hd590300_perl5
arch: x86_64
subdir: linux-64
@@ -4275,17 +5852,16 @@ package:
license: GPL-1.0-or-later OR Artistic-1.0-Perl
size: 13349514
timestamp: 1689376866566
-- name: perl
+- platform: osx-64
+ name: perl
version: 5.32.1
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/perl-5.32.1-4_h0dc2134_perl5.conda
hash:
md5: fe0116fc9288448b8e0e3c9b0c7841cd
sha256: ddd3790958849cc42287741d3ea31ccde78a843047c844e1e2adb6e531240cde
- optional: false
- category: main
build: 4_h0dc2134_perl5
arch: x86_64
subdir: osx-64
@@ -4293,17 +5869,16 @@ package:
license: GPL-1.0-or-later OR Artistic-1.0-Perl
size: 12478889
timestamp: 1689377655662
-- name: perl
+- platform: osx-arm64
+ name: perl
version: 5.32.1
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/perl-5.32.1-4_hf2054a2_perl5.conda
hash:
md5: d9389447361c7b53e3bbfc947cae0973
sha256: 3bf5e43b9c7127f6d0529393535ac69c25483b3b8b76cb71ffa454f6aa73f5a3
- optional: false
- category: main
build: 4_hf2054a2_perl5
arch: aarch64
subdir: osx-arm64
@@ -4311,86 +5886,81 @@ package:
license: GPL-1.0-or-later OR Artistic-1.0-Perl
size: 14472770
timestamp: 1689377922184
-- name: pkg-config
+- platform: linux-64
+ name: pkg-config
version: 0.29.2
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=7.5.0'
+ - libgcc-ng >=7.5.0
url: https://conda.anaconda.org/conda-forge/linux-64/pkg-config-0.29.2-h36c2ea0_1008.tar.bz2
hash:
md5: fbef41ff6a4c8140c30057466a1cdd47
sha256: 8b35a077ceccdf6888f1e82bd3ea281175014aefdc2d4cf63d7a4c7e169c125c
- optional: false
- category: main
build: h36c2ea0_1008
arch: x86_64
subdir: linux-64
build_number: 0
-- name: pkg-config
+- platform: osx-64
+ name: pkg-config
version: 0.29.2
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libiconv: '>=1.16,<2.0.0a0'
+ - libiconv >=1.16,<2.0.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/pkg-config-0.29.2-ha3d46e9_1008.tar.bz2
hash:
md5: 352bc6fb446a7ca608c61b33c1d5eb98
sha256: f60d1c03c7d10e8926e767981872fdd6002d2094925df598a53c58261524c151
- optional: false
- category: main
build: ha3d46e9_1008
arch: x86_64
subdir: osx-64
build_number: 0
-- name: pkg-config
+- platform: osx-arm64
+ name: pkg-config
version: 0.29.2
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libglib: '>=2.70.2,<3.0a0'
- libiconv: '>=1.16,<2.0.0a0'
+ - libglib >=2.70.2,<3.0a0
+ - libiconv >=1.16,<2.0.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/pkg-config-0.29.2-hab62308_1008.tar.bz2
hash:
md5: 8d173d52214679033079d1b0582075aa
sha256: e59e69111709d097f9938e72ba19811ec1ef36aababdbed77bd7c767f15639e0
- optional: false
- category: main
build: hab62308_1008
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: pkg-config
+- platform: win-64
+ name: pkg-config
version: 0.29.2
+ category: main
manager: conda
- platform: win-64
dependencies:
- libglib: '>=2.64.6,<3.0a0'
- vc: '>=14.1,<15.0a0'
- vs2015_runtime: '>=14.16.27012'
+ - libglib >=2.64.6,<3.0a0
+ - vc >=14.1,<15.0a0
+ - vs2015_runtime >=14.16.27012
url: https://conda.anaconda.org/conda-forge/win-64/pkg-config-0.29.2-h2bf4dc2_1008.tar.bz2
hash:
md5: 8ff5bccb4dc5d153e79b068e0bb301c5
sha256: f2f64c4774eea3b789c9568452d8cd776bdcf7e2cda0f24bfa9dbcbd7fbb9f6f
- optional: false
- category: main
build: h2bf4dc2_1008
arch: x86_64
subdir: win-64
build_number: 0
-- name: platformdirs
+- platform: linux-64
+ name: platformdirs
version: 3.10.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- typing-extensions: '>=4.6.3'
- python: '>=3.7'
+ - typing-extensions >=4.6.3
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.10.0-pyhd8ed1ab_0.conda
hash:
md5: 0809187ef9b89a3d94a5c24d13936236
sha256: 1b5c0ca2f4260c7dd8cfccd8a641c1e41876c79dc594506be379cde08f5b471e
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: linux-64
@@ -4400,19 +5970,18 @@ package:
noarch: python
size: 19827
timestamp: 1690813274592
-- name: platformdirs
+- platform: osx-64
+ name: platformdirs
version: 3.10.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- typing-extensions: '>=4.6.3'
- python: '>=3.7'
+ - typing-extensions >=4.6.3
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.10.0-pyhd8ed1ab_0.conda
hash:
md5: 0809187ef9b89a3d94a5c24d13936236
sha256: 1b5c0ca2f4260c7dd8cfccd8a641c1e41876c79dc594506be379cde08f5b471e
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: osx-64
@@ -4422,19 +5991,18 @@ package:
noarch: python
size: 19827
timestamp: 1690813274592
-- name: platformdirs
+- platform: osx-arm64
+ name: platformdirs
version: 3.10.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- typing-extensions: '>=4.6.3'
- python: '>=3.7'
+ - typing-extensions >=4.6.3
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.10.0-pyhd8ed1ab_0.conda
hash:
md5: 0809187ef9b89a3d94a5c24d13936236
sha256: 1b5c0ca2f4260c7dd8cfccd8a641c1e41876c79dc594506be379cde08f5b471e
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: aarch64
subdir: osx-arm64
@@ -4444,19 +6012,18 @@ package:
noarch: python
size: 19827
timestamp: 1690813274592
-- name: platformdirs
+- platform: win-64
+ name: platformdirs
version: 3.10.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- typing-extensions: '>=4.6.3'
- python: '>=3.7'
+ - typing-extensions >=4.6.3
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/platformdirs-3.10.0-pyhd8ed1ab_0.conda
hash:
md5: 0809187ef9b89a3d94a5c24d13936236
sha256: 1b5c0ca2f4260c7dd8cfccd8a641c1e41876c79dc594506be379cde08f5b471e
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: win-64
@@ -4466,23 +6033,22 @@ package:
noarch: python
size: 19827
timestamp: 1690813274592
-- name: pre-commit
+- platform: linux-64
+ name: pre-commit
version: 3.3.3
+ category: main
manager: conda
- platform: linux-64
dependencies:
- cfgv: '>=2.0.0'
- python: '>=3.8'
- pyyaml: '>=5.1'
- identify: '>=1.0.0'
- virtualenv: '>=20.10.0'
- nodeenv: '>=0.11.1'
+ - cfgv >=2.0.0
+ - python >=3.8
+ - pyyaml >=5.1
+ - identify >=1.0.0
+ - virtualenv >=20.10.0
+ - nodeenv >=0.11.1
url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.3.3-pyha770c72_0.conda
hash:
md5: dd64a0e440754ed97610b3e6b502b6b1
sha256: 3df1434057ce827d88cdd84578732030b3d4b5a0bc6c58bff12b7f8001c1be5b
- optional: false
- category: main
build: pyha770c72_0
arch: x86_64
subdir: linux-64
@@ -4492,23 +6058,22 @@ package:
noarch: python
size: 179852
timestamp: 1686749032780
-- name: pre-commit
+- platform: osx-64
+ name: pre-commit
version: 3.3.3
+ category: main
manager: conda
- platform: osx-64
dependencies:
- cfgv: '>=2.0.0'
- python: '>=3.8'
- pyyaml: '>=5.1'
- identify: '>=1.0.0'
- virtualenv: '>=20.10.0'
- nodeenv: '>=0.11.1'
+ - cfgv >=2.0.0
+ - python >=3.8
+ - pyyaml >=5.1
+ - identify >=1.0.0
+ - virtualenv >=20.10.0
+ - nodeenv >=0.11.1
url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.3.3-pyha770c72_0.conda
hash:
md5: dd64a0e440754ed97610b3e6b502b6b1
sha256: 3df1434057ce827d88cdd84578732030b3d4b5a0bc6c58bff12b7f8001c1be5b
- optional: false
- category: main
build: pyha770c72_0
arch: x86_64
subdir: osx-64
@@ -4518,23 +6083,22 @@ package:
noarch: python
size: 179852
timestamp: 1686749032780
-- name: pre-commit
+- platform: osx-arm64
+ name: pre-commit
version: 3.3.3
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- cfgv: '>=2.0.0'
- python: '>=3.8'
- pyyaml: '>=5.1'
- identify: '>=1.0.0'
- virtualenv: '>=20.10.0'
- nodeenv: '>=0.11.1'
+ - cfgv >=2.0.0
+ - python >=3.8
+ - pyyaml >=5.1
+ - identify >=1.0.0
+ - virtualenv >=20.10.0
+ - nodeenv >=0.11.1
url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.3.3-pyha770c72_0.conda
hash:
md5: dd64a0e440754ed97610b3e6b502b6b1
sha256: 3df1434057ce827d88cdd84578732030b3d4b5a0bc6c58bff12b7f8001c1be5b
- optional: false
- category: main
build: pyha770c72_0
arch: aarch64
subdir: osx-arm64
@@ -4544,23 +6108,22 @@ package:
noarch: python
size: 179852
timestamp: 1686749032780
-- name: pre-commit
+- platform: win-64
+ name: pre-commit
version: 3.3.3
+ category: main
manager: conda
- platform: win-64
dependencies:
- cfgv: '>=2.0.0'
- python: '>=3.8'
- pyyaml: '>=5.1'
- identify: '>=1.0.0'
- virtualenv: '>=20.10.0'
- nodeenv: '>=0.11.1'
+ - cfgv >=2.0.0
+ - python >=3.8
+ - pyyaml >=5.1
+ - identify >=1.0.0
+ - virtualenv >=20.10.0
+ - nodeenv >=0.11.1
url: https://conda.anaconda.org/conda-forge/noarch/pre-commit-3.3.3-pyha770c72_0.conda
hash:
md5: dd64a0e440754ed97610b3e6b502b6b1
sha256: 3df1434057ce827d88cdd84578732030b3d4b5a0bc6c58bff12b7f8001c1be5b
- optional: false
- category: main
build: pyha770c72_0
arch: x86_64
subdir: win-64
@@ -4570,18 +6133,17 @@ package:
noarch: python
size: 179852
timestamp: 1686749032780
-- name: pycparser
+- platform: linux-64
+ name: pycparser
version: '2.21'
+ category: main
manager: conda
- platform: linux-64
dependencies:
- python: 2.7.*|>=3.4
+ - python 2.7.*|>=3.4
url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2
hash:
md5: 076becd9e05608f8dc72757d5f3a91ff
sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: linux-64
@@ -4591,18 +6153,17 @@ package:
noarch: python
size: 102747
timestamp: 1636257201998
-- name: pycparser
+- platform: osx-64
+ name: pycparser
version: '2.21'
+ category: main
manager: conda
- platform: osx-64
dependencies:
- python: 2.7.*|>=3.4
+ - python 2.7.*|>=3.4
url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2
hash:
md5: 076becd9e05608f8dc72757d5f3a91ff
sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: osx-64
@@ -4612,18 +6173,17 @@ package:
noarch: python
size: 102747
timestamp: 1636257201998
-- name: pycparser
+- platform: osx-arm64
+ name: pycparser
version: '2.21'
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- python: 2.7.*|>=3.4
+ - python 2.7.*|>=3.4
url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2
hash:
md5: 076becd9e05608f8dc72757d5f3a91ff
sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: aarch64
subdir: osx-arm64
@@ -4633,18 +6193,17 @@ package:
noarch: python
size: 102747
timestamp: 1636257201998
-- name: pycparser
+- platform: win-64
+ name: pycparser
version: '2.21'
+ category: main
manager: conda
- platform: win-64
dependencies:
- python: 2.7.*|>=3.4
+ - python 2.7.*|>=3.4
url: https://conda.anaconda.org/conda-forge/noarch/pycparser-2.21-pyhd8ed1ab_0.tar.bz2
hash:
md5: 076becd9e05608f8dc72757d5f3a91ff
sha256: 74c63fd03f1f1ea2b54e8bc529fd1a600aaafb24027b738d0db87909ee3a33dc
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: win-64
@@ -4654,32 +6213,284 @@ package:
noarch: python
size: 102747
timestamp: 1636257201998
-- name: python
+- platform: linux-64
+ name: pygments
+ version: 2.16.1
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: 40e5cb18165466773619e5c963f00a7b
+ sha256: 3f0f0fadc6084960ec8cc00a32a03529c562ffea3b527eb73b1653183daad389
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: BSD-2-Clause
+ license_family: BSD
+ noarch: python
+ size: 853439
+ timestamp: 1691408777841
+- platform: osx-64
+ name: pygments
+ version: 2.16.1
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: 40e5cb18165466773619e5c963f00a7b
+ sha256: 3f0f0fadc6084960ec8cc00a32a03529c562ffea3b527eb73b1653183daad389
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: BSD-2-Clause
+ license_family: BSD
+ noarch: python
+ size: 853439
+ timestamp: 1691408777841
+- platform: osx-arm64
+ name: pygments
+ version: 2.16.1
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: 40e5cb18165466773619e5c963f00a7b
+ sha256: 3f0f0fadc6084960ec8cc00a32a03529c562ffea3b527eb73b1653183daad389
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: BSD-2-Clause
+ license_family: BSD
+ noarch: python
+ size: 853439
+ timestamp: 1691408777841
+- platform: win-64
+ name: pygments
+ version: 2.16.1
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/pygments-2.16.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: 40e5cb18165466773619e5c963f00a7b
+ sha256: 3f0f0fadc6084960ec8cc00a32a03529c562ffea3b527eb73b1653183daad389
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: BSD-2-Clause
+ license_family: BSD
+ noarch: python
+ size: 853439
+ timestamp: 1691408777841
+- platform: linux-64
+ name: pymdown-extensions
+ version: 10.3.1
+ category: main
+ manager: conda
+ dependencies:
+ - markdown >=3.2
+ - python >=3.7
+ - pyyaml
+ url: https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-10.3.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: e9b647b4dd054615a28e1ed6f0f0fc31
+ sha256: 1286e89bbe30a74ffc47b2a8b951b0e9c5ee427f40567bab70cb303d7e9b285a
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 152646
+ timestamp: 1697754232831
+- platform: osx-64
+ name: pymdown-extensions
+ version: 10.3.1
+ category: main
+ manager: conda
+ dependencies:
+ - markdown >=3.2
+ - python >=3.7
+ - pyyaml
+ url: https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-10.3.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: e9b647b4dd054615a28e1ed6f0f0fc31
+ sha256: 1286e89bbe30a74ffc47b2a8b951b0e9c5ee427f40567bab70cb303d7e9b285a
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 152646
+ timestamp: 1697754232831
+- platform: osx-arm64
+ name: pymdown-extensions
+ version: 10.3.1
+ category: main
+ manager: conda
+ dependencies:
+ - markdown >=3.2
+ - python >=3.7
+ - pyyaml
+ url: https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-10.3.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: e9b647b4dd054615a28e1ed6f0f0fc31
+ sha256: 1286e89bbe30a74ffc47b2a8b951b0e9c5ee427f40567bab70cb303d7e9b285a
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 152646
+ timestamp: 1697754232831
+- platform: win-64
+ name: pymdown-extensions
+ version: 10.3.1
+ category: main
+ manager: conda
+ dependencies:
+ - markdown >=3.2
+ - python >=3.7
+ - pyyaml
+ url: https://conda.anaconda.org/conda-forge/noarch/pymdown-extensions-10.3.1-pyhd8ed1ab_0.conda
+ hash:
+ md5: e9b647b4dd054615a28e1ed6f0f0fc31
+ sha256: 1286e89bbe30a74ffc47b2a8b951b0e9c5ee427f40567bab70cb303d7e9b285a
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 152646
+ timestamp: 1697754232831
+- platform: linux-64
+ name: pysocks
+ version: 1.7.1
+ category: main
+ manager: conda
+ dependencies:
+ - __unix
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
+ hash:
+ md5: 2a7de29fb590ca14b5243c4c812c8025
+ sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b
+ build: pyha2e5f31_6
+ arch: x86_64
+ subdir: linux-64
+ build_number: 6
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 18981
+ timestamp: 1661604969727
+- platform: osx-64
+ name: pysocks
+ version: 1.7.1
+ category: main
+ manager: conda
+ dependencies:
+ - __unix
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
+ hash:
+ md5: 2a7de29fb590ca14b5243c4c812c8025
+ sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b
+ build: pyha2e5f31_6
+ arch: x86_64
+ subdir: osx-64
+ build_number: 6
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 18981
+ timestamp: 1661604969727
+- platform: osx-arm64
+ name: pysocks
+ version: 1.7.1
+ category: main
+ manager: conda
+ dependencies:
+ - __unix
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyha2e5f31_6.tar.bz2
+ hash:
+ md5: 2a7de29fb590ca14b5243c4c812c8025
+ sha256: a42f826e958a8d22e65b3394f437af7332610e43ee313393d1cf143f0a2d274b
+ build: pyha2e5f31_6
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 6
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 18981
+ timestamp: 1661604969727
+- platform: win-64
+ name: pysocks
+ version: 1.7.1
+ category: main
+ manager: conda
+ dependencies:
+ - __win
+ - python >=3.8
+ - win_inet_pton
+ url: https://conda.anaconda.org/conda-forge/noarch/pysocks-1.7.1-pyh0701188_6.tar.bz2
+ hash:
+ md5: 56cd9fe388baac0e90c7149cfac95b60
+ sha256: b3a612bc887f3dd0fb7c4199ad8e342bd148cf69a9b74fd9468a18cf2bef07b7
+ build: pyh0701188_6
+ arch: x86_64
+ subdir: win-64
+ build_number: 6
+ license: BSD-3-Clause
+ license_family: BSD
+ noarch: python
+ size: 19348
+ timestamp: 1661605138291
+- platform: linux-64
+ name: python
version: 3.11.4
+ category: main
manager: conda
- platform: linux-64
- dependencies:
- openssl: '>=3.1.1,<4.0a0'
- readline: '>=8.2,<9.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- libnsl: '>=2.0.0,<2.1.0a0'
- libsqlite: '>=3.42.0,<4.0a0'
- libexpat: '>=2.5.0,<3.0a0'
- libgcc-ng: '>=12'
- libuuid: '>=2.38.1,<3.0a0'
- xz: '>=5.2.6,<6.0a0'
- ncurses: '>=6.4,<7.0a0'
- ld_impl_linux-64: '>=2.36.1'
- tzdata: '*'
- libffi: '>=3.4,<4.0a0'
- tk: '>=8.6.12,<8.7.0a0'
- bzip2: '>=1.0.8,<2.0a0'
+ dependencies:
+ - openssl >=3.1.1,<4.0a0
+ - readline >=8.2,<9.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - libnsl >=2.0.0,<2.1.0a0
+ - libsqlite >=3.42.0,<4.0a0
+ - libexpat >=2.5.0,<3.0a0
+ - libgcc-ng >=12
+ - libuuid >=2.38.1,<3.0a0
+ - xz >=5.2.6,<6.0a0
+ - ncurses >=6.4,<7.0a0
+ - ld_impl_linux-64 >=2.36.1
+ - tzdata *
+ - libffi >=3.4,<4.0a0
+ - tk >=8.6.12,<8.7.0a0
+ - bzip2 >=1.0.8,<2.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/python-3.11.4-hab00c5b_0_cpython.conda
hash:
md5: 1c628861a2a126b9fc9363ca1b7d014e
sha256: 04422f10d5bcb251fd254d6a9b0659dcde55e900d48cca159cb1fef637b0050c
- optional: false
- category: main
build: hab00c5b_0_cpython
arch: x86_64
subdir: linux-64
@@ -4689,28 +6500,27 @@ package:
license: Python-2.0
size: 30679695
timestamp: 1686421868353
-- name: python
+- platform: osx-64
+ name: python
version: 3.11.4
+ category: main
manager: conda
- platform: osx-64
- dependencies:
- tzdata: '*'
- openssl: '>=3.1.1,<4.0a0'
- readline: '>=8.2,<9.0a0'
- libffi: '>=3.4,<4.0a0'
- libsqlite: '>=3.42.0,<4.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- libexpat: '>=2.5.0,<3.0a0'
- tk: '>=8.6.12,<8.7.0a0'
- bzip2: '>=1.0.8,<2.0a0'
- xz: '>=5.2.6,<6.0a0'
- ncurses: '>=6.4,<7.0a0'
+ dependencies:
+ - tzdata *
+ - openssl >=3.1.1,<4.0a0
+ - readline >=8.2,<9.0a0
+ - libffi >=3.4,<4.0a0
+ - libsqlite >=3.42.0,<4.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - libexpat >=2.5.0,<3.0a0
+ - tk >=8.6.12,<8.7.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - ncurses >=6.4,<7.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/python-3.11.4-h30d4d87_0_cpython.conda
hash:
md5: e40b3075f85db0184d5f61d17c580ef7
sha256: d2c00c7b1a616ad309afd864db6a7be33935710a68a7572509526495346655dc
- optional: false
- category: main
build: h30d4d87_0_cpython
arch: x86_64
subdir: osx-64
@@ -4720,28 +6530,27 @@ package:
license: Python-2.0
size: 15324849
timestamp: 1686421760912
-- name: python
+- platform: osx-arm64
+ name: python
version: 3.11.4
+ category: main
manager: conda
- platform: osx-arm64
- dependencies:
- tzdata: '*'
- openssl: '>=3.1.1,<4.0a0'
- readline: '>=8.2,<9.0a0'
- libffi: '>=3.4,<4.0a0'
- libsqlite: '>=3.42.0,<4.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- libexpat: '>=2.5.0,<3.0a0'
- tk: '>=8.6.12,<8.7.0a0'
- bzip2: '>=1.0.8,<2.0a0'
- xz: '>=5.2.6,<6.0a0'
- ncurses: '>=6.4,<7.0a0'
+ dependencies:
+ - tzdata *
+ - openssl >=3.1.1,<4.0a0
+ - readline >=8.2,<9.0a0
+ - libffi >=3.4,<4.0a0
+ - libsqlite >=3.42.0,<4.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - libexpat >=2.5.0,<3.0a0
+ - tk >=8.6.12,<8.7.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - xz >=5.2.6,<6.0a0
+ - ncurses >=6.4,<7.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/python-3.11.4-h47c9636_0_cpython.conda
hash:
md5: b790b3cac8db7bdf2aaced9460bdbce4
sha256: 7865a28f7ec5c453cd8d3e7f539e02028ba5aa2aa33ccaa9915ba2654ae03ab2
- optional: false
- category: main
build: h47c9636_0_cpython
arch: aarch64
subdir: osx-arm64
@@ -4751,29 +6560,28 @@ package:
license: Python-2.0
size: 14666250
timestamp: 1686420844311
-- name: python
+- platform: win-64
+ name: python
version: 3.11.4
+ category: main
manager: conda
- platform: win-64
- dependencies:
- tzdata: '*'
- openssl: '>=3.1.1,<4.0a0'
- libffi: '>=3.4,<4.0a0'
- libsqlite: '>=3.42.0,<4.0a0'
- libzlib: '>=1.2.13,<1.3.0a0'
- libexpat: '>=2.5.0,<3.0a0'
- tk: '>=8.6.12,<8.7.0a0'
- bzip2: '>=1.0.8,<2.0a0'
- ucrt: '>=10.0.20348.0'
- vc: '>=14.2,<15'
- vc14_runtime: '>=14.29.30139'
- xz: '>=5.2.6,<6.0a0'
+ dependencies:
+ - tzdata *
+ - openssl >=3.1.1,<4.0a0
+ - libffi >=3.4,<4.0a0
+ - libsqlite >=3.42.0,<4.0a0
+ - libzlib >=1.2.13,<1.3.0a0
+ - libexpat >=2.5.0,<3.0a0
+ - tk >=8.6.12,<8.7.0a0
+ - bzip2 >=1.0.8,<2.0a0
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vc14_runtime >=14.29.30139
+ - xz >=5.2.6,<6.0a0
url: https://conda.anaconda.org/conda-forge/win-64/python-3.11.4-h2628c8c_0_cpython.conda
hash:
md5: 3187a32fba79e835f099ecea054026f4
sha256: d43fa70a3549fea27d3993f79ba2584ec6d6fe2aaf6e5890847f974e89a744e0
- optional: false
- category: main
build: h2628c8c_0_cpython
arch: x86_64
subdir: win-64
@@ -4783,17 +6591,100 @@ package:
license: Python-2.0
size: 18116100
timestamp: 1686420267149
-- name: python_abi
+- platform: linux-64
+ name: python-dateutil
+ version: 2.8.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ - six >=1.5
+ url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: dd999d1cc9f79e67dbb855c8924c7984
+ sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 245987
+ timestamp: 1626286448716
+- platform: osx-64
+ name: python-dateutil
+ version: 2.8.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ - six >=1.5
+ url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: dd999d1cc9f79e67dbb855c8924c7984
+ sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 245987
+ timestamp: 1626286448716
+- platform: osx-arm64
+ name: python-dateutil
+ version: 2.8.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ - six >=1.5
+ url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: dd999d1cc9f79e67dbb855c8924c7984
+ sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 245987
+ timestamp: 1626286448716
+- platform: win-64
+ name: python-dateutil
+ version: 2.8.2
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ - six >=1.5
+ url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: dd999d1cc9f79e67dbb855c8924c7984
+ sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 245987
+ timestamp: 1626286448716
+- platform: linux-64
+ name: python_abi
version: '3.11'
+ category: main
manager: conda
- platform: linux-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.11-3_cp311.conda
hash:
md5: c2e2630ddb68cf52eec74dc7dfab20b5
sha256: 2966a87dcb0b11fad28f9fe8216bfa4071115776b47ffc7547492fed176e1a1f
- optional: false
- category: main
build: 3_cp311
arch: x86_64
subdir: linux-64
@@ -4804,17 +6695,16 @@ package:
license_family: BSD
size: 5682
timestamp: 1669071702664
-- name: python_abi
+- platform: osx-64
+ name: python_abi
version: '3.11'
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/python_abi-3.11-3_cp311.conda
hash:
md5: 5e0a069a585445333868d2c6651c3b3f
sha256: 145edb385d464227aca8ce963b9e22f5f36cacac9085eb38f574961ebc69684e
- optional: false
- category: main
build: 3_cp311
arch: x86_64
subdir: osx-64
@@ -4825,63 +6715,140 @@ package:
license_family: BSD
size: 5766
timestamp: 1669071853731
-- name: python_abi
+- platform: osx-arm64
+ name: python_abi
+ version: '3.11'
+ category: main
+ manager: conda
+ dependencies: []
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-3_cp311.conda
+ hash:
+ md5: e1586496f8acd1c9293019ab14dbde9d
+ sha256: cd2bad56c398e77b7f559314c29dd54e9eeb842896ff1de5078ed3192e5e14a6
+ build: 3_cp311
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 3
+ constrains:
+ - python 3.11.* *_cpython
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 5768
+ timestamp: 1669071844807
+- platform: win-64
+ name: python_abi
version: '3.11'
+ category: main
+ manager: conda
+ dependencies: []
+ url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-3_cp311.conda
+ hash:
+ md5: fd1634ba85cfea9376e1fc02d6f592e9
+ sha256: e042841d13274354d651a69a4f2589e9b46fd23b416368c9821bf3c6676f19d7
+ build: 3_cp311
+ arch: x86_64
+ subdir: win-64
+ build_number: 3
+ constrains:
+ - python 3.11.* *_cpython
+ license: BSD-3-Clause
+ license_family: BSD
+ size: 6124
+ timestamp: 1669071848353
+- platform: linux-64
+ name: pytz
+ version: 2023.3.post1
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda
+ hash:
+ md5: c93346b446cd08c169d843ae5fc0da97
+ sha256: 6b680e63d69aaf087cd43ca765a23838723ef59b0a328799e6363eb13f52c49e
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 187454
+ timestamp: 1693930444432
+- platform: osx-64
+ name: pytz
+ version: 2023.3.post1
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda
+ hash:
+ md5: c93346b446cd08c169d843ae5fc0da97
+ sha256: 6b680e63d69aaf087cd43ca765a23838723ef59b0a328799e6363eb13f52c49e
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 187454
+ timestamp: 1693930444432
+- platform: osx-arm64
+ name: pytz
+ version: 2023.3.post1
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
- url: https://conda.anaconda.org/conda-forge/osx-arm64/python_abi-3.11-3_cp311.conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda
hash:
- md5: e1586496f8acd1c9293019ab14dbde9d
- sha256: cd2bad56c398e77b7f559314c29dd54e9eeb842896ff1de5078ed3192e5e14a6
- optional: false
- category: main
- build: 3_cp311
+ md5: c93346b446cd08c169d843ae5fc0da97
+ sha256: 6b680e63d69aaf087cd43ca765a23838723ef59b0a328799e6363eb13f52c49e
+ build: pyhd8ed1ab_0
arch: aarch64
subdir: osx-arm64
- build_number: 3
- constrains:
- - python 3.11.* *_cpython
- license: BSD-3-Clause
- license_family: BSD
- size: 5768
- timestamp: 1669071844807
-- name: python_abi
- version: '3.11'
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 187454
+ timestamp: 1693930444432
+- platform: win-64
+ name: pytz
+ version: 2023.3.post1
+ category: main
manager: conda
- platform: win-64
- dependencies: {}
- url: https://conda.anaconda.org/conda-forge/win-64/python_abi-3.11-3_cp311.conda
+ dependencies:
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/pytz-2023.3.post1-pyhd8ed1ab_0.conda
hash:
- md5: fd1634ba85cfea9376e1fc02d6f592e9
- sha256: e042841d13274354d651a69a4f2589e9b46fd23b416368c9821bf3c6676f19d7
- optional: false
- category: main
- build: 3_cp311
+ md5: c93346b446cd08c169d843ae5fc0da97
+ sha256: 6b680e63d69aaf087cd43ca765a23838723ef59b0a328799e6363eb13f52c49e
+ build: pyhd8ed1ab_0
arch: x86_64
subdir: win-64
- build_number: 3
- constrains:
- - python 3.11.* *_cpython
- license: BSD-3-Clause
- license_family: BSD
- size: 6124
- timestamp: 1669071848353
-- name: pyyaml
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 187454
+ timestamp: 1693930444432
+- platform: linux-64
+ name: pyyaml
version: '6.0'
+ category: main
manager: conda
- platform: linux-64
dependencies:
- python: '>=3.11,<3.12.0a0'
- python_abi: 3.11.* *_cp311
- libgcc-ng: '>=12'
- yaml: '>=0.2.5,<0.3.0a0'
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - libgcc-ng >=12
+ - yaml >=0.2.5,<0.3.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py311hd4cff14_5.tar.bz2
hash:
md5: da8769492e423103c59f469f4f17f8d9
sha256: 47b22be55c6f60f0e93b5e6887e02b98025bb13eeb390d84c68102f63f22413d
- optional: false
- category: main
build: py311hd4cff14_5
arch: x86_64
subdir: linux-64
@@ -4890,20 +6857,19 @@ package:
license_family: MIT
size: 206972
timestamp: 1666772511542
-- name: pyyaml
+- platform: osx-64
+ name: pyyaml
version: '6.0'
+ category: main
manager: conda
- platform: osx-64
dependencies:
- python: '>=3.11,<3.12.0a0'
- python_abi: 3.11.* *_cp311
- yaml: '>=0.2.5,<0.3.0a0'
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - yaml >=0.2.5,<0.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/pyyaml-6.0-py311h5547dcb_5.tar.bz2
hash:
md5: 8d1e456914ce961119b07f396187a564
sha256: 1598d451064c39979ac61e821eab3997b03e53eaa61070c450ca05e3ebcc23da
- optional: false
- category: main
build: py311h5547dcb_5
arch: x86_64
subdir: osx-64
@@ -4912,20 +6878,19 @@ package:
license_family: MIT
size: 197877
timestamp: 1666772814869
-- name: pyyaml
+- platform: osx-arm64
+ name: pyyaml
version: '6.0'
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- python: '>=3.11,<3.12.0a0 *_cpython'
- python_abi: 3.11.* *_cp311
- yaml: '>=0.2.5,<0.3.0a0'
+ - python >=3.11,<3.12.0a0 *_cpython
+ - python_abi 3.11.* *_cp311
+ - yaml >=0.2.5,<0.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/pyyaml-6.0-py311he2be06e_5.tar.bz2
hash:
md5: bd3b5db42251cb399567fa21cea3faf6
sha256: b5bff9942f942dbd9caea8258c39f625ea00e48d8854ff8b7c38e9d642de1882
- optional: false
- category: main
build: py311he2be06e_5
arch: aarch64
subdir: osx-arm64
@@ -4934,23 +6899,22 @@ package:
license_family: MIT
size: 193122
timestamp: 1666773008211
-- name: pyyaml
+- platform: win-64
+ name: pyyaml
version: '6.0'
+ category: main
manager: conda
- platform: win-64
dependencies:
- ucrt: '>=10.0.20348.0'
- python: '>=3.11,<3.12.0a0'
- python_abi: 3.11.* *_cp311
- yaml: '>=0.2.5,<0.3.0a0'
- vc: '>=14.2,<15'
- vs2015_runtime: '>=14.29.30139'
+ - ucrt >=10.0.20348.0
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - yaml >=0.2.5,<0.3.0a0
+ - vc >=14.2,<15
+ - vs2015_runtime >=14.29.30139
url: https://conda.anaconda.org/conda-forge/win-64/pyyaml-6.0-py311ha68e1ae_5.tar.bz2
hash:
md5: 0c97d59d54eb52e170224b3de6ade906
sha256: b97ad8513a22204707dc9ef506f7eca70dc9027cb09e26f559ca560d8b21ae14
- optional: false
- category: main
build: py311ha68e1ae_5
arch: x86_64
subdir: win-64
@@ -4959,19 +6923,102 @@ package:
license_family: MIT
size: 181077
timestamp: 1666772842384
-- name: readline
+- platform: linux-64
+ name: pyyaml-env-tag
+ version: '0.1'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ - pyyaml
+ url: https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 626ed9060ddeb681ddc42bcad89156ab
+ sha256: 900319483135730d9836855a807822f0500b1a239520749103e9ef9b7ba9f246
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 7473
+ timestamp: 1624389117412
+- platform: osx-64
+ name: pyyaml-env-tag
+ version: '0.1'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ - pyyaml
+ url: https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 626ed9060ddeb681ddc42bcad89156ab
+ sha256: 900319483135730d9836855a807822f0500b1a239520749103e9ef9b7ba9f246
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 7473
+ timestamp: 1624389117412
+- platform: osx-arm64
+ name: pyyaml-env-tag
+ version: '0.1'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ - pyyaml
+ url: https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 626ed9060ddeb681ddc42bcad89156ab
+ sha256: 900319483135730d9836855a807822f0500b1a239520749103e9ef9b7ba9f246
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 7473
+ timestamp: 1624389117412
+- platform: win-64
+ name: pyyaml-env-tag
+ version: '0.1'
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.6
+ - pyyaml
+ url: https://conda.anaconda.org/conda-forge/noarch/pyyaml-env-tag-0.1-pyhd8ed1ab_0.tar.bz2
+ hash:
+ md5: 626ed9060ddeb681ddc42bcad89156ab
+ sha256: 900319483135730d9836855a807822f0500b1a239520749103e9ef9b7ba9f246
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 7473
+ timestamp: 1624389117412
+- platform: linux-64
+ name: readline
version: '8.2'
+ category: main
manager: conda
- platform: linux-64
dependencies:
- ncurses: '>=6.3,<7.0a0'
- libgcc-ng: '>=12'
+ - ncurses >=6.3,<7.0a0
+ - libgcc-ng >=12
url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
hash:
md5: 47d31b792659ce70f470b5c82fdfb7a4
sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7
- optional: false
- category: main
build: h8228510_1
arch: x86_64
subdir: linux-64
@@ -4980,18 +7027,17 @@ package:
license_family: GPL
size: 281456
timestamp: 1679532220005
-- name: readline
+- platform: osx-64
+ name: readline
version: '8.2'
+ category: main
manager: conda
- platform: osx-64
dependencies:
- ncurses: '>=6.3,<7.0a0'
+ - ncurses >=6.3,<7.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/readline-8.2-h9e318b2_1.conda
hash:
md5: f17f77f2acf4d344734bda76829ce14e
sha256: 41e7d30a097d9b060037f0c6a2b1d4c4ae7e942c06c943d23f9d481548478568
- optional: false
- category: main
build: h9e318b2_1
arch: x86_64
subdir: osx-64
@@ -5000,18 +7046,17 @@ package:
license_family: GPL
size: 255870
timestamp: 1679532707590
-- name: readline
+- platform: osx-arm64
+ name: readline
version: '8.2'
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- ncurses: '>=6.3,<7.0a0'
+ - ncurses >=6.3,<7.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/readline-8.2-h92ec313_1.conda
hash:
md5: 8cbb776a2f641b943d413b3e19df71f4
sha256: a1dfa679ac3f6007362386576a704ad2d0d7a02e98f5d0b115f207a2da63e884
- optional: false
- category: main
build: h92ec313_1
arch: aarch64
subdir: osx-arm64
@@ -5020,145 +7065,325 @@ package:
license_family: GPL
size: 250351
timestamp: 1679532511311
-- name: rust
+- platform: linux-64
+ name: regex
+ version: 2022.10.31
+ category: main
+ manager: conda
+ dependencies:
+ - libgcc-ng >=12
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ url: https://conda.anaconda.org/conda-forge/linux-64/regex-2022.10.31-py311hd4cff14_0.tar.bz2
+ hash:
+ md5: 3b56fbf4c06aacae3a8001d065a60f9f
+ sha256: cdb5563c9fb2dd8d1ddb6692633b0812b45caee5daac9b4e8a98189370f4dd4e
+ build: py311hd4cff14_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: Python-2.0
+ license_family: PSF
+ size: 451357
+ timestamp: 1667265217082
+- platform: osx-64
+ name: regex
+ version: 2022.10.31
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ url: https://conda.anaconda.org/conda-forge/osx-64/regex-2022.10.31-py311h5547dcb_0.tar.bz2
+ hash:
+ md5: 820bd0a811889a9fd54575f22ef268c8
+ sha256: d98c61a4dcee9c947027c86d80408b4888e2b0e9846eed3aea1ca53e722cedcf
+ build: py311h5547dcb_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: Python-2.0
+ license_family: PSF
+ size: 417277
+ timestamp: 1667265335529
+- platform: osx-arm64
+ name: regex
+ version: 2022.10.31
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.11,<3.12.0a0
+ - python >=3.11,<3.12.0a0 *_cpython
+ - python_abi 3.11.* *_cp311
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/regex-2022.10.31-py311he2be06e_0.tar.bz2
+ hash:
+ md5: 47591a17cec5d0091196d66ba579f0b5
+ sha256: 67194d64633c6ceb8822f796942c60a2171e550dd0ce0423aba988dddca103c2
+ build: py311he2be06e_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: Python-2.0
+ license_family: PSF
+ size: 409009
+ timestamp: 1667265400876
+- platform: win-64
+ name: regex
+ version: 2022.10.31
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - ucrt >=10.0.20348.0
+ - vc >=14.2,<15
+ - vs2015_runtime >=14.29.30139
+ url: https://conda.anaconda.org/conda-forge/win-64/regex-2022.10.31-py311ha68e1ae_0.tar.bz2
+ hash:
+ md5: 09b3d5d54840165208801645cf2b7848
+ sha256: fa1312c67e7117fd6d2db683d18211055866ed82c172f5ebb506c514965881ad
+ build: py311ha68e1ae_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: Python-2.0
+ license_family: PSF
+ size: 418990
+ timestamp: 1667266145921
+- platform: linux-64
+ name: requests
+ version: 2.31.0
+ category: main
+ manager: conda
+ dependencies:
+ - certifi >=2017.4.17
+ - charset-normalizer >=2,<4
+ - idna >=2.5,<4
+ - python >=3.7
+ - urllib3 >=1.21.1,<3
+ url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: a30144e4156cdbb236f99ebb49828f8b
+ sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ constrains:
+ - chardet >=3.0.2,<6
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 56690
+ timestamp: 1684774408600
+- platform: osx-64
+ name: requests
+ version: 2.31.0
+ category: main
+ manager: conda
+ dependencies:
+ - certifi >=2017.4.17
+ - charset-normalizer >=2,<4
+ - idna >=2.5,<4
+ - python >=3.7
+ - urllib3 >=1.21.1,<3
+ url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: a30144e4156cdbb236f99ebb49828f8b
+ sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ constrains:
+ - chardet >=3.0.2,<6
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 56690
+ timestamp: 1684774408600
+- platform: osx-arm64
+ name: requests
+ version: 2.31.0
+ category: main
+ manager: conda
+ dependencies:
+ - certifi >=2017.4.17
+ - charset-normalizer >=2,<4
+ - idna >=2.5,<4
+ - python >=3.7
+ - urllib3 >=1.21.1,<3
+ url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: a30144e4156cdbb236f99ebb49828f8b
+ sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ constrains:
+ - chardet >=3.0.2,<6
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 56690
+ timestamp: 1684774408600
+- platform: win-64
+ name: requests
+ version: 2.31.0
+ category: main
+ manager: conda
+ dependencies:
+ - certifi >=2017.4.17
+ - charset-normalizer >=2,<4
+ - idna >=2.5,<4
+ - python >=3.7
+ - urllib3 >=1.21.1,<3
+ url: https://conda.anaconda.org/conda-forge/noarch/requests-2.31.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: a30144e4156cdbb236f99ebb49828f8b
+ sha256: 9f629d6fd3c8ac5f2a198639fe7af87c4db2ac9235279164bfe0fcb49d8c4bad
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ constrains:
+ - chardet >=3.0.2,<6
+ license: Apache-2.0
+ license_family: APACHE
+ noarch: python
+ size: 56690
+ timestamp: 1684774408600
+- platform: linux-64
+ name: rust
version: 1.70.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- gcc_impl_linux-64: '*'
- libzlib: '>=1.2.13,<1.3.0a0'
- libgcc-ng: '>=12'
- rust-std-x86_64-unknown-linux-gnu: ==1.70.0 hc1431ca_0
+ - gcc_impl_linux-64 *
+ - libzlib >=1.2.13,<1.3.0a0
+ - libgcc-ng >=12
+ - rust-std-x86_64-unknown-linux-gnu ==1.70.0 hc1431ca_0
url: https://conda.anaconda.org/conda-forge/linux-64/rust-1.70.0-h70c747d_0.conda
hash:
md5: 8a2c7746d5ecd02bd24ffef161eb7df4
sha256: 760931bd88a481b123266e7fad6c853ce226e40ee15219baa1ff823353d8c44a
- optional: false
- category: main
build: h70c747d_0
arch: x86_64
subdir: linux-64
build_number: 0
-- name: rust
+- platform: osx-64
+ name: rust
version: 1.70.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- rust-std-x86_64-apple-darwin: ==1.70.0 h059895a_0
+ - rust-std-x86_64-apple-darwin ==1.70.0 h059895a_0
url: https://conda.anaconda.org/conda-forge/osx-64/rust-1.70.0-h7e1429e_0.conda
hash:
md5: 4d7fc39af3d6bee1aa5a0f639f09d882
sha256: a059f07840dd24d7604ceb7cb15a0f526a2beec84237090248181556a11ae15b
- optional: false
- category: main
build: h7e1429e_0
arch: x86_64
subdir: osx-64
build_number: 0
-- name: rust
+- platform: osx-arm64
+ name: rust
version: 1.70.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- rust-std-aarch64-apple-darwin: ==1.70.0 hf1a8007_0
+ - rust-std-aarch64-apple-darwin ==1.70.0 hf1a8007_0
url: https://conda.anaconda.org/conda-forge/osx-arm64/rust-1.70.0-h4ff7c5d_0.conda
hash:
md5: fdd46a8698d3ae4590206f34ad5251ae
sha256: 63b73cf3137cd2d982412ad871e032db02af932eae464a3bdb5d63604e5ef069
- optional: false
- category: main
build: h4ff7c5d_0
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: rust
+- platform: win-64
+ name: rust
version: 1.70.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- rust-std-x86_64-pc-windows-msvc: ==1.70.0 h69312b4_0
+ - rust-std-x86_64-pc-windows-msvc ==1.70.0 h69312b4_0
url: https://conda.anaconda.org/conda-forge/win-64/rust-1.70.0-hf8d6059_0.conda
hash:
md5: 01f0a71fd67b9763d72cf4540f2f6a88
sha256: 2f6b6ed05abea7cc3b985fa4d177271bd4bcc4decb9aab1128e0f5a8c627270a
- optional: false
- category: main
build: hf8d6059_0
arch: x86_64
subdir: win-64
build_number: 0
-- name: rust-std-aarch64-apple-darwin
+- platform: osx-arm64
+ name: rust-std-aarch64-apple-darwin
version: 1.70.0
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/rust-std-aarch64-apple-darwin-1.70.0-hf1a8007_0.conda
hash:
md5: f944a8695fcfea2739488fc67d5653c5
sha256: fbeee19b13f8bffe84d5a60e26a77b762693930f741ebea64a2b1c7ffa348cb8
- optional: false
- category: main
build: hf1a8007_0
arch: aarch64
subdir: osx-arm64
build_number: 0
-- name: rust-std-x86_64-apple-darwin
+- platform: osx-64
+ name: rust-std-x86_64-apple-darwin
version: 1.70.0
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-apple-darwin-1.70.0-h059895a_0.conda
hash:
md5: 622ce95657da30109767978868cf47f3
sha256: 90d71918fe1944e540370d4c8ac508cc3c367d6a5d5f39420be61e7fb03e7cf2
- optional: false
- category: main
build: h059895a_0
arch: x86_64
subdir: osx-64
build_number: 0
-- name: rust-std-x86_64-pc-windows-msvc
+- platform: win-64
+ name: rust-std-x86_64-pc-windows-msvc
version: 1.70.0
+ category: main
manager: conda
- platform: win-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-pc-windows-msvc-1.70.0-h69312b4_0.conda
hash:
md5: e9409f3ce67330c30b1f1ea231cc76ec
sha256: 390cd31b1cdece82696b979e110471785fffe6b21ad366a4da36f2b36b595211
- optional: false
- category: main
build: h69312b4_0
arch: x86_64
subdir: win-64
build_number: 0
-- name: rust-std-x86_64-unknown-linux-gnu
+- platform: linux-64
+ name: rust-std-x86_64-unknown-linux-gnu
version: 1.70.0
+ category: main
manager: conda
- platform: linux-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/rust-std-x86_64-unknown-linux-gnu-1.70.0-hc1431ca_0.conda
hash:
md5: a1047542eaa0926288779f5c513bc675
sha256: aa4dff453effbb17ce1057f37151c97ebfb701f439febd9b7d7f856bb1a799f3
- optional: false
- category: main
build: hc1431ca_0
arch: x86_64
subdir: linux-64
build_number: 0
-- name: setuptools
+- platform: linux-64
+ name: setuptools
version: 68.0.0
+ category: main
manager: conda
- platform: linux-64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.0.0-pyhd8ed1ab_0.conda
hash:
md5: 5a7739d0f57ee64133c9d32e6507c46d
sha256: 083a0913f5b56644051f31ac40b4eeea762a88c00aa12437817191b85a753cec
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: linux-64
@@ -5168,18 +7393,17 @@ package:
noarch: python
size: 463712
timestamp: 1687527994911
-- name: setuptools
+- platform: osx-64
+ name: setuptools
version: 68.0.0
+ category: main
manager: conda
- platform: osx-64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.0.0-pyhd8ed1ab_0.conda
hash:
md5: 5a7739d0f57ee64133c9d32e6507c46d
sha256: 083a0913f5b56644051f31ac40b4eeea762a88c00aa12437817191b85a753cec
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: osx-64
@@ -5189,18 +7413,17 @@ package:
noarch: python
size: 463712
timestamp: 1687527994911
-- name: setuptools
+- platform: osx-arm64
+ name: setuptools
version: 68.0.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.0.0-pyhd8ed1ab_0.conda
hash:
md5: 5a7739d0f57ee64133c9d32e6507c46d
sha256: 083a0913f5b56644051f31ac40b4eeea762a88c00aa12437817191b85a753cec
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: aarch64
subdir: osx-arm64
@@ -5210,18 +7433,17 @@ package:
noarch: python
size: 463712
timestamp: 1687527994911
-- name: setuptools
+- platform: win-64
+ name: setuptools
version: 68.0.0
+ category: main
manager: conda
- platform: win-64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/setuptools-68.0.0-pyhd8ed1ab_0.conda
hash:
md5: 5a7739d0f57ee64133c9d32e6507c46d
sha256: 083a0913f5b56644051f31ac40b4eeea762a88c00aa12437817191b85a753cec
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: win-64
@@ -5231,74 +7453,150 @@ package:
noarch: python
size: 463712
timestamp: 1687527994911
-- name: sigtool
+- platform: osx-64
+ name: sigtool
version: 0.1.3
+ category: main
manager: conda
- platform: osx-64
dependencies:
- openssl: '>=3.0.0,<4.0a0'
+ - openssl >=3.0.0,<4.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/sigtool-0.1.3-h88f4db0_0.tar.bz2
hash:
md5: fbfb84b9de9a6939cb165c02c69b1865
sha256: 46fdeadf8f8d725819c4306838cdfd1099cd8fe3e17bd78862a5dfdcd6de61cf
- optional: false
- category: main
build: h88f4db0_0
arch: x86_64
subdir: osx-64
build_number: 0
license: MIT
license_family: MIT
- size: 213817
- timestamp: 1643442169866
-- name: sigtool
- version: 0.1.3
+ size: 213817
+ timestamp: 1643442169866
+- platform: osx-arm64
+ name: sigtool
+ version: 0.1.3
+ category: main
+ manager: conda
+ dependencies:
+ - openssl >=3.0.0,<4.0a0
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2
+ hash:
+ md5: 4a2cac04f86a4540b8c9b8d8f597848f
+ sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff
+ build: h44b9a77_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ size: 210264
+ timestamp: 1643442231687
+- platform: linux-64
+ name: six
+ version: 1.16.0
+ category: main
+ manager: conda
+ dependencies:
+ - python
+ url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
+ hash:
+ md5: e5f25f8dbc060e9a8d912e432202afc2
+ sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6
+ build: pyh6c4a22f_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 14259
+ timestamp: 1620240338595
+- platform: osx-64
+ name: six
+ version: 1.16.0
+ category: main
+ manager: conda
+ dependencies:
+ - python
+ url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
+ hash:
+ md5: e5f25f8dbc060e9a8d912e432202afc2
+ sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6
+ build: pyh6c4a22f_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 14259
+ timestamp: 1620240338595
+- platform: osx-arm64
+ name: six
+ version: 1.16.0
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- openssl: '>=3.0.0,<4.0a0'
- url: https://conda.anaconda.org/conda-forge/osx-arm64/sigtool-0.1.3-h44b9a77_0.tar.bz2
+ - python
+ url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
hash:
- md5: 4a2cac04f86a4540b8c9b8d8f597848f
- sha256: 70791ae00a3756830cb50451db55f63e2a42a2fa2a8f1bab1ebd36bbb7d55bff
- optional: false
- category: main
- build: h44b9a77_0
+ md5: e5f25f8dbc060e9a8d912e432202afc2
+ sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6
+ build: pyh6c4a22f_0
arch: aarch64
subdir: osx-arm64
build_number: 0
license: MIT
license_family: MIT
- size: 210264
- timestamp: 1643442231687
-- name: sysroot_linux-64
+ noarch: python
+ size: 14259
+ timestamp: 1620240338595
+- platform: win-64
+ name: six
+ version: 1.16.0
+ category: main
+ manager: conda
+ dependencies:
+ - python
+ url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
+ hash:
+ md5: e5f25f8dbc060e9a8d912e432202afc2
+ sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6
+ build: pyh6c4a22f_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 14259
+ timestamp: 1620240338595
+- platform: linux-64
+ name: sysroot_linux-64
version: '2.12'
+ category: main
manager: conda
- platform: linux-64
dependencies:
- kernel-headers_linux-64: ==2.6.32 he073ed8_15
+ - kernel-headers_linux-64 ==2.6.32 he073ed8_15
url: https://conda.anaconda.org/conda-forge/noarch/sysroot_linux-64-2.12-he073ed8_15.tar.bz2
hash:
md5: 66c192522eacf5bb763568b4e415d133
sha256: 8498c73b60a7ea6faedf36204ec5a339c78d430fa838860f2b9d5d3a1c354eff
- optional: false
- category: main
build: he073ed8_15
arch: x86_64
subdir: linux-64
build_number: 0
-- name: tapi
+- platform: osx-64
+ name: tapi
version: 1100.0.11
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libcxx: '>=10.0.0.a0'
+ - libcxx >=10.0.0.a0
url: https://conda.anaconda.org/conda-forge/osx-64/tapi-1100.0.11-h9ce4665_0.tar.bz2
hash:
md5: f9ff42ccf809a21ba6f8607f8de36108
sha256: 34b18ce8d1518b67e333ca1d3af733c3976ecbdf3a36b727f9b4dedddcc588fa
- optional: false
- category: main
build: h9ce4665_0
arch: x86_64
subdir: osx-64
@@ -5307,18 +7605,17 @@ package:
license_family: MIT
size: 201044
timestamp: 1602664232074
-- name: tapi
+- platform: osx-arm64
+ name: tapi
version: 1100.0.11
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libcxx: '>=11.0.0.a0'
+ - libcxx >=11.0.0.a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/tapi-1100.0.11-he4954df_0.tar.bz2
hash:
md5: d83362e7d0513f35f454bc50b0ca591d
sha256: 1709265fbee693a9e8b4126b0a3e68a6c4718b05821c659279c1af051f2d40f3
- optional: false
- category: main
build: he4954df_0
arch: aarch64
subdir: osx-arm64
@@ -5327,19 +7624,18 @@ package:
license_family: MIT
size: 191416
timestamp: 1602687595316
-- name: tk
+- platform: linux-64
+ name: tk
version: 8.6.12
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libzlib: '>=1.2.11,<1.3.0a0'
- libgcc-ng: '>=9.4.0'
+ - libzlib >=1.2.11,<1.3.0a0
+ - libgcc-ng >=9.4.0
url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2
hash:
md5: 5b8c42eb62e9fc961af70bdd6a26e168
sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0
- optional: false
- category: main
build: h27826a3_0
arch: x86_64
subdir: linux-64
@@ -5348,18 +7644,17 @@ package:
license_family: BSD
size: 3456292
timestamp: 1645033615058
-- name: tk
+- platform: osx-64
+ name: tk
version: 8.6.12
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libzlib: '>=1.2.11,<1.3.0a0'
+ - libzlib >=1.2.11,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/tk-8.6.12-h5dbffcc_0.tar.bz2
hash:
md5: 8e9480d9c47061db2ed1b4ecce519a7f
sha256: 331aa1137a264fd9cc905f04f09a161c801fe504b93da08b4e6697bd7c9ae6a6
- optional: false
- category: main
build: h5dbffcc_0
arch: x86_64
subdir: osx-64
@@ -5368,18 +7663,17 @@ package:
license_family: BSD
size: 3531016
timestamp: 1645032719565
-- name: tk
+- platform: osx-arm64
+ name: tk
version: 8.6.12
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libzlib: '>=1.2.11,<1.3.0a0'
+ - libzlib >=1.2.11,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/tk-8.6.12-he1e0b03_0.tar.bz2
hash:
md5: 2cb3d18eac154109107f093860bd545f
sha256: 9e43ec80045892e28233e4ca4d974e09d5837392127702fb952f3935b5e985a4
- optional: false
- category: main
build: he1e0b03_0
arch: aarch64
subdir: osx-arm64
@@ -5388,19 +7682,18 @@ package:
license_family: BSD
size: 3382710
timestamp: 1645032642101
-- name: tk
+- platform: win-64
+ name: tk
version: 8.6.12
+ category: main
manager: conda
- platform: win-64
dependencies:
- vc: '>=14.1,<15'
- vs2015_runtime: '>=14.16.27033'
+ - vc >=14.1,<15
+ - vs2015_runtime >=14.16.27033
url: https://conda.anaconda.org/conda-forge/win-64/tk-8.6.12-h8ffe710_0.tar.bz2
hash:
md5: c69a5047cc9291ae40afd4a1ad6f0c0f
sha256: 087795090a99a1d397ef1ed80b4a01fabfb0122efb141562c168e3c0a76edba6
- optional: false
- category: main
build: h8ffe710_0
arch: x86_64
subdir: win-64
@@ -5409,18 +7702,17 @@ package:
license_family: BSD
size: 3681762
timestamp: 1645033031535
-- name: typing-extensions
+- platform: linux-64
+ name: typing-extensions
version: 4.7.1
+ category: main
manager: conda
- platform: linux-64
dependencies:
- typing_extensions: ==4.7.1 pyha770c72_0
+ - typing_extensions ==4.7.1 pyha770c72_0
url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda
hash:
md5: f96688577f1faa58096d06a45136afa2
sha256: d5d19b8f5b275240c19616a46d67ec57250b3720ba88200da8c732c3fcbfc21d
- optional: false
- category: main
build: hd8ed1ab_0
arch: x86_64
subdir: linux-64
@@ -5430,18 +7722,17 @@ package:
noarch: python
size: 10080
timestamp: 1688315729011
-- name: typing-extensions
+- platform: osx-64
+ name: typing-extensions
version: 4.7.1
+ category: main
manager: conda
- platform: osx-64
dependencies:
- typing_extensions: ==4.7.1 pyha770c72_0
+ - typing_extensions ==4.7.1 pyha770c72_0
url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda
hash:
md5: f96688577f1faa58096d06a45136afa2
sha256: d5d19b8f5b275240c19616a46d67ec57250b3720ba88200da8c732c3fcbfc21d
- optional: false
- category: main
build: hd8ed1ab_0
arch: x86_64
subdir: osx-64
@@ -5451,18 +7742,17 @@ package:
noarch: python
size: 10080
timestamp: 1688315729011
-- name: typing-extensions
+- platform: osx-arm64
+ name: typing-extensions
version: 4.7.1
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- typing_extensions: ==4.7.1 pyha770c72_0
+ - typing_extensions ==4.7.1 pyha770c72_0
url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda
hash:
md5: f96688577f1faa58096d06a45136afa2
sha256: d5d19b8f5b275240c19616a46d67ec57250b3720ba88200da8c732c3fcbfc21d
- optional: false
- category: main
build: hd8ed1ab_0
arch: aarch64
subdir: osx-arm64
@@ -5472,18 +7762,17 @@ package:
noarch: python
size: 10080
timestamp: 1688315729011
-- name: typing-extensions
+- platform: win-64
+ name: typing-extensions
version: 4.7.1
+ category: main
manager: conda
- platform: win-64
dependencies:
- typing_extensions: ==4.7.1 pyha770c72_0
+ - typing_extensions ==4.7.1 pyha770c72_0
url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.7.1-hd8ed1ab_0.conda
hash:
md5: f96688577f1faa58096d06a45136afa2
sha256: d5d19b8f5b275240c19616a46d67ec57250b3720ba88200da8c732c3fcbfc21d
- optional: false
- category: main
build: hd8ed1ab_0
arch: x86_64
subdir: win-64
@@ -5493,18 +7782,17 @@ package:
noarch: python
size: 10080
timestamp: 1688315729011
-- name: typing_extensions
+- platform: linux-64
+ name: typing_extensions
version: 4.7.1
+ category: main
manager: conda
- platform: linux-64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda
hash:
md5: c39d6a09fe819de4951c2642629d9115
sha256: 6edd6d5be690be492712cb747b6d62707f0d0c34ef56eefc796d91e5a03187d1
- optional: false
- category: main
build: pyha770c72_0
arch: x86_64
subdir: linux-64
@@ -5514,18 +7802,17 @@ package:
noarch: python
size: 36321
timestamp: 1688315719627
-- name: typing_extensions
+- platform: osx-64
+ name: typing_extensions
version: 4.7.1
+ category: main
manager: conda
- platform: osx-64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda
hash:
md5: c39d6a09fe819de4951c2642629d9115
sha256: 6edd6d5be690be492712cb747b6d62707f0d0c34ef56eefc796d91e5a03187d1
- optional: false
- category: main
build: pyha770c72_0
arch: x86_64
subdir: osx-64
@@ -5535,18 +7822,17 @@ package:
noarch: python
size: 36321
timestamp: 1688315719627
-- name: typing_extensions
+- platform: osx-arm64
+ name: typing_extensions
version: 4.7.1
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda
hash:
md5: c39d6a09fe819de4951c2642629d9115
sha256: 6edd6d5be690be492712cb747b6d62707f0d0c34ef56eefc796d91e5a03187d1
- optional: false
- category: main
build: pyha770c72_0
arch: aarch64
subdir: osx-arm64
@@ -5556,18 +7842,17 @@ package:
noarch: python
size: 36321
timestamp: 1688315719627
-- name: typing_extensions
+- platform: win-64
+ name: typing_extensions
version: 4.7.1
+ category: main
manager: conda
- platform: win-64
dependencies:
- python: '>=3.7'
+ - python >=3.7
url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.7.1-pyha770c72_0.conda
hash:
md5: c39d6a09fe819de4951c2642629d9115
sha256: 6edd6d5be690be492712cb747b6d62707f0d0c34ef56eefc796d91e5a03187d1
- optional: false
- category: main
build: pyha770c72_0
arch: x86_64
subdir: win-64
@@ -5577,17 +7862,16 @@ package:
noarch: python
size: 36321
timestamp: 1688315719627
-- name: tzdata
+- platform: linux-64
+ name: tzdata
version: 2023c
+ category: main
manager: conda
- platform: linux-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
hash:
md5: 939e3e74d8be4dac89ce83b20de2492a
sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55
- optional: false
- category: main
build: h71feb2d_0
arch: x86_64
subdir: linux-64
@@ -5596,17 +7880,16 @@ package:
noarch: generic
size: 117580
timestamp: 1680041306008
-- name: tzdata
+- platform: osx-64
+ name: tzdata
version: 2023c
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
hash:
md5: 939e3e74d8be4dac89ce83b20de2492a
sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55
- optional: false
- category: main
build: h71feb2d_0
arch: x86_64
subdir: osx-64
@@ -5615,17 +7898,16 @@ package:
noarch: generic
size: 117580
timestamp: 1680041306008
-- name: tzdata
+- platform: osx-arm64
+ name: tzdata
version: 2023c
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
hash:
md5: 939e3e74d8be4dac89ce83b20de2492a
sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55
- optional: false
- category: main
build: h71feb2d_0
arch: aarch64
subdir: osx-arm64
@@ -5634,17 +7916,16 @@ package:
noarch: generic
size: 117580
timestamp: 1680041306008
-- name: tzdata
+- platform: win-64
+ name: tzdata
version: 2023c
+ category: main
manager: conda
- platform: win-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2023c-h71feb2d_0.conda
hash:
md5: 939e3e74d8be4dac89ce83b20de2492a
sha256: 0449138224adfa125b220154408419ec37c06b0b49f63c5954724325903ecf55
- optional: false
- category: main
build: h71feb2d_0
arch: x86_64
subdir: win-64
@@ -5653,37 +7934,35 @@ package:
noarch: generic
size: 117580
timestamp: 1680041306008
-- name: ucrt
+- platform: win-64
+ name: ucrt
version: 10.0.22621.0
+ category: main
manager: conda
- platform: win-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.22621.0-h57928b3_0.tar.bz2
hash:
md5: 72608f6cd3e5898229c3ea16deb1ac43
sha256: f29cdaf8712008f6b419b8b1a403923b00ab2504bfe0fb2ba8eb60e72d4f14c6
- optional: false
- category: main
build: h57928b3_0
arch: x86_64
subdir: win-64
build_number: 0
-- name: ukkonen
+- platform: linux-64
+ name: ukkonen
version: 1.0.1
+ category: main
manager: conda
- platform: linux-64
dependencies:
- python: '>=3.11,<3.12.0a0'
- libstdcxx-ng: '>=12'
- cffi: '*'
- python_abi: 3.11.* *_cp311
- libgcc-ng: '>=12'
+ - python >=3.11,<3.12.0a0
+ - libstdcxx-ng >=12
+ - cffi *
+ - python_abi 3.11.* *_cp311
+ - libgcc-ng >=12
url: https://conda.anaconda.org/conda-forge/linux-64/ukkonen-1.0.1-py311h4dd048b_3.tar.bz2
hash:
md5: dbfea4376856bf7bd2121e719cf816e5
sha256: 41d7b9ab6414ce61496dd001e98a49d73d6cf61e5c051c22df35e218c72de1f1
- optional: false
- category: main
build: py311h4dd048b_3
arch: x86_64
subdir: linux-64
@@ -5692,21 +7971,20 @@ package:
license_family: MIT
size: 13070
timestamp: 1666949127452
-- name: ukkonen
+- platform: osx-64
+ name: ukkonen
version: 1.0.1
+ category: main
manager: conda
- platform: osx-64
dependencies:
- python: '>=3.11,<3.12.0a0'
- libcxx: '>=14.0.4'
- cffi: '*'
- python_abi: 3.11.* *_cp311
+ - python >=3.11,<3.12.0a0
+ - libcxx >=14.0.4
+ - cffi *
+ - python_abi 3.11.* *_cp311
url: https://conda.anaconda.org/conda-forge/osx-64/ukkonen-1.0.1-py311hd2070f0_3.tar.bz2
hash:
md5: cc38bdf32e077ea689d6ca9aa94b8a76
sha256: c82d22ae794e6f956989640027023a096087bec40ccb19c92b50e850291f6ac4
- optional: false
- category: main
build: py311hd2070f0_3
arch: x86_64
subdir: osx-64
@@ -5715,21 +7993,20 @@ package:
license_family: MIT
size: 12329
timestamp: 1666949358658
-- name: ukkonen
+- platform: osx-arm64
+ name: ukkonen
version: 1.0.1
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- python: '>=3.11,<3.12.0a0 *_cpython'
- libcxx: '>=14.0.4'
- cffi: '*'
- python_abi: 3.11.* *_cp311
+ - python >=3.11,<3.12.0a0 *_cpython
+ - libcxx >=14.0.4
+ - cffi *
+ - python_abi 3.11.* *_cp311
url: https://conda.anaconda.org/conda-forge/osx-arm64/ukkonen-1.0.1-py311hd6ee22a_3.tar.bz2
hash:
md5: 1ec575f5b11dab96ae76895d39d26730
sha256: 967412b3b4b6cf61485eba4b54e6236d77b4cdfe9b2e183b18d2a90d5e4def3b
- optional: false
- category: main
build: py311hd6ee22a_3
arch: aarch64
subdir: osx-arm64
@@ -5738,23 +8015,22 @@ package:
license_family: MIT
size: 12961
timestamp: 1666949789229
-- name: ukkonen
+- platform: win-64
+ name: ukkonen
version: 1.0.1
+ category: main
manager: conda
- platform: win-64
dependencies:
- ucrt: '>=10.0.20348.0'
- python: '>=3.11,<3.12.0a0'
- python_abi: 3.11.* *_cp311
- cffi: '*'
- vc: '>=14.2,<15'
- vs2015_runtime: '>=14.29.30139'
+ - ucrt >=10.0.20348.0
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - cffi *
+ - vc >=14.2,<15
+ - vs2015_runtime >=14.29.30139
url: https://conda.anaconda.org/conda-forge/win-64/ukkonen-1.0.1-py311h005e61a_3.tar.bz2
hash:
md5: 345c6b3bee32bb1d87a4e8759ec6cbff
sha256: 657648ad15dd3062d417040371935983ac5c9a57ec8ff14e9c862a57058a242f
- optional: false
- category: main
build: py311h005e61a_3
arch: x86_64
subdir: win-64
@@ -5763,53 +8039,138 @@ package:
license_family: MIT
size: 16845
timestamp: 1666949495412
-- name: vc
+- platform: linux-64
+ name: urllib3
+ version: 2.0.7
+ category: main
+ manager: conda
+ dependencies:
+ - brotli-python >=1.0.9
+ - pysocks >=1.5.6,<2.0,!=1.5.7
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.7-pyhd8ed1ab_0.conda
+ hash:
+ md5: 270e71c14d37074b1d066ee21cf0c4a6
+ sha256: 9fe14735dde74278c6f1710cbe883d5710fc98501a96031dec6849a8d8a1bb11
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 98507
+ timestamp: 1697720586316
+- platform: osx-64
+ name: urllib3
+ version: 2.0.7
+ category: main
+ manager: conda
+ dependencies:
+ - brotli-python >=1.0.9
+ - pysocks >=1.5.6,<2.0,!=1.5.7
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.7-pyhd8ed1ab_0.conda
+ hash:
+ md5: 270e71c14d37074b1d066ee21cf0c4a6
+ sha256: 9fe14735dde74278c6f1710cbe883d5710fc98501a96031dec6849a8d8a1bb11
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 98507
+ timestamp: 1697720586316
+- platform: osx-arm64
+ name: urllib3
+ version: 2.0.7
+ category: main
+ manager: conda
+ dependencies:
+ - brotli-python >=1.0.9
+ - pysocks >=1.5.6,<2.0,!=1.5.7
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.7-pyhd8ed1ab_0.conda
+ hash:
+ md5: 270e71c14d37074b1d066ee21cf0c4a6
+ sha256: 9fe14735dde74278c6f1710cbe883d5710fc98501a96031dec6849a8d8a1bb11
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 98507
+ timestamp: 1697720586316
+- platform: win-64
+ name: urllib3
+ version: 2.0.7
+ category: main
+ manager: conda
+ dependencies:
+ - brotli-python >=1.0.9
+ - pysocks >=1.5.6,<2.0,!=1.5.7
+ - python >=3.7
+ url: https://conda.anaconda.org/conda-forge/noarch/urllib3-2.0.7-pyhd8ed1ab_0.conda
+ hash:
+ md5: 270e71c14d37074b1d066ee21cf0c4a6
+ sha256: 9fe14735dde74278c6f1710cbe883d5710fc98501a96031dec6849a8d8a1bb11
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 98507
+ timestamp: 1697720586316
+- platform: win-64
+ name: vc
version: '14.3'
+ category: main
manager: conda
- platform: win-64
dependencies:
- vc14_runtime: '>=14.32.31332'
+ - vc14_runtime >=14.32.31332
url: https://conda.anaconda.org/conda-forge/win-64/vc-14.3-hb25d44b_16.conda
hash:
md5: ea326b37e3bd6d2616988e09f3a9396c
sha256: 29bc108d66150ca75cab937f844f4ac4a836beb6ea3ee167d03c611444bb2a82
- optional: false
- category: main
build: hb25d44b_16
arch: x86_64
subdir: win-64
build_number: 0
-- name: vc14_runtime
+- platform: win-64
+ name: vc14_runtime
version: 14.34.31931
+ category: main
manager: conda
- platform: win-64
dependencies:
- ucrt: '>=10.0.20348.0'
+ - ucrt >=10.0.20348.0
url: https://conda.anaconda.org/conda-forge/win-64/vc14_runtime-14.34.31931-h5081d32_16.conda
hash:
md5: 22125178654c6a8a393f9743d585704b
sha256: 1161f4848e1c0663897a6324fbc4ff13dafd11650b42c9864428da73593dda95
- optional: false
- category: main
build: h5081d32_16
arch: x86_64
subdir: win-64
build_number: 0
-- name: virtualenv
+- platform: linux-64
+ name: virtualenv
version: 20.24.3
+ category: main
manager: conda
- platform: linux-64
dependencies:
- python: '>=3.8'
- distlib: <1,>=0.3.7
- filelock: <4,>=3.12.2
- platformdirs: <4,>=3.9.1
+ - python >=3.8
+ - distlib <1,>=0.3.7
+ - filelock <4,>=3.12.2
+ - platformdirs <4,>=3.9.1
url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.3-pyhd8ed1ab_0.conda
hash:
md5: e5abd7f3cb1050de9bce3027d8ffb2e7
sha256: 2ad8d25101b462eb35f12357d7b126a82c3ae890e7a6b2bca6c6beda7006a8f1
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: linux-64
@@ -5819,21 +8180,20 @@ package:
noarch: python
size: 2857282
timestamp: 1691926638841
-- name: virtualenv
+- platform: osx-64
+ name: virtualenv
version: 20.24.3
+ category: main
manager: conda
- platform: osx-64
dependencies:
- python: '>=3.8'
- distlib: <1,>=0.3.7
- filelock: <4,>=3.12.2
- platformdirs: <4,>=3.9.1
+ - python >=3.8
+ - distlib <1,>=0.3.7
+ - filelock <4,>=3.12.2
+ - platformdirs <4,>=3.9.1
url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.3-pyhd8ed1ab_0.conda
hash:
md5: e5abd7f3cb1050de9bce3027d8ffb2e7
sha256: 2ad8d25101b462eb35f12357d7b126a82c3ae890e7a6b2bca6c6beda7006a8f1
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: osx-64
@@ -5843,21 +8203,20 @@ package:
noarch: python
size: 2857282
timestamp: 1691926638841
-- name: virtualenv
+- platform: osx-arm64
+ name: virtualenv
version: 20.24.3
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- python: '>=3.8'
- distlib: <1,>=0.3.7
- filelock: <4,>=3.12.2
- platformdirs: <4,>=3.9.1
+ - python >=3.8
+ - distlib <1,>=0.3.7
+ - filelock <4,>=3.12.2
+ - platformdirs <4,>=3.9.1
url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.3-pyhd8ed1ab_0.conda
hash:
md5: e5abd7f3cb1050de9bce3027d8ffb2e7
sha256: 2ad8d25101b462eb35f12357d7b126a82c3ae890e7a6b2bca6c6beda7006a8f1
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: aarch64
subdir: osx-arm64
@@ -5867,21 +8226,20 @@ package:
noarch: python
size: 2857282
timestamp: 1691926638841
-- name: virtualenv
+- platform: win-64
+ name: virtualenv
version: 20.24.3
+ category: main
manager: conda
- platform: win-64
dependencies:
- python: '>=3.8'
- distlib: <1,>=0.3.7
- filelock: <4,>=3.12.2
- platformdirs: <4,>=3.9.1
+ - python >=3.8
+ - distlib <1,>=0.3.7
+ - filelock <4,>=3.12.2
+ - platformdirs <4,>=3.9.1
url: https://conda.anaconda.org/conda-forge/noarch/virtualenv-20.24.3-pyhd8ed1ab_0.conda
hash:
md5: e5abd7f3cb1050de9bce3027d8ffb2e7
sha256: 2ad8d25101b462eb35f12357d7b126a82c3ae890e7a6b2bca6c6beda7006a8f1
- optional: false
- category: main
build: pyhd8ed1ab_0
arch: x86_64
subdir: win-64
@@ -5891,55 +8249,51 @@ package:
noarch: python
size: 2857282
timestamp: 1691926638841
-- name: vs2015_runtime
+- platform: win-64
+ name: vs2015_runtime
version: 14.34.31931
+ category: main
manager: conda
- platform: win-64
dependencies:
- vc14_runtime: '>=14.34.31931'
+ - vc14_runtime >=14.34.31931
url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.34.31931-hed1258a_16.conda
hash:
md5: 0374eae69b6dbfb27c3dc27167109eb4
sha256: 25d852887a501ca8cb6753a4f3dae1549fa49592d51aec1a230b1f0c85fe4297
- optional: false
- category: main
build: hed1258a_16
arch: x86_64
subdir: win-64
build_number: 0
-- name: vs2019_win-64
+- platform: win-64
+ name: vs2019_win-64
version: 19.29.30139
+ category: main
manager: conda
- platform: win-64
dependencies:
- vswhere: '*'
+ - vswhere
url: https://conda.anaconda.org/conda-forge/win-64/vs2019_win-64-19.29.30139-he1865b1_17.conda
hash:
md5: 6351cac64b43c84c64bb6fe646d6acfe
sha256: 48ae2875083ef9e0b4dc2a3045154a4197e67f948dec44ae02c5348960445b93
- optional: false
- category: main
build: he1865b1_17
arch: x86_64
subdir: win-64
build_number: 17
- track_features:
- - vc14
+ track_features: vc14
license: BSD-3-Clause
license_family: BSD
size: 19812
timestamp: 1688020390940
-- name: vswhere
+- platform: win-64
+ name: vswhere
version: 3.1.4
+ category: main
manager: conda
- platform: win-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/win-64/vswhere-3.1.4-h57928b3_0.conda
hash:
md5: b1d1d6a1f874d8c93a57b5efece52f03
sha256: 553c41fc1a883415a39444313f8d99236685529776fdd04e8d97288b73496002
- optional: false
- category: main
build: h57928b3_0
arch: x86_64
subdir: win-64
@@ -5948,18 +8302,122 @@ package:
license_family: MIT
size: 218421
timestamp: 1682376911339
-- name: xz
+- platform: linux-64
+ name: watchdog
+ version: 3.0.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - pyyaml >=3.10
+ url: https://conda.anaconda.org/conda-forge/linux-64/watchdog-3.0.0-py311h38be061_1.conda
+ hash:
+ md5: 1901b9f3ca3782f31450fd7158d2fe8a
+ sha256: c1fd4f6bd6f3c4009fe2f97d3ed8edd2f2a46058293e0176b06fa181eb66558f
+ build: py311h38be061_1
+ arch: x86_64
+ subdir: linux-64
+ build_number: 1
+ license: Apache-2.0
+ license_family: APACHE
+ size: 138066
+ timestamp: 1695395380738
+- platform: osx-64
+ name: watchdog
+ version: 3.0.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - pyyaml >=3.10
+ url: https://conda.anaconda.org/conda-forge/osx-64/watchdog-3.0.0-py311h5ef12f2_1.conda
+ hash:
+ md5: 32c15f3306fd2e9a9c2876f2fc33d5ed
+ sha256: e3c40135edb9399277f8afc7b5344b507e40a46cef2ade2d3185f951c884c72b
+ build: py311h5ef12f2_1
+ arch: x86_64
+ subdir: osx-64
+ build_number: 1
+ license: Apache-2.0
+ license_family: APACHE
+ size: 145907
+ timestamp: 1695395842364
+- platform: osx-arm64
+ name: watchdog
+ version: 3.0.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.11,<3.12.0a0
+ - python >=3.11,<3.12.0a0 *_cpython
+ - python_abi 3.11.* *_cp311
+ - pyyaml >=3.10
+ url: https://conda.anaconda.org/conda-forge/osx-arm64/watchdog-3.0.0-py311heffc1b2_1.conda
+ hash:
+ md5: 67202ddda794d7ff7ca6b6e45337073d
+ sha256: 3fd810c89bb56b70518f1e60b7d3769ca13ab8a55e572cc90bba61f7a2a3e8b5
+ build: py311heffc1b2_1
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 1
+ license: Apache-2.0
+ license_family: APACHE
+ size: 147013
+ timestamp: 1695395641979
+- platform: win-64
+ name: watchdog
+ version: 3.0.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.11,<3.12.0a0
+ - python_abi 3.11.* *_cp311
+ - pyyaml >=3.10
+ url: https://conda.anaconda.org/conda-forge/win-64/watchdog-3.0.0-py311h1ea47a8_1.conda
+ hash:
+ md5: dc9bf2e5cbb5288f126606e67b2b410a
+ sha256: c05b8ee23e7b2992901688cfbb00a18706b2269d2518c87f72e1147209e27faf
+ build: py311h1ea47a8_1
+ arch: x86_64
+ subdir: win-64
+ build_number: 1
+ license: Apache-2.0
+ license_family: APACHE
+ size: 154457
+ timestamp: 1695395884217
+- platform: win-64
+ name: win_inet_pton
+ version: 1.1.0
+ category: main
+ manager: conda
+ dependencies:
+ - __win
+ - python >=3.6
+ url: https://conda.anaconda.org/conda-forge/noarch/win_inet_pton-1.1.0-pyhd8ed1ab_6.tar.bz2
+ hash:
+ md5: 30878ecc4bd36e8deeea1e3c151b2e0b
+ sha256: a11ae693a0645bf6c7b8a47bac030be9c0967d0b1924537b9ff7458e832c0511
+ build: pyhd8ed1ab_6
+ arch: x86_64
+ subdir: win-64
+ build_number: 6
+ license: PUBLIC-DOMAIN
+ noarch: python
+ size: 8191
+ timestamp: 1667051294134
+- platform: linux-64
+ name: xz
version: 5.2.6
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=12'
+ - libgcc-ng >=12
url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
hash:
md5: 2161070d867d1b1204ea749c8eec4ef0
sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
- optional: false
- category: main
build: h166bdaf_0
arch: x86_64
subdir: linux-64
@@ -5967,17 +8425,16 @@ package:
license: LGPL-2.1 and GPL-2.0
size: 418368
timestamp: 1660346797927
-- name: xz
+- platform: osx-64
+ name: xz
version: 5.2.6
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/xz-5.2.6-h775f41a_0.tar.bz2
hash:
md5: a72f9d4ea13d55d745ff1ed594747f10
sha256: eb09823f34cc2dd663c0ec4ab13f246f45dcd52e5b8c47b9864361de5204a1c8
- optional: false
- category: main
build: h775f41a_0
arch: x86_64
subdir: osx-64
@@ -5985,17 +8442,16 @@ package:
license: LGPL-2.1 and GPL-2.0
size: 238119
timestamp: 1660346964847
-- name: xz
+- platform: osx-arm64
+ name: xz
version: 5.2.6
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/xz-5.2.6-h57fd34a_0.tar.bz2
hash:
md5: 39c6b54e94014701dd157f4f576ed211
sha256: 59d78af0c3e071021cfe82dc40134c19dab8cdf804324b62940f5c8cd71803ec
- optional: false
- category: main
build: h57fd34a_0
arch: aarch64
subdir: osx-arm64
@@ -6003,19 +8459,18 @@ package:
license: LGPL-2.1 and GPL-2.0
size: 235693
timestamp: 1660346961024
-- name: xz
+- platform: win-64
+ name: xz
version: 5.2.6
+ category: main
manager: conda
- platform: win-64
dependencies:
- vc: '>=14.1,<15'
- vs2015_runtime: '>=14.16.27033'
+ - vc >=14.1,<15
+ - vs2015_runtime >=14.16.27033
url: https://conda.anaconda.org/conda-forge/win-64/xz-5.2.6-h8d14728_0.tar.bz2
hash:
md5: 515d77642eaa3639413c6b1bc3f94219
sha256: 54d9778f75a02723784dc63aff4126ff6e6749ba21d11a6d03c1f4775f269fe0
- optional: false
- category: main
build: h8d14728_0
arch: x86_64
subdir: win-64
@@ -6023,18 +8478,17 @@ package:
license: LGPL-2.1 and GPL-2.0
size: 217804
timestamp: 1660346976440
-- name: yaml
+- platform: linux-64
+ name: yaml
version: 0.2.5
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=9.4.0'
+ - libgcc-ng >=9.4.0
url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
hash:
md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae
sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535
- optional: false
- category: main
build: h7f98852_2
arch: x86_64
subdir: linux-64
@@ -6043,17 +8497,16 @@ package:
license_family: MIT
size: 89141
timestamp: 1641346969816
-- name: yaml
+- platform: osx-64
+ name: yaml
version: 0.2.5
+ category: main
manager: conda
- platform: osx-64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-64/yaml-0.2.5-h0d85af4_2.tar.bz2
hash:
md5: d7e08fcf8259d742156188e8762b4d20
sha256: 5301417e2c8dea45b401ffee8df3957d2447d4ce80c83c5ff151fc6bfe1c4148
- optional: false
- category: main
build: h0d85af4_2
arch: x86_64
subdir: osx-64
@@ -6062,17 +8515,16 @@ package:
license_family: MIT
size: 84237
timestamp: 1641347062780
-- name: yaml
+- platform: osx-arm64
+ name: yaml
version: 0.2.5
+ category: main
manager: conda
- platform: osx-arm64
- dependencies: {}
+ dependencies: []
url: https://conda.anaconda.org/conda-forge/osx-arm64/yaml-0.2.5-h3422bc3_2.tar.bz2
hash:
md5: 4bb3f014845110883a3c5ee811fd84b4
sha256: 93181a04ba8cfecfdfb162fc958436d868cc37db504c58078eab4c1a3e57fbb7
- optional: false
- category: main
build: h3422bc3_2
arch: aarch64
subdir: osx-arm64
@@ -6081,19 +8533,18 @@ package:
license_family: MIT
size: 88016
timestamp: 1641347076660
-- name: yaml
+- platform: win-64
+ name: yaml
version: 0.2.5
+ category: main
manager: conda
- platform: win-64
dependencies:
- vc: '>=14.1,<15.0a0'
- vs2015_runtime: '>=14.16.27012'
+ - vc >=14.1,<15.0a0
+ - vs2015_runtime >=14.16.27012
url: https://conda.anaconda.org/conda-forge/win-64/yaml-0.2.5-h8ffe710_2.tar.bz2
hash:
md5: adbfb9f45d1004a26763652246a33764
sha256: 4e2246383003acbad9682c7c63178e2e715ad0eb84f03a8df1fbfba455dfedc5
- optional: false
- category: main
build: h8ffe710_2
arch: x86_64
subdir: win-64
@@ -6102,18 +8553,97 @@ package:
license_family: MIT
size: 63274
timestamp: 1641347623319
-- name: zlib
+- platform: linux-64
+ name: zipp
+ version: 3.17.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: 2e4d6bc0b14e10f895fc6791a7d9b26a
+ sha256: bced1423fdbf77bca0a735187d05d9b9812d2163f60ab426fc10f11f92ecbe26
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: linux-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 18954
+ timestamp: 1695255262261
+- platform: osx-64
+ name: zipp
+ version: 3.17.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: 2e4d6bc0b14e10f895fc6791a7d9b26a
+ sha256: bced1423fdbf77bca0a735187d05d9b9812d2163f60ab426fc10f11f92ecbe26
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: osx-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 18954
+ timestamp: 1695255262261
+- platform: osx-arm64
+ name: zipp
+ version: 3.17.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: 2e4d6bc0b14e10f895fc6791a7d9b26a
+ sha256: bced1423fdbf77bca0a735187d05d9b9812d2163f60ab426fc10f11f92ecbe26
+ build: pyhd8ed1ab_0
+ arch: aarch64
+ subdir: osx-arm64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 18954
+ timestamp: 1695255262261
+- platform: win-64
+ name: zipp
+ version: 3.17.0
+ category: main
+ manager: conda
+ dependencies:
+ - python >=3.8
+ url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.17.0-pyhd8ed1ab_0.conda
+ hash:
+ md5: 2e4d6bc0b14e10f895fc6791a7d9b26a
+ sha256: bced1423fdbf77bca0a735187d05d9b9812d2163f60ab426fc10f11f92ecbe26
+ build: pyhd8ed1ab_0
+ arch: x86_64
+ subdir: win-64
+ build_number: 0
+ license: MIT
+ license_family: MIT
+ noarch: python
+ size: 18954
+ timestamp: 1695255262261
+- platform: osx-64
+ name: zlib
version: 1.2.13
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libzlib: ==1.2.13 h8a1eda9_5
+ - libzlib 1.2.13 h8a1eda9_5
url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.13-h8a1eda9_5.conda
hash:
md5: 75a8a98b1c4671c5d2897975731da42d
sha256: d1f4c82fd7bd240a78ce8905e931e68dca5f523c7da237b6b63c87d5625c5b35
- optional: false
- category: main
build: h8a1eda9_5
arch: x86_64
subdir: osx-64
@@ -6122,18 +8652,17 @@ package:
license_family: Other
size: 90764
timestamp: 1686575574678
-- name: zlib
+- platform: osx-arm64
+ name: zlib
version: 1.2.13
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libzlib: ==1.2.13 h53f4e23_5
+ - libzlib 1.2.13 h53f4e23_5
url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.13-h53f4e23_5.conda
hash:
md5: a08383f223b10b71492d27566fafbf6c
sha256: de0ee1e24aa6867058d3b852a15c8d7f49f262f5828772700c647186d4a96bbe
- optional: false
- category: main
build: h53f4e23_5
arch: aarch64
subdir: osx-arm64
@@ -6142,20 +8671,19 @@ package:
license_family: Other
size: 79577
timestamp: 1686575471024
-- name: zstd
+- platform: linux-64
+ name: zstd
version: 1.5.5
+ category: main
manager: conda
- platform: linux-64
dependencies:
- libgcc-ng: '>=12'
- libstdcxx-ng: '>=12'
- libzlib: '>=1.2.13,<1.3.0a0'
+ - libgcc-ng >=12
+ - libstdcxx-ng >=12
+ - libzlib >=1.2.13,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/linux-64/zstd-1.5.5-hfc55251_0.conda
hash:
md5: 04b88013080254850d6c01ed54810589
sha256: 607cbeb1a533be98ba96cf5cdf0ddbb101c78019f1fda063261871dad6248609
- optional: false
- category: main
build: hfc55251_0
arch: x86_64
subdir: linux-64
@@ -6164,18 +8692,17 @@ package:
license_family: BSD
size: 545199
timestamp: 1693151163452
-- name: zstd
+- platform: osx-64
+ name: zstd
version: 1.5.5
+ category: main
manager: conda
- platform: osx-64
dependencies:
- libzlib: '>=1.2.13,<1.3.0a0'
+ - libzlib >=1.2.13,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-64/zstd-1.5.5-h829000d_0.conda
hash:
md5: 80abc41d0c48b82fe0f04e7f42f5cb7e
sha256: d54e31d3d8de5e254c0804abd984807b8ae5cd3708d758a8bf1adff1f5df166c
- optional: false
- category: main
build: h829000d_0
arch: x86_64
subdir: osx-64
@@ -6184,18 +8711,17 @@ package:
license_family: BSD
size: 499383
timestamp: 1693151312586
-- name: zstd
+- platform: osx-arm64
+ name: zstd
version: 1.5.5
+ category: main
manager: conda
- platform: osx-arm64
dependencies:
- libzlib: '>=1.2.13,<1.3.0a0'
+ - libzlib >=1.2.13,<1.3.0a0
url: https://conda.anaconda.org/conda-forge/osx-arm64/zstd-1.5.5-h4f39d0f_0.conda
hash:
md5: 5b212cfb7f9d71d603ad891879dc7933
sha256: 7e1fe6057628bbb56849a6741455bbb88705bae6d6646257e57904ac5ee5a481
- optional: false
- category: main
build: h4f39d0f_0
arch: aarch64
subdir: osx-arm64
diff --git a/pixi.toml b/pixi.toml
index c769e3f36..84b82ca96 100644
--- a/pixi.toml
+++ b/pixi.toml
@@ -11,6 +11,8 @@ build = "cargo build --release"
install = "cargo install --path . --locked"
test = "cargo test"
lint = "pre-commit run --all"
+docs = { cmd = "mkdocs serve" }
+build-docs = { cmd = "mkdocs build --strict" }
[dependencies]
# Dev dependencies
@@ -22,3 +24,7 @@ openssl = "3.*"
pkg-config = "0.29.*"
git = "2.42.0.*"
compilers = "1.6.0.*"
+
+# Documentation building
+mkdocs = "1.5.3.*"
+mkdocs-material = "9.4.4.*"