From 806c5aef42be8b3100ccc9f083bb8bae6a9d1f94 Mon Sep 17 00:00:00 2001 From: pmp-p Date: Tue, 22 Aug 2023 08:57:44 +0200 Subject: [PATCH] start 0.8 --- pygbag/__init__.py | 2 +- pygbag/support/cross/aio/toplevel.py | 1 + pygbag/support/pythonrc.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pygbag/__init__.py b/pygbag/__init__.py index 8c300fd..cc77ee6 100644 --- a/pygbag/__init__.py +++ b/pygbag/__init__.py @@ -4,7 +4,7 @@ from pathlib import Path -__version__ = "0.7.2" +__version__ = "0.0.0" # make aio available diff --git a/pygbag/support/cross/aio/toplevel.py b/pygbag/support/cross/aio/toplevel.py index 188a99e..85d62fc 100644 --- a/pygbag/support/cross/aio/toplevel.py +++ b/pygbag/support/cross/aio/toplevel.py @@ -71,6 +71,7 @@ async def get_repo_pkg(pkg_file, pkg, resume, ex): pdb(f"failed to install {pkg_file}") sys.print_exception(rx) + # let wasm compilation happen await asyncio.sleep(0) try: diff --git a/pygbag/support/pythonrc.py b/pygbag/support/pythonrc.py index 4a0a95f..cbc4d96 100644 --- a/pygbag/support/pythonrc.py +++ b/pygbag/support/pythonrc.py @@ -470,6 +470,7 @@ def unzip(cls, *argv, **env): for zip in argv: with zipfile.ZipFile(zip, "r") as zip_ref: + zip_ref.printdir() zip_ref.extractall(os.getcwd()) @classmethod