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.
1 parent a8dc444 commit a0be442Copy full SHA for a0be442
maix/version.py
@@ -3,6 +3,6 @@
3
4
version_major = 4
5
version_minor = 11
6
-version_patch = 4
+version_patch = 5
7
8
__version__ = "{}.{}.{}".format(version_major, version_minor, version_patch)
setup.py
@@ -294,6 +294,7 @@ def has_ext_modules(foo):
294
wheel_path_r = "dist/temp/maixpy-{}.dist-info/WHEEL".format(__version__)
295
with open(wheel_path_r, "r", encoding="utf-8") as f:
296
lines = f.readlines()
297
+ os.makedirs(os.path.dirname(wheel_path), exist_ok=True)
298
with open(wheel_path, "w", encoding="utf-8") as f:
299
for line in lines:
300
if line.startswith("Tag:"):
0 commit comments