diff --git a/conda_recipe_manager/parser/recipe_reader.py b/conda_recipe_manager/parser/recipe_reader.py index 800eb0ba..ec6c5160 100644 --- a/conda_recipe_manager/parser/recipe_reader.py +++ b/conda_recipe_manager/parser/recipe_reader.py @@ -715,6 +715,10 @@ def render(self) -> str: # implied. RecipeReader._render_tree(self._root, -1, lines) + # If present, redact a trailing blank line as it is preferred by some communities. See Issue #279 + if lines and lines[-1] == "": + lines = lines[:-1] + return "\n".join(lines) @no_type_check diff --git a/tests/parser/test_recipe_reader.py b/tests/parser/test_recipe_reader.py index b3a60be3..f93cf4a9 100644 --- a/tests/parser/test_recipe_reader.py +++ b/tests/parser/test_recipe_reader.py @@ -1427,11 +1427,11 @@ def test_search() -> None: @pytest.mark.parametrize( "file,expected", [ - ("simple-recipe.yaml", "359215c5ac3460d07470f2e3f524ed24154ff2eb7d274feb98149e6949c2ddbe"), - ("v1_format/v1_simple-recipe.yaml", "68c0b7fd829c17715b5b9941c882eda3bb70cb1dcef8cc08a55a9ee2b959fb7f"), - ("types-toml.yaml", "e117d210da9ea6507fdea856ee96407265aec40cbc58432aa6e1c7e31998a686"), - ("v1_format/v1_types-toml.yaml", "3474ed870eea9c8efbd248d24de8bdf54ad8651a7aed06d240f118272d8a3fd1"), - ("v1_format/v1_boto.yaml", "b42349254d020ffeda77f3068e8ad8804a92d1c7b89eb0f3d45632b38fc0a3bc"), + ("simple-recipe.yaml", "ffb3eba5cdbd950def9301bd7283c68ce002ab6f40de26d4d3c26f93eafd1e26"), + ("v1_format/v1_simple-recipe.yaml", "7a4c09fb7c7161a3d11f635e8ed74154dbfb4e28bd83aa7e03ad9d57d22810ab"), + ("types-toml.yaml", "d4c2fd9b24793a890e67dc58f5182981b4dd34c50967a8358de10eade8b2e415"), + ("v1_format/v1_types-toml.yaml", "9781d24867bc7e3b6e35aca84824c3139f64546b0792af59a361f20dc97a92fe"), + ("v1_format/v1_boto.yaml", "9b0f1ca532f4e94346fb69490ee69fb8505e6f76e317466f3b241c334fb4ff5c"), ], ) def test_calc_sha256(file: str, expected: str) -> None: diff --git a/tests/test_aux_files/boto.yaml b/tests/test_aux_files/boto.yaml index 01cca540..a051149d 100644 --- a/tests/test_aux_files/boto.yaml +++ b/tests/test_aux_files/boto.yaml @@ -38,4 +38,4 @@ about: general use. doc_url: http://docs.pythonboto.org/en/latest/ doc_source_url: https://github.com/boto/boto/blob/develop/docs/source/index.rst - dev_url: https://github.com/boto/boto/ + dev_url: https://github.com/boto/boto/ \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/boto_build_num_1.yaml b/tests/test_aux_files/bump_recipe/boto_build_num_1.yaml index 9ed2aeea..d1fffd39 100644 --- a/tests/test_aux_files/bump_recipe/boto_build_num_1.yaml +++ b/tests/test_aux_files/bump_recipe/boto_build_num_1.yaml @@ -38,4 +38,4 @@ about: general use. doc_url: http://docs.pythonboto.org/en/latest/ doc_source_url: https://github.com/boto/boto/blob/develop/docs/source/index.rst - dev_url: https://github.com/boto/boto/ + dev_url: https://github.com/boto/boto/ \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/boto_version_bump.yaml b/tests/test_aux_files/bump_recipe/boto_version_bump.yaml index 72ba8696..32238af2 100644 --- a/tests/test_aux_files/bump_recipe/boto_version_bump.yaml +++ b/tests/test_aux_files/bump_recipe/boto_version_bump.yaml @@ -38,4 +38,4 @@ about: general use. doc_url: http://docs.pythonboto.org/en/latest/ doc_source_url: https://github.com/boto/boto/blob/develop/docs/source/index.rst - dev_url: https://github.com/boto/boto/ + dev_url: https://github.com/boto/boto/ \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/build_num_-1.yaml b/tests/test_aux_files/bump_recipe/build_num_-1.yaml index f5ab2caf..9a631b74 100644 --- a/tests/test_aux_files/bump_recipe/build_num_-1.yaml +++ b/tests/test_aux_files/bump_recipe/build_num_-1.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/build_num_1.yaml b/tests/test_aux_files/bump_recipe/build_num_1.yaml index aa48e66d..c17c878c 100644 --- a/tests/test_aux_files/bump_recipe/build_num_1.yaml +++ b/tests/test_aux_files/bump_recipe/build_num_1.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/build_num_2.yaml b/tests/test_aux_files/bump_recipe/build_num_2.yaml index bc27891a..31784842 100644 --- a/tests/test_aux_files/bump_recipe/build_num_2.yaml +++ b/tests/test_aux_files/bump_recipe/build_num_2.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/build_num_42.yaml b/tests/test_aux_files/bump_recipe/build_num_42.yaml index 49c9e789..6c06d3bb 100644 --- a/tests/test_aux_files/bump_recipe/build_num_42.yaml +++ b/tests/test_aux_files/bump_recipe/build_num_42.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/build_num_43.yaml b/tests/test_aux_files/bump_recipe/build_num_43.yaml index 01159feb..ec9df2fc 100644 --- a/tests/test_aux_files/bump_recipe/build_num_43.yaml +++ b/tests/test_aux_files/bump_recipe/build_num_43.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/build_num_added.yaml b/tests/test_aux_files/bump_recipe/build_num_added.yaml index ddf6f4ae..4276676c 100644 --- a/tests/test_aux_files/bump_recipe/build_num_added.yaml +++ b/tests/test_aux_files/bump_recipe/build_num_added.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/curl_build_num_1.yaml b/tests/test_aux_files/bump_recipe/curl_build_num_1.yaml index 8a047007..9458ef6f 100644 --- a/tests/test_aux_files/bump_recipe/curl_build_num_1.yaml +++ b/tests/test_aux_files/bump_recipe/curl_build_num_1.yaml @@ -128,4 +128,4 @@ extra: - jakirkham - ocefpaf - mingwandroid - - xylar + - xylar \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/curl_version_bump.yaml b/tests/test_aux_files/bump_recipe/curl_version_bump.yaml index 330a6305..e6d410d6 100644 --- a/tests/test_aux_files/bump_recipe/curl_version_bump.yaml +++ b/tests/test_aux_files/bump_recipe/curl_version_bump.yaml @@ -128,4 +128,4 @@ extra: - jakirkham - ocefpaf - mingwandroid - - xylar + - xylar \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/google-cloud-cpp_build_num_2.yaml b/tests/test_aux_files/bump_recipe/google-cloud-cpp_build_num_2.yaml index 98a92d8c..9c7d4206 100644 --- a/tests/test_aux_files/bump_recipe/google-cloud-cpp_build_num_2.yaml +++ b/tests/test_aux_files/bump_recipe/google-cloud-cpp_build_num_2.yaml @@ -184,4 +184,4 @@ extra: - davidbrochart - dbolduc - h-vetinari - - xhochy + - xhochy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/google-cloud-cpp_version_bump.yaml b/tests/test_aux_files/bump_recipe/google-cloud-cpp_version_bump.yaml index 7dcad5b9..fa42e80d 100644 --- a/tests/test_aux_files/bump_recipe/google-cloud-cpp_version_bump.yaml +++ b/tests/test_aux_files/bump_recipe/google-cloud-cpp_version_bump.yaml @@ -184,4 +184,4 @@ extra: - davidbrochart - dbolduc - h-vetinari - - xhochy + - xhochy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/gsm-amzn2-aarch64_build_num_6.yaml b/tests/test_aux_files/bump_recipe/gsm-amzn2-aarch64_build_num_6.yaml index 38487bf1..b1b4972d 100644 --- a/tests/test_aux_files/bump_recipe/gsm-amzn2-aarch64_build_num_6.yaml +++ b/tests/test_aux_files/bump_recipe/gsm-amzn2-aarch64_build_num_6.yaml @@ -47,4 +47,4 @@ about: summary: (CDT) Shared libraries for GSM speech compressor extras: - rpm_name: gsm + rpm_name: gsm \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/gsm-amzn2-aarch64_version_bump.yaml b/tests/test_aux_files/bump_recipe/gsm-amzn2-aarch64_version_bump.yaml index fa90691f..1b1f5dcb 100644 --- a/tests/test_aux_files/bump_recipe/gsm-amzn2-aarch64_version_bump.yaml +++ b/tests/test_aux_files/bump_recipe/gsm-amzn2-aarch64_version_bump.yaml @@ -47,4 +47,4 @@ about: summary: (CDT) Shared libraries for GSM speech compressor extras: - rpm_name: gsm + rpm_name: gsm \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/huggingface_hub_build_num_1.yaml b/tests/test_aux_files/bump_recipe/huggingface_hub_build_num_1.yaml index 07f2f256..020dea3a 100644 --- a/tests/test_aux_files/bump_recipe/huggingface_hub_build_num_1.yaml +++ b/tests/test_aux_files/bump_recipe/huggingface_hub_build_num_1.yaml @@ -69,4 +69,4 @@ extra: recipe-maintainers: - BastianZim skip-lints: - - python_build_tool_in_run + - python_build_tool_in_run \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/huggingface_hub_version_bump.yaml b/tests/test_aux_files/bump_recipe/huggingface_hub_version_bump.yaml index 0f41f03b..f42c4f1a 100644 --- a/tests/test_aux_files/bump_recipe/huggingface_hub_version_bump.yaml +++ b/tests/test_aux_files/bump_recipe/huggingface_hub_version_bump.yaml @@ -69,4 +69,4 @@ extra: recipe-maintainers: - BastianZim skip-lints: - - python_build_tool_in_run + - python_build_tool_in_run \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/libprotobuf_build_num_1.yaml b/tests/test_aux_files/bump_recipe/libprotobuf_build_num_1.yaml index ac049bd1..3fe87e53 100644 --- a/tests/test_aux_files/bump_recipe/libprotobuf_build_num_1.yaml +++ b/tests/test_aux_files/bump_recipe/libprotobuf_build_num_1.yaml @@ -125,4 +125,4 @@ extra: - ocefpaf - wesm - hajapy - - xhochy + - xhochy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/libprotobuf_version_bump.yaml b/tests/test_aux_files/bump_recipe/libprotobuf_version_bump.yaml index 8648979e..b493481f 100644 --- a/tests/test_aux_files/bump_recipe/libprotobuf_version_bump.yaml +++ b/tests/test_aux_files/bump_recipe/libprotobuf_version_bump.yaml @@ -125,4 +125,4 @@ extra: - ocefpaf - wesm - hajapy - - xhochy + - xhochy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/no_build_num.yaml b/tests/test_aux_files/bump_recipe/no_build_num.yaml index f4b4caf0..31d5d040 100644 --- a/tests/test_aux_files/bump_recipe/no_build_num.yaml +++ b/tests/test_aux_files/bump_recipe/no_build_num.yaml @@ -49,4 +49,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/pytest-pep8_build_num_2.yaml b/tests/test_aux_files/bump_recipe/pytest-pep8_build_num_2.yaml index d919f003..21d76aa2 100644 --- a/tests/test_aux_files/bump_recipe/pytest-pep8_build_num_2.yaml +++ b/tests/test_aux_files/bump_recipe/pytest-pep8_build_num_2.yaml @@ -45,4 +45,4 @@ about: extra: recipe-maintainers: - bjodah - - nicoddemus + - nicoddemus \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/pytest-pep8_version_bump.yaml b/tests/test_aux_files/bump_recipe/pytest-pep8_version_bump.yaml index a95ab2dc..cbb4c673 100644 --- a/tests/test_aux_files/bump_recipe/pytest-pep8_version_bump.yaml +++ b/tests/test_aux_files/bump_recipe/pytest-pep8_version_bump.yaml @@ -45,4 +45,4 @@ about: extra: recipe-maintainers: - bjodah - - nicoddemus + - nicoddemus \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/types-toml_bad_url.yaml b/tests/test_aux_files/bump_recipe/types-toml_bad_url.yaml index 45a37d81..636b2eb1 100644 --- a/tests/test_aux_files/bump_recipe/types-toml_bad_url.yaml +++ b/tests/test_aux_files/bump_recipe/types-toml_bad_url.yaml @@ -48,4 +48,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/types-toml_bad_url_hash_var.yaml b/tests/test_aux_files/bump_recipe/types-toml_bad_url_hash_var.yaml index b2e1e7fe..b6b6c0de 100644 --- a/tests/test_aux_files/bump_recipe/types-toml_bad_url_hash_var.yaml +++ b/tests/test_aux_files/bump_recipe/types-toml_bad_url_hash_var.yaml @@ -50,4 +50,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/types-toml_bad_url_multi_source.yaml b/tests/test_aux_files/bump_recipe/types-toml_bad_url_multi_source.yaml index 6d90f603..36970a74 100644 --- a/tests/test_aux_files/bump_recipe/types-toml_bad_url_multi_source.yaml +++ b/tests/test_aux_files/bump_recipe/types-toml_bad_url_multi_source.yaml @@ -50,4 +50,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/types-toml_bad_url_partial_save.yaml b/tests/test_aux_files/bump_recipe/types-toml_bad_url_partial_save.yaml index b9ba9451..50f4e9e8 100644 --- a/tests/test_aux_files/bump_recipe/types-toml_bad_url_partial_save.yaml +++ b/tests/test_aux_files/bump_recipe/types-toml_bad_url_partial_save.yaml @@ -48,4 +48,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/types-toml_build_num_1.yaml b/tests/test_aux_files/bump_recipe/types-toml_build_num_1.yaml index 5c0280b4..52d048ab 100644 --- a/tests/test_aux_files/bump_recipe/types-toml_build_num_1.yaml +++ b/tests/test_aux_files/bump_recipe/types-toml_build_num_1.yaml @@ -48,4 +48,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/types-toml_hash_type_build_num_1.yaml b/tests/test_aux_files/bump_recipe/types-toml_hash_type_build_num_1.yaml index 2efeb3f7..81cf2b59 100644 --- a/tests/test_aux_files/bump_recipe/types-toml_hash_type_build_num_1.yaml +++ b/tests/test_aux_files/bump_recipe/types-toml_hash_type_build_num_1.yaml @@ -49,4 +49,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/types-toml_hash_type_version_bump.yaml b/tests/test_aux_files/bump_recipe/types-toml_hash_type_version_bump.yaml index ceb0fe17..c477eb7b 100644 --- a/tests/test_aux_files/bump_recipe/types-toml_hash_type_version_bump.yaml +++ b/tests/test_aux_files/bump_recipe/types-toml_hash_type_version_bump.yaml @@ -49,4 +49,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/types-toml_version_bump.yaml b/tests/test_aux_files/bump_recipe/types-toml_version_bump.yaml index f5a4078e..12390e62 100644 --- a/tests/test_aux_files/bump_recipe/types-toml_version_bump.yaml +++ b/tests/test_aux_files/bump_recipe/types-toml_version_bump.yaml @@ -48,4 +48,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/x264_build_num_1.yaml b/tests/test_aux_files/bump_recipe/x264_build_num_1.yaml index b14d3188..37b285f9 100644 --- a/tests/test_aux_files/bump_recipe/x264_build_num_1.yaml +++ b/tests/test_aux_files/bump_recipe/x264_build_num_1.yaml @@ -50,4 +50,4 @@ extra: - jakirkham - 183amir - carlodri - - sdvillal + - sdvillal \ No newline at end of file diff --git a/tests/test_aux_files/bump_recipe/x264_version_bump.yaml b/tests/test_aux_files/bump_recipe/x264_version_bump.yaml index fd9d967d..e69e2620 100644 --- a/tests/test_aux_files/bump_recipe/x264_version_bump.yaml +++ b/tests/test_aux_files/bump_recipe/x264_version_bump.yaml @@ -50,4 +50,4 @@ extra: - jakirkham - 183amir - carlodri - - sdvillal + - sdvillal \ No newline at end of file diff --git a/tests/test_aux_files/cbc_files/anaconda_cbc_01.yaml b/tests/test_aux_files/cbc_files/anaconda_cbc_01.yaml index 808ad8bb..48149416 100644 --- a/tests/test_aux_files/cbc_files/anaconda_cbc_01.yaml +++ b/tests/test_aux_files/cbc_files/anaconda_cbc_01.yaml @@ -229,4 +229,4 @@ zip_keys: - python - numpy zstd: - - 1.5.2 + - 1.5.2 \ No newline at end of file diff --git a/tests/test_aux_files/cctools-ld64.yaml b/tests/test_aux_files/cctools-ld64.yaml index 3738dcf7..c00979fa 100644 --- a/tests/test_aux_files/cctools-ld64.yaml +++ b/tests/test_aux_files/cctools-ld64.yaml @@ -128,4 +128,4 @@ outputs: license: Apple Public Source License 2.0 license_family: Other license_file: cctools/ld64/APPLE_LICENSE - summary: Darwin Mach-O linker + summary: Darwin Mach-O linker \ No newline at end of file diff --git a/tests/test_aux_files/curl.yaml b/tests/test_aux_files/curl.yaml index 78644700..c2179335 100644 --- a/tests/test_aux_files/curl.yaml +++ b/tests/test_aux_files/curl.yaml @@ -128,4 +128,4 @@ extra: - jakirkham - ocefpaf - mingwandroid - - xylar + - xylar \ No newline at end of file diff --git a/tests/test_aux_files/dot_function_replacement.yaml b/tests/test_aux_files/dot_function_replacement.yaml index d07aa41f..d6b47a62 100644 --- a/tests/test_aux_files/dot_function_replacement.yaml +++ b/tests/test_aux_files/dot_function_replacement.yaml @@ -26,4 +26,4 @@ about: license: MIT license_file: LICENSE dev_url: https://github.com/python/typeshed - doc_url: https://pypi.org/project/types-toml/ + doc_url: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/dynamic-linking.yaml b/tests/test_aux_files/dynamic-linking.yaml index a26e83d6..82e799e3 100644 --- a/tests/test_aux_files/dynamic-linking.yaml +++ b/tests/test_aux_files/dynamic-linking.yaml @@ -42,4 +42,4 @@ about: license_file: LICENSE license_family: OTHER dev_url: https://github.com/python/typeshed - doc_url: https://pypi.org/project/types-toml/ + doc_url: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/environ_get.yaml b/tests/test_aux_files/environ_get.yaml index e28eb412..cbb03e14 100644 --- a/tests/test_aux_files/environ_get.yaml +++ b/tests/test_aux_files/environ_get.yaml @@ -3,4 +3,4 @@ package: name: abc - version: 0 + version: 0 \ No newline at end of file diff --git a/tests/test_aux_files/fake_source.yaml b/tests/test_aux_files/fake_source.yaml index d419c4d9..ee7b8fbe 100644 --- a/tests/test_aux_files/fake_source.yaml +++ b/tests/test_aux_files/fake_source.yaml @@ -46,4 +46,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/git-src.yaml b/tests/test_aux_files/git-src.yaml index 2a548425..b3708cb5 100644 --- a/tests/test_aux_files/git-src.yaml +++ b/tests/test_aux_files/git-src.yaml @@ -30,4 +30,4 @@ about: license: MIT license_file: LICENSE dev_url: https://github.com/python/typeshed - doc_url: https://pypi.org/project/types-toml/ + doc_url: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/google-cloud-cpp.yaml b/tests/test_aux_files/google-cloud-cpp.yaml index ad330c40..0fc364e5 100644 --- a/tests/test_aux_files/google-cloud-cpp.yaml +++ b/tests/test_aux_files/google-cloud-cpp.yaml @@ -184,4 +184,4 @@ extra: - davidbrochart - dbolduc - h-vetinari - - xhochy + - xhochy \ No newline at end of file diff --git a/tests/test_aux_files/gsm-amzn2-aarch64.yaml b/tests/test_aux_files/gsm-amzn2-aarch64.yaml index b2eaeb58..cb28b994 100644 --- a/tests/test_aux_files/gsm-amzn2-aarch64.yaml +++ b/tests/test_aux_files/gsm-amzn2-aarch64.yaml @@ -47,4 +47,4 @@ about: summary: (CDT) Shared libraries for GSM speech compressor extras: - rpm_name: gsm + rpm_name: gsm \ No newline at end of file diff --git a/tests/test_aux_files/h5py.yaml b/tests/test_aux_files/h5py.yaml index 2c296e62..2b232325 100644 --- a/tests/test_aux_files/h5py.yaml +++ b/tests/test_aux_files/h5py.yaml @@ -66,4 +66,4 @@ extra: - tacaswell - ocefpaf - minrk - - scopatz + - scopatz \ No newline at end of file diff --git a/tests/test_aux_files/hash_type_replacement.yaml b/tests/test_aux_files/hash_type_replacement.yaml index 1496c80b..acabfb8d 100644 --- a/tests/test_aux_files/hash_type_replacement.yaml +++ b/tests/test_aux_files/hash_type_replacement.yaml @@ -33,4 +33,4 @@ about: license: MIT license_file: LICENSE dev_url: https://github.com/python/typeshed - doc_url: https://pypi.org/project/types-toml/ + doc_url: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/huggingface_hub.yaml b/tests/test_aux_files/huggingface_hub.yaml index 1bde4825..422e2953 100644 --- a/tests/test_aux_files/huggingface_hub.yaml +++ b/tests/test_aux_files/huggingface_hub.yaml @@ -69,4 +69,4 @@ extra: recipe-maintainers: - BastianZim skip-lints: - - python_build_tool_in_run + - python_build_tool_in_run \ No newline at end of file diff --git a/tests/test_aux_files/libprotobuf.yaml b/tests/test_aux_files/libprotobuf.yaml index 4c27598d..510da43b 100644 --- a/tests/test_aux_files/libprotobuf.yaml +++ b/tests/test_aux_files/libprotobuf.yaml @@ -126,4 +126,4 @@ extra: - ocefpaf - wesm - hajapy - - xhochy + - xhochy \ No newline at end of file diff --git a/tests/test_aux_files/multi-output.yaml b/tests/test_aux_files/multi-output.yaml index 060531b7..af7ff875 100644 --- a/tests/test_aux_files/multi-output.yaml +++ b/tests/test_aux_files/multi-output.yaml @@ -22,4 +22,4 @@ outputs: - foo test: commands: - - db_archive -m hello + - db_archive -m hello \ No newline at end of file diff --git a/tests/test_aux_files/non_marked_multiline_summary.yaml b/tests/test_aux_files/non_marked_multiline_summary.yaml index 2216802b..2026b5bd 100644 --- a/tests/test_aux_files/non_marked_multiline_summary.yaml +++ b/tests/test_aux_files/non_marked_multiline_summary.yaml @@ -29,4 +29,4 @@ about: license: MIT license_file: LICENSE dev_url: https://github.com/python/typeshed - doc_url: https://pypi.org/project/types-toml/ + doc_url: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/pip_check_only.yaml b/tests/test_aux_files/pip_check_only.yaml index 2bd59f71..2d3753b2 100644 --- a/tests/test_aux_files/pip_check_only.yaml +++ b/tests/test_aux_files/pip_check_only.yaml @@ -43,4 +43,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/pre_processor/pp_dot_function_replacement.yaml b/tests/test_aux_files/pre_processor/pp_dot_function_replacement.yaml index edf39920..a286e130 100644 --- a/tests/test_aux_files/pre_processor/pp_dot_function_replacement.yaml +++ b/tests/test_aux_files/pre_processor/pp_dot_function_replacement.yaml @@ -26,4 +26,4 @@ about: license: MIT license_file: LICENSE dev_url: https://github.com/python/typeshed - doc_url: https://pypi.org/project/types-toml/ + doc_url: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/pre_processor/pp_environ_get.yaml b/tests/test_aux_files/pre_processor/pp_environ_get.yaml index e28eb412..cbb03e14 100644 --- a/tests/test_aux_files/pre_processor/pp_environ_get.yaml +++ b/tests/test_aux_files/pre_processor/pp_environ_get.yaml @@ -3,4 +3,4 @@ package: name: abc - version: 0 + version: 0 \ No newline at end of file diff --git a/tests/test_aux_files/pre_processor/pp_hash_type_replacement.yaml b/tests/test_aux_files/pre_processor/pp_hash_type_replacement.yaml index 7ee664f4..387a1beb 100644 --- a/tests/test_aux_files/pre_processor/pp_hash_type_replacement.yaml +++ b/tests/test_aux_files/pre_processor/pp_hash_type_replacement.yaml @@ -30,4 +30,4 @@ about: license: MIT license_file: LICENSE dev_url: https://github.com/python/typeshed - doc_url: https://pypi.org/project/types-toml/ + doc_url: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/pre_processor/pp_quoted_multiline_str.yaml b/tests/test_aux_files/pre_processor/pp_quoted_multiline_str.yaml index 2ce03a98..5303cf33 100644 --- a/tests/test_aux_files/pre_processor/pp_quoted_multiline_str.yaml +++ b/tests/test_aux_files/pre_processor/pp_quoted_multiline_str.yaml @@ -28,4 +28,4 @@ about: license: MIT license_file: LICENSE dev_url: https://github.com/python/typeshed - doc_url: https://pypi.org/project/types-toml/ + doc_url: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/pre_processor/pp_simple-recipe_environ.yaml b/tests/test_aux_files/pre_processor/pp_simple-recipe_environ.yaml index 2a049d53..f011418b 100644 --- a/tests/test_aux_files/pre_processor/pp_simple-recipe_environ.yaml +++ b/tests/test_aux_files/pre_processor/pp_simple-recipe_environ.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ env.get("foobar") }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/pytest-pep8.yaml b/tests/test_aux_files/pytest-pep8.yaml index d293192e..fe9ebd4f 100644 --- a/tests/test_aux_files/pytest-pep8.yaml +++ b/tests/test_aux_files/pytest-pep8.yaml @@ -45,4 +45,4 @@ about: extra: recipe-maintainers: - bjodah - - nicoddemus + - nicoddemus \ No newline at end of file diff --git a/tests/test_aux_files/quoted_multiline_str.yaml b/tests/test_aux_files/quoted_multiline_str.yaml index 1c120c25..537d42eb 100644 --- a/tests/test_aux_files/quoted_multiline_str.yaml +++ b/tests/test_aux_files/quoted_multiline_str.yaml @@ -26,4 +26,4 @@ about: license: MIT license_file: LICENSE dev_url: https://github.com/python/typeshed - doc_url: https://pypi.org/project/types-toml/ + doc_url: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/regression_jinja_sub.yaml b/tests/test_aux_files/regression_jinja_sub.yaml index 6bc0bc00..166b0ed4 100644 --- a/tests/test_aux_files/regression_jinja_sub.yaml +++ b/tests/test_aux_files/regression_jinja_sub.yaml @@ -24,4 +24,4 @@ requirements: about: home: https://github.com/python/typeshed - summary: Simple egression test for various JINJA substitution errors + summary: Simple egression test for various JINJA substitution errors \ No newline at end of file diff --git a/tests/test_aux_files/rg_from_disk_test/boto/meta.yaml b/tests/test_aux_files/rg_from_disk_test/boto/meta.yaml index 01cca540..a051149d 100644 --- a/tests/test_aux_files/rg_from_disk_test/boto/meta.yaml +++ b/tests/test_aux_files/rg_from_disk_test/boto/meta.yaml @@ -38,4 +38,4 @@ about: general use. doc_url: http://docs.pythonboto.org/en/latest/ doc_source_url: https://github.com/boto/boto/blob/develop/docs/source/index.rst - dev_url: https://github.com/boto/boto/ + dev_url: https://github.com/boto/boto/ \ No newline at end of file diff --git a/tests/test_aux_files/rg_from_disk_test/cctools-ld64/meta.yaml b/tests/test_aux_files/rg_from_disk_test/cctools-ld64/meta.yaml index 3738dcf7..c00979fa 100644 --- a/tests/test_aux_files/rg_from_disk_test/cctools-ld64/meta.yaml +++ b/tests/test_aux_files/rg_from_disk_test/cctools-ld64/meta.yaml @@ -128,4 +128,4 @@ outputs: license: Apple Public Source License 2.0 license_family: Other license_file: cctools/ld64/APPLE_LICENSE - summary: Darwin Mach-O linker + summary: Darwin Mach-O linker \ No newline at end of file diff --git a/tests/test_aux_files/rg_from_disk_test/types-toml/meta.yaml b/tests/test_aux_files/rg_from_disk_test/types-toml/meta.yaml index cf658649..e7021030 100644 --- a/tests/test_aux_files/rg_from_disk_test/types-toml/meta.yaml +++ b/tests/test_aux_files/rg_from_disk_test/types-toml/meta.yaml @@ -48,4 +48,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/rg_from_disk_test/v1_git-src/recipe.yaml b/tests/test_aux_files/rg_from_disk_test/v1_git-src/recipe.yaml index 0d6e5aab..64a04cd1 100644 --- a/tests/test_aux_files/rg_from_disk_test/v1_git-src/recipe.yaml +++ b/tests/test_aux_files/rg_from_disk_test/v1_git-src/recipe.yaml @@ -33,4 +33,4 @@ about: license_file: LICENSE homepage: https://github.com/python/typeshed repository: https://github.com/python/typeshed - documentation: https://pypi.org/project/types-toml/ + documentation: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/rust.yaml b/tests/test_aux_files/rust.yaml index 49771db3..278b62e2 100644 --- a/tests/test_aux_files/rust.yaml +++ b/tests/test_aux_files/rust.yaml @@ -126,4 +126,4 @@ extra: - dlaehnemann - johanneskoester - pkgw - - katietz + - katietz \ No newline at end of file diff --git a/tests/test_aux_files/script-env.yaml b/tests/test_aux_files/script-env.yaml index ee107ccb..0db11570 100644 --- a/tests/test_aux_files/script-env.yaml +++ b/tests/test_aux_files/script-env.yaml @@ -32,4 +32,4 @@ about: license: MIT license_file: LICENSE dev_url: https://github.com/python/typeshed - doc_url: https://pypi.org/project/types-toml/ + doc_url: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/selector-match-upgrades.yaml b/tests/test_aux_files/selector-match-upgrades.yaml index 6b939098..aca1f145 100644 --- a/tests/test_aux_files/selector-match-upgrades.yaml +++ b/tests/test_aux_files/selector-match-upgrades.yaml @@ -39,4 +39,4 @@ about: license: MIT license_file: LICENSE dev_url: https://github.com/python/typeshed - doc_url: https://pypi.org/project/types-toml/ + doc_url: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe.yaml b/tests/test_aux_files/simple-recipe.yaml index 8ef9e992..d752e9b6 100644 --- a/tests/test_aux_files/simple-recipe.yaml +++ b/tests/test_aux_files/simple-recipe.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_comment_in_requirements.yaml b/tests/test_aux_files/simple-recipe_comment_in_requirements.yaml index f54c186f..ded0dce2 100644 --- a/tests/test_aux_files/simple-recipe_comment_in_requirements.yaml +++ b/tests/test_aux_files/simple-recipe_comment_in_requirements.yaml @@ -52,4 +52,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_environ.yaml b/tests/test_aux_files/simple-recipe_environ.yaml index fe1fa2d0..8d4cdde9 100644 --- a/tests/test_aux_files/simple-recipe_environ.yaml +++ b/tests/test_aux_files/simple-recipe_environ.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ environ["foobar"] }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_multiline_strings.yaml b/tests/test_aux_files/simple-recipe_multiline_strings.yaml index 3711bb96..4ec5d220 100644 --- a/tests/test_aux_files/simple-recipe_multiline_strings.yaml +++ b/tests/test_aux_files/simple-recipe_multiline_strings.yaml @@ -58,4 +58,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_test_add_comment.yaml b/tests/test_aux_files/simple-recipe_test_add_comment.yaml index 5d9c2746..72218ce9 100644 --- a/tests/test_aux_files/simple-recipe_test_add_comment.yaml +++ b/tests/test_aux_files/simple-recipe_test_add_comment.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_test_add_selector.yaml b/tests/test_aux_files/simple-recipe_test_add_selector.yaml index 19f58941..c1f19912 100644 --- a/tests/test_aux_files/simple-recipe_test_add_selector.yaml +++ b/tests/test_aux_files/simple-recipe_test_add_selector.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_test_patch_add.yaml b/tests/test_aux_files/simple-recipe_test_patch_add.yaml index 4db904ba..3bf9da84 100644 --- a/tests/test_aux_files/simple-recipe_test_patch_add.yaml +++ b/tests/test_aux_files/simple-recipe_test_patch_add.yaml @@ -75,4 +75,4 @@ U62: - "How'd you like your own TV show?" - "You're on" Stanley: - - Ok + - Ok \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_test_patch_copy.yaml b/tests/test_aux_files/simple-recipe_test_patch_copy.yaml index 2a671fb6..6f45a2d8 100644 --- a/tests/test_aux_files/simple-recipe_test_patch_copy.yaml +++ b/tests/test_aux_files/simple-recipe_test_patch_copy.yaml @@ -59,4 +59,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_test_patch_move.yaml b/tests/test_aux_files/simple-recipe_test_patch_move.yaml index e5b0c7f1..f376af9d 100644 --- a/tests/test_aux_files/simple-recipe_test_patch_move.yaml +++ b/tests/test_aux_files/simple-recipe_test_patch_move.yaml @@ -49,4 +49,4 @@ multi_level: - last test_var_usage: - foo: {{ version }} + foo: {{ version }} \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_test_patch_remove.yaml b/tests/test_aux_files/simple-recipe_test_patch_remove.yaml index b5ef18e7..255cb9b4 100644 --- a/tests/test_aux_files/simple-recipe_test_patch_remove.yaml +++ b/tests/test_aux_files/simple-recipe_test_patch_remove.yaml @@ -33,4 +33,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_test_patch_replace.yaml b/tests/test_aux_files/simple-recipe_test_patch_replace.yaml index d24fb5d8..2e7dc740 100644 --- a/tests/test_aux_files/simple-recipe_test_patch_replace.yaml +++ b/tests/test_aux_files/simple-recipe_test_patch_replace.yaml @@ -55,4 +55,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_test_remove_selector.yaml b/tests/test_aux_files/simple-recipe_test_remove_selector.yaml index 1492ee53..71a31529 100644 --- a/tests/test_aux_files/simple-recipe_test_remove_selector.yaml +++ b/tests/test_aux_files/simple-recipe_test_remove_selector.yaml @@ -50,4 +50,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/simple-recipe_test_search_and_patch.yaml b/tests/test_aux_files/simple-recipe_test_search_and_patch.yaml index 6d93277c..39966721 100644 --- a/tests/test_aux_files/simple-recipe_test_search_and_patch.yaml +++ b/tests/test_aux_files/simple-recipe_test_search_and_patch.yaml @@ -47,4 +47,4 @@ test_var_usage: - {{ zz_non_alpha_first }} - blah - This {{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/sub_vars.yaml b/tests/test_aux_files/sub_vars.yaml index 35b7151d..f8bb3786 100644 --- a/tests/test_aux_files/sub_vars.yaml +++ b/tests/test_aux_files/sub_vars.yaml @@ -66,4 +66,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/types-toml.yaml b/tests/test_aux_files/types-toml.yaml index cf658649..e7021030 100644 --- a/tests/test_aux_files/types-toml.yaml +++ b/tests/test_aux_files/types-toml.yaml @@ -48,4 +48,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/types-toml_hash_type.yaml b/tests/test_aux_files/types-toml_hash_type.yaml index 9cd49a51..2daa584c 100644 --- a/tests/test_aux_files/types-toml_hash_type.yaml +++ b/tests/test_aux_files/types-toml_hash_type.yaml @@ -50,4 +50,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/types-toml_src_lst.yaml b/tests/test_aux_files/types-toml_src_lst.yaml index 1244c81b..a2422d02 100644 --- a/tests/test_aux_files/types-toml_src_lst.yaml +++ b/tests/test_aux_files/types-toml_src_lst.yaml @@ -48,4 +48,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/unprocessed_environ_get.yaml b/tests/test_aux_files/unprocessed_environ_get.yaml index 8625f451..f8450fe2 100644 --- a/tests/test_aux_files/unprocessed_environ_get.yaml +++ b/tests/test_aux_files/unprocessed_environ_get.yaml @@ -3,4 +3,4 @@ package: name: abc - version: 0 + version: 0 \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_boto.yaml b/tests/test_aux_files/v1_format/v1_boto.yaml index 98395619..6e3e760f 100644 --- a/tests/test_aux_files/v1_format/v1_boto.yaml +++ b/tests/test_aux_files/v1_format/v1_boto.yaml @@ -44,4 +44,4 @@ about: general use. homepage: https://github.com/boto/boto/ repository: https://github.com/boto/boto/ - documentation: http://docs.pythonboto.org/en/latest/ + documentation: http://docs.pythonboto.org/en/latest/ \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_cctools-ld64.yaml b/tests/test_aux_files/v1_format/v1_cctools-ld64.yaml index c559e9fb..9235743d 100644 --- a/tests/test_aux_files/v1_format/v1_cctools-ld64.yaml +++ b/tests/test_aux_files/v1_format/v1_cctools-ld64.yaml @@ -133,4 +133,4 @@ outputs: license_file: cctools/ld64/APPLE_LICENSE summary: Darwin Mach-O linker homepage: https://opensource.apple.com/source - script: install-ld64.sh + script: install-ld64.sh \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_curl.yaml b/tests/test_aux_files/v1_format/v1_curl.yaml index 97c3fb18..d3d5db26 100644 --- a/tests/test_aux_files/v1_format/v1_curl.yaml +++ b/tests/test_aux_files/v1_format/v1_curl.yaml @@ -165,4 +165,4 @@ extra: - jakirkham - ocefpaf - mingwandroid - - xylar + - xylar \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_dynamic-linking.yaml b/tests/test_aux_files/v1_format/v1_dynamic-linking.yaml index 3a5a9ae9..128edbaf 100644 --- a/tests/test_aux_files/v1_format/v1_dynamic-linking.yaml +++ b/tests/test_aux_files/v1_format/v1_dynamic-linking.yaml @@ -48,4 +48,4 @@ about: license_file: LICENSE homepage: https://github.com/python/typeshed repository: https://github.com/python/typeshed - documentation: https://pypi.org/project/types-toml/ + documentation: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_environ_get.yaml b/tests/test_aux_files/v1_format/v1_environ_get.yaml index cc5fe8de..6b7303a7 100644 --- a/tests/test_aux_files/v1_format/v1_environ_get.yaml +++ b/tests/test_aux_files/v1_format/v1_environ_get.yaml @@ -6,4 +6,4 @@ context: package: name: abc - version: 0 + version: 0 \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_fake_source.yaml b/tests/test_aux_files/v1_format/v1_fake_source.yaml index 92c5b3ef..3271079b 100644 --- a/tests/test_aux_files/v1_format/v1_fake_source.yaml +++ b/tests/test_aux_files/v1_format/v1_fake_source.yaml @@ -51,4 +51,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_git-src.yaml b/tests/test_aux_files/v1_format/v1_git-src.yaml index 0d6e5aab..64a04cd1 100644 --- a/tests/test_aux_files/v1_format/v1_git-src.yaml +++ b/tests/test_aux_files/v1_format/v1_git-src.yaml @@ -33,4 +33,4 @@ about: license_file: LICENSE homepage: https://github.com/python/typeshed repository: https://github.com/python/typeshed - documentation: https://pypi.org/project/types-toml/ + documentation: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_google-cloud-cpp.yaml b/tests/test_aux_files/v1_format/v1_google-cloud-cpp.yaml index 7b778ebb..1b1a6de0 100644 --- a/tests/test_aux_files/v1_format/v1_google-cloud-cpp.yaml +++ b/tests/test_aux_files/v1_format/v1_google-cloud-cpp.yaml @@ -194,4 +194,4 @@ extra: - davidbrochart - dbolduc - h-vetinari - - xhochy + - xhochy \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_huggingface_hub.yaml b/tests/test_aux_files/v1_format/v1_huggingface_hub.yaml index 0326f074..0cb8d6a8 100644 --- a/tests/test_aux_files/v1_format/v1_huggingface_hub.yaml +++ b/tests/test_aux_files/v1_format/v1_huggingface_hub.yaml @@ -75,4 +75,4 @@ extra: recipe-maintainers: - BastianZim skip-lints: - - python_build_tool_in_run + - python_build_tool_in_run \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_multi-output.yaml b/tests/test_aux_files/v1_format/v1_multi-output.yaml index d0b29b3d..316a9403 100644 --- a/tests/test_aux_files/v1_format/v1_multi-output.yaml +++ b/tests/test_aux_files/v1_format/v1_multi-output.yaml @@ -27,4 +27,4 @@ outputs: - foo tests: - script: - - db_archive -m hello + - db_archive -m hello \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_non_marked_multiline_summary.yaml b/tests/test_aux_files/v1_format/v1_non_marked_multiline_summary.yaml index 61a84f13..d61a9a8f 100644 --- a/tests/test_aux_files/v1_format/v1_non_marked_multiline_summary.yaml +++ b/tests/test_aux_files/v1_format/v1_non_marked_multiline_summary.yaml @@ -33,4 +33,4 @@ about: license_file: LICENSE homepage: https://github.com/python/typeshed repository: https://github.com/python/typeshed - documentation: https://pypi.org/project/types-toml/ + documentation: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_pip_check_only.yaml b/tests/test_aux_files/v1_format/v1_pip_check_only.yaml index 02974cc9..eafd1d50 100644 --- a/tests/test_aux_files/v1_format/v1_pip_check_only.yaml +++ b/tests/test_aux_files/v1_format/v1_pip_check_only.yaml @@ -44,4 +44,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_pytest-pep8.yaml b/tests/test_aux_files/v1_format/v1_pytest-pep8.yaml index feefba65..e999e724 100644 --- a/tests/test_aux_files/v1_format/v1_pytest-pep8.yaml +++ b/tests/test_aux_files/v1_format/v1_pytest-pep8.yaml @@ -49,4 +49,4 @@ about: extra: recipe-maintainers: - bjodah - - nicoddemus + - nicoddemus \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_regression_jinja_sub.yaml b/tests/test_aux_files/v1_format/v1_regression_jinja_sub.yaml index 7ada21fb..075dbae3 100644 --- a/tests/test_aux_files/v1_format/v1_regression_jinja_sub.yaml +++ b/tests/test_aux_files/v1_format/v1_regression_jinja_sub.yaml @@ -27,4 +27,4 @@ requirements: about: summary: Simple egression test for various JINJA substitution errors - homepage: https://github.com/python/typeshed + homepage: https://github.com/python/typeshed \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_rust.yaml b/tests/test_aux_files/v1_format/v1_rust.yaml index f87202cb..0184691f 100644 --- a/tests/test_aux_files/v1_format/v1_rust.yaml +++ b/tests/test_aux_files/v1_format/v1_rust.yaml @@ -134,4 +134,4 @@ extra: - dlaehnemann - johanneskoester - pkgw - - katietz + - katietz \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_script-env.yaml b/tests/test_aux_files/v1_format/v1_script-env.yaml index e3821904..8839b112 100644 --- a/tests/test_aux_files/v1_format/v1_script-env.yaml +++ b/tests/test_aux_files/v1_format/v1_script-env.yaml @@ -37,4 +37,4 @@ about: license_file: LICENSE homepage: https://github.com/python/typeshed repository: https://github.com/python/typeshed - documentation: https://pypi.org/project/types-toml/ + documentation: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_selector-match-upgrades.yaml b/tests/test_aux_files/v1_format/v1_selector-match-upgrades.yaml index d3d1adb0..63bec38d 100644 --- a/tests/test_aux_files/v1_format/v1_selector-match-upgrades.yaml +++ b/tests/test_aux_files/v1_format/v1_selector-match-upgrades.yaml @@ -50,4 +50,4 @@ about: license_file: LICENSE homepage: https://github.com/python/typeshed repository: https://github.com/python/typeshed - documentation: https://pypi.org/project/types-toml/ + documentation: https://pypi.org/project/types-toml/ \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_simple-recipe.yaml b/tests/test_aux_files/v1_format/v1_simple-recipe.yaml index 6e8401fd..fd08eb39 100644 --- a/tests/test_aux_files/v1_format/v1_simple-recipe.yaml +++ b/tests/test_aux_files/v1_format/v1_simple-recipe.yaml @@ -55,4 +55,4 @@ test_var_usage: - ${{ zz_non_alpha_first }} - blah - This ${{ name }} is silly - - last + - last \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_sub_vars.yaml b/tests/test_aux_files/v1_format/v1_sub_vars.yaml index 7627754b..8a70c856 100644 --- a/tests/test_aux_files/v1_format/v1_sub_vars.yaml +++ b/tests/test_aux_files/v1_format/v1_sub_vars.yaml @@ -70,4 +70,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_types-toml.yaml b/tests/test_aux_files/v1_format/v1_types-toml.yaml index 26d67ae6..19e5356a 100644 --- a/tests/test_aux_files/v1_format/v1_types-toml.yaml +++ b/tests/test_aux_files/v1_format/v1_types-toml.yaml @@ -53,4 +53,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/v1_format/v1_types-toml_src_lst.yaml b/tests/test_aux_files/v1_format/v1_types-toml_src_lst.yaml index 765f4255..75b82bc4 100644 --- a/tests/test_aux_files/v1_format/v1_types-toml_src_lst.yaml +++ b/tests/test_aux_files/v1_format/v1_types-toml_src_lst.yaml @@ -53,4 +53,4 @@ about: extra: recipe-maintainers: - fhoehle - - conda-forge/mypy + - conda-forge/mypy \ No newline at end of file diff --git a/tests/test_aux_files/x264.yaml b/tests/test_aux_files/x264.yaml index fd9d967d..e69e2620 100644 --- a/tests/test_aux_files/x264.yaml +++ b/tests/test_aux_files/x264.yaml @@ -50,4 +50,4 @@ extra: - jakirkham - 183amir - carlodri - - sdvillal + - sdvillal \ No newline at end of file diff --git a/tests/utils/cryptography/test_hashing.py b/tests/utils/cryptography/test_hashing.py index 24a95c00..91cfe79a 100644 --- a/tests/utils/cryptography/test_hashing.py +++ b/tests/utils/cryptography/test_hashing.py @@ -16,12 +16,12 @@ @pytest.mark.parametrize( "file,algo,expected", [ - ("types-toml.yaml", "sha256", "e117d210da9ea6507fdea856ee96407265aec40cbc58432aa6e1c7e31998a686"), - ("types-toml.yaml", hashlib.sha256, "e117d210da9ea6507fdea856ee96407265aec40cbc58432aa6e1c7e31998a686"), + ("types-toml.yaml", "sha256", "d4c2fd9b24793a890e67dc58f5182981b4dd34c50967a8358de10eade8b2e415"), + ("types-toml.yaml", hashlib.sha256, "d4c2fd9b24793a890e67dc58f5182981b4dd34c50967a8358de10eade8b2e415"), ( "types-toml.yaml", "sha512", - "0055bcbefb34695caa35e487cdd4e94340ff08db19a3de45a0fb79a270b2cc1f5183b8ebbca018a747e3b3a6fb8ce2a70d090f8510de4712bb24645202d75b36", # pylint: disable=line-too-long + "b343b159400058f74a01f95c856094b1add15e516592d5102a09738ba6a3c2ddb044ee0e7d461d16515925483a5bcf5f516b2725924f2900f88ec6641b1d6e72", # pylint: disable=line-too-long ), ], ) @@ -62,11 +62,11 @@ def test_hash_str(s: str, algo: Callable[[bytes], hashlib._Hash], expected: str) @pytest.mark.parametrize( "file,algo,expected", [ - ("types-toml.yaml", hashlib.sha256, "e117d210da9ea6507fdea856ee96407265aec40cbc58432aa6e1c7e31998a686"), + ("types-toml.yaml", hashlib.sha256, "d4c2fd9b24793a890e67dc58f5182981b4dd34c50967a8358de10eade8b2e415"), ( "types-toml.yaml", hashlib.sha512, - "0055bcbefb34695caa35e487cdd4e94340ff08db19a3de45a0fb79a270b2cc1f5183b8ebbca018a747e3b3a6fb8ce2a70d090f8510de4712bb24645202d75b36", # pylint: disable=line-too-long + "b343b159400058f74a01f95c856094b1add15e516592d5102a09738ba6a3c2ddb044ee0e7d461d16515925483a5bcf5f516b2725924f2900f88ec6641b1d6e72", # pylint: disable=line-too-long ), ], )