├── .authors.yml ├── .gitattributes ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 0_bug.yml │ ├── 1_feature.yml │ ├── 2_documentation.yml │ └── epic.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── template-files │ ├── config.yml │ └── templates │ │ └── pull_request_template_details.md └── workflows │ ├── cla.yml │ ├── issues.yml │ ├── labels.yml │ ├── lock.yml │ ├── project.yml │ ├── sphinx.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 ├── Makefile ├── README.md ├── RELEASE.md ├── conda.recipe └── meta.yaml ├── devtools └── conda-envs │ └── test_env.yaml ├── docs ├── api.md ├── changelog.md ├── cli.md ├── conf.py ├── index.md ├── modules.md └── requirements.txt ├── make.bat ├── news ├── 279-add-requests └── TEMPLATE ├── pyproject.toml ├── rever.xsh ├── rever_overrides.xsh ├── src └── conda_package_handling │ ├── __init__.py │ ├── __main__.py │ ├── api.py │ ├── cli.py │ ├── conda_fmt.py │ ├── exceptions.py │ ├── interface.py │ ├── streaming.py │ ├── tarball.py │ ├── utils.py │ └── validate.py └── tests ├── __init__.py ├── conftest.py ├── data ├── cph_test_data-0.0.1-0.tar.bz2 ├── mock-2.0.0-py37_1000.conda └── mock-2.0.0-py37_1000.tar.bz2 ├── memory_test.py ├── recipes └── cph_test_data │ ├── build.sh │ └── meta.yaml ├── test_api.py ├── test_cli.py ├── test_degraded.py ├── test_interface.py ├── test_streaming.py ├── test_utils.py └── test_validate.py /.authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.authors.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/0_bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/ISSUE_TEMPLATE/0_bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1_feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/ISSUE_TEMPLATE/1_feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2_documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/ISSUE_TEMPLATE/2_documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/epic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/ISSUE_TEMPLATE/epic.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/template-files/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/template-files/config.yml -------------------------------------------------------------------------------- /.github/template-files/templates/pull_request_template_details.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/template-files/templates/pull_request_template_details.md -------------------------------------------------------------------------------- /.github/workflows/cla.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/workflows/cla.yml -------------------------------------------------------------------------------- /.github/workflows/issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/workflows/issues.yml -------------------------------------------------------------------------------- /.github/workflows/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/workflows/labels.yml -------------------------------------------------------------------------------- /.github/workflows/lock.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/workflows/lock.yml -------------------------------------------------------------------------------- /.github/workflows/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/workflows/project.yml -------------------------------------------------------------------------------- /.github/workflows/sphinx.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/workflows/sphinx.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /HOW_WE_USE_GITHUB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/HOW_WE_USE_GITHUB.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/RELEASE.md -------------------------------------------------------------------------------- /conda.recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/conda.recipe/meta.yaml -------------------------------------------------------------------------------- /devtools/conda-envs/test_env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/devtools/conda-envs/test_env.yaml -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/docs/api.md -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | ```{include} ../CHANGELOG.md 3 | ``` 4 | -------------------------------------------------------------------------------- /docs/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/docs/cli.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/modules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/docs/modules.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/make.bat -------------------------------------------------------------------------------- /news/279-add-requests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/news/279-add-requests -------------------------------------------------------------------------------- /news/TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/news/TEMPLATE -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rever.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/rever.xsh -------------------------------------------------------------------------------- /rever_overrides.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/rever_overrides.xsh -------------------------------------------------------------------------------- /src/conda_package_handling/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = "2.4.0" 2 | -------------------------------------------------------------------------------- /src/conda_package_handling/__main__.py: -------------------------------------------------------------------------------- 1 | from conda_package_handling import cli 2 | 3 | cli.main(args=None) 4 | -------------------------------------------------------------------------------- /src/conda_package_handling/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/src/conda_package_handling/api.py -------------------------------------------------------------------------------- /src/conda_package_handling/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/src/conda_package_handling/cli.py -------------------------------------------------------------------------------- /src/conda_package_handling/conda_fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/src/conda_package_handling/conda_fmt.py -------------------------------------------------------------------------------- /src/conda_package_handling/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/src/conda_package_handling/exceptions.py -------------------------------------------------------------------------------- /src/conda_package_handling/interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/src/conda_package_handling/interface.py -------------------------------------------------------------------------------- /src/conda_package_handling/streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/src/conda_package_handling/streaming.py -------------------------------------------------------------------------------- /src/conda_package_handling/tarball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/src/conda_package_handling/tarball.py -------------------------------------------------------------------------------- /src/conda_package_handling/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/src/conda_package_handling/utils.py -------------------------------------------------------------------------------- /src/conda_package_handling/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/src/conda_package_handling/validate.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/cph_test_data-0.0.1-0.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/data/cph_test_data-0.0.1-0.tar.bz2 -------------------------------------------------------------------------------- /tests/data/mock-2.0.0-py37_1000.conda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/data/mock-2.0.0-py37_1000.conda -------------------------------------------------------------------------------- /tests/data/mock-2.0.0-py37_1000.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/data/mock-2.0.0-py37_1000.tar.bz2 -------------------------------------------------------------------------------- /tests/memory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/memory_test.py -------------------------------------------------------------------------------- /tests/recipes/cph_test_data/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/recipes/cph_test_data/build.sh -------------------------------------------------------------------------------- /tests/recipes/cph_test_data/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/recipes/cph_test_data/meta.yaml -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_degraded.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/test_degraded.py -------------------------------------------------------------------------------- /tests/test_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/test_interface.py -------------------------------------------------------------------------------- /tests/test_streaming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/test_streaming.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda/conda-package-handling/HEAD/tests/test_validate.py --------------------------------------------------------------------------------