-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
243 Develop a retry mechanism for fetching artifacts in
bump-recipe
(…
…#261) * First pass at retry mechanism for artifact fetching * Allows for user-customizable HTTP retry interval. Fixes a handful of logging messages * Improves logging messages * Adds initial bump-recipe retry unit test * Adds retry test for recipes with hash variables * Adds retry unit test for multi-sourced recipes
- Loading branch information
1 parent
54c7f2b
commit 2a446b6
Showing
8 changed files
with
306 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{% set name = "types-toml" %} | ||
{% set version = "0.10.8.6" %} | ||
|
||
package: | ||
name: {{ name|lower }} | ||
version: {{ version }} | ||
|
||
source: | ||
url: https://fake.website.total.bullshit/artifact.tar.gz | ||
sha256: 6d3ac79e36c9ee593c5d4fb33a50cca0e3adceb6ef5cff8b8e5aef67b4c4aaf2 | ||
|
||
build: | ||
number: 0 | ||
skip: true # [py<37] | ||
script: {{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation | ||
|
||
requirements: | ||
host: | ||
- setuptools | ||
- wheel | ||
- pip | ||
- python | ||
run: | ||
- python | ||
|
||
test: | ||
imports: | ||
- types | ||
requires: | ||
- pip | ||
commands: | ||
- pip check | ||
- test -f $SP_DIR/toml-stubs/__init__.pyi # [unix] | ||
|
||
about: | ||
home: https://github.com/python/typeshed | ||
summary: Typing stubs for toml | ||
description: | | ||
This is a PEP 561 type stub package for the toml package. | ||
It can be used by type-checking tools like mypy, pyright, | ||
pytype, PyCharm, etc. to check code that uses toml. | ||
license: Apache-2.0 AND MIT | ||
license_file: LICENSE | ||
license_family: OTHER | ||
dev_url: https://github.com/python/typeshed | ||
doc_url: https://pypi.org/project/types-toml/ | ||
|
||
extra: | ||
recipe-maintainers: | ||
- fhoehle | ||
- conda-forge/mypy |
Oops, something went wrong.