File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 44from typing import Any , Dict , List
55
66import typer
7- from packaging .version import Version
8-
97from bioimageio .spec .shared import yaml
8+ from packaging .version import Version
109from utils import iterate_known_resource_versions
1110
1211
@@ -72,6 +71,7 @@ def main(
7271 for updated_rdf_path in static_validation_artifact_dir .glob (f"{ resource_id_pattern } /*/rdf.yaml" ):
7372 updated_rdf_gh_pages_path = gh_pages / "rdfs" / updated_rdf_path .relative_to (static_validation_artifact_dir )
7473 updated_rdf_gh_pages_path .parent .mkdir (exist_ok = True , parents = True )
74+ print (f"copy to deploy: { updated_rdf_path } -> { updated_rdf_gh_pages_path } " )
7575 shutil .copy (str (updated_rdf_path ), str (updated_rdf_gh_pages_path ))
7676
7777 updated_rdf_deploy_path = dist / "rdfs" / updated_rdf_path .relative_to (static_validation_artifact_dir )
You can’t perform that action at this time.
0 commit comments