8000 fix frozen libraries version numbers · hathach/circuitpython@dadbba6 · GitHub
[go: up one dir, main page]

Skip to content

Commit dadbba6

Browse files
committed
fix frozen libraries version numbers
1 parent 9004f20 commit dadbba6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

tools/preprocess_frozen_modules.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ def copy_and_process(in_dir, out_dir):
7878
if line.startswith("__version__"):
7979
module_version = version_string(root, valid_semver=True)
8080
line = line.replace("0.0.0-auto.0", module_version)
81+
line = line.replace("0.0.0+auto.0", module_version)
8182
output.write(line)
8283

8384

0 commit comments

Comments
 (0)
0