maint: Add prettier pre-commit hook (#3663)

This commit is contained in:
Ayaz Salikhov 2025-01-13 08:09:07 +00:00 committed by GitHub
parent 30546a3957
commit d0c7458839
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
52 changed files with 6047 additions and 6400 deletions

View File

@ -2,61 +2,61 @@ BasedOnStyle: Mozilla
Language: Cpp
Standard: c++17
AccessModifierOffset: '-4'
AccessModifierOffset: "-4"
AlignAfterOpenBracket: BlockIndent
AlignEscapedNewlinesLeft: 'false'
AlignEscapedNewlinesLeft: "false"
AllowAllArgumentsOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortBlocksOnASingleLine: 'false'
AllowShortCaseLabelsOnASingleLine: 'false'
AllowShortFunctionsOnASingleLine: 'false'
AllowShortIfStatementsOnASingleLine: 'false'
AllowShortLoopsOnASingleLine: 'false'
AlwaysBreakTemplateDeclarations: 'true'
AllowShortBlocksOnASingleLine: "false"
AllowShortCaseLabelsOnASingleLine: "false"
AllowShortFunctionsOnASingleLine: "false"
AllowShortIfStatementsOnASingleLine: "false"
AllowShortLoopsOnASingleLine: "false"
AlwaysBreakTemplateDeclarations: "true"
BinPackArguments: false
BinPackParameters: false
BreakAfterAttributes: Leave
BreakBeforeBinaryOperators: All
BreakBeforeBraces: Allman
BreakBeforeTernaryOperators: 'true'
BreakConstructorInitializersBeforeComma: 'true'
BreakStringLiterals: 'false'
ColumnLimit: '100'
ConstructorInitializerAllOnOneLineOrOnePerLine: 'false'
ConstructorInitializerIndentWidth: '4'
ContinuationIndentWidth: '4'
Cpp11BracedListStyle: 'false'
DerivePointerAlignment: 'false'
DisableFormat: 'false'
BreakBeforeTernaryOperators: "true"
BreakConstructorInitializersBeforeComma: "true"
BreakStringLiterals: "false"
ColumnLimit: "100"
ConstructorInitializerAllOnOneLineOrOnePerLine: "false"
ConstructorInitializerIndentWidth: "4"
ContinuationIndentWidth: "4"
Cpp11BracedListStyle: "false"
DerivePointerAlignment: "false"
DisableFormat: "false"
EmptyLineAfterAccessModifier: Always
EmptyLineBeforeAccessModifier: Always
ExperimentalAutoDetectBinPacking: 'true'
ExperimentalAutoDetectBinPacking: "true"
IncludeBlocks: Regroup
IncludeCategories:
- Regex: <[^.]+>
- Regex: <[^.]+>
Priority: -3
- Regex: <mamba/.+>
- Regex: <mamba/.+>
Priority: -1
- Regex: <.+>
- Regex: <.+>
Priority: -2
- Regex: '"mamba/.+"'
- Regex: '"mamba/.+"'
Priority: 0
- Regex: '"solv-cpp/.+"'
- Regex: '"solv-cpp/.+"'
Priority: 0
- Regex: '".+/.+"'
- Regex: '".+/.+"'
Priority: 1
- Regex: '".+"'
- Regex: '".+"'
Priority: 2
IndentCaseLabels: 'true'
IndentWidth: '4'
IndentWrappedFunctionNames: 'false'
IndentCaseLabels: "true"
IndentWidth: "4"
IndentWrappedFunctionNames: "false"
InsertBraces: true # Experimental
KeepEmptyLinesAtTheStartOfBlocks: 'false'
MaxEmptyLinesToKeep: '2'
KeepEmptyLinesAtTheStartOfBlocks: "false"
MaxEmptyLinesToKeep: "2"
NamespaceIndentation: All
ObjCBlockIndentWidth: '4'
ObjCSpaceAfterProperty: 'false'
ObjCSpaceBeforeProtocolList: 'false'
ObjCBlockIndentWidth: "4"
ObjCSpaceAfterProperty: "false"
ObjCSpaceBeforeProtocolList: "false"
PackConstructorInitializers: Never
PenaltyBreakAssignment: 100000
PenaltyBreakBeforeFirstCallParameter: 0
@ -69,20 +69,20 @@ PenaltyReturnTypeOnItsOwnLine: 10
PointerAlignment: Left
QualifierAlignment: Custom # Experimental
QualifierOrder: [inline, static, constexpr, const, volatile, type]
ReflowComments: 'true'
ReflowComments: "true"
SeparateDefinitionBlocks: Always
SortIncludes: CaseInsensitive
SortUsingDeclarations: Never
SpaceAfterCStyleCast: 'true'
SpaceAfterTemplateKeyword: 'true'
SpaceBeforeAssignmentOperators: 'true'
SpaceAfterCStyleCast: "true"
SpaceAfterTemplateKeyword: "true"
SpaceBeforeAssignmentOperators: "true"
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: 'false'
SpacesBeforeTrailingComments: '2'
SpacesInAngles: 'false'
SpacesInCStyleCastParentheses: 'false'
SpacesInContainerLiterals: 'false'
SpacesInParentheses: 'false'
SpacesInSquareBrackets: 'false'
TabWidth: '4'
SpaceInEmptyParentheses: "false"
SpacesBeforeTrailingComments: "2"
SpacesInAngles: "false"
SpacesInCStyleCastParentheses: "false"
SpacesInContainerLiterals: "false"
SpacesInParentheses: "false"
SpacesInSquareBrackets: "false"
TabWidth: "4"
UseTab: Never

View File

@ -1,8 +1,8 @@
name: workspace
description: 'A action to persist your workspace across different jobs'
description: "A action to persist your workspace across different jobs"
branding:
icon: 'box'
color: 'green'
icon: "box"
color: "green"
inputs:
action:
required: true
@ -18,7 +18,7 @@ inputs:
required: true
default: ${{ github.workflow }}-${{ github.run_id }}-${{ github.run_number }}-${{ github.sha }}
key_suffix:
default: ''
default: ""
token:
required: false
default: ${{ github.token }}

View File

@ -1,4 +1,5 @@
---
title: Bot failure
---
There was a problem with the **{{ workflow }}** workflow, please investigate.

View File

@ -8,10 +8,10 @@ on:
branches:
- main
paths-ignore:
- 'docs/**'
- 'mamba/**'
- 'libmambapy/**'
- '**.md'
- "docs/**"
- "mamba/**"
- "libmambapy/**"
- "**.md"
merge_group:
types: [checks_requested]
@ -27,11 +27,11 @@ jobs:
fail-fast: false
matrix:
include:
- {os: ubuntu-latest, platform: linux, arch: "64"}
- {os: ubuntu-latest, platform: linux, arch: aarch64}
- {os: ubuntu-latest, platform: linux, arch: ppc64le}
- {os: macos-latest, platform: osx, arch: "64"}
- {os: macos-latest, platform: osx, arch: arm64}
- { os: ubuntu-latest, platform: linux, arch: "64" }
- { os: ubuntu-latest, platform: linux, arch: aarch64 }
- { os: ubuntu-latest, platform: linux, arch: ppc64le }
- { os: macos-latest, platform: osx, arch: "64" }
- { os: macos-latest, platform: osx, arch: arm64 }
steps:
- name: Checkout micromamba-feedstock
uses: actions/checkout@v4

View File

@ -8,12 +8,11 @@ on:
branches:
- main
paths-ignore:
- 'docs/**'
- '**.md'
- "docs/**"
- "**.md"
merge_group:
types: [checks_requested]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

View File

@ -5,17 +5,14 @@ repos:
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: fix-encoding-pragma
args: [--remove]
- id: check-yaml
exclude: ^.+(/tests/|/recipe/).+$
- id: check-toml
- id: check-json
- id: check-merge-conflict
- id: pretty-format-json
args: [--autofix]
- id: debug-statements
language_version: python3
# Autoformat: YAML, JSON, Markdown, etc.
- repo: https://github.com/rbubley/mirrors-prettier
rev: v3.4.2
hooks:
- id: prettier
- repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0
hooks:
@ -31,7 +28,7 @@ repos:
rev: v0.8.2
hooks:
- id: ruff
args: [ --fix ]
args: [--fix]
- id: ruff-format
- repo: https://github.com/asottile/blacken-docs
rev: 1.19.1
@ -55,4 +52,4 @@ repos:
exclude: (CHANGELOG.md)
# In case of ambiguity (multiple possible corrections), `typos` will just report it to the user and move on without applying/writing any changes.
# cf. https://github.com/crate-ci/typos
args: [ --write-changes ]
args: [--write-changes]

File diff suppressed because it is too large Load Diff

View File

@ -2,12 +2,7 @@
"configurePresets": [
{
"displayName": "Mamba Unix Shared Debug",
"inherits": [
"conda-unix",
"libmamba-all",
"mamba-shared",
"mamba-debug"
],
"inherits": ["conda-unix", "libmamba-all", "mamba-shared", "mamba-debug"],
"name": "mamba-unix-shared-debug"
},
{
@ -22,25 +17,15 @@
},
{
"displayName": "Mamba Unix Shared Debug Dev",
"inherits": [
"mamba-unix-shared-debug",
"mamba-dev"
],
"inherits": ["mamba-unix-shared-debug", "mamba-dev"],
"name": "mamba-unix-shared-debug-dev"
},
{
"displayName": "Mamba Win Shared Release",
"inherits": [
"libmamba-all",
"mamba-shared",
"mamba-release"
],
"inherits": ["libmamba-all", "mamba-shared", "mamba-release"],
"name": "mamba-win-shared-release"
}
],
"include": [
"dev/CMakePresetsUnix.json",
"dev/CMakePresetsMamba.json"
],
"include": ["dev/CMakePresetsUnix.json", "dev/CMakePresetsMamba.json"],
"version": 4
}

View File

@ -46,14 +46,16 @@ See the [documentation on `micromamba`](https://mamba.readthedocs.io/en/latest/u
## `mamba` v.s. `micromamba`
`mamba` has to be preferred when:
- `libmambapy` or `libmamba` is used by other software in the same environment.
- Scenarios where regular updates to libraries are required (especially for security).
- Environments are focused on reducing disk space usage for dependencies.
- `libmambapy` or `libmamba` is used by other software in the same environment.
- Scenarios where regular updates to libraries are required (especially for security).
- Environments are focused on reducing disk space usage for dependencies.
`micromamba` has to be preferred when:
- Relying a single self-contained executable is required.
- A miniforge distribution is not present.
- Usage requires minimal runtime.
- Relying a single self-contained executable is required.
- A miniforge distribution is not present.
- Usage requires minimal runtime.
## Installation
@ -96,7 +98,7 @@ While `mamba` and `micromamba` are generally a drop-in replacement for `conda` t
- `mamba` and `micromamba` do no support revisions (for discussions, see https://github.com/mamba-org/mamba/issues/803)
- `mamba` and `micromamba` normalize `MatchSpec` strings to the simplest form, whereas `conda` use a more verbose form
This can lead to slight differences in the output of `conda env export` and `mamba env export`.
This can lead to slight differences in the output of `conda env export` and `mamba env export`.
## Development installation

View File

@ -37,9 +37,7 @@
"description": "Base profile using conda libraries and GNU compilers",
"displayName": "Conda GNU",
"hidden": true,
"inherits": [
"conda-unix"
],
"inherits": ["conda-unix"],
"name": "conda-gnu"
},
{
@ -52,9 +50,7 @@
"description": "Base profile using conda libraries and LLVM compilers",
"displayName": "Conda Clang",
"hidden": true,
"inherits": [
"conda-unix"
],
"inherits": ["conda-unix"],
"name": "conda-llvm"
}
],

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
version: 1
package:
- category: main
- category: main
dependencies: {}
## Commented out some fields to make it an incomplete definition
# hash:
@ -12,4 +12,4 @@ package:
name: _libgcc_mutex
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
version: '0.1'
version: "0.1"

View File

