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

View File

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

View File

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

View File

@ -8,10 +8,10 @@ on:
branches: branches:
- main - main
paths-ignore: paths-ignore:
- 'docs/**' - "docs/**"
- 'mamba/**' - "mamba/**"
- 'libmambapy/**' - "libmambapy/**"
- '**.md' - "**.md"
merge_group: merge_group:
types: [checks_requested] types: [checks_requested]

View File

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

View File

@ -5,17 +5,14 @@ repos:
hooks: hooks:
- id: trailing-whitespace - id: trailing-whitespace
- id: end-of-file-fixer - 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: check-merge-conflict
- id: pretty-format-json
args: [--autofix]
- id: debug-statements - id: debug-statements
language_version: python3 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 - repo: https://github.com/pre-commit/pygrep-hooks
rev: v1.10.0 rev: v1.10.0
hooks: hooks:

File diff suppressed because it is too large Load Diff

View File

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

View File

@ -46,11 +46,13 @@ See the [documentation on `micromamba`](https://mamba.readthedocs.io/en/latest/u
## `mamba` v.s. `micromamba` ## `mamba` v.s. `micromamba`
`mamba` has to be preferred when: `mamba` has to be preferred when:
- `libmambapy` or `libmamba` is used by other software in the same environment. - `libmambapy` or `libmamba` is used by other software in the same environment.
- Scenarios where regular updates to libraries are required (especially for security). - Scenarios where regular updates to libraries are required (especially for security).
- Environments are focused on reducing disk space usage for dependencies. - Environments are focused on reducing disk space usage for dependencies.
`micromamba` has to be preferred when: `micromamba` has to be preferred when:
- Relying a single self-contained executable is required. - Relying a single self-contained executable is required.
- A miniforge distribution is not present. - A miniforge distribution is not present.
- Usage requires minimal runtime. - Usage requires minimal runtime.

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -12,4 +12,4 @@ package:
name: _libgcc_mutex name: _libgcc_mutex
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 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: metadata:
channels: channels:
- url: conda-forge - url: conda-forge
@ -21,7 +20,7 @@ package:
optional: true optional: true
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
version: '0.1' version: "0.1"
- category: dev - category: dev
dependencies: {} dependencies: {}
hash: hash:
@ -70,7 +69,7 @@ package:
- category: dev - category: dev
dependencies: dependencies:
_libgcc_mutex: 0.1 conda_forge _libgcc_mutex: 0.1 conda_forge
libgomp: '>=7.5.0' libgomp: ">=7.5.0"
hash: hash:
md5: 73aaf86a425cc6e73fcf236a5a46396d md5: 73aaf86a425cc6e73fcf236a5a46396d
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
@ -79,11 +78,11 @@ package:
optional: true optional: true
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
version: '4.5' version: "4.5"
- category: dev - category: dev
dependencies: dependencies:
_libgcc_mutex: 0.1 conda_forge _libgcc_mutex: 0.1 conda_forge
_openmp_mutex: '>=4.5' _openmp_mutex: ">=4.5"
hash: hash:
md5: 4f05bc9844f7c101e6e147dab3c88d5c md5: 4f05bc9844f7c101e6e147dab3c88d5c
sha256: 2fde3d9f0199bf4f5447b35d3fd74d058c17ef2b6c68815eb1b469f2aec138b9 sha256: 2fde3d9f0199bf4f5447b35d3fd74d058c17ef2b6c68815eb1b469f2aec138b9
@ -95,7 +94,7 @@ package:
version: 12.1.0 version: 12.1.0
- category: dev - category: dev
dependencies: dependencies:
libgcc-ng: '>=9.3.0' libgcc-ng: ">=9.3.0"
hash: hash:
md5: a1fd65c7ccbf10880423d82bca54eb54 md5: a1fd65c7ccbf10880423d82bca54eb54
sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa
@ -107,7 +106,7 @@ package:
version: 1.0.8 version: 1.0.8
- category: dev - category: dev
dependencies: dependencies:
libgcc-ng: '>=9.4.0' libgcc-ng: ">=9.4.0"
hash: hash:
md5: d645c6d2ac96843a2bfaccd2d62b3ac3 md5: d645c6d2ac96843a2bfaccd2d62b3ac3
sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
@ -119,7 +118,7 @@ package:
version: 3.4.2 version: 3.4.2
- category: dev - category: dev
dependencies: dependencies:
libgcc-ng: '>=9.4.0' libgcc-ng: ">=9.4.0"
hash: hash:
md5: 39b1328babf85c7c3a61636d9cd50206 md5: 39b1328babf85c7c3a61636d9cd50206
sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad
@ -131,7 +130,7 @@ package:
version: 2.0.0 version: 2.0.0
- category: dev - category: dev
dependencies: dependencies:
libgcc-ng: '>=9.3.0' libgcc-ng: ">=9.3.0"
hash: hash:
md5: 772d69f030955d9646d3d0eaf21d859d md5: 772d69f030955d9646d3d0eaf21d859d
sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3 sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3
@ -143,7 +142,7 @@ package:
version: 2.32.1 version: 2.32.1
- category: dev - category: dev
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
hash: hash:
md5: 29b2d63b0e21b765da0418bc452538c9 md5: 29b2d63b0e21b765da0418bc452538c9
sha256: 864e4de308644dc5f5b88da185bb65e4e437ffe56299bffec9eba496c04758f3 sha256: 864e4de308644dc5f5b88da185bb65e4e437ffe56299bffec9eba496c04758f3
@ -155,7 +154,7 @@ package:
version: 1.2.12 version: 1.2.12
- category: dev - category: dev
dependencies: dependencies:
libgcc-ng: '>=10.3.0' libgcc-ng: ">=10.3.0"
hash: hash:
md5: 4acfc691e64342b9dae57cf2adc63238 md5: 4acfc691e64342b9dae57cf2adc63238
sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065 sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065
@ -164,11 +163,11 @@ package:
optional: true optional: true
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2
version: '6.3' version: "6.3"
- category: dev - category: dev
dependencies: dependencies:
ca-certificates: '' ca-certificates: ""
libgcc-ng: '>=12' libgcc-ng: ">=12"
hash: hash:
md5: e772305877e7e57021916886d8732137 md5: e772305877e7e57021916886d8732137
sha256: d358b5e5187695748961fc06c380668ba1b9a67d5880f94d1ae2757c523f2a52 sha256: d358b5e5187695748961fc06c380668ba1b9a67d5880f94d1ae2757c523f2a52
@ -180,7 +179,7 @@ package:
version: 3.0.5 version: 3.0.5
- category: dev - category: dev
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
hash: hash:
md5: 2161070d867d1b1204ea749c8eec4ef0 md5: 2161070d867d1b1204ea749c8eec4ef0
sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
@ -192,8 +191,8 @@ package:
version: 5.2.6 version: 5.2.6
- category: dev - category: dev
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
libzlib: '>=1.2.12,<1.3.0a0' libzlib: ">=1.2.12,<1.3.0a0"
hash: hash:
md5: ccb2457c73609f2622b8a4b3e42e5d8b md5: ccb2457c73609f2622b8a4b3e42e5d8b
sha256: aa579bad433c481f9b0e3df473c4b9f4455787c0c439e921d0caa26affb205e3 sha256: aa579bad433c481f9b0e3df473c4b9f4455787c0c439e921d0caa26affb205e3
@ -205,8 +204,8 @@ package:
version: 3.39.3 version: 3.39.3
- category: dev - category: dev
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
ncurses: '>=6.3,<7.0a0' ncurses: ">=6.3,<7.0a0"
hash: hash:
md5: db2ebbe2943aae81ed051a6a9af8e0fa md5: db2ebbe2943aae81ed051a6a9af8e0fa
sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8 sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8
@ -218,8 +217,8 @@ package:
version: 8.1.2 version: 8.1.2
- category: dev - category: dev
dependencies: dependencies:
libgcc-ng: '>=9.4.0' libgcc-ng: ">=9.4.0"
libzlib: '>=1.2.11,<1.3.0a0' libzlib: ">=1.2.11,<1.3.0a0"
hash: hash:
md5: 5b8c42eb62e9fc961af70bdd6a26e168 md5: 5b8c42eb62e9fc961af70bdd6a26e168
sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0
@ -231,20 +230,20 @@ package:
version: 8.6.12 version: 8.6.12
- category: dev - category: dev
dependencies: dependencies:
bzip2: '>=1.0.8,<2.0a0' bzip2: ">=1.0.8,<2.0a0"
ld_impl_linux-64: '>=2.36.1' ld_impl_linux-64: ">=2.36.1"
libffi: '>=3.4.2,<3.5.0a0' libffi: ">=3.4.2,<3.5.0a0"
libgcc-ng: '>=12' libgcc-ng: ">=12"
libnsl: '>=2.0.0,<2.1.0a0' libnsl: ">=2.0.0,<2.1.0a0"
libsqlite: '>=3.39.2,<4.0a0' libsqlite: ">=3.39.2,<4.0a0"
libuuid: '>=2.32.1,<3.0a0' libuuid: ">=2.32.1,<3.0a0"
libzlib: '>=1.2.12,<1.3.0a0' libzlib: ">=1.2.12,<1.3.0a0"
ncurses: '>=6.3,<7.0a0' ncurses: ">=6.3,<7.0a0"
openssl: '>=3.0.5,<4.0a0' openssl: ">=3.0.5,<4.0a0"
readline: '>=8.1.2,<9.0a0' readline: ">=8.1.2,<9.0a0"
tk: '>=8.6.12,<8.7.0a0' tk: ">=8.6.12,<8.7.0a0"
tzdata: '' tzdata: ""
xz: '>=5.2.6,<5.3.0a0' xz: ">=5.2.6,<5.3.0a0"
hash: hash:
md5: 98d77e6496f7516d6b3c508f71c102fc md5: 98d77e6496f7516d6b3c508f71c102fc
sha256: 51858b574a043bd0f7225880ecb11624c0545ef04865f848cd5a54c487bc637f sha256: 51858b574a043bd0f7225880ecb11624c0545ef04865f848cd5a54c487bc637f
@ -256,7 +255,7 @@ package:
version: 3.10.6 version: 3.10.6
- category: dev - category: dev
dependencies: dependencies:
python: '>=3.5' python: ">=3.5"
hash: hash:
md5: 6d3ccbc56256204925bfa8378722792f md5: 6d3ccbc56256204925bfa8378722792f
sha256: 86133878250874b3823bae7369bcad90187132537726cb1b546d88a0552d24de sha256: 86133878250874b3823bae7369bcad90187132537726cb1b546d88a0552d24de
@ -268,7 +267,7 @@ package:
version: 22.1.0 version: 22.1.0
- category: dev - category: dev
dependencies: dependencies:
python: '' python: ""
hash: hash:
md5: 39161f81cc5e5ca45b8226fbb06c6905 md5: 39161f81cc5e5ca45b8226fbb06c6905
sha256: 9423ded508ebda87dae21d7876134e406ffeb88e6059f3fe1a909d180c351959 sha256: 9423ded508ebda87dae21d7876134e406ffeb88e6059f3fe1a909d180c351959
@ -280,7 +279,7 @@ package:
version: 1.1.1 version: 1.1.1
- category: dev - category: dev
dependencies: dependencies:
python: '>=2.7' python: ">=2.7"
hash: hash:
md5: b4613d7e7a493916d867842a6a148054 md5: b4613d7e7a493916d867842a6a148054
sha256: 268be33a290e3d51467ab29cbb5a80cf79f69dade2f2dead25d7f80d76c3543a sha256: 268be33a290e3d51467ab29cbb5a80cf79f69dade2f2dead25d7f80d76c3543a
@ -292,7 +291,7 @@ package:
version: 1.11.0 version: 1.11.0
- category: dev - category: dev
dependencies: dependencies:
python: '>=3.6' python: ">=3.6"
hash: hash:
md5: e8fbc1b54b25f4b08281467bc13b70cc md5: e8fbc1b54b25f4b08281467bc13b70cc
sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b sha256: 4acc7151cef5920d130f2e0a7615559cce8bfb037aeecb14d4d359ae3d9bc51b
@ -313,10 +312,10 @@ package:
optional: true optional: true
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-2_cp310.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.10-2_cp310.tar.bz2
version: '3.10' version: "3.10"
- category: main - category: main
dependencies: dependencies:
python: '>=3.8' python: ">=3.8"
hash: hash:
md5: a64c8af7be7a6348c1d9e530f88fa4da md5: a64c8af7be7a6348c1d9e530f88fa4da
sha256: 54d2d1480c6f01a9b0a368276b95a71062eb3995183b10de04ec26d5e2571fcd sha256: 54d2d1480c6f01a9b0a368276b95a71062eb3995183b10de04ec26d5e2571fcd
@ -328,7 +327,7 @@ package:
version: 65.3.0 version: 65.3.0
- category: dev - category: dev
dependencies: dependencies:
python: '>=3.7' python: ">=3.7"
hash: hash:
md5: 5844808ffab9ebdb694585b50ba02a96 md5: 5844808ffab9ebdb694585b50ba02a96
sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f sha256: 4cd48aba7cd026d17e86886af48d0d2ebc67ed36f87f6534f4b67138f5a5a58f
@ -340,7 +339,7 @@ package:
version: 2.0.1 version: 2.0.1
- category: main - category: main
dependencies: dependencies:
python: '!=3.0,!=3.1,!=3.2,!=3.3,!=3.4' python: "!=3.0,!=3.1,!=3.2,!=3.3,!=3.4"
hash: hash:
md5: 1ca02aaf78d9c70d9a81a3bed5752022 md5: 1ca02aaf78d9c70d9a81a3bed5752022
sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc sha256: aede66e6370f3b936164a703e48362f9080d7162234058fb2ee63cc84d528afc
@ -352,8 +351,8 @@ package:
version: 0.37.1 version: 0.37.1
- category: dev - category: dev
dependencies: dependencies:
pyparsing: '>=2.0.2,!=3.0.5' pyparsing: ">=2.0.2,!=3.0.5"
python: '>=3.6' python: ">=3.6"
hash: hash:
md5: 71f1ab2de48613876becddd496371c85 md5: 71f1ab2de48613876becddd496371c85
sha256: 8322a9e93e2e09fbf2103f0d37c9287b7b97387125abadd6db26686084893540 sha256: 8322a9e93e2e09fbf2103f0d37c9287b7b97387125abadd6db26686084893540
@ -362,12 +361,12 @@ package:
optional: true optional: true
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/packaging-21.3-pyhd8ed1ab_0.tar.bz2 url: https://conda.anaconda.org/conda-forge/noarch/packaging-21.3-pyhd8ed1ab_0.tar.bz2
version: '21.3' version: "21.3"
- category: main - category: main
dependencies: dependencies:
python: '>=3.7' python: ">=3.7"
setuptools: '' setuptools: ""
wheel: '' wheel: ""
hash: hash:
md5: 0b43abe4d3ee93e82742d37def53a836 md5: 0b43abe4d3ee93e82742d37def53a836
sha256: 507ae896a2f9ccc7bbedc2f7fd10dc2ac666575769b55b5e94ca44b86db193e0 sha256: 507ae896a2f9ccc7bbedc2f7fd10dc2ac666575769b55b5e94ca44b86db193e0
@ -379,7 +378,7 @@ package:
version: 22.2.2 version: 22.2.2
- category: dev - category: dev
dependencies: dependencies:
python: '>=3.10,<3.11.0a0' python: ">=3.10,<3.11.0a0"
python_abi: 3.10.* *_cp310 python_abi: 3.10.* *_cp310
hash: hash:
md5: 97f9a22577338f91a94dfac5c1a65a50 md5: 97f9a22577338f91a94dfac5c1a65a50
@ -392,14 +391,14 @@ package:
version: 1.0.0 version: 1.0.0
- category: dev - category: dev
dependencies: dependencies:
attrs: '>=19.2.0' attrs: ">=19.2.0"
iniconfig: '' iniconfig: ""
packaging: '' packaging: ""
pluggy: '>=0.12,<2.0' pluggy: ">=0.12,<2.0"
py: '>=1.8.2' py: ">=1.8.2"
python: '>=3.10,<3.11.0a0' python: ">=3.10,<3.11.0a0"
python_abi: 3.10.* *_cp310 python_abi: 3.10.* *_cp310
tomli: '>=1.0.0' tomli: ">=1.0.0"
hash: hash:
md5: 18ef27d620d67af2feef22acfd42cf4a md5: 18ef27d620d67af2feef22acfd42cf4a
sha256: 7caab18204cccb2f43afd52cec61755c4cc5c0224d01eeaed3a3c8b720cc6926 sha256: 7caab18204cccb2f43afd52cec61755c4cc5c0224d01eeaed3a3c8b720cc6926
@ -441,7 +440,7 @@ package:
platform: linux-64 platform: linux-64
source: null source: null
url: https://files.pythonhosted.org/packages/04/a2/d918dcd22354d8958fe113e1a3630137e0fc8b44859ade3063982eacd2a4/idna-3.3-py3-none-any.whl url: https://files.pythonhosted.org/packages/04/a2/d918dcd22354d8958fe113e1a3630137e0fc8b44859ade3063982eacd2a4/idna-3.3-py3-none-any.whl
version: '3.3' version: "3.3"
- category: main - category: main
dependencies: {} dependencies: {}
hash: hash:
@ -455,7 +454,7 @@ package:
version: 1.26.12 version: 1.26.12
- category: dev - category: dev
dependencies: dependencies:
pytest: '>=5.0' pytest: ">=5.0"
hash: hash:
sha256: 8a9e226d6c0ef09fcf20c94eb3405c388af438a90f3e39687f84166da82d5948 sha256: 8a9e226d6c0ef09fcf20c94eb3405c388af438a90f3e39687f84166da82d5948
manager: pip manager: pip
@ -467,10 +466,10 @@ package:
version: 3.8.2 version: 3.8.2
- category: main - category: main
dependencies: dependencies:
certifi: '>=2017.4.17' certifi: ">=2017.4.17"
charset-normalizer: '>=2,<3' charset-normalizer: ">=2,<3"
idna: '>=2.5,<4' idna: ">=2.5,<4"
urllib3: '>=1.21.1,<1.27' urllib3: ">=1.21.1,<1.27"
hash: hash:
sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349 sha256: 8fefa2a1a1365bf5520aac41836fbee479da67864514bdb821f31ce07ce65349
manager: pip manager: pip

View File

@ -37,7 +37,7 @@ package:
optional: false optional: false
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
version: '0.1' version: "0.1"
- category: main - category: main
dependencies: dependencies:
_libgcc_mutex: 0.1 conda_forge _libgcc_mutex: 0.1 conda_forge
@ -53,7 +53,7 @@ package:
- category: main - category: main
dependencies: dependencies:
_libgcc_mutex: 0.1 conda_forge _libgcc_mutex: 0.1 conda_forge
libgomp: '>=7.5.0' libgomp: ">=7.5.0"
hash: hash:
md5: 561e277319a41d4f24f5c05a9ef63c04 md5: 561e277319a41d4f24f5c05a9ef63c04
sha256: 81c74d38c80345e195106dc3a5b4063b61f2209402bf9f6c7e2abadef4f544a3 sha256: 81c74d38c80345e195106dc3a5b4063b61f2209402bf9f6c7e2abadef4f544a3
@ -62,11 +62,11 @@ package:
optional: false optional: false
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-1_gnu.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-1_gnu.tar.bz2
version: '4.5' version: "4.5"
- category: main - category: main
dependencies: dependencies:
_libgcc_mutex: 0.1 conda_forge _libgcc_mutex: 0.1 conda_forge
_openmp_mutex: '>=4.5' _openmp_mutex: ">=4.5"
hash: hash:
md5: 63eaf0f146cc80abd84743d48d667da4 md5: 63eaf0f146cc80abd84743d48d667da4
sha256: 5c9c8a23e45215e0c218a477c69054ed2ac577c4499795649dd3343687d380ff sha256: 5c9c8a23e45215e0c218a477c69054ed2ac577c4499795649dd3343687d380ff
@ -78,7 +78,7 @@ package:
version: 11.2.0 version: 11.2.0
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=7.5.0' libgcc-ng: ">=7.5.0"
hash: hash:
md5: dcddf696ff5dfcab567100d691678e18 md5: dcddf696ff5dfcab567100d691678e18
sha256: 8292882ea5cfbe2e6b708432dfab0668f2acddb96ab7618163001acbd13678e4 sha256: 8292882ea5cfbe2e6b708432dfab0668f2acddb96ab7618163001acbd13678e4
@ -90,7 +90,7 @@ package:
version: 1.2.11 version: 1.2.11
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=7.5.0' libgcc-ng: ">=7.5.0"
libzlib: 1.2.11 h36c2ea0_1013 libzlib: 1.2.11 h36c2ea0_1013
hash: hash:
md5: cf7190238072a41e9579e4476a6a60b8 md5: cf7190238072a41e9579e4476a6a60b8
@ -137,7 +137,7 @@ package:
version: 10.0.20348.0 version: 10.0.20348.0
- category: main - category: main
dependencies: dependencies:
ucrt: '>=10.0.20348.0' ucrt: ">=10.0.20348.0"
hash: hash:
md5: 33d07ebe91062743eabc9e53a60d18e1 md5: 33d07ebe91062743eabc9e53a60d18e1
sha256: f2efbbe3465a34b195edd218d5572c998d94c5964d4e495c3d7f95c8bb5fcaac sha256: f2efbbe3465a34b195edd218d5572c998d94c5964d4e495c3d7f95c8bb5fcaac
@ -149,7 +149,7 @@ package:
version: 14.29.30037 version: 14.29.30037
- category: main - category: main
dependencies: dependencies:
vs2015_runtime: '>=14.28.29325' vs2015_runtime: ">=14.28.29325"
hash: hash:
md5: c2aecbc9b00ba6f352e27d3d61fd31fb md5: c2aecbc9b00ba6f352e27d3d61fd31fb
sha256: c6e7d2b9ceafe2cc302fb8fce1dfcc46b49c5333757424a34294bffdfb5569be sha256: c6e7d2b9ceafe2cc302fb8fce1dfcc46b49c5333757424a34294bffdfb5569be
@ -158,11 +158,11 @@ package:
optional: false optional: false
platform: win-64 platform: win-64
url: https://conda.anaconda.org/conda-forge/win-64/vc-14.2-hb210afc_6.tar.bz2 url: https://conda.anaconda.org/conda-forge/win-64/vc-14.2-hb210afc_6.tar.bz2
version: '14.2' version: "14.2"
- category: main - category: main
dependencies: dependencies:
vc: '>=14.1,<15.0a0' vc: ">=14.1,<15.0a0"
vs2015_runtime: '>=14.16.27012' vs2015_runtime: ">=14.16.27012"
hash: hash:
md5: b28dd2488b4e5f892c67071acc1d0a8c md5: b28dd2488b4e5f892c67071acc1d0a8c
sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e
@ -175,8 +175,8 @@ package:
- category: main - category: main
dependencies: dependencies:
libzlib: 1.2.11 h8ffe710_1013 libzlib: 1.2.11 h8ffe710_1013
vc: '>=14.1,<15.0a0' vc: ">=14.1,<15.0a0"
vs2015_runtime: '>=14.16.27012' vs2015_runtime: ">=14.16.27012"
hash: hash:
md5: 866517df4fd8bb813bc20c24cf7b8f05 md5: 866517df4fd8bb813bc20c24cf7b8f05
sha256: 5b5db5ec4c2eb51a2bb8c5e22df9938703fd292da8a41c1e8355d5972f9fe12c sha256: 5b5db5ec4c2eb51a2bb8c5e22df9938703fd292da8a41c1e8355d5972f9fe12c
@ -187,7 +187,7 @@ package:
url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.11-h8ffe710_1013.tar.bz2 url: https://conda.anaconda.org/conda-forge/win-64/zlib-1.2.11-h8ffe710_1013.tar.bz2
version: 1.2.11 version: 1.2.11
- dependencies: - dependencies:
anyio: '>=3.0.0,<4' anyio: ">=3.0.0,<4"
hash: hash:
sha256: 26a18cbda5e6b651c964c12c88b36d9898481cd428ed6e063f5f29c418f73050 sha256: 26a18cbda5e6b651c964c12c88b36d9898481cd428ed6e063f5f29c418f73050
manager: pip manager: pip
@ -198,9 +198,9 @@ package:
version: 0.17.1 version: 0.17.1
category: main category: main
- dependencies: - dependencies:
asgiref: '>=3.4.0' asgiref: ">=3.4.0"
click: '>=7.0' click: ">=7.0"
h11: '>=0.8' h11: ">=0.8"
hash: hash:
sha256: 19e2a0e96c9ac5581c01eb1a79a7d2f72bb479691acd2b8921fce48ed5b961a6 sha256: 19e2a0e96c9ac5581c01eb1a79a7d2f72bb479691acd2b8921fce48ed5b961a6
manager: pip manager: pip

View File

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

View File

@ -21,8 +21,8 @@ metadata:
package: package:
- category: main - category: main
dependencies: dependencies:
vc: '>=14.1,<15.0a0' vc: ">=14.1,<15.0a0"
vs2015_runtime: '>=14.16.27012' vs2015_runtime: ">=14.16.27012"
hash: hash:
md5: b28dd2488b4e5f892c67071acc1d0a8c md5: b28dd2488b4e5f892c67071acc1d0a8c
sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e

View File

@ -20,8 +20,8 @@ metadata:
package: package:
- dependencies: - dependencies:
vc: '>=14.1,<15.0a0' vc: ">=14.1,<15.0a0"
vs2015_runtime: '>=14.16.27012' vs2015_runtime: ">=14.16.27012"
hash: hash:
md5: b28dd2488b4e5f892c67071acc1d0a8c md5: b28dd2488b4e5f892c67071acc1d0a8c
sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e

View File

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

View File

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

View File

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

View File

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

View File

@ -1,5 +1,4 @@
libmambapy 2.0.5 (December 12, 2024) # libmambapy 2.0.5 (December 12, 2024)
====================================
Enhancements: 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 - 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 - 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: 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 - 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 - 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: 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 - 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 - 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: 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 - 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 - 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: 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 - 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: Bug fixes:
- fixed incorrect syntax in static_build.yml by @Klaim in https://github.com/mamba-org/mamba/pull/3592 - 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: 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 - 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 - 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: CI fixes and doc:
- Rollback to micromamba 1.5.10 in CI by @JohanMabille in https://github.com/mamba-org/mamba/pull/3491 - 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: CI fixes and doc:
- doc: add github links to documentation by @timhoffm in https://github.com/mamba-org/mamba/pull/3471 - 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: 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 - 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 - 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: CI fixes and doc:
- Fix wrong version of miniforge in doc by @Hind-M in https://github.com/mamba-org/mamba/pull/3462 - 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 - 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: 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 - 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: 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 - 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: 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 - 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 - 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: CI fixes and doc:
- chore(ci): bump github action versions by @corneliusroemer in https://github.com/mamba-org/mamba/pull/3350 - 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 - 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: Bug fixes:
- Split `ContextOptions::enable_logging_and_signal_handling` into 2 different options by @Klaim in https://github.com/mamba-org/mamba/pull/3329 - 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: 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 - 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: Enhancements:
- Add checking typos to pre-commit by @Hind-M in https://github.com/mamba-org/mamba/pull/3278 - 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: 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 - 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 - 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: Enhancements:
@ -405,8 +373,7 @@ CI fixes and doc:
- Small changelog additions by @AntoinePrv in https://github.com/mamba-org/mamba/pull/3254 - 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: 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 - 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 - 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: Enhancements:
@ -445,8 +411,7 @@ Enhancements:
CI fixes and doc: CI fixes and doc:
libmambapy 2.0.0alpha2 (February 02, 2024) # libmambapy 2.0.0alpha2 (February 02, 2024)
==========================================
Enhancements: 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 - 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 - 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: 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 - 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: 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 - 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 - 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: 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 - 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 - 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: Enhancements:
@ -602,8 +563,7 @@ CI fixes and doc:
- Splitted GHA workflow by @JohanMabille in https://github.com/mamba-org/mamba/pull/2779 - 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 - 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: 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 - 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 - 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: 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 - 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: Bug fixes:
- Fixed missing subdirs in mamba by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2632 - 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: Enhancements:
@ -670,21 +622,19 @@ CI fixes and doc:
- Switch to setup-micromamba by @pavelzw in https://github.com/mamba-org/mamba/pull/2610 - 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 - 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: Bug fixes:
- Support future deprecated API for Context by @Hind-M in https://github.com/mamba-org/mamba/pull/2494 - 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: Enhancements:
- Remove dead code / attribute by @AntoinePrv in https://github.com/mamba-org/mamba/pull/2454 - 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 - 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 - 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 - 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 - 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: CI fixes and doc:
- Fixes typos by @nsoranzo in https://github.com/mamba-org/mamba/pull/2419 - 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 - 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: 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 - 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! 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 - - 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 - - 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: Enhancements:
@ -747,8 +690,7 @@ CI fixes & docs:
- fix tests for pkg_cache by @wolfv in https://github.com/mamba-org/mamba/pull/2259 - 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 - 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 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 `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 - - Remove feedstock patches by @wolfv in #2216
- - Fixed static dependency order by @JohanMabille in #2201 - - 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 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: Add warning to manual install instructions #2100
- docs: Consistently use curl for fetching files #2126 - 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 :) Our biggest version number yet! Finally a 1.0 release :)
@ -808,20 +748,15 @@ Enhancements:
- better test isolation (thanks @AntoinePrv) #1903 - better test isolation (thanks @AntoinePrv) #1903
- Test special characters in basic auth (thanks @jonashaag) #2012 - 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: Bug fixes:
- make compilation with external fmt library work #1987 - make compilation with external fmt library work #1987
libmambapy 0.26.0 (September 30, 2022) # libmambapy 0.26.0 (September 30, 2022)
======================================
libmambapy 0.25.0 (July 26, 2022)
=================================
# libmambapy 0.25.0 (July 26, 2022)
Enhancements: Enhancements:
@ -833,27 +768,22 @@ Enhancements:
- Add utilities for better error reporting and refactor Queue #1789 - Add utilities for better error reporting and refactor Queue #1789
- Test improvements (thanks @AntoinePrv) #1777, #1778 - 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 Bug fixes
- fix curl callback to not exit anymore but report a proper error #1684 - 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 Bug fixes
- Fix thread clean up and singleton destruction order (thanks @Klaim) #1666, #1620 - Fix thread clean up and singleton destruction order (thanks @Klaim) #1666, #1620
- Show reason for multi-download failure (thanks @syslaila) #1652 - 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. 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. 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 structured problem extraction #1570, #1566
- Add API to remove repo from pool - 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.0 (February 07, 2022)
=====================================
libmambapy 0.21.1 (February 11, 2022)
=====================================
libmambapy 0.21.0 (February 07, 2022)
=====================================
Improvements Improvements
@ -894,16 +814,11 @@ Improvements
- Use clang-format from pypi (thanks @chrisburr) #1430 - Use clang-format from pypi (thanks @chrisburr) #1430
- Incremental ccache updates (thanks @jonashaag) #1445 - 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 Bug fixes
@ -911,25 +826,22 @@ Bug fixes
- Solver has function to get more solver errors (@wolfv) #1310 - Solver has function to get more solver errors (@wolfv) #1310
- Remove libmamba from install_requires for libmambapy (@duncanmmacleod) #1303 - 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 Bug fixes
- Fix default log level, use warning everywhere (@adriendelsalle) #1279 - Fix default log level, use warning everywhere (@adriendelsalle) #1279
- Allow mamba to set max extraction threads using `MAMBA_EXTRACT_THREADS` env var (@adriendelsalle) #1281 - 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 New features
- Create a separate target for Python bindings, split projects, improve CMake options (@adriendelsalle) #1219 #1243 - 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: 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 - micromamba: expose setting for `add_pip_as_python_dependency` #1203
- stop displaying banner when running `mamba list` #1184 (thanks @madhur-thandon) - 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 a User-Agent header to all requests (mamba/0.16.0) (thanks @shankerwangmiao)
- Add `micromamba env export (--explicit)` to micromamba - 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 - Add constraint with pin when updating
- Expose methods for virtual packages to Python (thanks @madhur-tandon) - 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) - 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!) - 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) - Add mamba.bat in front of PATH (#1112, thanks @isuruf)
- Fix mamba not writable cache errors (#1108) - 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) - micromamba autocomplete now ready for usage (#1091)
- improved file:// urls for windows to properly work (#1090) - improved file:// urls for windows to properly work (#1090)
0.15.1 (July 15, 2021) # 0.15.1 (July 15, 2021)
======================
New features: New features:
- add `mamba init` command and add mamba.sh (#1075, thanks @isuruf & #1078) - add `mamba init` command and add mamba.sh (#1075, thanks @isuruf & #1078)
- add flexible channel priority option in micromamba CLI (#1087) - add flexible channel priority option in micromamba CLI (#1087)
- improved autocompletion for micromamba (#1079) - improved autocompletion for micromamba (#1079)
Bug fixes: Bug fixes:
- improve "file://" URL handling, fix local channel on Windows (#1085) - improve "file://" URL handling, fix local channel on Windows (#1085)
- fix CONDA_SUBDIR not being used in mamba (#1084) - fix CONDA_SUBDIR not being used in mamba (#1084)
- pass in channel_alias and custom_channels from conda to mamba (#1081) - 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: Big changes:
- improve solutions by inspecting dependency versions as well (libsolv PR: - improve solutions by inspecting dependency versions as well (libsolv PR:
https://github.com/openSUSE/libsolv/pull/457) @wolfv https://github.com/openSUSE/libsolv/pull/457) @wolfv
- properly implement strict channel priority (libsolv PR: - properly implement strict channel priority (libsolv PR:
https://github.com/openSUSE/libsolv/pull/459) @adriendelsalle 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 previous implementation did not follow conda's semantics. Mamba now has
three modes, just like conda: strict, flexible and disabled. Strict will three modes, just like conda: strict, flexible and disabled. Strict will
completely disregard any packages from lower-priority channels if a completely disregard any packages from lower-priority channels if a
@ -1021,6 +931,7 @@ Big changes:
Thanks for the contribution, @afranchuk! #1033 Thanks for the contribution, @afranchuk! #1033
New features New features
- remove orphaned packages such as dependencies of explicitely installed - remove orphaned packages such as dependencies of explicitely installed
packages (@adriendelsalle) #1040 packages (@adriendelsalle) #1040
- add a diff character before package name in transaction table to improve - add a diff character before package name in transaction table to improve
@ -1033,30 +944,31 @@ New features
- add docs for package resolution - add docs for package resolution
Bug fixes: Bug fixes:
- Fix small output issues (#1060) - Fix small output issues (#1060)
- More descriptive incorrect download error (thanks @AntoinePrv) #1066 - More descriptive incorrect download error (thanks @AntoinePrv) #1066
- respect channel specific pins when updating (#1045) - respect channel specific pins when updating (#1045)
- keep track features in PackageInfo class (#1046) - keep track features in PackageInfo class (#1046)
# 0.14.1 (June 25, 2021)
0.14.1 (June 25, 2021)
======================
New features New features
- [micromamba] add remove command, to remove keys of vectors (@marimeireles) - [micromamba] add remove command, to remove keys of vectors (@marimeireles)
#1011 #1011
Bug fixes Bug fixes
- [micromamba] fixed in config prepend and append sequence (@adriendelsalle) - [micromamba] fixed in config prepend and append sequence (@adriendelsalle)
#1023 #1023
- fix bug when username has @ (@madhur-tandon) #1025 - fix bug when username has @ (@madhur-tandon) #1025
- fix wrong update spec in history (@madhur-tandon) #1028 - fix wrong update spec in history (@madhur-tandon) #1028
- [mamba] silent pinned packages using JSON output (@adriendelsalle) #1031 - [mamba] silent pinned packages using JSON output (@adriendelsalle) #1031
0.14.0 (June 16, 2021) # 0.14.0 (June 16, 2021)
======================
New features New features
- [micromamba] add `config set`, `get`, `append` and `prepend`, `remove` - [micromamba] add `config set`, `get`, `append` and `prepend`, `remove`
(@marimeireles) #838 (@marimeireles) #838
- automatically include `pip` in conda dependencies when having pip packages to - 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 - [micromamba] Use a proper requirements.txt file for pip installations #1008
Bug fixes Bug fixes
- fix double-print int transaction (@JohanMabille) #952 - fix double-print int transaction (@JohanMabille) #952
- fix strip function (@wolfv) #974 - fix strip function (@wolfv) #974
- [micromamba] expand home directory in `--rc-file` (@adriendelsalle) #979 - [micromamba] expand home directory in `--rc-file` (@adriendelsalle) #979
@ -1082,64 +995,70 @@ Bug fixes
- fix long paths support on Windows (@adriendelsalle) #994 - fix long paths support on Windows (@adriendelsalle) #994
General improvement General improvement
- remove duplicate snippet (@madhur-tandon) #957 - remove duplicate snippet (@madhur-tandon) #957
- add `trace` log level (@adriendelsalle) #988 - add `trace` log level (@adriendelsalle) #988
Docs Docs
- concepts, user guide, configuration, update installation and build locally - concepts, user guide, configuration, update installation and build locally
(@adriendelsalle) #953 (@adriendelsalle) #953
- advance usage section, linking (@adriendelsalle) #998 - advance usage section, linking (@adriendelsalle) #998
- repo, channel, subdir, repodata, tarball (@adriendelsalle) #1004 - repo, channel, subdir, repodata, tarball (@adriendelsalle) #1004
- artifacts verification (@adriendelsalle) #1000 - artifacts verification (@adriendelsalle) #1000
0.13.1 (May 17, 2021) # 0.13.1 (May 17, 2021)
=====================
Bug fixes Bug fixes
- [micromamba] pin only minor python version #948 - [micromamba] pin only minor python version #948
- [micromamba] use openssl certs when not linking statically #949 - [micromamba] use openssl certs when not linking statically #949
0.13.0 (May 12, 2021) # 0.13.0 (May 12, 2021)
=====================
New features New features
- [mamba & micromamba] aggregated progress bar for package downloading and - [mamba & micromamba] aggregated progress bar for package downloading and
extraction (thanks @JohanMabille) #928 extraction (thanks @JohanMabille) #928
Bug fixes Bug fixes
- [micromamba] fixes for micromamba usage in constructor #935 - [micromamba] fixes for micromamba usage in constructor #935
- [micromamba] fixes for the usage of lock files #936 - [micromamba] fixes for the usage of lock files #936
- [micromamba] switched from libsodium to openssl for ed25519 signature - [micromamba] switched from libsodium to openssl for ed25519 signature
verification #933 verification #933
Docs Docs
- Mention mambaforge in the README (thanks @s-pike) #932 - Mention mambaforge in the README (thanks @s-pike) #932
0.12.3 (May 10, 2021) # 0.12.3 (May 10, 2021)
=====================
New features New features
- [libmamba] add free-function to use an existing conda root prefix - [libmamba] add free-function to use an existing conda root prefix
(@adriendelsalle) #927 (@adriendelsalle) #927
General improvements General improvements
- [micromamba] fix a typo in documentation (@cjber) #926 - [micromamba] fix a typo in documentation (@cjber) #926
0.12.2 (May 03, 2021) # 0.12.2 (May 03, 2021)
=====================
New features New features
- [micromamba] add initial framework for TUF validation (@adriendelsalle) #916 - [micromamba] add initial framework for TUF validation (@adriendelsalle) #916
#919 #919
- [micromamba] add channels from specs to download (@wolfv) #918 - [micromamba] add channels from specs to download (@wolfv) #918
0.12.1 (Apr 30, 2021) # 0.12.1 (Apr 30, 2021)
=====================
New features New features
- [micromamba] env list subcommand (@wolfv) #913 - [micromamba] env list subcommand (@wolfv) #913
Bug fixes Bug fixes
- [micromamba] fix multiple shell init with cmd.exe (@adriendelsalle) #915 - [micromamba] fix multiple shell init with cmd.exe (@adriendelsalle) #915
- [micromamba] fix activate with --stack option (@wolfv) #914 - [micromamba] fix activate with --stack option (@wolfv) #914
- [libmamba] only try loading ssl certificates when needed (@adriendelsalle) - [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) - [micromamba] allow 'ultra-dry' config checks in final build (@adriendelsalle)
#912 #912
0.12.0 (Apr 26, 2021) # 0.12.0 (Apr 26, 2021)
=====================
New features New features
- [libmamba] add experimental shell autocompletion (@wolfv) #900 - [libmamba] add experimental shell autocompletion (@wolfv) #900
- [libmamba] add token handling (@wolfv) #886 - [libmamba] add token handling (@wolfv) #886
- [libmamba] add experimental pip support in spec files (@wolfv) #885 - [libmamba] add experimental pip support in spec files (@wolfv) #885
Bug fixes Bug fixes
- [libmamba] ignore failing pyc compilation for noarch packages (@wolfv) #904 - [libmamba] ignore failing pyc compilation for noarch packages (@wolfv) #904
#905 #905
- [libmamba] fix string wrapping in error message (@bdice) #902 - [libmamba] fix string wrapping in error message (@bdice) #902
@ -1168,6 +1088,7 @@ Bug fixes
- [mamba] fix `env update` command (@ScottWales) #891 - [mamba] fix `env update` command (@ScottWales) #891
General improvements General improvements
- [libmamba] use lockfile, fix channel not loaded logic (@wolfv) #903 - [libmamba] use lockfile, fix channel not loaded logic (@wolfv) #903
- [libmamba] make root_prefix warnings more selective (@adriendelsalle) #899 - [libmamba] make root_prefix warnings more selective (@adriendelsalle) #899
- [libmamba] house-keeping in python tests (@adriendelsalle) #898 - [libmamba] house-keeping in python tests (@adriendelsalle) #898
@ -1176,8 +1097,7 @@ General improvements
- [libmamba] deactivate ca-certificates search when using offline mode - [libmamba] deactivate ca-certificates search when using offline mode
(@adriendelsalle) #893 (@adriendelsalle) #893
0.11.3 (Apr 21, 2021) # 0.11.3 (Apr 21, 2021)
====================
- [libmamba] make platform rc configurable #883 - [libmamba] make platform rc configurable #883
- [libmamba] expand user home in target and root prefixes #882 - [libmamba] expand user home in target and root prefixes #882
@ -1187,21 +1107,18 @@ General improvements
- [micromamba] fix `clean` flags handling #880 - [micromamba] fix `clean` flags handling #880
- [libmamba] C-API teardown on error #879 - [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] create "base" env only for install operation #875
- [libmamba] remove confirmation prompt of root_prefix in shell init #874 - [libmamba] remove confirmation prompt of root_prefix in shell init #874
- [libmamba] improve overrides between target_prefix and env_name #873 - [libmamba] improve overrides between target_prefix and env_name #873
- [micromamba] fix use of `-p,--prefix` and spec file 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 - [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 - [libmamba] add experimental mode that unlock edge features #858
- [micromamba] add `--experimental` umamba flag to enable experimental mode - [micromamba] add `--experimental` umamba flag to enable experimental mode
@ -1222,8 +1139,7 @@ General improvements
API #866 API #866
- [libmamba] add capapbility to set CLI config from C-API #867 - [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] allow creation of empty env (without specs) #824 #827
- [micromamba] automatically create empy `base` env at new root prefix #836 - [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 - fix CI C++ tests (unix/libmamba) and Python tests (win/mamba) wrongly
successful #853 successful #853
0.9.2 (Apr 1, 2021) # 0.9.2 (Apr 1, 2021)
====================
- [micromamba] fix unc url support (thanks @adament) - [micromamba] fix unc url support (thanks @adament)
- [micromamba] add --channel-alias as cli option to micromamba (thanks - [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 - add simple context debugging, dry run tests and other test framework
improvements improvements
0.9.1 (Mar 26, 2021) # 0.9.1 (Mar 26, 2021)
====================
- [micromamba] fix remove command target_prefix selection - [micromamba] fix remove command target_prefix selection
- [micromamba] improve target_prefix fallback for CLI, add tests (thanks - [micromamba] improve target_prefix fallback for CLI, add tests (thanks
@adriendelsalle) @adriendelsalle)
0.9.0 (Mar 25, 2021) # 0.9.0 (Mar 25, 2021)
====================
- [micromamba] use strict channels priority by default - [micromamba] use strict channels priority by default
- [micromamba] change config precedence order: API>CLI>ENV>RC - [micromamba] change config precedence order: API>CLI>ENV>RC
@ -1283,15 +1196,12 @@ General improvements
- add pinned specs for env update (thanks @wolfv) - add pinned specs for env update (thanks @wolfv)
- properly adhere to run_constrains (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 setting network options before explicit spec installation
- [micromamba] fix python based tests for windows - [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 - use stoull (instead of stoi) to prevent overflow with long package build
numbers (thanks @pbauwens-kbc) numbers (thanks @pbauwens-kbc)
@ -1305,9 +1215,7 @@ General improvements
- [micromamba] libsolv log messages to stderr (thanks @mariusvniekerk) - [micromamba] libsolv log messages to stderr (thanks @mariusvniekerk)
- [micromamba] better curl error messages - [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) - [micromamba] condarc and mambarc config file reading (and config subcommand)
(thanks @adriendelsalle) (thanks @adriendelsalle)
@ -1333,9 +1241,7 @@ General improvements
- [micromamba] compare cleaned URLs for cache invalidation - [micromamba] compare cleaned URLs for cache invalidation
- [micromamba] add regex handling to list command - [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 - [micromamba] better validation of extracted directories
- [mamba] add additional tests for authentication and simple repodata server - [mamba] add additional tests for authentication and simple repodata server
@ -1345,14 +1251,11 @@ General improvements
- [micromamba] add clean functionality - [micromamba] add clean functionality
- [micromamba] always make target prefix path absolute - [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) - [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] Improve CTRL+C signal handling behavior and simplify code
- [micromamba] Revert extraction to temporary directory because of invalid - [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 - [micromamba] Clean up partially extracted archives when CTRL+C interruption
occured occured
0.7.11 (Feb 2, 2021) # 0.7.11 (Feb 2, 2021)
====================
- [micromamba] use wrapped call when compiling noarch Python code, which - [micromamba] use wrapped call when compiling noarch Python code, which
properly calls chcp for Windows properly calls chcp for Windows
@ -1370,58 +1272,49 @@ General improvements
- first extract to temporary directory, then move to final pkgs cache to - first extract to temporary directory, then move to final pkgs cache to
prevent corrupted extracted data prevent corrupted extracted data
0.7.10 (Jan 22, 2021) # 0.7.10 (Jan 22, 2021)
====================
- [micromamba] properly fix PATH when linking, prevents missing - [micromamba] properly fix PATH when linking, prevents missing
vcruntime140.dll vcruntime140.dll
- [mamba] add virtual packages when creating any environment, not just on - [mamba] add virtual packages when creating any environment, not just on
update (thanks @cbalioglu) update (thanks @cbalioglu)
0.7.9 (Jan 19, 2021) # 0.7.9 (Jan 19, 2021)
====================
- [micromamba] fix PATH when linking - [micromamba] fix PATH when linking
0.7.8 (Jan 14, 2021) # 0.7.8 (Jan 14, 2021)
====================
- [micromamba] retry on corrupted repodata - [micromamba] retry on corrupted repodata
- [mamba & micromamba] fix error handling when writing 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 - [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 - [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 - [micromamba] better error handling for YAML file reading, allows to pass in
`-n` and `-p` from command line `-n` and `-p` from command line
- [mamba & micromamba] ignore case of HTTP headers - [mamba & micromamba] ignore case of HTTP headers
- [mamba] fix channel keys are without tokens (thanks @s22chan) - [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 - [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 installation of noarch files with long prefixes
- [micromamba] fix activation on windows with whitespaces in root prefix - [micromamba] fix activation on windows with whitespaces in root prefix
(thanks @adriendelsalle) (thanks @adriendelsalle)
- [micromamba] add `--json` output to micromamba list - [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 - [micromamba] explicit specs installing should be better now
- empty lines are ignored - empty lines are ignored
@ -1430,13 +1323,11 @@ General improvements
- Fix symlink packing for mamba package creation and transmute - Fix symlink packing for mamba package creation and transmute
- Do not keep tempfiles around - 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) - 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 - Improve activation and deactivation logic for micromamba
- Switching `subprocess` implementation to more tested `reproc++` - Switching `subprocess` implementation to more tested `reproc++`
@ -1450,7 +1341,6 @@ General improvements
- Fix compile time warning (thanks @obilaniu) - Fix compile time warning (thanks @obilaniu)
- Fixed wrong CondaValueError import statement in mamba.py (thanks @saraedum) - 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 - 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_prerelease = "{{ version_prerelease_name }}"
__version__ = ".".join(map(str, version_info)) __version__ = ".".join(map(str, version_info))
if version_prerelease != "": 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": { "B_0.1.0.tar.bz2": {
"build": "abc", "build": "abc",
"build_number": 0, "build_number": 0,
"depends": [ "depends": ["a"],
"a"
],
"license": "BSD", "license": "BSD",
"license_family": "BSD", "license_family": "BSD",
"md5": "85107fc10154734ef34a5a75685be684", "md5": "85107fc10154734ef34a5a75685be684",

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

File diff suppressed because it is too large Load Diff

View File

@ -31,7 +31,7 @@ package:
optional: false optional: false
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
version: '0.1' version: "0.1"
- category: main - category: main
dependencies: {} dependencies: {}
hash: hash:
@ -114,7 +114,7 @@ package:
- category: main - category: main
dependencies: dependencies:
_libgcc_mutex: 0.1 conda_forge _libgcc_mutex: 0.1 conda_forge
libgomp: '>=7.5.0' libgomp: ">=7.5.0"
hash: hash:
md5: 73aaf86a425cc6e73fcf236a5a46396d md5: 73aaf86a425cc6e73fcf236a5a46396d
sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22 sha256: fbe2c5e56a653bebb982eda4876a9178aedfc2b545f25d0ce9c4c0b508253d22
@ -123,11 +123,11 @@ package:
optional: false optional: false
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
version: '4.5' version: "4.5"
- category: main - category: main
dependencies: dependencies:
_libgcc_mutex: 0.1 conda_forge _libgcc_mutex: 0.1 conda_forge
_openmp_mutex: '>=4.5' _openmp_mutex: ">=4.5"
hash: hash:
md5: 4f05bc9844f7c101e6e147dab3c88d5c md5: 4f05bc9844f7c101e6e147dab3c88d5c
sha256: 2fde3d9f0199bf4f5447b35d3fd74d058c17ef2b6c68815eb1b469f2aec138b9 sha256: 2fde3d9f0199bf4f5447b35d3fd74d058c17ef2b6c68815eb1b469f2aec138b9
@ -139,7 +139,7 @@ package:
version: 12.1.0 version: 12.1.0
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=9.3.0' libgcc-ng: ">=9.3.0"
hash: hash:
md5: a1fd65c7ccbf10880423d82bca54eb54 md5: a1fd65c7ccbf10880423d82bca54eb54
sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa sha256: cb521319804640ff2ad6a9f118d972ed76d86bea44e5626c09a13d38f562e1fa
@ -151,7 +151,7 @@ package:
version: 1.0.8 version: 1.0.8
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=9.4.0' libgcc-ng: ">=9.4.0"
hash: hash:
md5: d645c6d2ac96843a2bfaccd2d62b3ac3 md5: d645c6d2ac96843a2bfaccd2d62b3ac3
sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e sha256: ab6e9856c21709b7b517e940ae7028ae0737546122f83c2aa5d692860c3b149e
@ -163,7 +163,7 @@ package:
version: 3.4.2 version: 3.4.2
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=9.4.0' libgcc-ng: ">=9.4.0"
hash: hash:
md5: 39b1328babf85c7c3a61636d9cd50206 md5: 39b1328babf85c7c3a61636d9cd50206
sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad sha256: 32f4fb94d99946b0dabfbbfd442b25852baf909637f2eed1ffe3baea15d02aad
@ -175,9 +175,9 @@ package:
version: 2.0.0 version: 2.0.0
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
libgfortran-ng: '' libgfortran-ng: ""
libgfortran5: '>=10.4.0' libgfortran5: ">=10.4.0"
hash: hash:
md5: 839776c4e967bc881c21da197127a3ae md5: 839776c4e967bc881c21da197127a3ae
sha256: 64cc1937eece9d0922de2b25f3ca2c4d5ac49fc33a4915a5b445bce08f3b6716 sha256: 64cc1937eece9d0922de2b25f3ca2c4d5ac49fc33a4915a5b445bce08f3b6716
@ -189,7 +189,7 @@ package:
version: 0.3.21 version: 0.3.21
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=9.3.0' libgcc-ng: ">=9.3.0"
hash: hash:
md5: 772d69f030955d9646d3d0eaf21d859d md5: 772d69f030955d9646d3d0eaf21d859d
sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3 sha256: 54f118845498353c936826f8da79b5377d23032bcac8c4a02de2019e26c3f6b3
@ -201,7 +201,7 @@ package:
version: 2.32.1 version: 2.32.1
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
hash: hash:
md5: 8302381297332ea50532cf2c67961080 md5: 8302381297332ea50532cf2c67961080
sha256: 38cf13bff23409683f2da6b0ee156d964f40e6c3dabcee626e0a118e37ab02e4 sha256: 38cf13bff23409683f2da6b0ee156d964f40e6c3dabcee626e0a118e37ab02e4
@ -213,7 +213,7 @@ package:
version: 1.2.12 version: 1.2.12
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=10.3.0' libgcc-ng: ">=10.3.0"
hash: hash:
md5: 4acfc691e64342b9dae57cf2adc63238 md5: 4acfc691e64342b9dae57cf2adc63238
sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065 sha256: b801e8cf4b2c9a30bce5616746c6c2a4e36427f045b46d9fc08a4ed40a9f7065
@ -222,11 +222,11 @@ package:
optional: false optional: false
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.3-h27087fc_1.tar.bz2
version: '6.3' version: "6.3"
- category: main - category: main
dependencies: dependencies:
ca-certificates: '' ca-certificates: ""
libgcc-ng: '>=12' libgcc-ng: ">=12"
hash: hash:
md5: 5302986dcd5fb4bb1f390159eb66757a md5: 5302986dcd5fb4bb1f390159eb66757a
sha256: 5f207c1ae5d49e205e0b883c1b7db7c4e9581973a7eb19c12724a221cec169bb sha256: 5f207c1ae5d49e205e0b883c1b7db7c4e9581973a7eb19c12724a221cec169bb
@ -238,7 +238,7 @@ package:
version: 3.0.5 version: 3.0.5
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
hash: hash:
md5: 2161070d867d1b1204ea749c8eec4ef0 md5: 2161070d867d1b1204ea749c8eec4ef0
sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162 sha256: 03a6d28ded42af8a347345f82f3eebdd6807a08526d47899a42d62d319609162
@ -250,7 +250,7 @@ package:
version: 5.2.6 version: 5.2.6
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=9.4.0' libgcc-ng: ">=9.4.0"
hash: hash:
md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae md5: 4cb3ad778ec2d5a7acbdf254eb1c42ae
sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535 sha256: a4e34c710eeb26945bdbdaba82d3d74f60a78f54a874ec10d373811a5d217535
@ -262,7 +262,7 @@ package:
version: 0.2.5 version: 0.2.5
- category: main - category: main
dependencies: dependencies:
libopenblas: '>=0.3.21,<1.0a0' libopenblas: ">=0.3.21,<1.0a0"
hash: hash:
md5: d9b7a8639171f6c6fa0a983edabcfe2b md5: d9b7a8639171f6c6fa0a983edabcfe2b
sha256: 4e4c60d3fe0b95ffb25911dace509e3532979f5deef4364141c533c5ca82dd39 sha256: 4e4c60d3fe0b95ffb25911dace509e3532979f5deef4364141c533c5ca82dd39
@ -274,8 +274,8 @@ package:
version: 3.9.0 version: 3.9.0
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
libzlib: '>=1.2.12,<1.3.0a0' libzlib: ">=1.2.12,<1.3.0a0"
hash: hash:
md5: 90136dc0a305db4e1df24945d431457b md5: 90136dc0a305db4e1df24945d431457b
sha256: 9f160517d6e660002a660cb041312f8846ef5ff2acea4dde85fd2f76fd859cdb sha256: 9f160517d6e660002a660cb041312f8846ef5ff2acea4dde85fd2f76fd859cdb
@ -287,8 +287,8 @@ package:
version: 3.39.2 version: 3.39.2
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
ncurses: '>=6.3,<7.0a0' ncurses: ">=6.3,<7.0a0"
hash: hash:
md5: db2ebbe2943aae81ed051a6a9af8e0fa md5: db2ebbe2943aae81ed051a6a9af8e0fa
sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8 sha256: f5f383193bdbe01c41cb0d6f99fec68e820875e842e6e8b392dbe1a9b6c43ed8
@ -300,8 +300,8 @@ package:
version: 8.1.2 version: 8.1.2
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=9.4.0' libgcc-ng: ">=9.4.0"
libzlib: '>=1.2.11,<1.3.0a0' libzlib: ">=1.2.11,<1.3.0a0"
hash: hash:
md5: 5b8c42eb62e9fc961af70bdd6a26e168 md5: 5b8c42eb62e9fc961af70bdd6a26e168
sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0 sha256: 032fd769aad9d4cad40ba261ab222675acb7ec951a8832455fce18ef33fa8df0
@ -337,11 +337,11 @@ package:
version: 3.9.0 version: 3.9.0
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
libsqlite: 3.39.2 h753d276_1 libsqlite: 3.39.2 h753d276_1
libzlib: '>=1.2.12,<1.3.0a0' libzlib: ">=1.2.12,<1.3.0a0"
ncurses: '>=6.3,<7.0a0' ncurses: ">=6.3,<7.0a0"
readline: '>=8.1.2,<9.0a0' readline: ">=8.1.2,<9.0a0"
hash: hash:
md5: 2676ec698ce91567fca50654ac1b18ba md5: 2676ec698ce91567fca50654ac1b18ba
sha256: 33ff4e6ee0f323b9f2b763f887f80eea230e254ccfa5d9ab5af4e6d09da344d1 sha256: 33ff4e6ee0f323b9f2b763f887f80eea230e254ccfa5d9ab5af4e6d09da344d1
@ -353,20 +353,20 @@ package:
version: 3.39.2 version: 3.39.2
- category: main - category: main
dependencies: dependencies:
bzip2: '>=1.0.8,<2.0a0' bzip2: ">=1.0.8,<2.0a0"
ld_impl_linux-64: '>=2.36.1' ld_impl_linux-64: ">=2.36.1"
libffi: '>=3.4.2,<3.5.0a0' libffi: ">=3.4.2,<3.5.0a0"
libgcc-ng: '>=12' libgcc-ng: ">=12"
libnsl: '>=2.0.0,<2.1.0a0' libnsl: ">=2.0.0,<2.1.0a0"
libuuid: '>=2.32.1,<3.0a0' libuuid: ">=2.32.1,<3.0a0"
libzlib: '>=1.2.11,<1.3.0a0' libzlib: ">=1.2.11,<1.3.0a0"
ncurses: '>=6.3,<7.0a0' ncurses: ">=6.3,<7.0a0"
openssl: '>=3.0.3,<4.0a0' openssl: ">=3.0.3,<4.0a0"
readline: '>=8.1,<9.0a0' readline: ">=8.1,<9.0a0"
sqlite: '>=3.38.5,<4.0a0' sqlite: ">=3.38.5,<4.0a0"
tk: '>=8.6.12,<8.7.0a0' tk: ">=8.6.12,<8.7.0a0"
tzdata: '' tzdata: ""
xz: '>=5.2.5,<5.3.0a0' xz: ">=5.2.5,<5.3.0a0"
hash: hash:
md5: 894f6c234741ffc61505de11b7a588ba md5: 894f6c234741ffc61505de11b7a588ba
sha256: 915c68c398d85132a7f80bc65432d435d7445bbb96fbd2e56c3a3a70aa4fd76a sha256: 915c68c398d85132a7f80bc65432d435d7445bbb96fbd2e56c3a3a70aa4fd76a
@ -378,7 +378,7 @@ package:
version: 3.9.13 version: 3.9.13
- category: main - category: main
dependencies: dependencies:
python: '>=3.7' python: ">=3.7"
hash: hash:
md5: d02e889937175119b88bf176221cda44 md5: d02e889937175119b88bf176221cda44
sha256: 13d0db66d383cd7209fca181531f86b74cdad3119a362f3f9c6fb82f2f8242c4 sha256: 13d0db66d383cd7209fca181531f86b74cdad3119a362f3f9c6fb82f2f8242c4
@ -390,7 +390,7 @@ package:
version: 2.1.2 version: 2.1.2
- category: main - category: main
dependencies: dependencies:
python: '>=3.6' python: ">=3.6"
hash: hash:
md5: 40b50b8b030f5f2f22085c062ed013dd md5: 40b50b8b030f5f2f22085c062ed013dd
sha256: d697b7db5194d5248850b57fd313ecbb29bba9aaab0346ee55816589afbd1d0e sha256: d697b7db5194d5248850b57fd313ecbb29bba9aaab0346ee55816589afbd1d0e
@ -399,7 +399,7 @@ package:
optional: false optional: false
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/noarch/idna-3.3-pyhd8ed1ab_0.tar.bz2 url: https://conda.anaconda.org/conda-forge/noarch/idna-3.3-pyhd8ed1ab_0.tar.bz2
version: '3.3' version: "3.3"
- category: main - category: main
dependencies: dependencies:
python: 3.9.* python: 3.9.*
@ -411,10 +411,10 @@ package:
optional: false optional: false
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-2_cp39.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/python_abi-3.9-2_cp39.tar.bz2
version: '3.9' version: "3.9"
- category: main - category: main
dependencies: dependencies:
python: '>=3.6' python: ">=3.6"
hash: hash:
md5: 974bca71d00364630f63f31fa7e059cb md5: 974bca71d00364630f63f31fa7e059cb
sha256: 8e5c8bc3508e8995431e94c5019405ac5c4e7612bb2c9ea372340f2b7d91e8c5 sha256: 8e5c8bc3508e8995431e94c5019405ac5c4e7612bb2c9ea372340f2b7d91e8c5
@ -426,7 +426,7 @@ package:
version: 2022.2.1 version: 2022.2.1
- category: main - category: main
dependencies: dependencies:
python: '' python: ""
hash: hash:
md5: e5f25f8dbc060e9a8d912e432202afc2 md5: e5f25f8dbc060e9a8d912e432202afc2
sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6 sha256: a85c38227b446f42c5b90d9b642f2c0567880c15d72492d8da074a59c8f91dd6
@ -438,7 +438,7 @@ package:
version: 1.16.0 version: 1.16.0
- category: main - category: main
dependencies: dependencies:
python: '>=3.6' python: ">=3.6"
hash: hash:
md5: 8b29b2c12cb21dbd057755e5fd22d005 md5: 8b29b2c12cb21dbd057755e5fd22d005
sha256: 7c6cdd29a8334a9f9c0f17658cea4f2f365f9f6dbc63a2301a5b855794beb613 sha256: 7c6cdd29a8334a9f9c0f17658cea4f2f365f9f6dbc63a2301a5b855794beb613
@ -450,7 +450,7 @@ package:
version: 8.0.1 version: 8.0.1
- category: main - category: main
dependencies: dependencies:
python: '>=2.7' python: ">=2.7"
hash: hash:
md5: f832c45a477c78bebd107098db465095 md5: f832c45a477c78bebd107098db465095
sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1 sha256: f0f3d697349d6580e4c2f35ba9ce05c65dc34f9f049e85e45da03800b46139c1
@ -462,7 +462,7 @@ package:
version: 0.10.2 version: 0.10.2
- category: main - category: main
dependencies: dependencies:
python: '>=3.7' python: ">=3.7"
hash: hash:
md5: a9d85960bc62d53cc4ea0d1d27f73c98 md5: a9d85960bc62d53cc4ea0d1d27f73c98
sha256: 1fe5b48aa997616a7537de4d05c0b7fd11b712895e35493cac7604e8d5f97ad7 sha256: 1fe5b48aa997616a7537de4d05c0b7fd11b712895e35493cac7604e8d5f97ad7
@ -474,7 +474,7 @@ package:
version: 4.3.0 version: 4.3.0
- category: main - category: main
dependencies: dependencies:
python: '>=3.7' python: ">=3.7"
hash: hash:
md5: a3508a0c850745b875de88aea4c40cc5 md5: a3508a0c850745b875de88aea4c40cc5
sha256: bb6920451dad059ca31581ca6e36c5f1534fad8a8efe869c7eb9c9e3846b4f53 sha256: bb6920451dad059ca31581ca6e36c5f1534fad8a8efe869c7eb9c9e3846b4f53
@ -486,8 +486,8 @@ package:
version: 3.8.1 version: 3.8.1
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
hash: hash:
md5: fb77592255b486cbf2b6206eece84169 md5: fb77592255b486cbf2b6206eece84169
@ -500,7 +500,7 @@ package:
version: 0.26.0 version: 0.26.0
- category: main - category: main
dependencies: dependencies:
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
hash: hash:
md5: 40edd9ebc04e4b4ec27c1008e5e3f99d md5: 40edd9ebc04e4b4ec27c1008e5e3f99d
@ -513,9 +513,9 @@ package:
version: 8.1.3 version: 8.1.3
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
libstdcxx-ng: '>=12' libstdcxx-ng: ">=12"
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
hash: hash:
md5: 89d1393c99343641037afd4c5034ca05 md5: 89d1393c99343641037afd4c5034ca05
@ -528,8 +528,8 @@ package:
version: 1.1.3 version: 1.1.3
- category: main - category: main
dependencies: dependencies:
python: '>=3' python: ">=3"
typing_extensions: '' typing_extensions: ""
hash: hash:
md5: e7cf19f1afe6b3a6a4a9fa383080ebd1 md5: e7cf19f1afe6b3a6a4a9fa383080ebd1
sha256: 8ef01ca59dd2eb73b187329f6405523d16cb870f77cc8f219fa50b7ac46c17c3 sha256: 8ef01ca59dd2eb73b187329f6405523d16cb870f77cc8f219fa50b7ac46c17c3
@ -541,9 +541,9 @@ package:
version: 0.13.0 version: 0.13.0
- category: main - category: main
dependencies: dependencies:
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
zipp: '>=0.5' zipp: ">=0.5"
hash: hash:
md5: 4c2a0eabf0b8980b2c755646a6f750eb md5: 4c2a0eabf0b8980b2c755646a6f750eb
sha256: 3a13f3af58e7a5b50516c9bf10473953e51d9a5367f93fafd04c2bccc9162983 sha256: 3a13f3af58e7a5b50516c9bf10473953e51d9a5367f93fafd04c2bccc9162983
@ -555,8 +555,8 @@ package:
version: 4.11.4 version: 4.11.4
- category: main - category: main
dependencies: dependencies:
python: '>=3.6' python: ">=3.6"
zipp: '>=3.1.0' zipp: ">=3.1.0"
hash: hash:
md5: 393a52ae5450ac981a0b67c8175d61fa md5: 393a52ae5450ac981a0b67c8175d61fa
sha256: fdf6e04a7e5fc84851828d8415b6182ac0780d4df3dfc230d1134ece27b3e4a1 sha256: fdf6e04a7e5fc84851828d8415b6182ac0780d4df3dfc230d1134ece27b3e4a1
@ -568,8 +568,8 @@ package:
version: 5.9.0 version: 5.9.0
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=10.3.0' libgcc-ng: ">=10.3.0"
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
hash: hash:
md5: 7cda413e43b252044a270c2477031c5c md5: 7cda413e43b252044a270c2477031c5c
@ -582,12 +582,12 @@ package:
version: 2.1.1 version: 2.1.1
- category: main - category: main
dependencies: dependencies:
libblas: '>=3.9.0,<4.0a0' libblas: ">=3.9.0,<4.0a0"
libcblas: '>=3.9.0,<4.0a0' libcblas: ">=3.9.0,<4.0a0"
libgcc-ng: '>=12' libgcc-ng: ">=12"
liblapack: '>=3.9.0,<4.0a0' liblapack: ">=3.9.0,<4.0a0"
libstdcxx-ng: '>=12' libstdcxx-ng: ">=12"
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
hash: hash:
md5: 25285f960f9c7f4e8ef56171af5e2a22 md5: 25285f960f9c7f4e8ef56171af5e2a22
@ -600,8 +600,8 @@ package:
version: 1.23.2 version: 1.23.2
- category: main - category: main
dependencies: dependencies:
python: '>=3.6' python: ">=3.6"
tenacity: '>=6.2.0' tenacity: ">=6.2.0"
hash: hash:
md5: e95502aa0f8e3db05d198214472575de md5: e95502aa0f8e3db05d198214472575de
sha256: 491aed1569f2325a365f79b7d6a7e97bc01524e9a04ac2bb3df4ea4963757162 sha256: 491aed1569f2325a365f79b7d6a7e97bc01524e9a04ac2bb3df4ea4963757162
@ -613,8 +613,8 @@ package:
version: 5.10.0 version: 5.10.0
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=10.3.0' libgcc-ng: ">=10.3.0"
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
hash: hash:
md5: 5852c69cad74811dc3c95f9ab6a184ef md5: 5852c69cad74811dc3c95f9ab6a184ef
@ -627,8 +627,8 @@ package:
version: 5.9.1 version: 5.9.1
- category: main - category: main
dependencies: dependencies:
python: '>=3.6' python: ">=3.6"
six: '>=1.5' six: ">=1.5"
hash: hash:
md5: dd999d1cc9f79e67dbb855c8924c7984 md5: dd999d1cc9f79e67dbb855c8924c7984
sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da sha256: 54d7785c7678166aa45adeaccfc1d2b8c3c799ca2dc05d4a82bb39b1968bd7da
@ -640,10 +640,10 @@ package:
version: 2.8.2 version: 2.8.2
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=10.3.0' libgcc-ng: ">=10.3.0"
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
yaml: '>=0.2.5,<0.3.0a0' yaml: ">=0.2.5,<0.3.0a0"
hash: hash:
md5: dcc47a3b751508507183d17e569805e5 md5: dcc47a3b751508507183d17e569805e5
sha256: 569809030eed3c6b707a26172bc942a5a12fc8d76e53d3d28430761ecd60c900 sha256: 569809030eed3c6b707a26172bc942a5a12fc8d76e53d3d28430761ecd60c900
@ -652,10 +652,10 @@ package:
optional: false optional: false
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py39hb9d737c_4.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/pyyaml-6.0-py39hb9d737c_4.tar.bz2
version: '6.0' version: "6.0"
- category: main - category: main
dependencies: dependencies:
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
hash: hash:
md5: e2cb114a39b27ef1687a0c2c3e793cf6 md5: e2cb114a39b27ef1687a0c2c3e793cf6
@ -668,8 +668,8 @@ package:
version: 1.2.0 version: 1.2.0
- category: main - category: main
dependencies: dependencies:
python: '>=3.6' python: ">=3.6"
typing_extensions: '>=3.7.4' typing_extensions: ">=3.7.4"
hash: hash:
md5: 6fe3f5bd91f8c53a15e252d8f04a1bf5 md5: 6fe3f5bd91f8c53a15e252d8f04a1bf5
sha256: 79bb4632cac057e2502ead3f68b7e044edd4ce3232b9379c60b9b45e6e410ab1 sha256: 79bb4632cac057e2502ead3f68b7e044edd4ce3232b9379c60b9b45e6e410ab1
@ -693,10 +693,10 @@ package:
version: 4.3.0 version: 4.3.0
- category: main - category: main
dependencies: dependencies:
idna: '>=2.8' idna: ">=2.8"
python: '>=3.7' python: ">=3.7"
sniffio: '>=1.1' sniffio: ">=1.1"
typing_extensions: '' typing_extensions: ""
hash: hash:
md5: d65ef75084f8adbadb696dfd91148e79 md5: d65ef75084f8adbadb696dfd91148e79
sha256: eda988270b57bd726381257b99ffbf283b2f1ab1bf12d45697241a6c6d166143 sha256: eda988270b57bd726381257b99ffbf283b2f1ab1bf12d45697241a6c6d166143
@ -708,8 +708,8 @@ package:
version: 3.6.1 version: 3.6.1
- category: main - category: main
dependencies: dependencies:
markupsafe: '>=2.0' markupsafe: ">=2.0"
python: '>=3.7' python: ">=3.7"
hash: hash:
md5: c8490ed5c70966d232fdd389d0dbed37 md5: c8490ed5c70966d232fdd389d0dbed37
sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5 sha256: b045faba7130ab263db6a8fdc96b1a3de5fcf85c4a607c5f11a49e76851500b5
@ -721,9 +721,9 @@ package:
version: 3.1.2 version: 3.1.2
- category: main - category: main
dependencies: dependencies:
importlib-metadata: '' importlib-metadata: ""
markupsafe: '>=0.9.2' markupsafe: ">=0.9.2"
python: '>=3.6' python: ">=3.6"
hash: hash:
md5: 013adf4a461ccd7ab25f9285ec882918 md5: 013adf4a461ccd7ab25f9285ec882918
sha256: 3933ba40d3b5f576aea44b7a1a789ad4f25e22447f95f4a71fd14da7c8fb63df sha256: 3933ba40d3b5f576aea44b7a1a789ad4f25e22447f95f4a71fd14da7c8fb63df
@ -735,13 +735,13 @@ package:
version: 1.2.1 version: 1.2.1
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
libstdcxx-ng: '>=12' libstdcxx-ng: ">=12"
numpy: '>=1.19.5,<2.0a0' numpy: ">=1.19.5,<2.0a0"
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python-dateutil: '>=2.8.1' python-dateutil: ">=2.8.1"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
pytz: '>=2020.1' pytz: ">=2020.1"
hash: hash:
md5: 74e00961703972cf33b44a6fca7c3d51 md5: 74e00961703972cf33b44a6fca7c3d51
sha256: 69db5094d93c6c517584630d0ab59ad258b30ed900ea226ab96b790b3a433e90 sha256: 69db5094d93c6c517584630d0ab59ad258b30ed900ea226ab96b790b3a433e90
@ -753,10 +753,10 @@ package:
version: 1.4.3 version: 1.4.3
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
typing-extensions: '>=3.7.4.3' typing-extensions: ">=3.7.4.3"
hash: hash:
md5: 4d1efa3a8b23d541462c9355e4e27772 md5: 4d1efa3a8b23d541462c9355e4e27772
sha256: 54c5244f63d307327fb18a5a7856d334b85ebd113c87cfd494d06a844111946f sha256: 54c5244f63d307327fb18a5a7856d334b85ebd113c87cfd494d06a844111946f
@ -768,8 +768,8 @@ package:
version: 1.9.2 version: 1.9.2
- category: main - category: main
dependencies: dependencies:
click: '>=5.0' click: ">=5.0"
python: '>=2.7' python: ">=2.7"
hash: hash:
md5: 9c113379ac0729312b59b5e65906d6e6 md5: 9c113379ac0729312b59b5e65906d6e6
sha256: c9866ce56086cc352b2472f7843ebada0f614ac3fb0cdd60fdca3b1d34278d27 sha256: c9866ce56086cc352b2472f7843ebada0f614ac3fb0cdd60fdca3b1d34278d27
@ -781,9 +781,9 @@ package:
version: 0.20.0 version: 0.20.0
- category: main - category: main
dependencies: dependencies:
greenlet: '!=0.4.17' greenlet: "!=0.4.17"
libgcc-ng: '>=12' libgcc-ng: ">=12"
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
hash: hash:
md5: b5833e63928f4c39ebb4f317cdbd54a2 md5: b5833e63928f4c39ebb4f317cdbd54a2
@ -796,9 +796,9 @@ package:
version: 1.4.40 version: 1.4.40
- category: main - category: main
dependencies: dependencies:
click: '>=7.*' click: ">=7.*"
h11: '>=0.8' h11: ">=0.8"
python: '>=3.9,<3.10.0a0' python: ">=3.9,<3.10.0a0"
python_abi: 3.9.* *_cp39 python_abi: 3.9.* *_cp39
hash: hash:
md5: 8506d8537230a9449f74dfe9dc394e3c md5: 8506d8537230a9449f74dfe9dc394e3c
@ -811,11 +811,11 @@ package:
version: 0.18.3 version: 0.18.3
- category: main - category: main
dependencies: dependencies:
importlib-metadata: '' importlib-metadata: ""
importlib_resources: '' importlib_resources: ""
mako: '' mako: ""
python: '>=3.6' python: ">=3.6"
sqlalchemy: '>=1.3.0' sqlalchemy: ">=1.3.0"
hash: hash:
md5: bdde76f5d65a9374d07aa3dfa27571e0 md5: bdde76f5d65a9374d07aa3dfa27571e0
sha256: 01ef4ddec9e64ebc29c476155d62436e6eb493acc58c8dd7365f1723dc2bbb86 sha256: 01ef4ddec9e64ebc29c476155d62436e6eb493acc58c8dd7365f1723dc2bbb86
@ -827,10 +827,10 @@ package:
version: 1.8.1 version: 1.8.1
- category: main - category: main
dependencies: dependencies:
pydantic: '>=1.8.2' pydantic: ">=1.8.2"
python: '>=3.6' python: ">=3.6"
sqlalchemy: '>=1.4.17' sqlalchemy: ">=1.4.17"
sqlalchemy2-stubs: '' sqlalchemy2-stubs: ""
hash: hash:
md5: f7ccfe14f564bc81ef5ecfbbc91300f3 md5: f7ccfe14f564bc81ef5ecfbbc91300f3
sha256: 31de5a4016c2ded996342599dffb48fd764522228c601860966c724278dc65d2 sha256: 31de5a4016c2ded996342599dffb48fd764522228c601860966c724278dc65d2
@ -842,9 +842,9 @@ package:
version: 0.0.6 version: 0.0.6
- category: main - category: main
dependencies: dependencies:
anyio: '>=3.4.0,<5.0.0a' anyio: ">=3.4.0,<5.0.0a"
python: '>=3.7' python: ">=3.7"
typing_extensions: '' typing_extensions: ""
hash: hash:
md5: f6618f4eab5aecbcade4a43e3c98700a md5: f6618f4eab5aecbcade4a43e3c98700a
sha256: c9d7ec8e8911df2db60db610c931d3a3a41a22030b059da29bbdc1edebe3df79 sha256: c9d7ec8e8911df2db60db610c931d3a3a41a22030b059da29bbdc1edebe3df79
@ -856,8 +856,8 @@ package:
version: 0.19.1 version: 0.19.1
- category: main - category: main
dependencies: dependencies:
pydantic: '>=1.6.2,!=1.7,!=1.7.1,!=1.7.2,!=1.7.3,!=1.8,!=1.8.1,<2.0.0' 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' python: ">=3.6.1"
starlette: 0.19.1.* starlette: 0.19.1.*
hash: hash:
md5: 9149c57f075278a4083ba20fc4196be0 md5: 9149c57f075278a4083ba20fc4196be0

View File

@ -25,7 +25,7 @@ metadata:
- env.yml - env.yml
package: package:
- name: _libgcc_mutex - name: _libgcc_mutex
version: '0.1' version: "0.1"
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: {} dependencies: {}
@ -36,12 +36,12 @@ package:
category: main category: main
optional: false optional: false
- name: _openmp_mutex - name: _openmp_mutex
version: '4.5' version: "4.5"
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
_libgcc_mutex: '0.1' _libgcc_mutex: "0.1"
libgomp: '>=7.5.0' libgomp: ">=7.5.0"
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-2_gnu.tar.bz2
hash: hash:
md5: 73aaf86a425cc6e73fcf236a5a46396d md5: 73aaf86a425cc6e73fcf236a5a46396d
@ -53,8 +53,8 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
__glibc: '>=2.17,<3.0.a0' __glibc: ">=2.17,<3.0.a0"
libgcc-ng: '>=12' libgcc-ng: ">=12"
url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda url: https://conda.anaconda.org/conda-forge/linux-64/bzip2-1.0.8-h4bc722e_7.conda
hash: hash:
md5: 62ee74e96c5ebb0af99386de58cf9553 md5: 62ee74e96c5ebb0af99386de58cf9553
@ -73,11 +73,11 @@ package:
category: main category: main
optional: false optional: false
- name: ld_impl_linux-64 - name: ld_impl_linux-64
version: '2.43' version: "2.43"
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: 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 url: https://conda.anaconda.org/conda-forge/linux-64/ld_impl_linux-64-2.43-h712a8e2_2.conda
hash: hash:
md5: 048b02e3962f066da18efe3a21b77672 md5: 048b02e3962f066da18efe3a21b77672
@ -89,8 +89,8 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
__glibc: '>=2.17,<3.0.a0' __glibc: ">=2.17,<3.0.a0"
libgcc: '>=13' libgcc: ">=13"
url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda url: https://conda.anaconda.org/conda-forge/linux-64/libexpat-2.6.4-h5888daf_0.conda
hash: hash:
md5: db833e03127376d461e1e13e76f09b6c md5: db833e03127376d461e1e13e76f09b6c
@ -102,7 +102,7 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: 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 url: https://conda.anaconda.org/conda-forge/linux-64/libffi-3.4.2-h7f98852_5.tar.bz2
hash: hash:
md5: d645c6d2ac96843a2bfaccd2d62b3ac3 md5: d645c6d2ac96843a2bfaccd2d62b3ac3
@ -114,8 +114,8 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
_libgcc_mutex: '0.1' _libgcc_mutex: "0.1"
_openmp_mutex: '>=4.5' _openmp_mutex: ">=4.5"
url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda url: https://conda.anaconda.org/conda-forge/linux-64/libgcc-14.2.0-h77fa898_1.conda
hash: hash:
md5: 3cb76c3f10d3bc7f1105b2fc9db984df md5: 3cb76c3f10d3bc7f1105b2fc9db984df
@ -139,7 +139,7 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: 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 url: https://conda.anaconda.org/conda-forge/linux-64/libgomp-14.2.0-h77fa898_1.conda
hash: hash:
md5: cc3573974587f12dda90d96e3e55a702 md5: cc3573974587f12dda90d96e3e55a702
@ -151,8 +151,8 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
__glibc: '>=2.17,<3.0.a0' __glibc: ">=2.17,<3.0.a0"
libgcc-ng: '>=12' libgcc-ng: ">=12"
url: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda url: https://conda.anaconda.org/conda-forge/linux-64/libmpdec-4.0.0-h4bc722e_0.conda
hash: hash:
md5: aeb98fdeb2e8f25d43ef71fbacbeec80 md5: aeb98fdeb2e8f25d43ef71fbacbeec80
@ -164,9 +164,9 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
__glibc: '>=2.17,<3.0.a0' __glibc: ">=2.17,<3.0.a0"
libgcc: '>=13' libgcc: ">=13"
libzlib: '>=1.3.1,<2.0a0' libzlib: ">=1.3.1,<2.0a0"
url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda url: https://conda.anaconda.org/conda-forge/linux-64/libsqlite-3.47.0-hadc24fc_1.conda
hash: hash:
md5: b6f02b52a174e612e89548f4663ce56a md5: b6f02b52a174e612e89548f4663ce56a
@ -178,7 +178,7 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda url: https://conda.anaconda.org/conda-forge/linux-64/libuuid-2.38.1-h0b41bf4_0.conda
hash: hash:
md5: 40b61aab5c7ba9ff276c41cfffe6b80b md5: 40b61aab5c7ba9ff276c41cfffe6b80b
@ -190,8 +190,8 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
__glibc: '>=2.17,<3.0.a0' __glibc: ">=2.17,<3.0.a0"
libgcc: '>=13' libgcc: ">=13"
url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda url: https://conda.anaconda.org/conda-forge/linux-64/libzlib-1.3.1-hb9d3cd8_2.conda
hash: hash:
md5: edb0dca6bc32e4f4789199455a1dbeb8 md5: edb0dca6bc32e4f4789199455a1dbeb8
@ -199,12 +199,12 @@ package:
category: main category: main
optional: false optional: false
- name: ncurses - name: ncurses
version: '6.5' version: "6.5"
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
__glibc: '>=2.17,<3.0.a0' __glibc: ">=2.17,<3.0.a0"
libgcc-ng: '>=12' libgcc-ng: ">=12"
url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda url: https://conda.anaconda.org/conda-forge/linux-64/ncurses-6.5-he02047a_1.conda
hash: hash:
md5: 70caf8bb6cf39a0b6b7efc885f51c0fe md5: 70caf8bb6cf39a0b6b7efc885f51c0fe
@ -216,9 +216,9 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
__glibc: '>=2.17,<3.0.a0' __glibc: ">=2.17,<3.0.a0"
ca-certificates: '' ca-certificates: ""
libgcc: '>=13' libgcc: ">=13"
url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.2-hb9d3cd8_0.conda url: https://conda.anaconda.org/conda-forge/linux-64/openssl-3.3.2-hb9d3cd8_0.conda
hash: hash:
md5: 4d638782050ab6faa27275bed57e9b4e md5: 4d638782050ab6faa27275bed57e9b4e
@ -230,7 +230,7 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
python: '>=3.13.0a0' python: ">=3.13.0a0"
url: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh145f28c_0.conda url: https://conda.anaconda.org/conda-forge/noarch/pip-24.3.1-pyh145f28c_0.conda
hash: hash:
md5: ca3afe2d7b893a8c8cdf489d30a2b1a3 md5: ca3afe2d7b893a8c8cdf489d30a2b1a3
@ -242,24 +242,24 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
__glibc: '>=2.17,<3.0.a0' __glibc: ">=2.17,<3.0.a0"
bzip2: '>=1.0.8,<2.0a0' bzip2: ">=1.0.8,<2.0a0"
ld_impl_linux-64: '>=2.36.1' ld_impl_linux-64: ">=2.36.1"
libexpat: '>=2.6.3,<3.0a0' libexpat: ">=2.6.3,<3.0a0"
libffi: '>=3.4,<4.0a0' libffi: ">=3.4,<4.0a0"
libgcc: '>=13' libgcc: ">=13"
libmpdec: '>=4.0.0,<5.0a0' libmpdec: ">=4.0.0,<5.0a0"
libsqlite: '>=3.46.1,<4.0a0' libsqlite: ">=3.46.1,<4.0a0"
libuuid: '>=2.38.1,<3.0a0' libuuid: ">=2.38.1,<3.0a0"
libzlib: '>=1.3.1,<2.0a0' libzlib: ">=1.3.1,<2.0a0"
ncurses: '>=6.5,<7.0a0' ncurses: ">=6.5,<7.0a0"
openssl: '>=3.3.2,<4.0a0' openssl: ">=3.3.2,<4.0a0"
python_abi: 3.13.* python_abi: 3.13.*
readline: '>=8.2,<9.0a0' readline: ">=8.2,<9.0a0"
tk: '>=8.6.13,<8.7.0a0' tk: ">=8.6.13,<8.7.0a0"
tzdata: '' tzdata: ""
xz: '>=5.2.6,<6.0a0' xz: ">=5.2.6,<6.0a0"
pip: '' pip: ""
url: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.0-h9ebbce0_100_cp313.conda url: https://conda.anaconda.org/conda-forge/linux-64/python-3.13.0-h9ebbce0_100_cp313.conda
hash: hash:
md5: 08e9aef080f33daeb192b2ddc7e4721f md5: 08e9aef080f33daeb192b2ddc7e4721f
@ -267,7 +267,7 @@ package:
category: main category: main
optional: false optional: false
- name: python_abi - name: python_abi
version: '3.13' version: "3.13"
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: {} dependencies: {}
@ -278,12 +278,12 @@ package:
category: main category: main
optional: false optional: false
- name: readline - name: readline
version: '8.2' version: "8.2"
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
ncurses: '>=6.3,<7.0a0' ncurses: ">=6.3,<7.0a0"
url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda url: https://conda.anaconda.org/conda-forge/linux-64/readline-8.2-h8228510_1.conda
hash: hash:
md5: 47d31b792659ce70f470b5c82fdfb7a4 md5: 47d31b792659ce70f470b5c82fdfb7a4
@ -295,8 +295,8 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
libzlib: '>=1.2.13,<2.0.0a0' libzlib: ">=1.2.13,<2.0.0a0"
url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda url: https://conda.anaconda.org/conda-forge/linux-64/tk-8.6.13-noxft_h4845f30_101.conda
hash: hash:
md5: d453b98d9c83e71da0741bb0ff4d76bc md5: d453b98d9c83e71da0741bb0ff4d76bc
@ -319,7 +319,7 @@ package:
manager: conda manager: conda
platform: linux-64 platform: linux-64
dependencies: dependencies:
libgcc-ng: '>=12' libgcc-ng: ">=12"
url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/xz-5.2.6-h166bdaf_0.tar.bz2
hash: hash:
md5: 2161070d867d1b1204ea749c8eec4ef0 md5: 2161070d867d1b1204ea749c8eec4ef0
@ -327,7 +327,7 @@ package:
category: main category: main
optional: false optional: false
- name: checkm - name: checkm
version: '0.4' version: "0.4"
manager: pip manager: pip
platform: linux-64 platform: linux-64
dependencies: {} dependencies: {}
@ -337,11 +337,11 @@ package:
category: main category: main
optional: false optional: false
- name: starlette - name: starlette
version: '0.17.1' version: "0.17.1"
manager: pip manager: pip
platform: linux-64 platform: linux-64
dependencies: 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 url: https://files.pythonhosted.org/packages/32/57/e9c68acc2845ee4ca66202d19856f6a3581cab2a885d25d490103270ffa2/starlette-0.17.1-py3-none-any.whl
hash: hash:
sha256: 26a18cbda5e6b651c964c12c88b36d9898481cd428ed6e063f5f29c418f73050 sha256: 26a18cbda5e6b651c964c12c88b36d9898481cd428ed6e063f5f29c418f73050

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -38,7 +38,7 @@ package:
optional: false optional: false
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/_libgcc_mutex-0.1-conda_forge.tar.bz2
version: '0.1' version: "0.1"
- category: main - category: main
dependencies: dependencies:
_libgcc_mutex: 0.1 conda_forge _libgcc_mutex: 0.1 conda_forge
@ -54,7 +54,7 @@ package:
- category: main - category: main
dependencies: dependencies:
_libgcc_mutex: 0.1 conda_forge _libgcc_mutex: 0.1 conda_forge
libgomp: '>=7.5.0' libgomp: ">=7.5.0"
hash: hash:
md5: 561e277319a41d4f24f5c05a9ef63c04 md5: 561e277319a41d4f24f5c05a9ef63c04
sha256: 81c74d38c80345e195106dc3a5b4063b61f2209402bf9f6c7e2abadef4f544a3 sha256: 81c74d38c80345e195106dc3a5b4063b61f2209402bf9f6c7e2abadef4f544a3
@ -63,11 +63,11 @@ package:
optional: false optional: false
platform: linux-64 platform: linux-64
url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-1_gnu.tar.bz2 url: https://conda.anaconda.org/conda-forge/linux-64/_openmp_mutex-4.5-1_gnu.tar.bz2
version: '4.5' version: "4.5"
- category: main - category: main
dependencies: dependencies:
_libgcc_mutex: 0.1 conda_forge _libgcc_mutex: 0.1 conda_forge
_openmp_mutex: '>=4.5' _openmp_mutex: ">=4.5"
hash: hash:
md5: 63eaf0f146cc80abd84743d48d667da4 md5: 63eaf0f146cc80abd84743d48d667da4
sha256: 5c9c8a23e45215e0c218a477c69054ed2ac577c4499795649dd3343687d380ff sha256: 5c9c8a23e45215e0c218a477c69054ed2ac577c4499795649dd3343687d380ff
@ -79,7 +79,7 @@ package:
version: 11.2.0 version: 11.2.0
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=7.5.0' libgcc-ng: ">=7.5.0"
hash: hash:
md5: dcddf696ff5dfcab567100d691678e18 md5: dcddf696ff5dfcab567100d691678e18
sha256: 8292882ea5cfbe2e6b708432dfab0668f2acddb96ab7618163001acbd13678e4 sha256: 8292882ea5cfbe2e6b708432dfab0668f2acddb96ab7618163001acbd13678e4
@ -91,7 +91,7 @@ package:
version: 1.2.11 version: 1.2.11
- category: main - category: main
dependencies: dependencies:
libgcc-ng: '>=7.5.0' libgcc-ng: ">=7.5.0"
libzlib: 1.2.11 h36c2ea0_1013 libzlib: 1.2.11 h36c2ea0_1013
hash: hash:
md5: cf7190238072a41e9579e4476a6a60b8 md5: cf7190238072a41e9579e4476a6a60b8
@ -161,7 +161,7 @@ package:
version: 10.0.20348.0 version: 10.0.20348.0
- category: main - category: main
dependencies: dependencies:
ucrt: '>=10.0.20348.0' ucrt: ">=10.0.20348.0"
hash: hash:
md5: 33d07ebe91062743eabc9e53a60d18e1 md5: 33d07ebe91062743eabc9e53a60d18e1
sha256: f2efbbe3465a34b195edd218d5572c998d94c5964d4e495c3d7f95c8bb5fcaac sha256: f2efbbe3465a34b195edd218d5572c998d94c5964d4e495c3d7f95c8bb5fcaac
@ -173,7 +173,7 @@ package:
version: 14.29.30037 version: 14.29.30037
- category: main - category: main
dependencies: dependencies:
vs2015_runtime: '>=14.28.29325' vs2015_runtime: ">=14.28.29325"
hash: hash:
md5: c2aecbc9b00ba6f352e27d3d61fd31fb md5: c2aecbc9b00ba6f352e27d3d61fd31fb
sha256: c6e7d2b9ceafe2cc302fb8fce1dfcc46b49c5333757424a34294bffdfb5569be sha256: c6e7d2b9ceafe2cc302fb8fce1dfcc46b49c5333757424a34294bffdfb5569be
@ -182,11 +182,11 @@ package:
optional: false optional: false
platform: win-64 platform: win-64
url: https://conda.anaconda.org/conda-forge/win-64/vc-14.2-hb210afc_6.tar.bz2 url: https://conda.anaconda.org/conda-forge/win-64/vc-14.2-hb210afc_6.tar.bz2
version: '14.2' version: "14.2"
- category: main - category: main
dependencies: dependencies:
vc: '>=14.1,<15.0a0' vc: ">=14.1,<15.0a0"
vs2015_runtime: '>=14.16.27012' vs2015_runtime: ">=14.16.27012"
hash: hash:
md5: b28dd2488b4e5f892c67071acc1d0a8c md5: b28dd2488b4e5f892c67071acc1d0a8c
sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e sha256: 5b7e002932c0138d78d251caae0c571d13f857ff90e7ce21d58d67073381250e
@ -199,8 +199,8 @@ package:
- category: main - category: main
dependencies: dependencies:
libzlib: 1.2.11 h8ffe710_1013 libzlib: 1.2.11 h8ffe710_1013
vc: '>=14.1,<15.0a0' vc: ">=14.1,<15.0a0"
vs2015_runtime: '>=14.16.27012' vs2015_runtime: ">=14.16.27012"
hash: hash:
md5: 866517df4fd8bb813bc20c24cf7b8f05 md5: 866517df4fd8bb813bc20c24cf7b8f05
sha256: 5b5db5ec4c2eb51a2bb8c5e22df9938703fd292da8a41c1e8355d5972f9fe12c sha256: 5b5db5ec4c2eb51a2bb8c5e22df9938703fd292da8a41c1e8355d5972f9fe12c

View File

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

View File

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

View File

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