-
Notifications
You must be signed in to change notification settings - Fork 74
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start with adapting
run_test_migration_recipe_yaml
Write recipe.yaml not meta.yaml Add schema to recipe yaml Prepare test for the adapted migrator Adapt `update_build_number` for recipe.yaml fix: function signature to match baseclass Update version.py refactor: Improve `test_version_cupy` refactor: Improve "run_test_migration"
- Loading branch information
1 parent
76abc39
commit 612b83c
Showing
13 changed files
with
361 additions
and
46 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
from .build_number import DEFAULT_BUILD_PATTERNS, update_build_number # noqa | ||
from .version import update_version # noqa | ||
from .build_number import ( | ||
DEFAULT_BUILD_PATTERNS as DEFAULT_BUILD_PATTERNS, | ||
) | ||
from .build_number import ( | ||
update_build_number_meta_yaml as update_build_number_meta_yaml, | ||
) | ||
from .build_number import ( | ||
update_build_number_recipe_yaml as update_build_number_recipe_yaml, | ||
) | ||
|
||
# noqa | ||
from .version import update_meta_yaml_version, update_recipe_yaml_version # noqa |
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
Oops, something went wrong.