├── .authors.yml ├── .coveragerc ├── .git-blame-ignore-revs ├── .git_archival.txt ├── .gitattributes ├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md ├── auto-merge.yaml ├── dependabot.yml └── workflows │ ├── _proxy-file-for-dependabot-tests.yml │ └── tests.yml ├── .gitignore ├── .mailmap ├── .pre-commit-config.yaml ├── AUTHORS.rst ├── CHANGELOG.rst ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── bootstrap-obvious-ci-and-miniconda.py ├── conda_smithy ├── __init__.py ├── anaconda_token_rotation.py ├── azure_ci_utils.py ├── azure_defaults.py ├── ci_register.py ├── ci_skeleton.py ├── cirun_utils.py ├── cli.py ├── configure_feedstock.py ├── data │ ├── README.txt │ ├── conda-forge.json │ └── conda-forge.yml ├── feedstock_content │ ├── .ci_support │ │ └── README │ ├── .circleci │ │ └── checkout_merge_commit.sh │ ├── .gitattributes │ ├── .gitignore │ ├── .scripts │ │ └── logging_utils.sh │ ├── LICENSE.txt │ ├── README │ └── build-locally.py ├── feedstock_io.py ├── feedstock_tokens.py ├── feedstocks.py ├── github.py ├── lint_recipe.py ├── linter │ ├── __init__.py │ ├── conda_recipe_v1_linter.py │ ├── errors.py │ ├── hints.py │ ├── license_exceptions.txt │ ├── licenses.txt │ ├── lints.py │ └── utils.py ├── schema.py ├── static │ └── disabled.svg ├── templates │ ├── README.md.tmpl │ ├── appveyor.yml.tmpl │ ├── azure-pipelines-linux.yml.tmpl │ ├── azure-pipelines-osx.yml.tmpl │ ├── azure-pipelines-win.yml.tmpl │ ├── azure-pipelines.yml.tmpl │ ├── build_steps.sh.tmpl │ ├── circle.yml.tmpl │ ├── conda-forge.yml.ci-skel.tmpl │ ├── create_conda_build_artifacts.bat.tmpl │ ├── create_conda_build_artifacts.sh.tmpl │ ├── drone.yml.tmpl │ ├── fast_finish_ci_pr_build.sh.tmpl │ ├── github-actions.yml.tmpl │ ├── meta.yaml.ci-skel.tmpl │ ├── pixi.toml.tmpl │ ├── run_docker_build.sh.tmpl │ ├── run_osx_build.sh.tmpl │ ├── run_win_build.bat.tmpl │ ├── travis.yml.tmpl │ └── woodpecker.yml.tmpl ├── utils.py ├── validate_schema.py └── variant_algebra.py ├── environment.yml ├── extract_licenses.bash ├── news └── TEMPLATE.rst ├── pyproject.toml ├── rever.xsh └── tests ├── conda-forge.yml ├── conftest.py ├── recipes ├── build_script_with_findings │ ├── build.sh │ └── meta.yaml ├── cb3_jinja2_functions │ └── recipe │ │ ├── LICENSE.txt │ │ └── meta.yaml ├── choco_recipes │ ├── meta.yaml │ └── recipe.yaml ├── click-test-feedstock │ ├── .appveyor.yml │ ├── .ci_support │ │ ├── README │ │ ├── appveyor_python2.7.yaml │ │ ├── appveyor_python3.6.yaml │ │ ├── circle_python2.7.yaml │ │ ├── circle_python3.6.yaml │ │ ├── travis_python2.7.yaml │ │ └── travis_python3.6.yaml │ ├── .circleci │ │ ├── checkout_merge_commit.sh │ │ ├── config.yml │ │ ├── fast_finish_ci_pr_build.sh │ │ └── run_docker_build.sh │ ├── .gitattributes │ ├── .gitignore │ ├── .travis.yml │ ├── LICENSE.txt │ ├── README.md │ ├── conda-forge.yml │ └── recipe │ │ ├── ff_ci_pr_build.py │ │ ├── meta.yaml │ │ ├── run_conda_forge_build_setup_linux │ │ ├── run_conda_forge_build_setup_osx │ │ ├── run_conda_forge_build_setup_win.bat │ │ └── upload_or_check_non_existence.py ├── cuda_docker_images │ ├── conda_build_config.yaml │ └── meta.yaml ├── cuda_recipes │ ├── meta.yaml │ └── recipe.yaml ├── default_config │ ├── conda_build_config.yaml │ └── rattler_build_config.yaml ├── iregi │ ├── conda_build_config.yaml │ └── recipe.yaml ├── linux_skipped_recipes │ ├── meta.yaml │ └── recipe.yaml ├── multiple_docker_images │ ├── conda_build_config.yaml │ └── meta.yaml ├── multiple_outputs │ ├── conda_build_config.yaml │ └── meta.yaml ├── multiple_outputs2 │ ├── conda_build_config.yaml │ └── meta.yaml ├── multiple_outputs3 │ ├── conda_build_config.yaml │ └── meta.yaml ├── multiple_sources │ └── meta.yaml ├── noarch_platforms │ ├── conda-forge.yml │ └── recipe │ │ └── meta.yaml ├── noarch_selector_variants │ ├── conda_build_config.yaml │ └── meta.yaml ├── py_abi3_recipe │ ├── meta.yaml │ └── recipe.yaml ├── py_recipe │ ├── meta.yaml │ └── recipe.yaml ├── python_skipped_recipes │ ├── meta.yaml │ └── recipe.yaml ├── r_recipe │ ├── meta.yaml │ └── recipe.yaml ├── v1_recipes │ ├── ada-url.yaml │ ├── recipe-fenics-dolfinx.yaml │ ├── recipe-ignore_run_exports-no-lint.yaml │ ├── recipe-lint-name-version.yaml │ ├── recipe-no-lint.yaml │ ├── recipe-no-tests.yaml │ ├── torchaudio.yaml │ └── torchvision.yaml ├── variant_mismatches │ ├── conda_build_config.yaml │ └── meta.yaml ├── win_migrations │ └── vc-migrate.yaml └── win_skipped_recipes │ ├── meta.yaml │ └── recipe.yaml ├── test_anaconda_token_rotation.py ├── test_ci_skeleton.py ├── test_cli.py ├── test_condaforge_config_schema.py ├── test_configure_feedstock.py ├── test_feedstock_io.py ├── test_feedstock_tokens.py ├── test_lint_recipe.py ├── test_schema.py ├── test_utils.py └── test_variant_algebra.py /.authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.authors.yml -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.coveragerc -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.git_archival.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.git_archival.txt -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @conda-forge/core 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-merge.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.github/auto-merge.yaml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/_proxy-file-for-dependabot-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.github/workflows/_proxy-file-for-dependabot-tests.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.mailmap -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap-obvious-ci-and-miniconda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/bootstrap-obvious-ci-and-miniconda.py -------------------------------------------------------------------------------- /conda_smithy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/__init__.py -------------------------------------------------------------------------------- /conda_smithy/anaconda_token_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/anaconda_token_rotation.py -------------------------------------------------------------------------------- /conda_smithy/azure_ci_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/azure_ci_utils.py -------------------------------------------------------------------------------- /conda_smithy/azure_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/azure_defaults.py -------------------------------------------------------------------------------- /conda_smithy/ci_register.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/ci_register.py -------------------------------------------------------------------------------- /conda_smithy/ci_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/ci_skeleton.py -------------------------------------------------------------------------------- /conda_smithy/cirun_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/cirun_utils.py -------------------------------------------------------------------------------- /conda_smithy/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/cli.py -------------------------------------------------------------------------------- /conda_smithy/configure_feedstock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/configure_feedstock.py -------------------------------------------------------------------------------- /conda_smithy/data/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/data/README.txt -------------------------------------------------------------------------------- /conda_smithy/data/conda-forge.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/data/conda-forge.json -------------------------------------------------------------------------------- /conda_smithy/data/conda-forge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/data/conda-forge.yml -------------------------------------------------------------------------------- /conda_smithy/feedstock_content/.ci_support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/feedstock_content/.ci_support/README -------------------------------------------------------------------------------- /conda_smithy/feedstock_content/.circleci/checkout_merge_commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/feedstock_content/.circleci/checkout_merge_commit.sh -------------------------------------------------------------------------------- /conda_smithy/feedstock_content/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/feedstock_content/.gitattributes -------------------------------------------------------------------------------- /conda_smithy/feedstock_content/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/feedstock_content/.gitignore -------------------------------------------------------------------------------- /conda_smithy/feedstock_content/.scripts/logging_utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/feedstock_content/.scripts/logging_utils.sh -------------------------------------------------------------------------------- /conda_smithy/feedstock_content/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/feedstock_content/LICENSE.txt -------------------------------------------------------------------------------- /conda_smithy/feedstock_content/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/feedstock_content/README -------------------------------------------------------------------------------- /conda_smithy/feedstock_content/build-locally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/feedstock_content/build-locally.py -------------------------------------------------------------------------------- /conda_smithy/feedstock_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/feedstock_io.py -------------------------------------------------------------------------------- /conda_smithy/feedstock_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/feedstock_tokens.py -------------------------------------------------------------------------------- /conda_smithy/feedstocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/feedstocks.py -------------------------------------------------------------------------------- /conda_smithy/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/github.py -------------------------------------------------------------------------------- /conda_smithy/lint_recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/lint_recipe.py -------------------------------------------------------------------------------- /conda_smithy/linter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /conda_smithy/linter/conda_recipe_v1_linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/linter/conda_recipe_v1_linter.py -------------------------------------------------------------------------------- /conda_smithy/linter/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/linter/errors.py -------------------------------------------------------------------------------- /conda_smithy/linter/hints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/linter/hints.py -------------------------------------------------------------------------------- /conda_smithy/linter/license_exceptions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/linter/license_exceptions.txt -------------------------------------------------------------------------------- /conda_smithy/linter/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/linter/licenses.txt -------------------------------------------------------------------------------- /conda_smithy/linter/lints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/linter/lints.py -------------------------------------------------------------------------------- /conda_smithy/linter/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/linter/utils.py -------------------------------------------------------------------------------- /conda_smithy/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/schema.py -------------------------------------------------------------------------------- /conda_smithy/static/disabled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/static/disabled.svg -------------------------------------------------------------------------------- /conda_smithy/templates/README.md.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/README.md.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/appveyor.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/appveyor.yml.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/azure-pipelines-linux.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/azure-pipelines-linux.yml.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/azure-pipelines-osx.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/azure-pipelines-osx.yml.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/azure-pipelines-win.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/azure-pipelines-win.yml.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/azure-pipelines.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/azure-pipelines.yml.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/build_steps.sh.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/build_steps.sh.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/circle.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/circle.yml.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/conda-forge.yml.ci-skel.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/conda-forge.yml.ci-skel.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/create_conda_build_artifacts.bat.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/create_conda_build_artifacts.bat.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/create_conda_build_artifacts.sh.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/create_conda_build_artifacts.sh.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/drone.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/drone.yml.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/fast_finish_ci_pr_build.sh.tmpl: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | {{fast_finish}} 4 | {##} 5 | -------------------------------------------------------------------------------- /conda_smithy/templates/github-actions.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/github-actions.yml.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/meta.yaml.ci-skel.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/meta.yaml.ci-skel.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/pixi.toml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/pixi.toml.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/run_docker_build.sh.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/run_docker_build.sh.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/run_osx_build.sh.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/run_osx_build.sh.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/run_win_build.bat.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/run_win_build.bat.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/travis.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/travis.yml.tmpl -------------------------------------------------------------------------------- /conda_smithy/templates/woodpecker.yml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/templates/woodpecker.yml.tmpl -------------------------------------------------------------------------------- /conda_smithy/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/utils.py -------------------------------------------------------------------------------- /conda_smithy/validate_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/validate_schema.py -------------------------------------------------------------------------------- /conda_smithy/variant_algebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/conda_smithy/variant_algebra.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/environment.yml -------------------------------------------------------------------------------- /extract_licenses.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/extract_licenses.bash -------------------------------------------------------------------------------- /news/TEMPLATE.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/news/TEMPLATE.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /rever.xsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/rever.xsh -------------------------------------------------------------------------------- /tests/conda-forge.yml: -------------------------------------------------------------------------------- 1 | shellcheck: 2 | enabled: True 3 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/recipes/build_script_with_findings/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/build_script_with_findings/build.sh -------------------------------------------------------------------------------- /tests/recipes/build_script_with_findings/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/build_script_with_findings/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/cb3_jinja2_functions/recipe/LICENSE.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recipes/cb3_jinja2_functions/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/cb3_jinja2_functions/recipe/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/choco_recipes/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/choco_recipes/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/choco_recipes/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/choco_recipes/recipe.yaml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.appveyor.yml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.ci_support/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.ci_support/README -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.ci_support/appveyor_python2.7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.ci_support/appveyor_python2.7.yaml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.ci_support/appveyor_python3.6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.ci_support/appveyor_python3.6.yaml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.ci_support/circle_python2.7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.ci_support/circle_python2.7.yaml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.ci_support/circle_python3.6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.ci_support/circle_python3.6.yaml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.ci_support/travis_python2.7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.ci_support/travis_python2.7.yaml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.ci_support/travis_python3.6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.ci_support/travis_python3.6.yaml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.circleci/checkout_merge_commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.circleci/checkout_merge_commit.sh -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.circleci/config.yml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.circleci/fast_finish_ci_pr_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.circleci/fast_finish_ci_pr_build.sh -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.circleci/run_docker_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.circleci/run_docker_build.sh -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.gitattributes -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | 3 | build_artefacts 4 | -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/.travis.yml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/LICENSE.txt -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/README.md -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/conda-forge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/conda-forge.yml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/recipe/ff_ci_pr_build.py: -------------------------------------------------------------------------------- 1 | print("it works") 2 | -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/click-test-feedstock/recipe/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/recipe/run_conda_forge_build_setup_linux: -------------------------------------------------------------------------------- 1 | echo "dummy linux setup script" 2 | -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/recipe/run_conda_forge_build_setup_osx: -------------------------------------------------------------------------------- 1 | echo "dummy osx setup script" 2 | -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/recipe/run_conda_forge_build_setup_win.bat: -------------------------------------------------------------------------------- 1 | echo "dummy win setup script" 2 | -------------------------------------------------------------------------------- /tests/recipes/click-test-feedstock/recipe/upload_or_check_non_existence.py: -------------------------------------------------------------------------------- 1 | print("it works") 2 | -------------------------------------------------------------------------------- /tests/recipes/cuda_docker_images/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/cuda_docker_images/conda_build_config.yaml -------------------------------------------------------------------------------- /tests/recipes/cuda_docker_images/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/cuda_docker_images/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/cuda_recipes/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/cuda_recipes/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/cuda_recipes/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/cuda_recipes/recipe.yaml -------------------------------------------------------------------------------- /tests/recipes/default_config/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/default_config/conda_build_config.yaml -------------------------------------------------------------------------------- /tests/recipes/default_config/rattler_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/default_config/rattler_build_config.yaml -------------------------------------------------------------------------------- /tests/recipes/iregi/conda_build_config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recipes/iregi/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/iregi/recipe.yaml -------------------------------------------------------------------------------- /tests/recipes/linux_skipped_recipes/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/linux_skipped_recipes/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/linux_skipped_recipes/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/linux_skipped_recipes/recipe.yaml -------------------------------------------------------------------------------- /tests/recipes/multiple_docker_images/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/multiple_docker_images/conda_build_config.yaml -------------------------------------------------------------------------------- /tests/recipes/multiple_docker_images/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/multiple_docker_images/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/multiple_outputs/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/multiple_outputs/conda_build_config.yaml -------------------------------------------------------------------------------- /tests/recipes/multiple_outputs/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/multiple_outputs/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/multiple_outputs2/conda_build_config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recipes/multiple_outputs2/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/multiple_outputs2/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/multiple_outputs3/conda_build_config.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/recipes/multiple_outputs3/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/multiple_outputs3/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/multiple_sources/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/multiple_sources/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/noarch_platforms/conda-forge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/noarch_platforms/conda-forge.yml -------------------------------------------------------------------------------- /tests/recipes/noarch_platforms/recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/noarch_platforms/recipe/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/noarch_selector_variants/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/noarch_selector_variants/conda_build_config.yaml -------------------------------------------------------------------------------- /tests/recipes/noarch_selector_variants/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/noarch_selector_variants/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/py_abi3_recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/py_abi3_recipe/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/py_abi3_recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/py_abi3_recipe/recipe.yaml -------------------------------------------------------------------------------- /tests/recipes/py_recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/py_recipe/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/py_recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/py_recipe/recipe.yaml -------------------------------------------------------------------------------- /tests/recipes/python_skipped_recipes/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/python_skipped_recipes/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/python_skipped_recipes/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/python_skipped_recipes/recipe.yaml -------------------------------------------------------------------------------- /tests/recipes/r_recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/r_recipe/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/r_recipe/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/r_recipe/recipe.yaml -------------------------------------------------------------------------------- /tests/recipes/v1_recipes/ada-url.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/v1_recipes/ada-url.yaml -------------------------------------------------------------------------------- /tests/recipes/v1_recipes/recipe-fenics-dolfinx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/v1_recipes/recipe-fenics-dolfinx.yaml -------------------------------------------------------------------------------- /tests/recipes/v1_recipes/recipe-ignore_run_exports-no-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/v1_recipes/recipe-ignore_run_exports-no-lint.yaml -------------------------------------------------------------------------------- /tests/recipes/v1_recipes/recipe-lint-name-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/v1_recipes/recipe-lint-name-version.yaml -------------------------------------------------------------------------------- /tests/recipes/v1_recipes/recipe-no-lint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/v1_recipes/recipe-no-lint.yaml -------------------------------------------------------------------------------- /tests/recipes/v1_recipes/recipe-no-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/v1_recipes/recipe-no-tests.yaml -------------------------------------------------------------------------------- /tests/recipes/v1_recipes/torchaudio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/v1_recipes/torchaudio.yaml -------------------------------------------------------------------------------- /tests/recipes/v1_recipes/torchvision.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/v1_recipes/torchvision.yaml -------------------------------------------------------------------------------- /tests/recipes/variant_mismatches/conda_build_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/variant_mismatches/conda_build_config.yaml -------------------------------------------------------------------------------- /tests/recipes/variant_mismatches/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/variant_mismatches/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/win_migrations/vc-migrate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/win_migrations/vc-migrate.yaml -------------------------------------------------------------------------------- /tests/recipes/win_skipped_recipes/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/win_skipped_recipes/meta.yaml -------------------------------------------------------------------------------- /tests/recipes/win_skipped_recipes/recipe.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/recipes/win_skipped_recipes/recipe.yaml -------------------------------------------------------------------------------- /tests/test_anaconda_token_rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/test_anaconda_token_rotation.py -------------------------------------------------------------------------------- /tests/test_ci_skeleton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/test_ci_skeleton.py -------------------------------------------------------------------------------- /tests/test_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/test_cli.py -------------------------------------------------------------------------------- /tests/test_condaforge_config_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/test_condaforge_config_schema.py -------------------------------------------------------------------------------- /tests/test_configure_feedstock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/test_configure_feedstock.py -------------------------------------------------------------------------------- /tests/test_feedstock_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/test_feedstock_io.py -------------------------------------------------------------------------------- /tests/test_feedstock_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/test_feedstock_tokens.py -------------------------------------------------------------------------------- /tests/test_lint_recipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/test_lint_recipe.py -------------------------------------------------------------------------------- /tests/test_schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/test_schema.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_variant_algebra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/conda-forge/conda-smithy/HEAD/tests/test_variant_algebra.py --------------------------------------------------------------------------------