@ -1,4 +1,3 @@
metadata:
channels:
- url: conda-forge
@ -11,7 +10,7 @@ metadata:
- main.yaml
- dev.yaml
package:
- category: dev
- category: dev
dependencies: {}
hash:
md5: d7c89558ba9fa0495403155b64376d81
@ -21,8 +20,8 @@ package:
optional: true
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
version: '0.1'
- category: dev
version: "0.1"
- category: dev
dependencies: {}
hash:
md5: 2be128ae4d5e44803720d43644ce3e3e
@ -33,7 +32,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.6.15.1-ha878542_0.tar.bz2
version: 2022.6.15.1
- category: dev
- category: dev
dependencies: {}
hash:
md5: bd4f2e711b39af170e7ff15163fe87ee
@ -44,7 +43,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.36.1-hea4e1c9_2.tar.bz2
version: 2.36.1
- category: dev
- category: dev
dependencies: {}
hash:
md5: a56386ad31a7322940dd7d03fb3a9979
@ -55,7 +54,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022c-h191b570_0.tar.bz2
version: 2022c
- category: dev
- category: dev
dependencies:
_libgcc_mutex: 0.1 conda_forge
hash:
@ -67,10 +66,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.1.0-h8d9b700_16.tar.bz2
version: 12.1.0
- category: dev
- category: dev
dependencies:
_libgcc_mutex: 0.1 conda_forge
libgomp: '>=7.5.0'
libgomp: ">=7.5.0"
hash:
md5: 73aaf86a425cc6e73fcf236a5a46396d
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
@ -79,11 +78,11 @@ package:
optional: true
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
version: '4.5'
- category: dev
version: "4.5"
- category: dev
dependencies:
_libgcc_mutex: 0.1 conda_forge
_openmp_mutex: '>=4.5'
_openmp_mutex: ">=4.5"
hash:
md5: 4f05bc9844f7c101e6e147dab3c88d5c
sha256: 2fde3d9f0199bf4f5447b35d3fd74d058c17ef2b6c68815eb1b469f2aec138b9
@ -93,9 +92,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.1.0-h8d9b700_16.tar.bz2
version: 12.1.0
- category: dev
- category: dev
dependencies:
libgcc-ng: '>=9.3.0'
libgcc-ng: ">=9.3.0"
hash:
md5: a1fd65c7ccbf10880423d82bca54eb54
sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa
@ -105,9 +104,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2
version: 1.0.8
- category: dev
- category: dev
dependencies:
libgcc-ng: '>=9.4.0'
libgcc-ng: ">=9.4.0"
hash:
md5: d645c6d2ac96843a2bfaccd2d62b3ac3
sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
@ -117,9 +116,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
version: 3.4.2
- category: dev
- category: dev
dependencies:
libgcc-ng: '>=9.4.0'
libgcc-ng: ">=9.4.0"
hash:
md5: 39b1328babf85c7c3a61636d9cd50206
sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad
@ -129,9 +128,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2
version: 2.0.0
- category: dev
- category: dev
dependencies:
libgcc-ng: '>=9.3.0'
libgcc-ng: ">=9.3.0"
hash:
md5: 772d69f030955d9646d3d0eaf21d859d
sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3
@ -141,9 +140,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.32.1-h7f98852_1000.tar.bz2
version: 2.32.1
- category: dev
- category: dev
dependencies:
libgcc-ng: '>=12'
libgcc-ng: ">=12"
hash:
md5: 29b2d63b0e21b765da0418bc452538c9
sha256: 864e4de308644dc5f5b88da185bb65e4e437ffe56299bffec9eba496c04758f3
@ -153,9 +152,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.12-h166bdaf_3.tar.bz2
version: 1.2.12
- category: dev
- category: dev
dependencies:
libgcc-ng: '>=10.3.0'
libgcc-ng: ">=10.3.0"
hash:
md5: 4acfc691e64342b9dae57cf2adc63238
sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065
@ -164,11 +163,11 @@ package:
optional: true
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2
version: '6.3'
- category: dev
version: "6.3"
- category: dev
dependencies:
ca-certificates: ''
libgcc-ng: '>=12'
ca-certificates: ""
libgcc-ng: ">=12"
hash:
md5: e772305877e7e57021916886d8732137
sha256: d358b5e5187695748961fc06c380668ba1b9a67d5880f94d1ae2757c523f2a52
@ -178,9 +177,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.0.5-h166bdaf_2.tar.bz2
version: 3.0.5
- category: dev
- category: dev
dependencies:
libgcc-ng: '>=12'
libgcc-ng: ">=12"
hash:
md5: 2161070d867d1b1204ea749c8eec4ef0
sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
@ -190,10 +189,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
version: 5.2.6
- category: dev
- category: dev
dependencies:
libgcc-ng: '>=12'
libzlib: '>=1.2.12,<1.3.0a0'
libgcc-ng: ">=12"
libzlib: ">=1.2.12,<1.3.0a0"
hash:
md5: ccb2457c73609f2622b8a4b3e42e5d8b
sha256: aa579bad433c481f9b0e3df473c4b9f4455787c0c439e921d0caa26affb205e3
@ -203,10 +202,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.39.3-h753d276_0.tar.bz2
version: 3.39.3
- category: dev
- category: dev
dependencies:
libgcc-ng: '>=12'
ncurses: '>=6.3,<7.0a0'
libgcc-ng: ">=12"
ncurses: ">=6.3,<7.0a0"
hash:
md5: db2ebbe2943aae81ed051a6a9af8e0fa
sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8
@ -216,10 +215,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2
version: 8.1.2
- category: dev
- category: dev
dependencies:
libgcc-ng: '>=9.4.0'
libzlib: '>=1.2.11,<1.3.0a0'
libgcc-ng: ">=9.4.0"
libzlib: ">=1.2.11,<1.3.0a0"
hash:
md5: 5b8c42eb62e9fc961af70bdd6a26e168
sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0
@ -229,22 +228,22 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2
version: 8.6.12
- category: dev
- category: dev
dependencies:
bzip2: '>=1.0.8,<2.0a0'
ld_impl_linux-64: '>=2.36.1'
libffi: '>=3.4.2,<3.5.0a0'
libgcc-ng: '>=12'
libnsl: '>=2.0.0,<2.1.0a0'
libsqlite: '>=3.39.2,<4.0a0'
libuuid: '>=2.32.1,<3.0a0'
libzlib: '>=1.2.12,<1.3.0a0'
ncurses: '>=6.3,<7.0a0'
openssl: '>=3.0.5,<4.0a0'
readline: '>=8.1.2,<9.0a0'
tk: '>=8.6.12,<8.7.0a0'
tzdata: ''
xz: '>=5.2.6,<5.3.0a0'
bzip2: ">=1.0.8,<2.0a0"
ld_impl_linux-64: ">=2.36.1"
libffi: ">=3.4.2,<3.5.0a0"
libgcc-ng: ">=12"
libnsl: ">=2.0.0,<2.1.0a0"
libsqlite: ">=3.39.2,<4.0a0"
libuuid: ">=2.32.1,<3.0a0"
libzlib: ">=1.2.12,<1.3.0a0"
ncurses: ">=6.3,<7.0a0"
openssl: ">=3.0.5,<4.0a0"
readline: ">=8.1.2,<9.0a0"
tk: ">=8.6.12,<8.7.0a0"
tzdata: ""
xz: ">=5.2.6,<5.3.0a0"
hash:
md5: 98d77e6496f7516d6b3c508f71c102fc
sha256: 51858b574a043bd0f7225880ecb11624c0545ef04865f848cd5a54c487bc637f
@ -254,9 +253,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/python-3.10.6-ha86cf86_0_cpython.tar.bz2
version: 3.10.6
- category: dev
- category: dev
dependencies:
python: '>=3.5'
python: ">=3.5"
hash:
md5: 6d3ccbc56256204925bfa8378722792f
sha256: 86133878250874b3823bae7369bcad90187132537726cb1b546d88a0552d24de
@ -266,9 +265,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/attrs-22.1.0-pyh71513ae_1.tar.bz2
version: 22.1.0
- category: dev
- category: dev
dependencies:
python: ''
python: ""
hash:
md5: 39161f81cc5e5ca45b8226fbb06c6905
sha256: 9423ded508ebda87dae21d7876134e406ffeb88e6059f3fe1a909d180c351959
@ -278,9 +277,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/iniconfig-1.1.1-pyh9f0ad1d_0.tar.bz2
version: 1.1.1
- category: dev
- category: dev
dependencies:
python: '>=2.7'
python: ">=2.7"
hash:
md5: b4613d7e7a493916d867842a6a148054
sha256: 268be33a290e3d51467ab29cbb5a80cf79f69dade2f2dead25d7f80d76c3543a
@ -290,9 +289,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/py-1.11.0-pyh6c4a22f_0.tar.bz2
version: 1.11.0
- category: dev
- category: dev
dependencies:
python: '>=3.6'
python: ">=3.6"
hash:
md5: e8fbc1b54b25f4b08281467bc13b70cc
sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b
@ -302,7 +301,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/pyparsing-3.0.9-pyhd8ed1ab_0.tar.bz2
version: 3.0.9
- category: dev
- category: dev
dependencies:
python: 3.10.*
hash:
@ -313,10 +312,10 @@ package:
optional: true
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-2_cp310.tar.bz2
version: '3.10'
- category: main
version: "3.10"
- category: main
dependencies:
python: '>=3.8'
python: ">=3.8"
hash:
md5: a64c8af7be7a6348c1d9e530f88fa4da
sha256: 54d2d1480c6f01a9b0a368276b95a71062eb3995183b10de04ec26d5e2571fcd
@ -326,9 +325,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/setuptools-65.3.0-pyhd8ed1ab_1.tar.bz2
version: 65.3.0
- category: dev
- category: dev
dependencies:
python: '>=3.7'
python: ">=3.7"
hash:
md5: 5844808ffab9ebdb694585b50ba02a96
sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f
@ -338,9 +337,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/tomli-2.0.1-pyhd8ed1ab_0.tar.bz2
version: 2.0.1
- category: main
- category: main
dependencies:
python: '!=3.0,!=3.1,!=3.2,!=3.3,!=3.4'
python: "!=3.0,!=3.1,!=3.2,!=3.3,!=3.4"
hash:
md5: 1ca02aaf78d9c70d9a81a3bed5752022
sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc
@ -350,10 +349,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/wheel-0.37.1-pyhd8ed1ab_0.tar.bz2
version: 0.37.1
- category: dev
- category: dev
dependencies:
pyparsing: '>=2.0.2,!=3.0.5'
python: '>=3.6'
pyparsing: ">=2.0.2,!=3.0.5"
python: ">=3.6"
hash:
md5: 71f1ab2de48613876becddd496371c85
sha256: 8322a9e93e2e09fbf2103f0d37c9287b7b97387125abadd6db26686084893540
@ -362,12 +361,12 @@ package:
optional: true
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/packaging-21.3-pyhd8ed1ab_0.tar.bz2
version: '21.3'
- category: main
version: "21.3"
- category: main
dependencies:
python: '>=3.7'
setuptools: ''
wheel: ''
python: ">=3.7"
setuptools: ""
wheel: ""
hash:
md5: 0b43abe4d3ee93e82742d37def53a836
sha256: 507ae896a2f9ccc7bbedc2f7fd10dc2ac666575769b55b5e94ca44b86db193e0
@ -377,9 +376,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/pip-22.2.2-pyhd8ed1ab_0.tar.bz2
version: 22.2.2
- category: dev
- category: dev
dependencies:
python: '>=3.10,<3.11.0a0'
python: ">=3.10,<3.11.0a0"
python_abi: 3.10.* *_cp310
hash:
md5: 97f9a22577338f91a94dfac5c1a65a50
@ -390,16 +389,16 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/pluggy-1.0.0-py310hff52083_3.tar.bz2
version: 1.0.0
- category: dev
- category: dev
dependencies:
attrs: '>=19.2.0'
iniconfig: ''
packaging: ''
pluggy: '>=0.12,<2.0'
py: '>=1.8.2'
python: '>=3.10,<3.11.0a0'
attrs: ">=19.2.0"
iniconfig: ""
packaging: ""
pluggy: ">=0.12,<2.0"
py: ">=1.8.2"
python: ">=3.10,<3.11.0a0"
python_abi: 3.10.* *_cp310
tomli: '>=1.0.0'
tomli: ">=1.0.0"
hash:
md5: 18ef27d620d67af2feef22acfd42cf4a
sha256: 7caab18204cccb2f43afd52cec61755c4cc5c0224d01eeaed3a3c8b720cc6926
@ -409,7 +408,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/pytest-7.1.3-py310hff52083_0.tar.bz2
version: 7.1.3
- category: main
- category: main
dependencies: {}
hash:
sha256: 43dadad18a7f168740e66944e4fa82c6611848ff9056ad910f8f7a3e46ab89e0
@ -420,7 +419,7 @@ package:
source: null
url: https://files.pythonhosted.org/packages/ac/80/e0df41f336f21d35befa4ff15348eb3e8b2483e131922e8427223b52e688/certifi-2022.6.15.1-py3-none-any.whl
version: 2022.6.15.1
- category: main
- category: main
dependencies: {}
hash:
sha256: 83e9a75d1911279afd89352c68b45348559d1fc0506b054b346651b5e7fee29f
@ -431,7 +430,7 @@ package:
source: null
url: https://files.pythonhosted.org/packages/db/51/a507c856293ab05cdc1db77ff4bc1268ddd39f29e7dc4919aa497f0adbec/charset_normalizer-2.1.1-py3-none-any.whl
version: 2.1.1
- category: main
- category: main
dependencies: {}
hash:
sha256: 84d9dd047ffa80596e0f246e2eab0b391788b0503584e8945f2368256d2735ff
@ -441,8 +440,8 @@ package:
platform: linux-64
source: null
url: https://files.pythonhosted.org/packages/04/a2/d918dcd22354d8958fe113e1a3630137e0fc8b44859ade3063982eacd2a4/idna-3.3-py3-none-any.whl
version: '3.3'
- category: main
version: "3.3"
- category: main
dependencies: {}
hash:
sha256: b930dd878d5a8afb066a637fbb35144fe7901e3b209d1cd4f524bd0e9deee997
@ -453,9 +452,9 @@ package:
source: null
url: https://files.pythonhosted.org/packages/6f/de/5be2e3eed8426f871b170663333a0f627fc2924cc386cd41be065e7ea870/urllib3-1.26.12-py2.py3-none-any.whl
version: 1.26.12
- category: dev
- category: dev
dependencies:
pytest: '>=5.0'
pytest: ">=5.0"
hash:
sha256: 8a9e226d6c0ef09fcf20c94eb3405c388af438a90f3e39687f84166da82d5948
manager: pip
@ -465,12 +464,12 @@ package:
source: null
url: https://files.pythonhosted.org/packages/64/ec/e21d6a5c31df566847de2dc7e7c1870c67cf10cb97cb0a1ea0e389446e60/pytest_mock-3.8.2-py3-none-any.whl
version: 3.8.2
- category: main
- category: main
dependencies:
certifi: '>=2017.4.17'
charset-normalizer: '>=2,<3'
idna: '>=2.5,<4'
urllib3: '>=1.21.1,<1.27'
certifi: ">=2017.4.17"
charset-normalizer: ">=2,<3"
idna: ">=2.5,<4"
urllib3: ">=1.21.1,<1.27"
hash:
sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349
manager: pip

View File

@ -27,7 +27,7 @@ metadata:
sources:
- environment.yml
package:
- category: main
- category: main
dependencies: {}
hash:
md5: d7c89558ba9fa0495403155b64376d81
@ -37,8 +37,8 @@ package:
optional: false
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
version: '0.1'
- category: main
version: "0.1"
- category: main
dependencies:
_libgcc_mutex: 0.1 conda_forge
hash:
@ -50,10 +50,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-11.2.0-h1d223b6_13.tar.bz2
version: 11.2.0
- category: main
- category: main
dependencies:
_libgcc_mutex: 0.1 conda_forge
libgomp: '>=7.5.0'
libgomp: ">=7.5.0"
hash:
md5: 561e277319a41d4f24f5c05a9ef63c04
sha256: 81c74d38c80345e195106dc3a5b4063b61f2209402bf9f6c7e2abadef4f544a3
@ -62,11 +62,11 @@ package:
optional: false
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-1_gnu.tar.bz2
version: '4.5'
- category: main
version: "4.5"
- category: main
dependencies:
_libgcc_mutex: 0.1 conda_forge
_openmp_mutex: '>=4.5'
_openmp_mutex: ">=4.5"
hash:
md5: 63eaf0f146cc80abd84743d48d667da4
sha256: 5c9c8a23e45215e0c218a477c69054ed2ac577c4499795649dd3343687d380ff
@ -76,9 +76,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-11.2.0-h1d223b6_13.tar.bz2
version: 11.2.0
- category: main
- category: main
dependencies:
libgcc-ng: '>=7.5.0'
libgcc-ng: ">=7.5.0"
hash:
md5: dcddf696ff5dfcab567100d691678e18
sha256: 8292882ea5cfbe2e6b708432dfab0668f2acddb96ab7618163001acbd13678e4
@ -88,9 +88,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.11-h36c2ea0_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies:
libgcc-ng: '>=7.5.0'
libgcc-ng: ">=7.5.0"
libzlib: 1.2.11 h36c2ea0_1013
hash:
md5: cf7190238072a41e9579e4476a6a60b8
@ -101,7 +101,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.11-h36c2ea0_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies: {}
hash:
md5: a3a6a53beaa92c5cfe52ee3a198e78cc
@ -112,7 +112,7 @@ package:
platform: osx-64
url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.11-h9173be1_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies:
libzlib: 1.2.11 h9173be1_1013
hash:
@ -124,7 +124,7 @@ package:
platform: osx-64
url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.11-h9173be1_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies: {}
hash:
md5: 6d666b6ea8251231ff508062d1e41f9c
@ -135,9 +135,9 @@ package:
platform: win-64
url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.20348.0-h57928b3_0.tar.bz2
version: 10.0.20348.0
- category: main
- category: main
dependencies:
ucrt: '>=10.0.20348.0'
ucrt: ">=10.0.20348.0"
hash:
md5: 33d07ebe91062743eabc9e53a60d18e1
sha256: f2efbbe3465a34b195edd218d5572c998d94c5964d4e495c3d7f95c8bb5fcaac
@ -147,9 +147,9 @@ package:
platform: win-64
url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.29.30037-h902a5da_6.tar.bz2
version: 14.29.30037
- category: main
- category: main
dependencies:
vs2015_runtime: '>=14.28.29325'
vs2015_runtime: ">=14.28.29325"
hash:
md5: c2aecbc9b00ba6f352e27d3d61fd31fb
sha256: c6e7d2b9ceafe2cc302fb8fce1dfcc46b49c5333757424a34294bffdfb5569be
@ -158,11 +158,11 @@ package:
optional: false
platform: win-64
url: https://conda.anaconda.org/conda-forge/win-64/vc-14.2-hb210afc_6.tar.bz2
version: '14.2'
- category: main
version: "14.2"
- category: main
dependencies:
vc: '>=14.1,<15.0a0'
vs2015_runtime: '>=14.16.27012'
vc: ">=14.1,<15.0a0"
vs2015_runtime: ">=14.16.27012"
hash:
md5: b28dd2488b4e5f892c67071acc1d0a8c
sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e
@ -172,11 +172,11 @@ package:
platform: win-64
url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.11-h8ffe710_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies:
libzlib: 1.2.11 h8ffe710_1013
vc: '>=14.1,<15.0a0'
vs2015_runtime: '>=14.16.27012'
vc: ">=14.1,<15.0a0"
vs2015_runtime: ">=14.16.27012"
hash:
md5: 866517df4fd8bb813bc20c24cf7b8f05
sha256: 5b5db5ec4c2eb51a2bb8c5e22df9938703fd292da8a41c1e8355d5972f9fe12c
@ -186,8 +186,8 @@ package:
platform: win-64
url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.11-h8ffe710_1013.tar.bz2
version: 1.2.11
- dependencies:
anyio: '>=3.0.0,<4'
- dependencies:
anyio: ">=3.0.0,<4"
hash:
sha256: 26a18cbda5e6b651c964c12c88b36d9898481cd428ed6e063f5f29c418f73050
manager: pip
@ -197,10 +197,10 @@ package:
url: https://files.pythonhosted.org/packages/32/57/e9c68acc2845ee4ca66202d19856f6a3581cab2a885d25d490103270ffa2/starlette-0.17.1-py3-none-any.whl
version: 0.17.1
category: main
- dependencies:
asgiref: '>=3.4.0'
click: '>=7.0'
h11: '>=0.8'
- dependencies:
asgiref: ">=3.4.0"
click: ">=7.0"
h11: ">=0.8"
hash:
sha256: 19e2a0e96c9ac5581c01eb1a79a7d2f72bb479691acd2b8921fce48ed5b961a6
manager: pip

View File

@ -1,4 +1,3 @@
version: 1
# TODO: change the metadata to make them valid/matching actual locked env
@ -19,5 +18,4 @@ metadata:
sources:
- environment.yml
package:

View File

@ -19,10 +19,10 @@ metadata:
- environment.yml
package:
- category: main
- category: main
dependencies:
vc: '>=14.1,<15.0a0'
vs2015_runtime: '>=14.16.27012'
vc: ">=14.1,<15.0a0"
vs2015_runtime: ">=14.16.27012"
hash:
md5: b28dd2488b4e5f892c67071acc1d0a8c
sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e

View File

@ -19,9 +19,9 @@ metadata:
- environment.yml
package:
- dependencies:
vc: '>=14.1,<15.0a0'
vs2015_runtime: '>=14.16.27012'
- dependencies:
vc: ">=14.1,<15.0a0"
vs2015_runtime: ">=14.16.27012"
hash:
md5: b28dd2488b4e5f892c67071acc1d0a8c
sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e

View File

