gitextract_zwz4fenl/ ├── .authors.yml ├── .devcontainer/ │ ├── apt-deps.txt │ ├── conda-forge/ │ │ └── devcontainer.json │ ├── defaults/ │ │ └── devcontainer.json │ ├── post_create.sh │ └── post_start.sh ├── .flake8 ├── .github/ │ ├── CODEOWNERS │ ├── ISSUE_TEMPLATE/ │ │ ├── 0_bug.yml │ │ ├── 1_feature.yml │ │ ├── 2_documentation.yml │ │ └── epic.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── TEST_FAILURE_REPORT_TEMPLATE.md │ ├── dependabot.yml │ ├── disclaimer.txt │ ├── labels.yml │ ├── template-files/ │ │ ├── config.yml │ │ └── templates/ │ │ ├── issue_template_details.yml │ │ └── pull_request_template_details.md │ └── workflows/ │ ├── builds-review.yaml │ ├── cla.yml │ ├── docs.yml │ ├── issues.yml │ ├── labels.yml │ ├── lock.yml │ ├── performance.yml │ ├── project.yml │ ├── stale.yml │ ├── tests.yml │ └── update.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── AUTHORS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── HOW_WE_USE_GITHUB.md ├── LICENSE ├── README.md ├── RELEASE.md ├── conda_libmamba_solver/ │ ├── __init__.py │ ├── conda_build_exceptions.py │ ├── exceptions.py │ ├── index.py │ ├── mamba_utils.py │ ├── plugin.py │ ├── repoquery.py │ ├── shards.py │ ├── shards_cache.py │ ├── shards_subset.py │ ├── shards_typing.py │ ├── solver.py │ ├── state.py │ └── utils.py ├── dev/ │ ├── requirements.txt │ └── scripts/ │ ├── BenchmarkChart.ipynb │ ├── httpx-fetch-all-shards.py │ └── requests-fetch-all-shards.py ├── docs/ │ ├── Makefile │ ├── _static/ │ │ └── css/ │ │ └── custom.css │ ├── _templates/ │ │ └── navbar_center.html │ ├── conf.py │ ├── dev/ │ │ ├── future-work.md │ │ ├── implementation.md │ │ ├── index.md │ │ ├── performance-testing.md │ │ ├── setup.md │ │ ├── sharded.md │ │ ├── shards_python.mmd │ │ └── workflows.md │ ├── environment.yml │ ├── index.md │ ├── robots.txt │ └── user-guide/ │ ├── configuration.md │ ├── faq.md │ ├── index.md │ ├── libmamba-vs-classic.md │ ├── more-resources.md │ ├── performance.md │ └── subcommands.md ├── durations/ │ ├── Linux.json │ ├── Windows.json │ └── macOS.json ├── news/ │ └── TEMPLATE ├── pyproject.toml ├── recipe/ │ └── meta.yaml ├── rever.xsh └── tests/ ├── __init__.py ├── channel_testing/ │ ├── helpers.py │ └── reposerver.py ├── conftest.py ├── data/ │ ├── conda_build_recipes/ │ │ ├── LICENSE │ │ ├── baddeps/ │ │ │ └── meta.yaml │ │ ├── jedi/ │ │ │ └── meta.yaml │ │ ├── multioutput/ │ │ │ └── meta.yaml │ │ └── stackvana/ │ │ └── meta.yaml │ ├── lock_this_env.yml │ └── mamba_repo/ │ ├── LICENSE │ ├── channeldata.json │ ├── index.html │ ├── noarch/ │ │ ├── current_repodata.json │ │ ├── current_repodata.json.bz2 │ │ ├── index.html │ │ ├── repodata.json │ │ ├── repodata.json.bz2 │ │ ├── repodata_from_packages.json │ │ ├── repodata_from_packages.json.bz2 │ │ └── test-package-0.1-0.tar.bz2 │ └── recipes/ │ └── test-package/ │ └── meta.yaml ├── http_test_server.py ├── repodata_time_machine.py ├── requirements.txt ├── run_in_profiler.py ├── test_channels.py ├── test_downstream.py ├── test_experimental.py ├── test_index.py ├── test_performance.py ├── test_plugin.py ├── test_repoquery.py ├── test_shards.py ├── test_shards_subset.py ├── test_solver.py ├── test_solver_differences.py ├── test_user_agent.py ├── test_workarounds.py └── utils.py