We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bdcdafd + 3845cee commit 1b3ea7dCopy full SHA for 1b3ea7d
circuitpython_build_tools/scripts/build_bundles.py
@@ -64,6 +64,9 @@ def get_module_name(library_path):
64
if repo[-4:] == ".git":
65
repo = repo[:-4]
66
module_name = repo.split("/")[-1].replace("_", "-")
67
+
68
+ # circuitpython org repos are deployed to pypi without "org" in the pypi name
69
+ module_name = re.sub(r"^circuitpython-org-", "circuitpython-", module_name)
70
return module_name, repo
71
72
def get_bundle_requirements(directory, package_list):
0 commit comments