@ -22,13 +22,8 @@
"build": "2_gnu",
"build_number": 16,
"build_string": "2_gnu",
"constrains": [
"openmp_impl 9999"
],
"depends": [
"_libgcc_mutex 0.1 conda_forge",
"libgomp >=7.5.0"
],
"constrains": ["openmp_impl 9999"],
"depends": ["_libgcc_mutex 0.1 conda_forge", "libgomp >=7.5.0"],
"fn": "_openmp_mutex-4.5-2_gnu.tar.bz2",
"license": "BSD-3-Clause",
"md5": "73aaf86a425cc6e73fcf236a5a46396d",
@ -46,9 +41,7 @@
"build_number": 5,
"build_string": "h7f98852_5",
"constrains": null,
"depends": [
"libgcc-ng >=9.4.0"
],
"depends": ["libgcc-ng >=9.4.0"],
"fn": "libffi-3.4.2-h7f98852_5.tar.bz2",
"license": "MIT",
"md5": "d645c6d2ac96843a2bfaccd2d62b3ac3",
@ -66,9 +59,7 @@
"build_number": 0,
"build_string": "h166bdaf_0",
"constrains": null,
"depends": [
"libgcc-ng >=12"
],
"depends": ["libgcc-ng >=12"],
"fn": "xz-5.2.6-h166bdaf_0.tar.bz2",
"license": "LGPL-2.1 and GPL-2.0",
"md5": "2161070d867d1b1204ea749c8eec4ef0",
@ -88,9 +79,7 @@
"build_number": 5,
"build_string": "hd590300_5",
"constrains": null,
"depends": [
"libgcc-ng >=12"
],
"depends": ["libgcc-ng >=12"],
"fn": "bzip2-1.0.8-hd590300_5.conda",
"license": "bzip2-1.0.6",
"md5": "69b8b6202a07720f448be700e300ccf4",
@ -125,9 +114,7 @@
"build": "h41732ed_0",
"build_number": 0,
"build_string": "h41732ed_0",
"constrains": [
"binutils_impl_linux-64 2.40"
],
"constrains": ["binutils_impl_linux-64 2.40"],
"depends": null,
"fn": "ld_impl_linux-64-2.40-h41732ed_0.conda",
"license": "GPL-3.0-only",
@ -176,9 +163,7 @@
"blas * openblas",
"liblapack 3.9.0 21_linux64_openblas"
],
"depends": [
"libblas 3.9.0 21_linux64_openblas"
],
"depends": ["libblas 3.9.0 21_linux64_openblas"],
"fn": "libcblas-3.9.0-21_linux64_openblas.conda",
"license": "BSD-3-Clause",
"md5": "4a3816d06451c4946e2db26b86472cb6",
@ -195,12 +180,8 @@
"build": "hcb278e6_1",
"build_number": 1,
"build_string": "hcb278e6_1",
"constrains": [
"expat 2.5.0.*"
],
"depends": [
"libgcc-ng >=12"
],
"constrains": ["expat 2.5.0.*"],
"depends": ["libgcc-ng >=12"],
"fn": "libexpat-2.5.0-hcb278e6_1.conda",
"license": "MIT",
"md5": "6305a3dd2752c76335295da4e581f2fd",
@ -218,9 +199,7 @@
"build_number": 5,
"build_string": "h7f98852_5",
"constrains": null,
"depends": [
"libgcc-ng >=9.4.0"
],
"depends": ["libgcc-ng >=9.4.0"],
"fn": "libffi-3.4.2-h7f98852_5.conda",
"license": "MIT",
"md5": "d645c6d2ac96843a2bfaccd2d62b3ac3",
@ -237,13 +216,8 @@
"build": "h807b86a_5",
"build_number": 5,
"build_string": "h807b86a_5",
"constrains": [
"libgomp 13.2.0 h807b86a_5"
],
"depends": [
"_openmp_mutex >=4.5",
"_libgcc_mutex 0.1 conda_forge"
],
"constrains": ["libgomp 13.2.0 h807b86a_5"],
"depends": ["_openmp_mutex >=4.5", "_libgcc_mutex 0.1 conda_forge"],
"fn": "libgcc-ng-13.2.0-h807b86a_5.conda",
"license": "GPL-3.0-only WITH GCC-exception-3.1",
"md5": "d4ff227c46917d3b4565302a2bbb276b",
@ -261,9 +235,7 @@
"build_number": 5,
"build_string": "h69a702a_5",
"constrains": null,
"depends": [
"libgfortran5 13.2.0 ha4646dd_5"
],
"depends": ["libgfortran5 13.2.0 ha4646dd_5"],
"fn": "libgfortran-ng-13.2.0-h69a702a_5.conda",
"license": "GPL-3.0-only WITH GCC-exception-3.1",
"md5": "e73e9cfd1191783392131e6238bdb3e9",
@ -280,12 +252,8 @@
"build": "ha4646dd_5",
"build_number": 5,
"build_string": "ha4646dd_5",
"constrains": [
"libgfortran-ng 13.2.0"
],
"depends": [
"libgcc-ng >=13.2.0"
],
"constrains": ["libgfortran-ng 13.2.0"],
"depends": ["libgcc-ng >=13.2.0"],
"fn": "libgfortran5-13.2.0-ha4646dd_5.conda",
"license": "GPL-3.0-only WITH GCC-exception-3.1",
"md5": "7a6bd7a12a4bd359e2afe6c0fa1acace",
@ -303,9 +271,7 @@
"build_number": 5,
"build_string": "h807b86a_5",
"constrains": null,
"depends": [
"_libgcc_mutex 0.1 conda_forge"
],
"depends": ["_libgcc_mutex 0.1 conda_forge"],
"fn": "libgomp-13.2.0-h807b86a_5.conda",
"license": "GPL-3.0-only WITH GCC-exception-3.1",
"md5": "d211c42b9ce49aee3734fdc828731689",
@ -327,9 +293,7 @@
"libcblas 3.9.0 21_linux64_openblas",
"blas * openblas"
],
"depends": [
"libblas 3.9.0 21_linux64_openblas"
],
"depends": ["libblas 3.9.0 21_linux64_openblas"],
"fn": "liblapack-3.9.0-21_linux64_openblas.conda",
"license": "BSD-3-Clause",
"md5": "1a42f305615c3867684e049e85927531",
@ -347,9 +311,7 @@
"build_number": 0,
"build_string": "hd590300_0",
"constrains": null,
"depends": [
"libgcc-ng >=12"
],
"depends": ["libgcc-ng >=12"],
"fn": "libnsl-2.0.1-hd590300_0.conda",
"license": "LGPL-2.1-only",
"md5": "30fd6e37fe21f86f4bd26d6ee73eeec7",
@ -366,14 +328,8 @@
"build": "pthreads_h413a1c8_0",
"build_number": 0,
"build_string": "pthreads_h413a1c8_0",
"constrains": [
"openblas >=0.3.26,<0.3.27.0a0"
],
"depends": [
"libgfortran-ng",
"libgcc-ng >=12",
"libgfortran5 >=12.3.0"
],
"constrains": ["openblas >=0.3.26,<0.3.27.0a0"],
"depends": ["libgfortran-ng", "libgcc-ng >=12", "libgfortran5 >=12.3.0"],
"fn": "libopenblas-0.3.26-pthreads_h413a1c8_0.conda",
"license": "BSD-3-Clause",
"md5": "760ae35415f5ba8b15d09df5afe8b23a",
@ -391,10 +347,7 @@
"build_number": 0,
"build_string": "h2797004_0",
"constrains": null,
"depends": [
"libgcc-ng >=12",
"libzlib >=1.2.13,<1.3.0a0"
],
"depends": ["libgcc-ng >=12", "libzlib >=1.2.13,<1.3.0a0"],
"fn": "libsqlite-3.44.2-h2797004_0.conda",
"license": "Unlicense",
"md5": "3b6a9f225c3dbe0d24f4fedd4625c5bf",
@ -430,9 +383,7 @@
"build_number": 0,
"build_string": "h0b41bf4_0",
"constrains": null,
"depends": [
"libgcc-ng >=12"
],
"depends": ["libgcc-ng >=12"],
"fn": "libuuid-2.38.1-h0b41bf4_0.conda",
"license": "BSD-3-Clause",
"md5": "40b61aab5c7ba9ff276c41cfffe6b80b",
@ -450,9 +401,7 @@
"build_number": 1,
"build_string": "hd590300_1",
"constrains": null,
"depends": [
"libgcc-ng >=12"
],
"depends": ["libgcc-ng >=12"],
"fn": "libxcrypt-4.4.36-hd590300_1.conda",
"license": "LGPL-2.1-or-later",
"md5": "5aa797f8787fe7a17d1b0821485b5adc",
@ -469,12 +418,8 @@
"build": "hd590300_5",
"build_number": 5,
"build_string": "hd590300_5",
"constrains": [
"zlib 1.2.13 *_5"
],
"depends": [
"libgcc-ng >=12"
],
"constrains": ["zlib 1.2.13 *_5"],
"depends": ["libgcc-ng >=12"],
"fn": "libzlib-1.2.13-hd590300_5.conda",
"license": "Zlib",
"md5": "f36c115f1ee199da648e0597ec2047ad",
@ -492,9 +437,7 @@
"build_number": 2,
"build_string": "h59595ed_2",
"constrains": null,
"depends": [
"libgcc-ng >=12"
],
"depends": ["libgcc-ng >=12"],
"fn": "ncurses-6.4-h59595ed_2.conda",
"license": "X11 AND BSD-3-Clause",
"md5": "7dbaa197d7ba6032caf7ae7f32c1efa0",
@ -511,9 +454,7 @@
"build": "py312heda63a1_0",
"build_number": 0,
"build_string": "py312heda63a1_0",
"constrains": [
"numpy-base <0a0"
],
"constrains": ["numpy-base <0a0"],
"depends": [
"libgcc-ng >=12",
"libstdcxx-ng >=12",
@ -539,13 +480,8 @@
"build": "hd590300_0",
"build_number": 0,
"build_string": "hd590300_0",
"constrains": [
"pyopenssl >=22.1"
],
"depends": [
"ca-certificates",
"libgcc-ng >=12"
],
"constrains": ["pyopenssl >=22.1"],
"depends": ["ca-certificates", "libgcc-ng >=12"],
"fn": "openssl-3.2.1-hd590300_0.conda",
"license": "Apache-2.0",
"md5": "51a753e64a3027bd7e23a189b1f6e91e",
@ -563,11 +499,7 @@
"build_number": 0,
"build_string": "pyhd8ed1ab_0",
"constrains": null,
"depends": [
"setuptools",
"wheel",
"python >=3.7"
],
"depends": ["setuptools", "wheel", "python >=3.7"],
"fn": "pip-24.0-pyhd8ed1ab_0.conda",
"license": "MIT",
"md5": "f586ac1e56c8638b64f9c8122a7b8a67",
@ -585,9 +517,7 @@
"build": "hab00c5b_1_cpython",
"build_number": 1,
"build_string": "hab00c5b_1_cpython",
"constrains": [
"python_abi 3.12.* *_cp312"
],
"constrains": ["python_abi 3.12.* *_cp312"],
"depends": [
"tzdata",
"libgcc-ng >=12",
@ -622,9 +552,7 @@
"build": "4_cp312",
"build_number": 4,
"build_string": "4_cp312",
"constrains": [
"python 3.12.* *_cpython"
],
"constrains": ["python 3.12.* *_cpython"],
"depends": null,
"fn": "python_abi-3.12-4_cp312.conda",
"license": "BSD-3-Clause",
@ -643,10 +571,7 @@
"build_number": 1,
"build_string": "h8228510_1",
"constrains": null,
"depends": [
"libgcc-ng >=12",
"ncurses >=6.3,<7.0a0"
],
"depends": ["libgcc-ng >=12", "ncurses >=6.3,<7.0a0"],
"fn": "readline-8.2-h8228510_1.conda",
"license": "GPL-3.0-only",
"md5": "47d31b792659ce70f470b5c82fdfb7a4",
@ -664,9 +589,7 @@
"build_number": 0,
"build_string": "pyhd8ed1ab_0",
"constrains": null,
"depends": [
"python >=3.7"
],
"depends": ["python >=3.7"],
"fn": "setuptools-69.0.3-pyhd8ed1ab_0.conda",
"license": "MIT",
"md5": "40695fdfd15a92121ed2922900d0308b",
@ -685,10 +608,7 @@
"build_number": 101,
"build_string": "noxft_h4845f30_101",
"constrains": null,
"depends": [
"libgcc-ng >=12",
"libzlib >=1.2.13,<1.3.0a0"
],
"depends": ["libgcc-ng >=12", "libzlib >=1.2.13,<1.3.0a0"],
"fn": "tk-8.6.13-noxft_h4845f30_101.conda",
"license": "TCL",
"md5": "d453b98d9c83e71da0741bb0ff4d76bc",
@ -726,9 +646,7 @@
"build_string": "pyhd8ed1ab_0",
"channel": "https://conda.anaconda.org/conda-forge/noarch",
"constrains": null,
"depends": [
"python >=3.7"
],
"depends": ["python >=3.7"],
"fn": "wheel-0.42.0-pyhd8ed1ab_0.conda",
"license": "MIT",
"md5": "1cdea58981c5cbc17b51973bcaddcea7",

View File

@ -28,9 +28,7 @@
"build_number": 5,
"build_string": "hd590300_5",
"constrains": null,
"depends": [
"libgcc-ng >=12"
],
"depends": ["libgcc-ng >=12"],
"fn": "bzip2-1.0.8-hd590300_5.conda",
"license": "bzip2-1.0.6",
"md5": "69b8b6202a07720f448be700e300ccf4",

View File

@ -29,9 +29,7 @@
"build_number": 5,
"build_string": "hd590300_5",
"constrains": null,
"depends": [
"libgcc-ng >=12"
],
"depends": ["libgcc-ng >=12"],
"fn": "bzip2-1.0.8-hd590300_5.conda",
"license": "bzip2-1.0.6",
"md5": "69b8b6202a07720f448be700e300ccf4",

View File

@ -9,9 +9,7 @@
"_type": "root",
"roles": {
"root": {
"keyids": [
"foo"
],
"keyids": ["foo"],
"threshold": 1
}
}

View File

@ -1,5 +1,4 @@
libmambapy 2.0.5 (December 12, 2024)
====================================
# libmambapy 2.0.5 (December 12, 2024)
Enhancements:
@ -20,8 +19,7 @@ CI fixes and doc:
- docs: Remove installation non-recommendation by @jjerphan in https://github.com/mamba-org/mamba/pull/3656
- ci: Remove Conda Nightly tests by @jjerphan in https://github.com/mamba-org/mamba/pull/3629
libmambapy 2.0.5.rc0 (December 09, 2024)
========================================
# libmambapy 2.0.5.rc0 (December 09, 2024)
Enhancements:
@ -39,8 +37,7 @@ CI fixes and doc:
- docs: Remove installation non-recommendation by @jjerphan in https://github.com/mamba-org/mamba/pull/3656
- ci: Remove Conda Nightly tests by @jjerphan in https://github.com/mamba-org/mamba/pull/3629
libmambapy 2.0.4 (November 22, 2024)
====================================
# libmambapy 2.0.4 (November 22, 2024)
Enhancements:
@ -69,9 +66,7 @@ CI fixes and doc:
- dev: Remove the use of Taskfile by @jjerphan in https://github.com/mamba-org/mamba/pull/3544
- Upgraded CI to micromamba 2.0.2 by @JohanMabille in https://github.com/mamba-org/mamba/pull/3497
libmambapy 2.0.4alpha3 (November 21, 2024)
==========================================
# libmambapy 2.0.4alpha3 (November 21, 2024)
CI fixes and doc:
@ -83,9 +78,7 @@ CI fixes and doc:
- docs: Update pieces of documentation after the release of mamba 2 by @jjerphan in https://github.com/mamba-org/mamba/pull/3610
- maint: Update clang-format to v19 by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3600
libmambapy 2.0.4alpha2 (November 14, 2024)
==========================================
# libmambapy 2.0.4alpha2 (November 14, 2024)
Bug fixes:
@ -95,19 +88,15 @@ CI fixes and doc:
- Force spinx v6 in readthedocs by @mathbunnyru in https://github.com/mamba-org/mamba/pull/3586
libmambapy 2.0.4alpha1 (November 12, 2024)
==========================================
# libmambapy 2.0.4alpha1 (November 12, 2024)
Bug fixes:
- fixed incorrect syntax in static_build.yml by @Klaim in https://github.com/mamba-org/mamba/pull/3592
libmambapy 2.0.4alpha0 (November 12, 2024)
==========================================
# libmambapy 2.0.4alpha0 (November 12, 2024)
libmambapy 2.0.3 (November 05, 2024)
====================================
# libmambapy 2.0.3 (November 05, 2024)
Enhancements:
@ -121,24 +110,19 @@ CI fixes and doc:
- dev: Remove the use of Taskfile by @jjerphan in https://github.com/mamba-org/mamba/pull/3544
- Upgraded CI to micromamba 2.0.2 by @JohanMabille in https://github.com/mamba-org/mamba/pull/3497
libmambapy 2.0.2 (October 02, 2024)
===================================
# libmambapy 2.0.2 (October 02, 2024)
CI fixes and doc:
- Rollback to micromamba 1.5.10 in CI by @JohanMabille in https://github.com/mamba-org/mamba/pull/3491
libmambapy 2.0.1 (September 30, 2024)
=====================================
# libmambapy 2.0.1 (September 30, 2024)
CI fixes and doc:
- doc: add github links to documentation by @timhoffm in https://github.com/mamba-org/mamba/pull/3471
libmambapy 2.0.0 (September 25, 2024)
=====================================
# libmambapy 2.0.0 (September 25, 2024)
Enhancements:
@ -266,17 +250,14 @@ CI fixes and doc:
- update readme install link by @artifical-agent in https://github.com/mamba-org/mamba/pull/2980
- Fail fast except on debug runs by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2985
libmambapy 2.0.0rc6 (September 20, 2024)
========================================
# libmambapy 2.0.0rc6 (September 20, 2024)
CI fixes and doc:
- Fix wrong version of miniforge in doc by @Hind-M in https://github.com/mamba-org/mamba/pull/3462
- Remove cctools patch removal in CI by @Hind-M in https://github.com/mamba-org/mamba/pull/3451
libmambapy 2.0.0rc5 (September 13, 2024)
========================================
# libmambapy 2.0.0rc5 (September 13, 2024)
Enhancements:
@ -291,12 +272,9 @@ CI fixes and doc:
- docs: Specify `CMAKE_INSTALL_PREFIX` by @jjerphan in https://github.com/mamba-org/mamba/pull/3438
libmambapy 2.0.0rc4 (August 29, 2024)
=====================================
# libmambapy 2.0.0rc4 (August 29, 2024)
libmambapy 2.0.0rc3 (August 26, 2024)
=====================================
# libmambapy 2.0.0rc3 (August 26, 2024)
Bug fixes:
@ -307,8 +285,7 @@ CI fixes and doc:
- docs: Adapt "Solving Package Environments" section by @jjerphan in https://github.com/mamba-org/mamba/pull/3326
libmambapy 2.0.0rc2 (August 19, 2024)
=====================================
# libmambapy 2.0.0rc2 (August 19, 2024)
Enhancements:
@ -321,26 +298,20 @@ CI fixes and doc:
- Unpin cryptography, python, and add make to environment-dev.yml by @jaimergp in https://github.com/mamba-org/mamba/pull/3352
- ci: Unpin libcxx <18 by @jjerphan in https://github.com/mamba-org/mamba/pull/3375
libmambapy 2.0.0rc1 (July 26, 2024)
===================================
# libmambapy 2.0.0rc1 (July 26, 2024)
CI fixes and doc:
- chore(ci): bump github action versions by @corneliusroemer in https://github.com/mamba-org/mamba/pull/3350
- doc(more_concepts.rst): improve clarity by @corneliusroemer in https://github.com/mamba-org/mamba/pull/3357
libmambapy 2.0.0rc0 (July 08, 2024)
===================================
# libmambapy 2.0.0rc0 (July 08, 2024)
Bug fixes:
- Split `ContextOptions::enable_logging_and_signal_handling` into 2 different options by @Klaim in https://github.com/mamba-org/mamba/pull/3329
libmambapy 2.0.0beta3 (June 14, 2024)
=====================================
# libmambapy 2.0.0beta3 (June 14, 2024)
Bug fixes:
@ -351,15 +322,13 @@ CI fixes and doc:
- Fix CI failure on win-64 by @Hind-M in https://github.com/mamba-org/mamba/pull/3315
libmambapy 2.0.0beta2 (May 29, 2024)
====================================
# libmambapy 2.0.0beta2 (May 29, 2024)
Enhancements:
- Add checking typos to pre-commit by @Hind-M in https://github.com/mamba-org/mamba/pull/3278
libmambapy 2.0.0beta1 (May 04, 2024)
====================================
# libmambapy 2.0.0beta1 (May 04, 2024)
Enhancements:
@ -388,8 +357,7 @@ CI fixes and doc:
- Typos in dev_environment.rst by @jd-foster in https://github.com/mamba-org/mamba/pull/3235
- Add MatchSpec doc and fix errors by @AntoinePrv in https://github.com/mamba-org/mamba/pull/3224
libmambapy 2.0.0beta0 (April 04, 2024)
======================================
# libmambapy 2.0.0beta0 (April 04, 2024)
Enhancements:
@ -405,8 +373,7 @@ CI fixes and doc:
- Small changelog additions by @AntoinePrv in https://github.com/mamba-org/mamba/pull/3254
libmambapy 2.0.0alpha4 (March 26, 2024)
=======================================
# libmambapy 2.0.0alpha4 (March 26, 2024)
Enhancements:
@ -428,8 +395,7 @@ CI fixes and doc:
- Typos in dev_environment.rst by @jd-foster in https://github.com/mamba-org/mamba/pull/3235
- Add MatchSpec doc and fix errors by @AntoinePrv in https://github.com/mamba-org/mamba/pull/3224
libmambapy 2.0.0alpha3 (February 28, 2024)
==========================================
# libmambapy 2.0.0alpha3 (February 28, 2024)
Enhancements:
@ -445,8 +411,7 @@ Enhancements:
CI fixes and doc:
libmambapy 2.0.0alpha2 (February 02, 2024)
==========================================
# libmambapy 2.0.0alpha2 (February 02, 2024)
Enhancements:
@ -489,8 +454,7 @@ CI fixes and doc:
- Warning around manual install and add ref to conda-libmamba by @AntoinePrv in https://github.com/mamba-org/mamba/pull/3119
- Add MacOS DNS issue logging by @AntoinePrv in https://github.com/mamba-org/mamba/pull/3130
libmambapy 2.0.0alpha1 (December 18, 2023)
==========================================
# libmambapy 2.0.0alpha1 (December 18, 2023)
Bug fixes:
@ -500,8 +464,7 @@ CI fixes and doc:
- Add CI merge groups by @AntoinePrv in https://github.com/mamba-org/mamba/pull/3068
libmambapy 2.0.0alpha0 (December 14, 2023)
==========================================
# libmambapy 2.0.0alpha0 (December 14, 2023)
Enhancements:
@ -545,8 +508,7 @@ CI fixes and doc:
- update readme install link by @artifical-agent in https://github.com/mamba-org/mamba/pull/2980
- Fail fast except on debug runs by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2985
libmambapy 2.0.0alpha0 (December 14, 2023)
==========================================
# libmambapy 2.0.0alpha0 (December 14, 2023)
Enhancements:
@ -590,8 +552,7 @@ CI fixes and doc:
- update readme install link by @artifical-agent in https://github.com/mamba-org/mamba/pull/2980
- Fail fast except on debug runs by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2985
libmambapy 1.5.1 (September 05, 2023)
=====================================
# libmambapy 1.5.1 (September 05, 2023)
Enhancements:
@ -602,8 +563,7 @@ CI fixes and doc:
- Splitted GHA workflow by @JohanMabille in https://github.com/mamba-org/mamba/pull/2779
- Use Release build mode in Windows CI by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2785
libmambapy 1.5.0 (August 24, 2023)
==================================
# libmambapy 1.5.0 (August 24, 2023)
Enhancements:
@ -615,16 +575,11 @@ CI fixes and doc:
- Ignore format changes in git blame by @jonashaag in https://github.com/mamba-org/mamba/pull/2690
- Add Debug build type by @Hind-M in https://github.com/mamba-org/mamba/pull/2762
libmambapy 1.4.9 (July 13, 2023)
================================
# libmambapy 1.4.9 (July 13, 2023)
# libmambapy 1.4.8 (July 11, 2023)
libmambapy 1.4.8 (July 11, 2023)
================================
libmambapy 1.4.7 (July 06, 2023)
================================
# libmambapy 1.4.7 (July 06, 2023)
Enhancements:
@ -636,16 +591,13 @@ CI fixes and doc:
- Fixup python-api docs slightly by @HaoZeke in https://github.com/mamba-org/mamba/pull/2285
libmambapy 1.4.6 (June 30, 2023)
================================
# libmambapy 1.4.6 (June 30, 2023)
Bug fixes:
- Fixed missing subdirs in mamba by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2632
libmambapy 1.4.5 (June 27, 2023)
================================
# libmambapy 1.4.5 (June 27, 2023)
Enhancements:
@ -670,21 +622,19 @@ CI fixes and doc:
- Switch to setup-micromamba by @pavelzw in https://github.com/mamba-org/mamba/pull/2610
- Fix broken ref directives in docs by @mfisher87 in https://github.com/mamba-org/mamba/pull/2620
libmambapy 1.4.4 (May 16, 2023)
===============================
# libmambapy 1.4.4 (May 16, 2023)
Bug fixes:
- Support future deprecated API for Context by @Hind-M in https://github.com/mamba-org/mamba/pull/2494
libmambapy 1.4.3 (May 15, 2023)
===============================
# libmambapy 1.4.3 (May 15, 2023)
Enhancements:
- Remove dead code / attribute by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2454
- Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2432
- Store PackageInfo::track\_features as a vector by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2478
- Store PackageInfo::track_features as a vector by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2478
- Resume Context structuring by @Hind-M in https://github.com/mamba-org/mamba/pull/2460
- Use libsolv wrappers in MPool and MRepo by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2453
@ -692,21 +642,16 @@ CI fixes and doc:
- Extend issue template by @jonashaag in https://github.com/mamba-org/mamba/pull/2310
libmambapy 1.4.2 (April 06, 2023)
=================================
# libmambapy 1.4.2 (April 06, 2023)
CI fixes and doc:
- Fixes typos by @nsoranzo in https://github.com/mamba-org/mamba/pull/2419
- Migrated to doctest by @JohanMabille in https://github.com/mamba-org/mamba/pull/2436
libmambapy 1.4.1 (March 28, 2023)
=================================
# libmambapy 1.4.1 (March 28, 2023)
libmambapy 1.4.0 (March 22, 2023)
=================================
# libmambapy 1.4.0 (March 22, 2023)
Enchancements:
@ -723,8 +668,7 @@ Bug fixes:
- Fixed repoquery output of mamba when query format is JSON by @JohanMabille in https://github.com/mamba-org/mamba/pull/2353
libmambapy 1.3.1 (February 09, 2023)
====================================
# libmambapy 1.3.1 (February 09, 2023)
A bugfix release for 1.3.0!
@ -734,8 +678,7 @@ Docs:
- - added biweekly meetings information to README by @JohanMabille in https://github.com/mamba-org/mamba/pull/2275
- - change docs to homebrew/core by @pavelzw in https://github.com/mamba-org/mamba/pull/2278
libmambapy 1.3.0 (February 03, 2023)
====================================
# libmambapy 1.3.0 (February 03, 2023)
Enhancements:
@ -747,8 +690,7 @@ CI fixes & docs:
- fix tests for pkg_cache by @wolfv in https://github.com/mamba-org/mamba/pull/2259
- Remove unused `get_tarball` function by @Hind-M in https://github.com/mamba-org/mamba/pull/2261
libmambapy 1.2.0 (January 16, 2023)
===================================
# libmambapy 1.2.0 (January 16, 2023)
This release contains some speed improvements: download repodata faster as zstd encoded files (configure using
`repodata_use_zst: true` in your `~/.mambarc` file). Also, `.conda` file extraction is now faster, a prefix
@ -770,8 +712,7 @@ CI fixes & docs:
- - Remove feedstock patches by @wolfv in #2216
- - Fixed static dependency order by @JohanMabille in #2201
libmambapy 1.1.0 (November 25, 2022)
====================================
# libmambapy 1.1.0 (November 25, 2022)
Some bugfixes for 1.0 and experimental release of the new solver messages
@ -781,8 +722,7 @@ Enhancements
- docs: Add warning to manual install instructions #2100
- docs: Consistently use curl for fetching files #2126
libmambapy 1.0.0 (November 01, 2022)
====================================
# libmambapy 1.0.0 (November 01, 2022)
Our biggest version number yet! Finally a 1.0 release :)
@ -808,20 +748,15 @@ Enhancements:
- better test isolation (thanks @AntoinePrv) #1903
- Test special characters in basic auth (thanks @jonashaag) #2012
libmambapy 0.27.0 (October 04, 2022)
====================================
# libmambapy 0.27.0 (October 04, 2022)
Bug fixes:
- make compilation with external fmt library work #1987
libmambapy 0.26.0 (September 30, 2022)
======================================
libmambapy 0.25.0 (July 26, 2022)
=================================
# libmambapy 0.26.0 (September 30, 2022)
# libmambapy 0.25.0 (July 26, 2022)
Enhancements:
@ -833,27 +768,22 @@ Enhancements:
- Add utilities for better error reporting and refactor Queue #1789
- Test improvements (thanks @AntoinePrv) #1777, #1778
libmambapy 0.24.0 (June 01, 2022)
=================================
# libmambapy 0.24.0 (June 01, 2022)
libmambapy 0.23.3 (May 20, 2022)
================================
# libmambapy 0.23.3 (May 20, 2022)
Bug fixes
- fix curl callback to not exit anymore but report a proper error #1684
libmambapy 0.23.1 (May 11, 2022)
================================
# libmambapy 0.23.1 (May 11, 2022)
Bug fixes
- Fix thread clean up and singleton destruction order (thanks @Klaim) #1666, #1620
- Show reason for multi-download failure (thanks @syslaila) #1652
libmambapy 0.23.0 (April 21, 2022)
==================================
# libmambapy 0.23.0 (April 21, 2022)
This release uses tl::expected for some improvements in the error handling.
We also cleaned the API a bit and did some refactorings to make the code compile faster and clean up headers.
@ -868,25 +798,15 @@ Enhancements
- Add structured problem extraction #1570, #1566
- Add API to remove repo from pool
libmambapy 0.22.1 (February 28, 2022)
=====================================
# libmambapy 0.22.1 (February 28, 2022)
# libmambapy 0.22.0 (February 25, 2022)
libmambapy 0.22.0 (February 25, 2022)
=====================================
# libmambapy 0.21.2 (February 14, 2022)
# libmambapy 0.21.1 (February 11, 2022)
libmambapy 0.21.2 (February 14, 2022)
=====================================
libmambapy 0.21.1 (February 11, 2022)
=====================================
libmambapy 0.21.0 (February 07, 2022)
=====================================
# libmambapy 0.21.0 (February 07, 2022)
Improvements
@ -894,16 +814,11 @@ Improvements
- Use clang-format from pypi (thanks @chrisburr) #1430
- Incremental ccache updates (thanks @jonashaag) #1445
libmambapy 0.20.0 (January 25, 2022)
====================================
# libmambapy 0.20.0 (January 25, 2022)
# libmambapy 0.19.1 (December 08, 2021)
libmambapy 0.19.1 (December 08, 2021)
=====================================
libmambapy 0.19.0 (November 30, 2021)
=====================================
# libmambapy 0.19.0 (November 30, 2021)
Bug fixes
@ -911,25 +826,22 @@ Bug fixes
- Solver has function to get more solver errors (@wolfv) #1310
- Remove libmamba from install_requires for libmambapy (@duncanmmacleod) #1303
libmambapy 0.18.2 (November 24, 2021)
=====================================
# libmambapy 0.18.2 (November 24, 2021)
0.18.1 (November 19, 2021)
==========================
# 0.18.1 (November 19, 2021)
Bug fixes
- Fix default log level, use warning everywhere (@adriendelsalle) #1279
- Allow mamba to set max extraction threads using `MAMBA_EXTRACT_THREADS` env var (@adriendelsalle) #1281
0.18.0 (November 17, 2021)
==========================
# 0.18.0 (November 17, 2021)
New features
- Create a separate target for Python bindings, split projects, improve CMake options (@adriendelsalle) #1219 #1243
0.17.0 (October 13, 2021)
=========================
# 0.17.0 (October 13, 2021)
API Breaking changes:
@ -948,8 +860,7 @@ packages dir is necessary, this value is taken directly from the MultiPackagesCa
- micromamba: expose setting for `add_pip_as_python_dependency` #1203
- stop displaying banner when running `mamba list` #1184 (thanks @madhur-thandon)
0.16.0 (September 27, 2021)
===========================
# 0.16.0 (September 27, 2021)
- Add a User-Agent header to all requests (mamba/0.16.0) (thanks @shankerwangmiao)
- Add `micromamba env export (--explicit)` to micromamba
@ -965,8 +876,7 @@ packages dir is necessary, this value is taken directly from the MultiPackagesCa
- Add constraint with pin when updating
- Expose methods for virtual packages to Python (thanks @madhur-tandon)
0.15.3 (August 18, 2021)
========================
# 0.15.3 (August 18, 2021)
- change token regex to work with edge-cases (underscores in user name) (#1122)
- only pin major.minor version of python for update --all (#1101, thanks @mparry!)
@ -977,34 +887,34 @@ packages dir is necessary, this value is taken directly from the MultiPackagesCa
- Add mamba.bat in front of PATH (#1112, thanks @isuruf)
- Fix mamba not writable cache errors (#1108)
0.15.2 (July 16, 2021)
======================
# 0.15.2 (July 16, 2021)
- micromamba autocomplete now ready for usage (#1091)
- improved file:// urls for windows to properly work (#1090)
0.15.1 (July 15, 2021)
======================
# 0.15.1 (July 15, 2021)
New features:
- add `mamba init` command and add mamba.sh (#1075, thanks @isuruf & #1078)
- add flexible channel priority option in micromamba CLI (#1087)
- improved autocompletion for micromamba (#1079)
Bug fixes:
- improve "file://" URL handling, fix local channel on Windows (#1085)
- fix CONDA_SUBDIR not being used in mamba (#1084)
- pass in channel_alias and custom_channels from conda to mamba (#1081)
0.15.0 (July 9, 2021)
=====================
# 0.15.0 (July 9, 2021)
Big changes:
- improve solutions by inspecting dependency versions as well (libsolv PR:
https://github.com/openSUSE/libsolv/pull/457) @wolfv
- properly implement strict channel priority (libsolv PR:
https://github.com/openSUSE/libsolv/pull/459) @adriendelsalle
+ Note that this changes the meaning of strict and flexible priority as the
- Note that this changes the meaning of strict and flexible priority as the
previous implementation did not follow conda's semantics. Mamba now has
three modes, just like conda: strict, flexible and disabled. Strict will
completely disregard any packages from lower-priority channels if a
@ -1021,6 +931,7 @@ Big changes:
Thanks for the contribution, @afranchuk! #1033
New features
- remove orphaned packages such as dependencies of explicitely installed
packages (@adriendelsalle) #1040
- add a diff character before package name in transaction table to improve
@ -1033,30 +944,31 @@ New features
- add docs for package resolution
Bug fixes:
- Fix small output issues (#1060)
- More descriptive incorrect download error (thanks @AntoinePrv) #1066
- respect channel specific pins when updating (#1045)
- keep track features in PackageInfo class (#1046)
0.14.1 (June 25, 2021)
======================
# 0.14.1 (June 25, 2021)
New features
- [micromamba] add remove command, to remove keys of vectors (@marimeireles)
#1011
Bug fixes
- [micromamba] fixed in config prepend and append sequence (@adriendelsalle)
#1023
- fix bug when username has @ (@madhur-tandon) #1025
- fix wrong update spec in history (@madhur-tandon) #1028
- [mamba] silent pinned packages using JSON output (@adriendelsalle) #1031
0.14.0 (June 16, 2021)
======================
# 0.14.0 (June 16, 2021)
New features
- [micromamba] add `config set`, `get`, `append` and `prepend`, `remove`
(@marimeireles) #838
- automatically include `pip` in conda dependencies when having pip packages to
@ -1074,6 +986,7 @@ New features
- [micromamba] Use a proper requirements.txt file for pip installations #1008
Bug fixes
- fix double-print int transaction (@JohanMabille) #952
- fix strip function (@wolfv) #974
- [micromamba] expand home directory in `--rc-file` (@adriendelsalle) #979
@ -1082,64 +995,70 @@ Bug fixes
- fix long paths support on Windows (@adriendelsalle) #994
General improvement
- remove duplicate snippet (@madhur-tandon) #957
- add `trace` log level (@adriendelsalle) #988
Docs
- concepts, user guide, configuration, update installation and build locally
(@adriendelsalle) #953
- advance usage section, linking (@adriendelsalle) #998
- repo, channel, subdir, repodata, tarball (@adriendelsalle) #1004
- artifacts verification (@adriendelsalle) #1000
0.13.1 (May 17, 2021)
=====================
# 0.13.1 (May 17, 2021)
Bug fixes
- [micromamba] pin only minor python version #948
- [micromamba] use openssl certs when not linking statically #949
0.13.0 (May 12, 2021)
=====================
# 0.13.0 (May 12, 2021)
New features
- [mamba & micromamba] aggregated progress bar for package downloading and
extraction (thanks @JohanMabille) #928
Bug fixes
- [micromamba] fixes for micromamba usage in constructor #935
- [micromamba] fixes for the usage of lock files #936
- [micromamba] switched from libsodium to openssl for ed25519 signature
verification #933
Docs
- Mention mambaforge in the README (thanks @s-pike) #932
0.12.3 (May 10, 2021)
=====================
# 0.12.3 (May 10, 2021)
New features
- [libmamba] add free-function to use an existing conda root prefix
(@adriendelsalle) #927
General improvements
- [micromamba] fix a typo in documentation (@cjber) #926
0.12.2 (May 03, 2021)
=====================
# 0.12.2 (May 03, 2021)
New features
- [micromamba] add initial framework for TUF validation (@adriendelsalle) #916
#919
- [micromamba] add channels from specs to download (@wolfv) #918
0.12.1 (Apr 30, 2021)
=====================
# 0.12.1 (Apr 30, 2021)
New features
- [micromamba] env list subcommand (@wolfv) #913
Bug fixes
- [micromamba] fix multiple shell init with cmd.exe (@adriendelsalle) #915
- [micromamba] fix activate with --stack option (@wolfv) #914
- [libmamba] only try loading ssl certificates when needed (@adriendelsalle)
@ -1149,15 +1068,16 @@ Bug fixes
- [micromamba] allow 'ultra-dry' config checks in final build (@adriendelsalle)
#912
0.12.0 (Apr 26, 2021)
=====================
# 0.12.0 (Apr 26, 2021)
New features
- [libmamba] add experimental shell autocompletion (@wolfv) #900
- [libmamba] add token handling (@wolfv) #886
- [libmamba] add experimental pip support in spec files (@wolfv) #885
Bug fixes
- [libmamba] ignore failing pyc compilation for noarch packages (@wolfv) #904
#905
- [libmamba] fix string wrapping in error message (@bdice) #902
@ -1168,6 +1088,7 @@ Bug fixes
- [mamba] fix `env update` command (@ScottWales) #891
General improvements
- [libmamba] use lockfile, fix channel not loaded logic (@wolfv) #903
- [libmamba] make root_prefix warnings more selective (@adriendelsalle) #899
- [libmamba] house-keeping in python tests (@adriendelsalle) #898
@ -1176,8 +1097,7 @@ General improvements
- [libmamba] deactivate ca-certificates search when using offline mode
(@adriendelsalle) #893
0.11.3 (Apr 21, 2021)
====================
# 0.11.3 (Apr 21, 2021)
- [libmamba] make platform rc configurable #883
- [libmamba] expand user home in target and root prefixes #882
@ -1187,21 +1107,18 @@ General improvements
- [micromamba] fix `clean` flags handling #880
- [libmamba] C-API teardown on error #879
0.11.2 (Apr 21, 2021)
====================
# 0.11.2 (Apr 21, 2021)
- [libmamba] create "base" env only for install operation #875
- [libmamba] remove confirmation prompt of root_prefix in shell init #874
- [libmamba] improve overrides between target_prefix and env_name #873
- [micromamba] fix use of `-p,--prefix` and spec file env name #873
0.11.1 (Apr 20, 2021)
====================
# 0.11.1 (Apr 20, 2021)
- [libmamba] fix channel_priority computation #872
0.11.0 (Apr 20, 2021)
====================
# 0.11.0 (Apr 20, 2021)
- [libmamba] add experimental mode that unlock edge features #858
- [micromamba] add `--experimental` umamba flag to enable experimental mode
@ -1222,8 +1139,7 @@ General improvements
API #866
- [libmamba] add capapbility to set CLI config from C-API #867
0.10.0 (Apr 16, 2021)
====================
# 0.10.0 (Apr 16, 2021)
- [micromamba] allow creation of empty env (without specs) #824 #827
- [micromamba] automatically create empy `base` env at new root prefix #836
@ -1250,8 +1166,7 @@ General improvements
- fix CI C++ tests (unix/libmamba) and Python tests (win/mamba) wrongly
successful #853
0.9.2 (Apr 1, 2021)
====================
# 0.9.2 (Apr 1, 2021)
- [micromamba] fix unc url support (thanks @adament)
- [micromamba] add --channel-alias as cli option to micromamba (thanks
@ -1262,15 +1177,13 @@ General improvements
- add simple context debugging, dry run tests and other test framework
improvements
0.9.1 (Mar 26, 2021)
====================
# 0.9.1 (Mar 26, 2021)
- [micromamba] fix remove command target_prefix selection
- [micromamba] improve target_prefix fallback for CLI, add tests (thanks
@adriendelsalle)
0.9.0 (Mar 25, 2021)
====================
# 0.9.0 (Mar 25, 2021)
- [micromamba] use strict channels priority by default
- [micromamba] change config precedence order: API>CLI>ENV>RC
@ -1283,15 +1196,12 @@ General improvements
- add pinned specs for env update (thanks @wolfv)
- properly adhere to run_constrains (thanks @wolfv)
0.8.2 (Mar 12, 2021)
====================
# 0.8.2 (Mar 12, 2021)
- [micromamba] fix setting network options before explicit spec installation
- [micromamba] fix python based tests for windows
0.8.1 (Mar 11, 2021)
====================
# 0.8.1 (Mar 11, 2021)
- use stoull (instead of stoi) to prevent overflow with long package build
numbers (thanks @pbauwens-kbc)
@ -1305,9 +1215,7 @@ General improvements
- [micromamba] libsolv log messages to stderr (thanks @mariusvniekerk)
- [micromamba] better curl error messages
0.8.0 (Mar 5, 2021)
===================
# 0.8.0 (Mar 5, 2021)
- [micromamba] condarc and mambarc config file reading (and config subcommand)
(thanks @adriendelsalle)
@ -1333,9 +1241,7 @@ General improvements
- [micromamba] compare cleaned URLs for cache invalidation
- [micromamba] add regex handling to list command
0.7.14 (Feb 12, 2021)
=====================
# 0.7.14 (Feb 12, 2021)
- [micromamba] better validation of extracted directories
- [mamba] add additional tests for authentication and simple repodata server
@ -1345,14 +1251,11 @@ General improvements
- [micromamba] add clean functionality
- [micromamba] always make target prefix path absolute
0.7.13 (Feb 4, 2021)
====================
# 0.7.13 (Feb 4, 2021)
- [micromamba] Immediately exit after printing version (again)
0.7.12 (Feb 3, 2021)
====================
# 0.7.12 (Feb 3, 2021)
- [micromamba] Improve CTRL+C signal handling behavior and simplify code
- [micromamba] Revert extraction to temporary directory because of invalid
@ -1360,8 +1263,7 @@ General improvements
- [micromamba] Clean up partially extracted archives when CTRL+C interruption
occured
0.7.11 (Feb 2, 2021)
====================
# 0.7.11 (Feb 2, 2021)
- [micromamba] use wrapped call when compiling noarch Python code, which
properly calls chcp for Windows
@ -1370,58 +1272,49 @@ General improvements
- first extract to temporary directory, then move to final pkgs cache to
prevent corrupted extracted data
0.7.10 (Jan 22, 2021)
====================
# 0.7.10 (Jan 22, 2021)
- [micromamba] properly fix PATH when linking, prevents missing
vcruntime140.dll
- [mamba] add virtual packages when creating any environment, not just on
update (thanks @cbalioglu)
0.7.9 (Jan 19, 2021)
====================
# 0.7.9 (Jan 19, 2021)
- [micromamba] fix PATH when linking
0.7.8 (Jan 14, 2021)
====================
# 0.7.8 (Jan 14, 2021)
- [micromamba] retry on corrupted repodata
- [mamba & micromamba] fix error handling when writing repodata
0.7.6 (Dec 22, 2020)
====================
# 0.7.6 (Dec 22, 2020)
- [micromamba] more console flushing for std::cout consumers
0.7.6 (Dec 14, 2020)
====================
# 0.7.6 (Dec 14, 2020)
- [mamba] more arguments for repodata.create_pool
0.7.5 (Dec 10, 2020)
====================
# 0.7.5 (Dec 10, 2020)
- [micromamba] better error handling for YAML file reading, allows to pass in
`-n` and `-p` from command line
- [mamba & micromamba] ignore case of HTTP headers
- [mamba] fix channel keys are without tokens (thanks @s22chan)
0.7.4 (Dec 5, 2020)
====================
# 0.7.4 (Dec 5, 2020)
- [micromamba] fix noarch installation for explicit environments
0.7.3 (Nov 20, 2020)
====================
# 0.7.3 (Nov 20, 2020)
- [micromamba] fix installation of noarch files with long prefixes
- [micromamba] fix activation on windows with whitespaces in root prefix
(thanks @adriendelsalle)
- [micromamba] add `--json` output to micromamba list
0.7.2 (Nov 18, 2020)
====================
# 0.7.2 (Nov 18, 2020)
- [micromamba] explicit specs installing should be better now
- empty lines are ignored
@ -1430,13 +1323,11 @@ General improvements
- Fix symlink packing for mamba package creation and transmute
- Do not keep tempfiles around
0.7.1 (Nov 16, 2020)
====================
# 0.7.1 (Nov 16, 2020)
- Handle LIBARCHIVE_WARN to not error, instead print warning (thanks @obilaniu)
0.7.0 (Nov 12, 2020)
====================
# 0.7.0 (Nov 12, 2020)
- Improve activation and deactivation logic for micromamba
- Switching `subprocess` implementation to more tested `reproc++`
@ -1450,7 +1341,6 @@ General improvements
- Fix compile time warning (thanks @obilaniu)
- Fixed wrong CondaValueError import statement in mamba.py (thanks @saraedum)
0.6.5 (Oct 2020)
================
# 0.6.5 (Oct 2020)
- Fix code signing for Apple Silicon (osx-arm64) @isuruf

View File

@ -2,4 +2,4 @@ version_info = ("{{ version_major }}", "{{ version_minor }}", "{{ version_patch
version_prerelease = "{{ version_prerelease_name }}"
__version__ = ".".join(map(str, version_info))
if version_prerelease != "":
__version__ = "{}.{}".format(__version__, version_prerelease)
__version__ = f"{__version__}.{version_prerelease}"

File diff suppressed because it is too large Load Diff

View File

@ -34,9 +34,7 @@
"B_0.1.0.tar.bz2": {
"build": "abc",
"build_number": 0,
"depends": [
"a"
],
"depends": ["a"],
"license": "BSD",
"license_family": "BSD",
"md5": "85107fc10154734ef34a5a75685be684",

View File

@ -34,9 +34,7 @@
"B_0.1.0.tar.bz2": {
"build": "abc",
"build_number": 0,
"depends": [
"a"
],
"depends": ["a"],
"license": "BSD",
"license_family": "BSD",
"md5": "85107fc10154734ef34a5a75685be684",

View File

@ -22,9 +22,7 @@
"run_exports": {},
"source_git_url": null,
"source_url": null,
"subdirs": [
"noarch"
],
"subdirs": ["noarch"],
"summary": "I am just a test package!",
"tags": null,
"text_prefix": false,
@ -32,7 +30,5 @@
"version": "0.1"
}
},
"subdirs": [
"noarch"
]
"subdirs": ["noarch"]
}

View File

@ -1,27 +1,35 @@
<html>
<head>
<head>
<title>repo</title>
<style type="text/css">
a, a:active {
text-decoration: none; color: blue;
a,
a:active {
text-decoration: none;
color: blue;
}
a:visited {
color: #48468F;
color: #48468f;
}
a:hover, a:focus {
text-decoration: underline; color: red;
a:hover,
a:focus {
text-decoration: underline;
color: red;
}
body {
background-color: #F5F5F5;
background-color: #f5f5f5;
}
h2 {
margin-bottom: 12px;
}
th, td {
font: 100% monospace; text-align: left;
th,
td {
font: 100% monospace;
text-align: left;
}
th {
font-weight: bold; padding-right: 14px; padding-bottom: 3px;
font-weight: bold;
padding-right: 14px;
padding-bottom: 3px;
}
th.tight {
padding-right: 6px;
@ -32,7 +40,8 @@
td.tight {
padding-right: 8px;
}
td.s, th.s {
td.s,
th.s {
text-align: right;
}
td.summary {
@ -64,27 +73,39 @@
padding-top: 10px;
}
</style>
</head>
<body>
</head>
<body>
<h2>repo</h2>
<h3><a href="rss.xml">RSS Feed</a>&nbsp;&nbsp;&nbsp;<a href="channeldata.json">channeldata.json</a></h3>
<a href="noarch">noarch</a>&nbsp;&nbsp;&nbsp; <table>
<h3>
<a href="rss.xml">RSS Feed</a>&nbsp;&nbsp;&nbsp;<a href="channeldata.json"
>channeldata.json</a
>
</h3>
<a href="noarch">noarch</a>&nbsp;&nbsp;&nbsp;
<table>
<tr>
<th style="padding-right:18px;">Package</th>
<th style="padding-right: 18px">Package</th>
<th>Latest Version</th>
<th>Doc</th>
<th>Dev</th>
<th>License</th>
<th class="tight">noarch</th> <th>Summary</th>
<th class="tight">noarch</th>
<th>Summary</th>
</tr>
<tr>
<td class="packagename"><a href="https://github.com/mamba-org/mamba" alt="test-package">test-package</a></td>
<td class="packagename">
<a href="https://github.com/mamba-org/mamba" alt="test-package"
>test-package</a
>
</td>
<td class="version">0.1</td>
<td></td>
<td></td>
<td class="tight">BSD</td>
<td>X</td> <td class="summary">I am just a test package!</td>
</tr> </table>
<td>X</td>
<td class="summary">I am just a test package!</td>
</tr>
</table>
<address>Updated: 2021-02-12 09:02:37 +0000 - Files: 1</address>
</body>
</body>
</html>

View File

@ -1,32 +1,41 @@
<html>
<head>
<head>
<title>repo/noarch</title>
<style type="text/css">
a, a:active {
text-decoration: none; color: blue;
a,
a:active {
text-decoration: none;
color: blue;
}
a:visited {
color: #48468F;
color: #48468f;
}
a:hover, a:focus {
text-decoration: underline; color: red;
a:hover,
a:focus {
text-decoration: underline;
color: red;
}
body {
background-color: #F5F5F5;
background-color: #f5f5f5;
}
h2 {
margin-bottom: 12px;
}
th, td {
font: 100% monospace; text-align: left;
th,
td {
font: 100% monospace;
text-align: left;
}
th {
font-weight: bold; padding-right: 14px; padding-bottom: 3px;
font-weight: bold;
padding-right: 14px;
padding-bottom: 3px;
}
td {
padding-right: 20px;
}
td.s, th.s {
td.s,
th.s {
text-align: right;
}
table {
@ -41,8 +50,8 @@
padding-top: 10px;
}
</style>
</head>
<body>
</head>
<body>
<h2>repo/noarch</h2>
<table>
<tr>
@ -56,33 +65,68 @@
<td><a href="repodata.json" alt="repodata.json">repodata.json</a></td>
<td class="s">586 B</td>
<td>2021-02-12 09:01:48 +0000</td>
<td>cc5f72aaa8d3f508c8adca196fe05cf4b19e1ca1006cfcbb3892d73160bd3b04</td>
<td>
cc5f72aaa8d3f508c8adca196fe05cf4b19e1ca1006cfcbb3892d73160bd3b04
</td>
<td>7501ec77771889b42a39c615158cb9c4</td>
</tr> <tr>
<td><a href="repodata.json.bz2" alt="repodata.json.bz2">repodata.json.bz2</a></td>
</tr>
<tr>
<td>
<a href="repodata.json.bz2" alt="repodata.json.bz2"
>repodata.json.bz2</a
>
</td>
<td class="s">351 B</td>
<td>2021-02-12 09:01:48 +0000</td>
<td>9a0288ca48c6b8caa348d7cafefd0981c2d25dcb4a5837a5187ab200b8b9fb45</td>
<td>
9a0288ca48c6b8caa348d7cafefd0981c2d25dcb4a5837a5187ab200b8b9fb45
</td>
<td>0c926155642f0e894d97dc8a5af7007b</td>
</tr> <tr>
<td><a href="repodata_from_packages.json" alt="repodata_from_packages.json">repodata_from_packages.json</a></td>
</tr>
<tr>
<td>
<a
href="repodata_from_packages.json"
alt="repodata_from_packages.json"
>repodata_from_packages.json</a
>
</td>
<td class="s">586 B</td>
<td>2021-02-12 09:01:48 +0000</td>
<td>cc5f72aaa8d3f508c8adca196fe05cf4b19e1ca1006cfcbb3892d73160bd3b04</td>
<td>
cc5f72aaa8d3f508c8adca196fe05cf4b19e1ca1006cfcbb3892d73160bd3b04
</td>
<td>7501ec77771889b42a39c615158cb9c4</td>
</tr> <tr>
<td><a href="repodata_from_packages.json.bz2" alt="repodata_from_packages.json.bz2">repodata_from_packages.json.bz2</a></td>
</tr>
<tr>
<td>
<a
href="repodata_from_packages.json.bz2"
alt="repodata_from_packages.json.bz2"
>repodata_from_packages.json.bz2</a
>
</td>
<td class="s">351 B</td>
<td>2021-02-12 09:01:48 +0000</td>
<td>9a0288ca48c6b8caa348d7cafefd0981c2d25dcb4a5837a5187ab200b8b9fb45</td>
<td>
9a0288ca48c6b8caa348d7cafefd0981c2d25dcb4a5837a5187ab200b8b9fb45
</td>
<td>0c926155642f0e894d97dc8a5af7007b</td>
</tr> <tr>
<td><a href="test-package-0.1-0.tar.bz2" alt="test-package-0.1-0.tar.bz2">test-package-0.1-0.tar.bz2</a></td>
</tr>
<tr>
<td>
<a href="test-package-0.1-0.tar.bz2" alt="test-package-0.1-0.tar.bz2"
>test-package-0.1-0.tar.bz2</a
>
</td>
<td class="s">6 KB</td>
<td>2021-02-12 08:08:14 +0000</td>
<td>b908ffce2d26d94c58c968abf286568d4bcf87d1cfe6c994958351724a6f6988</td>
<td>
b908ffce2d26d94c58c968abf286568d4bcf87d1cfe6c994958351724a6f6988
</td>
<td>2a8595f37faa2950e1b433acbe91d481</td>
</tr> </table>
</tr>
</table>
<address>Updated: 2021-02-12 09:02:37 +0000 - Files: 1</address>
</body>
</body>
</html>

View File

@ -34,9 +34,7 @@
"B_0.1.0.tar.bz2": {
"build": "abc",
"build_number": 0,
"depends": [
"a"
],
"depends": ["a"],
"license": "BSD",
"license_family": "BSD",
"md5": "85107fc10154734ef34a5a75685be684",

View File

@ -34,9 +34,7 @@
"B_0.1.0.tar.bz2": {
"build": "abc",
"build_number": 0,
"depends": [
"a"
],
"depends": ["a"],
"license": "BSD",
"license_family": "BSD",
"md5": "85107fc10154734ef34a5a75685be684",

View File

@ -1,8 +1,8 @@
name: test env with spaces
channels:
- conda-forge
- conda-forge
dependencies:
- python=3.9
- pip
- pip:
- python=3.9
- pip
- pip:
- pydantic

View File

@ -1,8 +1,8 @@
name: test_env
channels:
- conda-forge
- conda-forge
dependencies:
- python=3.9
- pip
- pip:
- python=3.9
- pip
- pip:
- pydantic

File diff suppressed because it is too large Load Diff

View File

@ -21,7 +21,7 @@ metadata:
sources:
- /home/mares/repos/floornumber-prediction/test/environment.yml
package:
- category: main
- category: main
dependencies: {}
hash:
md5: d7c89558ba9fa0495403155b64376d81
@ -31,8 +31,8 @@ package:
optional: false
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
version: '0.1'
- category: main
version: "0.1"
- category: main
dependencies: {}
hash:
md5: c320890f77fd1d617fa876e0982002c2
@ -43,7 +43,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/ca-certificates-2022.6.15-ha878542_0.tar.bz2
version: 2022.6.15
- category: main
- category: main
dependencies: {}
hash:
md5: bd4f2e711b39af170e7ff15163fe87ee
@ -54,7 +54,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.36.1-hea4e1c9_2.tar.bz2
version: 2.36.1
- category: main
- category: main
dependencies: {}
hash:
md5: b02605b875559ff99f04351fd5040760
@ -65,7 +65,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran5-12.1.0-hdcd56e2_16.tar.bz2
version: 12.1.0
- category: main
- category: main
dependencies: {}
hash:
md5: 6f5ba041a41eb102a1027d9e68731be7
@ -76,7 +76,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libstdcxx-ng-12.1.0-ha89aaad_16.tar.bz2
version: 12.1.0
- category: main
- category: main
dependencies: {}
hash:
md5: a56386ad31a7322940dd7d03fb3a9979
@ -87,7 +87,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/tzdata-2022c-h191b570_0.tar.bz2
version: 2022c
- category: main
- category: main
dependencies:
libgfortran5: 12.1.0 hdcd56e2_16
hash:
@ -99,7 +99,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgfortran-ng-12.1.0-h69a702a_16.tar.bz2
version: 12.1.0
- category: main
- category: main
dependencies:
_libgcc_mutex: 0.1 conda_forge
hash:
@ -111,10 +111,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-12.1.0-h8d9b700_16.tar.bz2
version: 12.1.0
- category: main
- category: main
dependencies:
_libgcc_mutex: 0.1 conda_forge
libgomp: '>=7.5.0'
libgomp: ">=7.5.0"
hash:
md5: 73aaf86a425cc6e73fcf236a5a46396d
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
@ -123,11 +123,11 @@ package:
optional: false
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
version: '4.5'
- category: main
version: "4.5"
- category: main
dependencies:
_libgcc_mutex: 0.1 conda_forge
_openmp_mutex: '>=4.5'
_openmp_mutex: ">=4.5"
hash:
md5: 4f05bc9844f7c101e6e147dab3c88d5c
sha256: 2fde3d9f0199bf4f5447b35d3fd74d058c17ef2b6c68815eb1b469f2aec138b9
@ -137,9 +137,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-12.1.0-h8d9b700_16.tar.bz2
version: 12.1.0
- category: main
- category: main
dependencies:
libgcc-ng: '>=9.3.0'
libgcc-ng: ">=9.3.0"
hash:
md5: a1fd65c7ccbf10880423d82bca54eb54
sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa
@ -149,9 +149,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h7f98852_4.tar.bz2
version: 1.0.8
- category: main
- category: main
dependencies:
libgcc-ng: '>=9.4.0'
libgcc-ng: ">=9.4.0"
hash:
md5: d645c6d2ac96843a2bfaccd2d62b3ac3
sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
@ -161,9 +161,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
version: 3.4.2
- category: main
- category: main
dependencies:
libgcc-ng: '>=9.4.0'
libgcc-ng: ">=9.4.0"
hash:
md5: 39b1328babf85c7c3a61636d9cd50206
sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad
@ -173,11 +173,11 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libnsl-2.0.0-h7f98852_0.tar.bz2
version: 2.0.0
- category: main
- category: main
dependencies:
libgcc-ng: '>=12'
libgfortran-ng: ''
libgfortran5: '>=10.4.0'
libgcc-ng: ">=12"
libgfortran-ng: ""
libgfortran5: ">=10.4.0"
hash:
md5: 839776c4e967bc881c21da197127a3ae
sha256: 64cc1937eece9d0922de2b25f3ca2c4d5ac49fc33a4915a5b445bce08f3b6716
@ -187,9 +187,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libopenblas-0.3.21-pthreads_h78a6416_2.tar.bz2
version: 0.3.21
- category: main
- category: main
dependencies:
libgcc-ng: '>=9.3.0'
libgcc-ng: ">=9.3.0"
hash:
md5: 772d69f030955d9646d3d0eaf21d859d
sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3
@ -199,9 +199,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.32.1-h7f98852_1000.tar.bz2
version: 2.32.1
- category: main
- category: main
dependencies:
libgcc-ng: '>=12'
libgcc-ng: ">=12"
hash:
md5: 8302381297332ea50532cf2c67961080
sha256: 38cf13bff23409683f2da6b0ee156d964f40e6c3dabcee626e0a118e37ab02e4
@ -211,9 +211,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.12-h166bdaf_2.tar.bz2
version: 1.2.12
- category: main
- category: main
dependencies:
libgcc-ng: '>=10.3.0'
libgcc-ng: ">=10.3.0"
hash:
md5: 4acfc691e64342b9dae57cf2adc63238
sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065
@ -222,11 +222,11 @@ package:
optional: false
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2
version: '6.3'
- category: main
version: "6.3"
- category: main
dependencies:
ca-certificates: ''
libgcc-ng: '>=12'
ca-certificates: ""
libgcc-ng: ">=12"
hash:
md5: 5302986dcd5fb4bb1f390159eb66757a
sha256: 5f207c1ae5d49e205e0b883c1b7db7c4e9581973a7eb19c12724a221cec169bb
@ -236,9 +236,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.0.5-h166bdaf_1.tar.bz2
version: 3.0.5
- category: main
- category: main
dependencies:
libgcc-ng: '>=12'
libgcc-ng: ">=12"
hash:
md5: 2161070d867d1b1204ea749c8eec4ef0
sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
@ -248,9 +248,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
version: 5.2.6
- category: main
- category: main
dependencies:
libgcc-ng: '>=9.4.0'
libgcc-ng: ">=9.4.0"
hash:
md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae
sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535
@ -260,9 +260,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/yaml-0.2.5-h7f98852_2.tar.bz2
version: 0.2.5
- category: main
- category: main
dependencies:
libopenblas: '>=0.3.21,<1.0a0'
libopenblas: ">=0.3.21,<1.0a0"
hash:
md5: d9b7a8639171f6c6fa0a983edabcfe2b
sha256: 4e4c60d3fe0b95ffb25911dace509e3532979f5deef4364141c533c5ca82dd39
@ -272,10 +272,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libblas-3.9.0-16_linux64_openblas.tar.bz2
version: 3.9.0
- category: main
- category: main
dependencies:
libgcc-ng: '>=12'
libzlib: '>=1.2.12,<1.3.0a0'
libgcc-ng: ">=12"
libzlib: ">=1.2.12,<1.3.0a0"
hash:
md5: 90136dc0a305db4e1df24945d431457b
sha256: 9f160517d6e660002a660cb041312f8846ef5ff2acea4dde85fd2f76fd859cdb
@ -285,10 +285,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.39.2-h753d276_1.tar.bz2
version: 3.39.2
- category: main
- category: main
dependencies:
libgcc-ng: '>=12'
ncurses: '>=6.3,<7.0a0'
libgcc-ng: ">=12"
ncurses: ">=6.3,<7.0a0"
hash:
md5: db2ebbe2943aae81ed051a6a9af8e0fa
sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8
@ -298,10 +298,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.1.2-h0f457ee_0.tar.bz2
version: 8.1.2
- category: main
- category: main
dependencies:
libgcc-ng: '>=9.4.0'
libzlib: '>=1.2.11,<1.3.0a0'
libgcc-ng: ">=9.4.0"
libzlib: ">=1.2.11,<1.3.0a0"
hash:
md5: 5b8c42eb62e9fc961af70bdd6a26e168
sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0
@ -311,7 +311,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.12-h27826a3_0.tar.bz2
version: 8.6.12
- category: main
- category: main
dependencies:
libblas: 3.9.0 16_linux64_openblas
hash:
@ -323,7 +323,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libcblas-3.9.0-16_linux64_openblas.tar.bz2
version: 3.9.0
- category: main
- category: main
dependencies:
libblas: 3.9.0 16_linux64_openblas
hash:
@ -335,13 +335,13 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/liblapack-3.9.0-16_linux64_openblas.tar.bz2
version: 3.9.0
- category: main
- category: main
dependencies:
libgcc-ng: '>=12'
libgcc-ng: ">=12"
libsqlite: 3.39.2 h753d276_1
libzlib: '>=1.2.12,<1.3.0a0'
ncurses: '>=6.3,<7.0a0'
readline: '>=8.1.2,<9.0a0'
libzlib: ">=1.2.12,<1.3.0a0"
ncurses: ">=6.3,<7.0a0"
readline: ">=8.1.2,<9.0a0"
hash:
md5: 2676ec698ce91567fca50654ac1b18ba
sha256: 33ff4e6ee0f323b9f2b763f887f80eea230e254ccfa5d9ab5af4e6d09da344d1
@ -351,22 +351,22 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/sqlite-3.39.2-h4ff8645_1.tar.bz2
version: 3.39.2
- category: main
- category: main
dependencies:
bzip2: '>=1.0.8,<2.0a0'
ld_impl_linux-64: '>=2.36.1'
libffi: '>=3.4.2,<3.5.0a0'
libgcc-ng: '>=12'
libnsl: '>=2.0.0,<2.1.0a0'
libuuid: '>=2.32.1,<3.0a0'
libzlib: '>=1.2.11,<1.3.0a0'
ncurses: '>=6.3,<7.0a0'
openssl: '>=3.0.3,<4.0a0'
readline: '>=8.1,<9.0a0'
sqlite: '>=3.38.5,<4.0a0'
tk: '>=8.6.12,<8.7.0a0'
tzdata: ''
xz: '>=5.2.5,<5.3.0a0'
bzip2: ">=1.0.8,<2.0a0"
ld_impl_linux-64: ">=2.36.1"
libffi: ">=3.4.2,<3.5.0a0"
libgcc-ng: ">=12"
libnsl: ">=2.0.0,<2.1.0a0"
libuuid: ">=2.32.1,<3.0a0"
libzlib: ">=1.2.11,<1.3.0a0"
ncurses: ">=6.3,<7.0a0"
openssl: ">=3.0.3,<4.0a0"
readline: ">=8.1,<9.0a0"
sqlite: ">=3.38.5,<4.0a0"
tk: ">=8.6.12,<8.7.0a0"
tzdata: ""
xz: ">=5.2.5,<5.3.0a0"
hash:
md5: 894f6c234741ffc61505de11b7a588ba
sha256: 915c68c398d85132a7f80bc65432d435d7445bbb96fbd2e56c3a3a70aa4fd76a
@ -376,9 +376,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/python-3.9.13-h2660328_0_cpython.tar.bz2
version: 3.9.13
- category: main
- category: main
dependencies:
python: '>=3.7'
python: ">=3.7"
hash:
md5: d02e889937175119b88bf176221cda44
sha256: 13d0db66d383cd7209fca181531f86b74cdad3119a362f3f9c6fb82f2f8242c4
@ -388,9 +388,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/backoff-2.1.2-pyhd8ed1ab_0.tar.bz2
version: 2.1.2
- category: main
- category: main
dependencies:
python: '>=3.6'
python: ">=3.6"
hash:
md5: 40b50b8b030f5f2f22085c062ed013dd
sha256: d697b7db5194d5248850b57fd313ecbb29bba9aaab0346ee55816589afbd1d0e
@ -399,8 +399,8 @@ package:
optional: false
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/idna-3.3-pyhd8ed1ab_0.tar.bz2
version: '3.3'
- category: main
version: "3.3"
- category: main
dependencies:
python: 3.9.*
hash:
@ -411,10 +411,10 @@ package:
optional: false
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-2_cp39.tar.bz2
version: '3.9'
- category: main
version: "3.9"
- category: main
dependencies:
python: '>=3.6'
python: ">=3.6"
hash:
md5: 974bca71d00364630f63f31fa7e059cb
sha256: 8e5c8bc3508e8995431e94c5019405ac5c4e7612bb2c9ea372340f2b7d91e8c5
@ -424,9 +424,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/pytz-2022.2.1-pyhd8ed1ab_0.tar.bz2
version: 2022.2.1
- category: main
- category: main
dependencies:
python: ''
python: ""
hash:
md5: e5f25f8dbc060e9a8d912e432202afc2
sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6
@ -436,9 +436,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/six-1.16.0-pyh6c4a22f_0.tar.bz2
version: 1.16.0
- category: main
- category: main
dependencies:
python: '>=3.6'
python: ">=3.6"
hash:
md5: 8b29b2c12cb21dbd057755e5fd22d005
sha256: 7c6cdd29a8334a9f9c0f17658cea4f2f365f9f6dbc63a2301a5b855794beb613
@ -448,9 +448,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/tenacity-8.0.1-pyhd8ed1ab_0.tar.bz2
version: 8.0.1
- category: main
- category: main
dependencies:
python: '>=2.7'
python: ">=2.7"
hash:
md5: f832c45a477c78bebd107098db465095
sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1
@ -460,9 +460,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/toml-0.10.2-pyhd8ed1ab_0.tar.bz2
version: 0.10.2
- category: main
- category: main
dependencies:
python: '>=3.7'
python: ">=3.7"
hash:
md5: a9d85960bc62d53cc4ea0d1d27f73c98
sha256: 1fe5b48aa997616a7537de4d05c0b7fd11b712895e35493cac7604e8d5f97ad7
@ -472,9 +472,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/typing_extensions-4.3.0-pyha770c72_0.tar.bz2
version: 4.3.0
- category: main
- category: main
dependencies:
python: '>=3.7'
python: ">=3.7"
hash:
md5: a3508a0c850745b875de88aea4c40cc5
sha256: bb6920451dad059ca31581ca6e36c5f1534fad8a8efe869c7eb9c9e3846b4f53
@ -484,10 +484,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/zipp-3.8.1-pyhd8ed1ab_0.tar.bz2
version: 3.8.1
- category: main
- category: main
dependencies:
libgcc-ng: '>=12'
python: '>=3.9,<3.10.0a0'
libgcc-ng: ">=12"
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
hash:
md5: fb77592255b486cbf2b6206eece84169
@ -498,9 +498,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/asyncpg-0.26.0-py39hb9d737c_0.tar.bz2
version: 0.26.0
- category: main
- category: main
dependencies:
python: '>=3.9,<3.10.0a0'
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
hash:
md5: 40edd9ebc04e4b4ec27c1008e5e3f99d
@ -511,11 +511,11 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/click-8.1.3-py39hf3d152e_0.tar.bz2
version: 8.1.3
- category: main
- category: main
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
python: '>=3.9,<3.10.0a0'
libgcc-ng: ">=12"
libstdcxx-ng: ">=12"
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
hash:
md5: 89d1393c99343641037afd4c5034ca05
@ -526,10 +526,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/greenlet-1.1.3-py39h5a03fae_0.tar.bz2
version: 1.1.3
- category: main
- category: main
dependencies:
python: '>=3'
typing_extensions: ''
python: ">=3"
typing_extensions: ""
hash:
md5: e7cf19f1afe6b3a6a4a9fa383080ebd1
sha256: 8ef01ca59dd2eb73b187329f6405523d16cb870f77cc8f219fa50b7ac46c17c3
@ -539,11 +539,11 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/h11-0.13.0-pyhd8ed1ab_1.tar.bz2
version: 0.13.0
- category: main
- category: main
dependencies:
python: '>=3.9,<3.10.0a0'
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
zipp: '>=0.5'
zipp: ">=0.5"
hash:
md5: 4c2a0eabf0b8980b2c755646a6f750eb
sha256: 3a13f3af58e7a5b50516c9bf10473953e51d9a5367f93fafd04c2bccc9162983
@ -553,10 +553,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/importlib-metadata-4.11.4-py39hf3d152e_0.tar.bz2
version: 4.11.4
- category: main
- category: main
dependencies:
python: '>=3.6'
zipp: '>=3.1.0'
python: ">=3.6"
zipp: ">=3.1.0"
hash:
md5: 393a52ae5450ac981a0b67c8175d61fa
sha256: fdf6e04a7e5fc84851828d8415b6182ac0780d4df3dfc230d1134ece27b3e4a1
@ -566,10 +566,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/importlib_resources-5.9.0-pyhd8ed1ab_0.tar.bz2
version: 5.9.0
- category: main
- category: main
dependencies:
libgcc-ng: '>=10.3.0'
python: '>=3.9,<3.10.0a0'
libgcc-ng: ">=10.3.0"
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
hash:
md5: 7cda413e43b252044a270c2477031c5c
@ -580,14 +580,14 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/markupsafe-2.1.1-py39hb9d737c_1.tar.bz2
version: 2.1.1
- category: main
- category: main
dependencies:
libblas: '>=3.9.0,<4.0a0'
libcblas: '>=3.9.0,<4.0a0'
libgcc-ng: '>=12'
liblapack: '>=3.9.0,<4.0a0'
libstdcxx-ng: '>=12'
python: '>=3.9,<3.10.0a0'
libblas: ">=3.9.0,<4.0a0"
libcblas: ">=3.9.0,<4.0a0"
libgcc-ng: ">=12"
liblapack: ">=3.9.0,<4.0a0"
libstdcxx-ng: ">=12"
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
hash:
md5: 25285f960f9c7f4e8ef56171af5e2a22
@ -598,10 +598,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/numpy-1.23.2-py39hba7629e_0.tar.bz2
version: 1.23.2
- category: main
- category: main
dependencies:
python: '>=3.6'
tenacity: '>=6.2.0'
python: ">=3.6"
tenacity: ">=6.2.0"
hash:
md5: e95502aa0f8e3db05d198214472575de
sha256: 491aed1569f2325a365f79b7d6a7e97bc01524e9a04ac2bb3df4ea4963757162
@ -611,10 +611,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/plotly-5.10.0-pyhd8ed1ab_0.tar.bz2
version: 5.10.0
- category: main
- category: main
dependencies:
libgcc-ng: '>=10.3.0'
python: '>=3.9,<3.10.0a0'
libgcc-ng: ">=10.3.0"
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
hash:
md5: 5852c69cad74811dc3c95f9ab6a184ef
@ -625,10 +625,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/psutil-5.9.1-py39hb9d737c_0.tar.bz2
version: 5.9.1
- category: main
- category: main
dependencies:
python: '>=3.6'
six: '>=1.5'
python: ">=3.6"
six: ">=1.5"
hash:
md5: dd999d1cc9f79e67dbb855c8924c7984
sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da
@ -638,12 +638,12 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/python-dateutil-2.8.2-pyhd8ed1ab_0.tar.bz2
version: 2.8.2
- category: main
- category: main
dependencies:
libgcc-ng: '>=10.3.0'
python: '>=3.9,<3.10.0a0'
libgcc-ng: ">=10.3.0"
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
yaml: '>=0.2.5,<0.3.0a0'
yaml: ">=0.2.5,<0.3.0a0"
hash:
md5: dcc47a3b751508507183d17e569805e5
sha256: 569809030eed3c6b707a26172bc942a5a12fc8d76e53d3d28430761ecd60c900
@ -652,10 +652,10 @@ package:
optional: false
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py39hb9d737c_4.tar.bz2
version: '6.0'
- category: main
version: "6.0"
- category: main
dependencies:
python: '>=3.9,<3.10.0a0'
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
hash:
md5: e2cb114a39b27ef1687a0c2c3e793cf6
@ -666,10 +666,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/sniffio-1.2.0-py39hf3d152e_3.tar.bz2
version: 1.2.0
- category: main
- category: main
dependencies:
python: '>=3.6'
typing_extensions: '>=3.7.4'
python: ">=3.6"
typing_extensions: ">=3.7.4"
hash:
md5: 6fe3f5bd91f8c53a15e252d8f04a1bf5
sha256: 79bb4632cac057e2502ead3f68b7e044edd4ce3232b9379c60b9b45e6e410ab1
@ -679,7 +679,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/sqlalchemy2-stubs-0.0.2a25-pyhd8ed1ab_0.tar.bz2
version: 0.0.2a25
- category: main
- category: main
dependencies:
typing_extensions: 4.3.0 pyha770c72_0
hash:
@ -691,12 +691,12 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/typing-extensions-4.3.0-hd8ed1ab_0.tar.bz2
version: 4.3.0
- category: main
- category: main
dependencies:
idna: '>=2.8'
python: '>=3.7'
sniffio: '>=1.1'
typing_extensions: ''
idna: ">=2.8"
python: ">=3.7"
sniffio: ">=1.1"
typing_extensions: ""
hash:
md5: d65ef75084f8adbadb696dfd91148e79
sha256: eda988270b57bd726381257b99ffbf283b2f1ab1bf12d45697241a6c6d166143
@ -706,10 +706,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/anyio-3.6.1-pyhd8ed1ab_1.tar.bz2
version: 3.6.1
- category: main
- category: main
dependencies:
markupsafe: '>=2.0'
python: '>=3.7'
markupsafe: ">=2.0"
python: ">=3.7"
hash:
md5: c8490ed5c70966d232fdd389d0dbed37
sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5
@ -719,11 +719,11 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/jinja2-3.1.2-pyhd8ed1ab_1.tar.bz2
version: 3.1.2
- category: main
- category: main
dependencies:
importlib-metadata: ''
markupsafe: '>=0.9.2'
python: '>=3.6'
importlib-metadata: ""
markupsafe: ">=0.9.2"
python: ">=3.6"
hash:
md5: 013adf4a461ccd7ab25f9285ec882918
sha256: 3933ba40d3b5f576aea44b7a1a789ad4f25e22447f95f4a71fd14da7c8fb63df
@ -733,15 +733,15 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/mako-1.2.1-pyhd8ed1ab_0.tar.bz2
version: 1.2.1
- category: main
- category: main
dependencies:
libgcc-ng: '>=12'
libstdcxx-ng: '>=12'
numpy: '>=1.19.5,<2.0a0'
python: '>=3.9,<3.10.0a0'
python-dateutil: '>=2.8.1'
libgcc-ng: ">=12"
libstdcxx-ng: ">=12"
numpy: ">=1.19.5,<2.0a0"
python: ">=3.9,<3.10.0a0"
python-dateutil: ">=2.8.1"
python_abi: 3.9.* *_cp39
pytz: '>=2020.1'
pytz: ">=2020.1"
hash:
md5: 74e00961703972cf33b44a6fca7c3d51
sha256: 69db5094d93c6c517584630d0ab59ad258b30ed900ea226ab96b790b3a433e90
@ -751,12 +751,12 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/pandas-1.4.3-py39h1832856_0.tar.bz2
version: 1.4.3
- category: main
- category: main
dependencies:
libgcc-ng: '>=12'
python: '>=3.9,<3.10.0a0'
libgcc-ng: ">=12"
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
typing-extensions: '>=3.7.4.3'
typing-extensions: ">=3.7.4.3"
hash:
md5: 4d1efa3a8b23d541462c9355e4e27772
sha256: 54c5244f63d307327fb18a5a7856d334b85ebd113c87cfd494d06a844111946f
@ -766,10 +766,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/pydantic-1.9.2-py39hb9d737c_0.tar.bz2
version: 1.9.2
- category: main
- category: main
dependencies:
click: '>=5.0'
python: '>=2.7'
click: ">=5.0"
python: ">=2.7"
hash:
md5: 9c113379ac0729312b59b5e65906d6e6
sha256: c9866ce56086cc352b2472f7843ebada0f614ac3fb0cdd60fdca3b1d34278d27
@ -779,11 +779,11 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/python-dotenv-0.20.0-pyhd8ed1ab_0.tar.bz2
version: 0.20.0
- category: main
- category: main
dependencies:
greenlet: '!=0.4.17'
libgcc-ng: '>=12'
python: '>=3.9,<3.10.0a0'
greenlet: "!=0.4.17"
libgcc-ng: ">=12"
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
hash:
md5: b5833e63928f4c39ebb4f317cdbd54a2
@ -794,11 +794,11 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/sqlalchemy-1.4.40-py39hb9d737c_0.tar.bz2
version: 1.4.40
- category: main
- category: main
dependencies:
click: '>=7.*'
h11: '>=0.8'
python: '>=3.9,<3.10.0a0'
click: ">=7.*"
h11: ">=0.8"
python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39
hash:
md5: 8506d8537230a9449f74dfe9dc394e3c
@ -809,13 +809,13 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/uvicorn-0.18.3-py39hf3d152e_0.tar.bz2
version: 0.18.3
- category: main
- category: main
dependencies:
importlib-metadata: ''
importlib_resources: ''
mako: ''
python: '>=3.6'
sqlalchemy: '>=1.3.0'
importlib-metadata: ""
importlib_resources: ""
mako: ""
python: ">=3.6"
sqlalchemy: ">=1.3.0"
hash:
md5: bdde76f5d65a9374d07aa3dfa27571e0
sha256: 01ef4ddec9e64ebc29c476155d62436e6eb493acc58c8dd7365f1723dc2bbb86
@ -825,12 +825,12 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/alembic-1.8.1-pyhd8ed1ab_0.tar.bz2
version: 1.8.1
- category: main
- category: main
dependencies:
pydantic: '>=1.8.2'
python: '>=3.6'
sqlalchemy: '>=1.4.17'
sqlalchemy2-stubs: ''
pydantic: ">=1.8.2"
python: ">=3.6"
sqlalchemy: ">=1.4.17"
sqlalchemy2-stubs: ""
hash:
md5: f7ccfe14f564bc81ef5ecfbbc91300f3
sha256: 31de5a4016c2ded996342599dffb48fd764522228c601860966c724278dc65d2
@ -840,11 +840,11 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/sqlmodel-0.0.6-pyhd8ed1ab_0.tar.bz2
version: 0.0.6
- category: main
- category: main
dependencies:
anyio: '>=3.4.0,<5.0.0a'
python: '>=3.7'
typing_extensions: ''
anyio: ">=3.4.0,<5.0.0a"
python: ">=3.7"
typing_extensions: ""
hash:
md5: f6618f4eab5aecbcade4a43e3c98700a
sha256: c9d7ec8e8911df2db60db610c931d3a3a41a22030b059da29bbdc1edebe3df79
@ -854,10 +854,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/starlette-0.19.1-pyhd8ed1ab_0.tar.bz2
version: 0.19.1
- category: main
- category: main
dependencies:
pydantic: '>=1.6.2,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0'
python: '>=3.6.1'
pydantic: ">=1.6.2,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0"
python: ">=3.6.1"
starlette: 0.19.1.*
hash:
md5: 9149c57f075278a4083ba20fc4196be0

View File

@ -24,8 +24,8 @@ metadata:
sources:
- env.yml
package:
- name: _libgcc_mutex
version: '0.1'
- name: _libgcc_mutex
version: "0.1"
manager: conda
platform: linux-64
dependencies: {}
@ -35,33 +35,33 @@ package:
sha256: fe51de6107f9edc7aa4f786a70f4a883943bc9d39b3bb7307c04c41410990726
category: main
optional: false
- name: _openmp_mutex
version: '4.5'
- name: _openmp_mutex
version: "4.5"
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
libgomp: '>=7.5.0'
_libgcc_mutex: "0.1"
libgomp: ">=7.5.0"
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
hash:
md5: 73aaf86a425cc6e73fcf236a5a46396d
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
category: main
optional: false
- name: bzip2
- name: bzip2
version: 1.0.8
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
__glibc: ">=2.17,<3.0.a0"
libgcc-ng: ">=12"
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
hash:
md5: 62ee74e96c5ebb0af99386de58cf9553
sha256: 5ced96500d945fb286c9c838e54fa759aa04a7129c59800f0846b4335cee770d
category: main
optional: false
- name: ca-certificates
- name: ca-certificates
version: 2024.8.30
manager: conda
platform: linux-64
@ -72,57 +72,57 @@ package:
sha256: afee721baa6d988e27fef1832f68d6f32ac8cc99cdf6015732224c2841a09cea
category: main
optional: false
- name: ld_impl_linux-64
version: '2.43'
- name: ld_impl_linux-64
version: "2.43"
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
__glibc: ">=2.17,<3.0.a0"
url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
hash:
md5: 048b02e3962f066da18efe3a21b77672
sha256: 7c91cea91b13f4314d125d1bedb9d03a29ebbd5080ccdea70260363424646dbe
category: main
optional: false
- name: libexpat
- name: libexpat
version: 2.6.4
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
__glibc: ">=2.17,<3.0.a0"
libgcc: ">=13"
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
hash:
md5: db833e03127376d461e1e13e76f09b6c
sha256: 56541b98447b58e52d824bd59d6382d609e11de1f8adf20b23143e353d2b8d26
category: main
optional: false
- name: libffi
- name: libffi
version: 3.4.2
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
category: main
optional: false
- name: libgcc
- name: libgcc
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
_openmp_mutex: '>=4.5'
_libgcc_mutex: "0.1"
_openmp_mutex: ">=4.5"
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda
hash:
md5: 3cb76c3f10d3bc7f1105b2fc9db984df
sha256: 53eb8a79365e58849e7b1a068d31f4f9e718dc938d6f2c03e960345739a03569
category: main
optional: false
- name: libgcc-ng
- name: libgcc-ng
version: 14.2.0
manager: conda
platform: linux-64
@ -134,140 +134,140 @@ package:
sha256: 3a76969c80e9af8b6e7a55090088bc41da4cffcde9e2c71b17f44d37b7cb87f7
category: main
optional: false
- name: libgomp
- name: libgomp
version: 14.2.0
manager: conda
platform: linux-64
dependencies:
_libgcc_mutex: '0.1'
_libgcc_mutex: "0.1"
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
hash:
md5: cc3573974587f12dda90d96e3e55a702
sha256: 1911c29975ec99b6b906904040c855772ccb265a1c79d5d75c8ceec4ed89cd63
category: main
optional: false
- name: libmpdec
- name: libmpdec
version: 4.0.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
__glibc: ">=2.17,<3.0.a0"
libgcc-ng: ">=12"
url: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda
hash:
md5: aeb98fdeb2e8f25d43ef71fbacbeec80
sha256: d02d1d3304ecaf5c728e515eb7416517a0b118200cd5eacbe829c432d1664070
category: main
optional: false
- name: libsqlite
- name: libsqlite
version: 3.47.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
libzlib: '>=1.3.1,<2.0a0'
__glibc: ">=2.17,<3.0.a0"
libgcc: ">=13"
libzlib: ">=1.3.1,<2.0a0"
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda
hash:
md5: b6f02b52a174e612e89548f4663ce56a
sha256: 8a9aadf996a2399f65b679c6e7f29139d5059f699c63e6d7b50e20db10c00508
category: main
optional: false
- name: libuuid
- name: libuuid
version: 2.38.1
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
category: main
optional: false
- name: libzlib
- name: libzlib
version: 1.3.1
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc: '>=13'
__glibc: ">=2.17,<3.0.a0"
libgcc: ">=13"
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
hash:
md5: edb0dca6bc32e4f4789199455a1dbeb8
sha256: d4bfe88d7cb447768e31650f06257995601f89076080e76df55e3112d4e47dc4
category: main
optional: false
- name: ncurses
version: '6.5'
- name: ncurses
version: "6.5"
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
libgcc-ng: '>=12'
__glibc: ">=2.17,<3.0.a0"
libgcc-ng: ">=12"
url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
hash:
md5: 70caf8bb6cf39a0b6b7efc885f51c0fe
sha256: 6a1d5d8634c1a07913f1c525db6455918cbc589d745fac46d9d6e30340c8731a
category: main
optional: false
- name: openssl
- name: openssl
version: 3.3.2
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
ca-certificates: ''
libgcc: '>=13'
__glibc: ">=2.17,<3.0.a0"
ca-certificates: ""
libgcc: ">=13"
url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.2-hb9d3cd8_0.conda
hash:
md5: 4d638782050ab6faa27275bed57e9b4e
sha256: cee91036686419f6dd6086902acf7142b4916e1c4ba042e9ca23e151da012b6d
category: main
optional: false
- name: pip
- name: pip
version: 24.3.1
manager: conda
platform: linux-64
dependencies:
python: '>=3.13.0a0'
python: ">=3.13.0a0"
url: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh145f28c_0.conda
hash:
md5: ca3afe2d7b893a8c8cdf489d30a2b1a3
sha256: fc305cfe1ad0d51c61dd42a33cf27e03a075992fd0070c173d7cad86c1a48f13
category: main
optional: false
- name: python
- name: python
version: 3.13.0
manager: conda
platform: linux-64
dependencies:
__glibc: '>=2.17,<3.0.a0'
bzip2: '>=1.0.8,<2.0a0'
ld_impl_linux-64: '>=2.36.1'
libexpat: '>=2.6.3,<3.0a0'
libffi: '>=3.4,<4.0a0'
libgcc: '>=13'
libmpdec: '>=4.0.0,<5.0a0'
libsqlite: '>=3.46.1,<4.0a0'
libuuid: '>=2.38.1,<3.0a0'
libzlib: '>=1.3.1,<2.0a0'
ncurses: '>=6.5,<7.0a0'
openssl: '>=3.3.2,<4.0a0'
__glibc: ">=2.17,<3.0.a0"
bzip2: ">=1.0.8,<2.0a0"
ld_impl_linux-64: ">=2.36.1"
libexpat: ">=2.6.3,<3.0a0"
libffi: ">=3.4,<4.0a0"
libgcc: ">=13"
libmpdec: ">=4.0.0,<5.0a0"
libsqlite: ">=3.46.1,<4.0a0"
libuuid: ">=2.38.1,<3.0a0"
libzlib: ">=1.3.1,<2.0a0"
ncurses: ">=6.5,<7.0a0"
openssl: ">=3.3.2,<4.0a0"
python_abi: 3.13.*
readline: '>=8.2,<9.0a0'
tk: '>=8.6.13,<8.7.0a0'
tzdata: ''
xz: '>=5.2.6,<6.0a0'
pip: ''
readline: ">=8.2,<9.0a0"
tk: ">=8.6.13,<8.7.0a0"
tzdata: ""
xz: ">=5.2.6,<6.0a0"
pip: ""
url: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.0-h9ebbce0_100_cp313.conda
hash:
md5: 08e9aef080f33daeb192b2ddc7e4721f
sha256: 6ab5179679f0909db828d8316f3b8b379014a82404807310fe7df5a6cf303646
category: main
optional: false
- name: python_abi
version: '3.13'
- name: python_abi
version: "3.13"
manager: conda
platform: linux-64
dependencies: {}
@ -277,33 +277,33 @@ package:
sha256: 438225b241c5f9bddae6f0178a97f5870a89ecf927dfca54753e689907331442
category: main
optional: false
- name: readline
version: '8.2'
- name: readline
version: "8.2"
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
ncurses: '>=6.3,<7.0a0'
libgcc-ng: ">=12"
ncurses: ">=6.3,<7.0a0"
url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
hash:
md5: 47d31b792659ce70f470b5c82fdfb7a4
sha256: 5435cf39d039387fbdc977b0a762357ea909a7694d9528ab40f005e9208744d7
category: main
optional: false
- name: tk
- name: tk
version: 8.6.13
manager: conda
platform: linux-64
dependencies:
libgcc-ng: '>=12'
libzlib: '>=1.2.13,<2.0.0a0'
libgcc-ng: ">=12"
libzlib: ">=1.2.13,<2.0.0a0"
url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
hash:
md5: d453b98d9c83e71da0741bb0ff4d76bc
sha256: e0569c9caa68bf476bead1bed3d79650bb080b532c64a4af7d8ca286c08dea4e
category: main
optional: false
- name: tzdata
- name: tzdata
version: 2024b
manager: conda
platform: linux-64
@ -314,20 +314,20 @@ package:
sha256: 4fde5c3008bf5d2db82f2b50204464314cc3c91c1d953652f7bd01d9e52aefdf
category: main
optional: false
- name: xz
- name: xz
version: 5.2.6
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
category: main
optional: false
- name: checkm
version: '0.4'
- name: checkm
version: "0.4"
manager: pip
platform: linux-64
dependencies: {}
@ -336,12 +336,12 @@ package:
sha256: 2d09d77c85d5b4158ec699c5b0a33b3b1168fc1aba146ed54a634f68ddca1fa6
category: main
optional: false
- name: starlette
version: '0.17.1'
- name: starlette
version: "0.17.1"
manager: pip
platform: linux-64
dependencies:
anyio: '>=3.0.0,<4'
anyio: ">=3.0.0,<4"
url: https://files.pythonhosted.org/packages/32/57/e9c68acc2845ee4ca66202d19856f6a3581cab2a885d25d490103270ffa2/starlette-0.17.1-py3-none-any.whl
hash:
sha256: 26a18cbda5e6b651c964c12c88b36d9898481cd428ed6e063f5f29c418f73050

View File

@ -34,9 +34,7 @@
"B_0.1.0.tar.bz2": {
"build": "abc",
"build_number": 0,
"depends": [
"a"
],
"depends": ["a"],
"license": "BSD",
"license_family": "BSD",
"md5": "85107fc10154734ef34a5a75685be684",

View File

@ -34,9 +34,7 @@
"B_0.1.0.tar.bz2": {
"build": "abc",
"build_number": 0,
"depends": [
"a"
],
"depends": ["a"],
"license": "BSD",
"license_family": "BSD",
"md5": "85107fc10154734ef34a5a75685be684",

View File

@ -22,9 +22,7 @@
"run_exports": {},
"source_git_url": null,
"source_url": null,
"subdirs": [
"noarch"
],
"subdirs": ["noarch"],
"summary": "I am just a test package!",
"tags": null,
"text_prefix": false,
@ -32,7 +30,5 @@
"version": "0.1"
}
},
"subdirs": [
"noarch"
]
"subdirs": ["noarch"]
}

View File

@ -1,27 +1,35 @@
<html>
<head>
<head>
<title>repo</title>
<style type="text/css">
a, a:active {
text-decoration: none; color: blue;
a,
a:active {
text-decoration: none;
color: blue;
}
a:visited {
color: #48468F;
color: #48468f;
}
a:hover, a:focus {
text-decoration: underline; color: red;
a:hover,
a:focus {
text-decoration: underline;
color: red;
}
body {
background-color: #F5F5F5;
background-color: #f5f5f5;
}
h2 {
margin-bottom: 12px;
}
th, td {
font: 100% monospace; text-align: left;
th,
td {
font: 100% monospace;
text-align: left;
}
th {
font-weight: bold; padding-right: 14px; padding-bottom: 3px;
font-weight: bold;
padding-right: 14px;
padding-bottom: 3px;
}
th.tight {
padding-right: 6px;
@ -32,7 +40,8 @@
td.tight {
padding-right: 8px;
}
td.s, th.s {
td.s,
th.s {
text-align: right;
}
td.summary {
@ -64,27 +73,39 @@
padding-top: 10px;
}
</style>
</head>
<body>
</head>
<body>
<h2>repo</h2>
<h3><a href="rss.xml">RSS Feed</a>&nbsp;&nbsp;&nbsp;<a href="channeldata.json">channeldata.json</a></h3>
<a href="noarch">noarch</a>&nbsp;&nbsp;&nbsp; <table>
<h3>
<a href="rss.xml">RSS Feed</a>&nbsp;&nbsp;&nbsp;<a href="channeldata.json"
>channeldata.json</a
>
</h3>
<a href="noarch">noarch</a>&nbsp;&nbsp;&nbsp;
<table>
<tr>
<th style="padding-right:18px;">Package</th>
<th style="padding-right: 18px">Package</th>
<th>Latest Version</th>
<th>Doc</th>
<th>Dev</th>
<th>License</th>
<th class="tight">noarch</th> <th>Summary</th>
<th class="tight">noarch</th>
<th>Summary</th>
</tr>
<tr>
<td class="packagename"><a href="https://github.com/mamba-org/mamba" alt="test-package">test-package</a></td>
<td class="packagename">
<a href="https://github.com/mamba-org/mamba" alt="test-package"
>test-package</a
>
</td>
<td class="version">0.1</td>
<td></td>
<td></td>
<td class="tight">BSD</td>
<td>X</td> <td class="summary">I am just a test package!</td>
</tr> </table>
<td>X</td>
<td class="summary">I am just a test package!</td>
</tr>
</table>
<address>Updated: 2021-02-12 09:02:37 +0000 - Files: 1</address>
</body>
</body>
</html>

View File

@ -1,32 +1,41 @@
<html>
<head>
<head>
<title>repo/noarch</title>
<style type="text/css">
a, a:active {
text-decoration: none; color: blue;
a,
a:active {
text-decoration: none;
color: blue;
}
a:visited {
color: #48468F;
color: #48468f;
}
a:hover, a:focus {
text-decoration: underline; color: red;
a:hover,
a:focus {
text-decoration: underline;
color: red;
}
body {
background-color: #F5F5F5;
background-color: #f5f5f5;
}
h2 {
margin-bottom: 12px;
}
th, td {
font: 100% monospace; text-align: left;
th,
td {
font: 100% monospace;
text-align: left;
}
th {
font-weight: bold; padding-right: 14px; padding-bottom: 3px;
font-weight: bold;
padding-right: 14px;
padding-bottom: 3px;
}
td {
padding-right: 20px;
}
td.s, th.s {
td.s,
th.s {
text-align: right;
}
table {
@ -41,8 +50,8 @@
padding-top: 10px;
}
</style>
</head>
<body>
</head>
<body>
<h2>repo/noarch</h2>
<table>
<tr>
@ -56,33 +65,68 @@
<td><a href="repodata.json" alt="repodata.json">repodata.json</a></td>
<td class="s">586 B</td>
<td>2021-02-12 09:01:48 +0000</td>
<td>cc5f72aaa8d3f508c8adca196fe05cf4b19e1ca1006cfcbb3892d73160bd3b04</td>
<td>
cc5f72aaa8d3f508c8adca196fe05cf4b19e1ca1006cfcbb3892d73160bd3b04
</td>
<td>7501ec77771889b42a39c615158cb9c4</td>
</tr> <tr>
<td><a href="repodata.json.bz2" alt="repodata.json.bz2">repodata.json.bz2</a></td>
</tr>
<tr>
<td>
<a href="repodata.json.bz2" alt="repodata.json.bz2"
>repodata.json.bz2</a
>
</td>
<td class="s">351 B</td>
<td>2021-02-12 09:01:48 +0000</td>
<td>9a0288ca48c6b8caa348d7cafefd0981c2d25dcb4a5837a5187ab200b8b9fb45</td>
<td>
9a0288ca48c6b8caa348d7cafefd0981c2d25dcb4a5837a5187ab200b8b9fb45
</td>
<td>0c926155642f0e894d97dc8a5af7007b</td>
</tr> <tr>
<td><a href="repodata_from_packages.json" alt="repodata_from_packages.json">repodata_from_packages.json</a></td>
</tr>
<tr>
<td>
<a
href="repodata_from_packages.json"
alt="repodata_from_packages.json"
>repodata_from_packages.json</a
>
</td>
<td class="s">586 B</td>
<td>2021-02-12 09:01:48 +0000</td>
<td>cc5f72aaa8d3f508c8adca196fe05cf4b19e1ca1006cfcbb3892d73160bd3b04</td>
<td>
cc5f72aaa8d3f508c8adca196fe05cf4b19e1ca1006cfcbb3892d73160bd3b04
</td>
<td>7501ec77771889b42a39c615158cb9c4</td>
</tr> <tr>
<td><a href="repodata_from_packages.json.bz2" alt="repodata_from_packages.json.bz2">repodata_from_packages.json.bz2</a></td>
</tr>
<tr>
<td>
<a
href="repodata_from_packages.json.bz2"
alt="repodata_from_packages.json.bz2"
>repodata_from_packages.json.bz2</a
>
</td>
<td class="s">351 B</td>
<td>2021-02-12 09:01:48 +0000</td>
<td>9a0288ca48c6b8caa348d7cafefd0981c2d25dcb4a5837a5187ab200b8b9fb45</td>
<td>
9a0288ca48c6b8caa348d7cafefd0981c2d25dcb4a5837a5187ab200b8b9fb45
</td>
<td>0c926155642f0e894d97dc8a5af7007b</td>
</tr> <tr>
<td><a href="test-package-0.1-0.tar.bz2" alt="test-package-0.1-0.tar.bz2">test-package-0.1-0.tar.bz2</a></td>
</tr>
<tr>
<td>
<a href="test-package-0.1-0.tar.bz2" alt="test-package-0.1-0.tar.bz2"
>test-package-0.1-0.tar.bz2</a
>
</td>
<td class="s">6 KB</td>
<td>2021-02-12 08:08:14 +0000</td>
<td>b908ffce2d26d94c58c968abf286568d4bcf87d1cfe6c994958351724a6f6988</td>
<td>
b908ffce2d26d94c58c968abf286568d4bcf87d1cfe6c994958351724a6f6988
</td>
<td>2a8595f37faa2950e1b433acbe91d481</td>
</tr> </table>
</tr>
</table>
<address>Updated: 2021-02-12 09:02:37 +0000 - Files: 1</address>
</body>
</body>
</html>

View File

@ -28,7 +28,7 @@ metadata:
sources:
- environment.yml
package:
- category: main
- category: main
dependencies: {}
hash:
md5: d7c89558ba9fa0495403155b64376d81
@ -38,8 +38,8 @@ package:
optional: false
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
version: '0.1'
- category: main
version: "0.1"
- category: main
dependencies:
_libgcc_mutex: 0.1 conda_forge
hash:
@ -51,10 +51,10 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-11.2.0-h1d223b6_13.tar.bz2
version: 11.2.0
- category: main
- category: main
dependencies:
_libgcc_mutex: 0.1 conda_forge
libgomp: '>=7.5.0'
libgomp: ">=7.5.0"
hash:
md5: 561e277319a41d4f24f5c05a9ef63c04
sha256: 81c74d38c80345e195106dc3a5b4063b61f2209402bf9f6c7e2abadef4f544a3
@ -63,11 +63,11 @@ package:
optional: false
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-1_gnu.tar.bz2
version: '4.5'
- category: main
version: "4.5"
- category: main
dependencies:
_libgcc_mutex: 0.1 conda_forge
_openmp_mutex: '>=4.5'
_openmp_mutex: ">=4.5"
hash:
md5: 63eaf0f146cc80abd84743d48d667da4
sha256: 5c9c8a23e45215e0c218a477c69054ed2ac577c4499795649dd3343687d380ff
@ -77,9 +77,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-ng-11.2.0-h1d223b6_13.tar.bz2
version: 11.2.0
- category: main
- category: main
dependencies:
libgcc-ng: '>=7.5.0'
libgcc-ng: ">=7.5.0"
hash:
md5: dcddf696ff5dfcab567100d691678e18
sha256: 8292882ea5cfbe2e6b708432dfab0668f2acddb96ab7618163001acbd13678e4
@ -89,9 +89,9 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.2.11-h36c2ea0_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies:
libgcc-ng: '>=7.5.0'
libgcc-ng: ">=7.5.0"
libzlib: 1.2.11 h36c2ea0_1013
hash:
md5: cf7190238072a41e9579e4476a6a60b8
@ -102,7 +102,7 @@ package:
platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/zlib-1.2.11-h36c2ea0_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies: {}
hash:
md5: a3a6a53beaa92c5cfe52ee3a198e78cc
@ -113,7 +113,7 @@ package:
platform: osx-64
url: https://conda.anaconda.org/conda-forge/osx-64/libzlib-1.2.11-h9173be1_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies:
libzlib: 1.2.11 h9173be1_1013
hash:
@ -125,7 +125,7 @@ package:
platform: osx-64
url: https://conda.anaconda.org/conda-forge/osx-64/zlib-1.2.11-h9173be1_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies: {}
hash:
md5: fe3c74ef0fe456a4011468f860b0c3dc
@ -136,7 +136,7 @@ package:
platform: osx-arm64
url: https://conda.anaconda.org/conda-forge/osx-arm64/libzlib-1.2.11-hee7b306_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies:
libzlib: 1.2.11 hee7b306_1013
hash:
@ -148,7 +148,7 @@ package:
platform: osx-arm64
url: https://conda.anaconda.org/conda-forge/osx-arm64/zlib-1.2.11-hee7b306_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies: {}
hash:
md5: 6d666b6ea8251231ff508062d1e41f9c
@ -159,9 +159,9 @@ package:
platform: win-64
url: https://conda.anaconda.org/conda-forge/win-64/ucrt-10.0.20348.0-h57928b3_0.tar.bz2
version: 10.0.20348.0
- category: main
- category: main
dependencies:
ucrt: '>=10.0.20348.0'
ucrt: ">=10.0.20348.0"
hash:
md5: 33d07ebe91062743eabc9e53a60d18e1
sha256: f2efbbe3465a34b195edd218d5572c998d94c5964d4e495c3d7f95c8bb5fcaac
@ -171,9 +171,9 @@ package:
platform: win-64
url: https://conda.anaconda.org/conda-forge/win-64/vs2015_runtime-14.29.30037-h902a5da_6.tar.bz2
version: 14.29.30037
- category: main
- category: main
dependencies:
vs2015_runtime: '>=14.28.29325'
vs2015_runtime: ">=14.28.29325"
hash:
md5: c2aecbc9b00ba6f352e27d3d61fd31fb
sha256: c6e7d2b9ceafe2cc302fb8fce1dfcc46b49c5333757424a34294bffdfb5569be
@ -182,11 +182,11 @@ package:
optional: false
platform: win-64
url: https://conda.anaconda.org/conda-forge/win-64/vc-14.2-hb210afc_6.tar.bz2
version: '14.2'
- category: main
version: "14.2"
- category: main
dependencies:
vc: '>=14.1,<15.0a0'
vs2015_runtime: '>=14.16.27012'
vc: ">=14.1,<15.0a0"
vs2015_runtime: ">=14.16.27012"
hash:
md5: b28dd2488b4e5f892c67071acc1d0a8c
sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e
@ -196,11 +196,11 @@ package:
platform: win-64
url: https://conda.anaconda.org/conda-forge/win-64/libzlib-1.2.11-h8ffe710_1013.tar.bz2
version: 1.2.11
- category: main
- category: main
dependencies:
libzlib: 1.2.11 h8ffe710_1013
vc: '>=14.1,<15.0a0'
vs2015_runtime: '>=14.16.27012'
vc: ">=14.1,<15.0a0"
vs2015_runtime: ">=14.16.27012"
hash:
md5: 866517df4fd8bb813bc20c24cf7b8f05
sha256: 5b5db5ec4c2eb51a2bb8c5e22df9938703fd292da8a41c1e8355d5972f9fe12c

View File

@ -39,8 +39,7 @@ def apply_changelog(name, version, changes):
today = datetime.date.today()
fmt_today = today.strftime("%B %d, %Y")
header_line = f"{name} {version} ({fmt_today})"
res += f"{header_line}\n{'=' * len(header_line)}\n\n"
res += f"# {name} {version} ({fmt_today})\n\n"
for idx, c in enumerate(changes):
if c.startswith("-"):
@ -116,13 +115,16 @@ def populate_changes(name, sections, changes):
el["changes"].append(f"- {i.text.strip()}")
MARKDOWN_H1 = "# "
def main():
changes = {}
with open("CHANGELOG.md") as fi:
contents = fi.readlines()
for idx, line in enumerate(contents):
if line.startswith("====="):
if line.startswith(MARKDOWN_H1):
release_start = idx + 1
break
@ -152,7 +154,7 @@ def main():
changes[project]["version"] = release_version
continue
if contents[idx + 1].startswith("===="):
if contents[idx + 1].startswith(MARKDOWN_H1):
break
if line.strip() == "" or line[0] == "-":

View File

@ -166,8 +166,7 @@ def main():
# Append new info
# Release date and version
changelog_file.write("{}\n".format(date.today().strftime("%Y.%m.%d")))
changelog_file.write("==========\n")
changelog_file.write("# {}\n".format(date.today().strftime("%Y.%m.%d")))
changelog_file.write(
f"\nRelease: {release_version} (libmamba, mamba, micromamba, libmambapy)\n"
)

View File

@ -8,14 +8,7 @@
"platform": "windows"
},
{
"features": [
"bzip2",
"lz4",
"lzma",
"lzo",
"crypto",
"zstd"
],
"features": ["bzip2", "lz4", "lzma", "lzo", "crypto", "zstd"],
"name": "libarchive"
},
{