PyProd 0.10.1__tar.gz → 0.10.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyprod-0.10.1 → pyprod-0.10.2}/PKG-INFO +1 -1
- pyprod-0.10.2/src/pyprod/__init__.py +1 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/src/pyprod/prod.py +3 -2
- pyprod-0.10.1/src/pyprod/__init__.py +0 -1
- {pyprod-0.10.1 → pyprod-0.10.2}/.github/workflows/publish.yml +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/.github/workflows/test.yml +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/.gitignore +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/LICENSE +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/README.rst +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/docs/Makefile +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/docs/commandline.rst +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/docs/conf.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/docs/index.rst +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/docs/make.bat +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/docs/prodfile.rst +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/docs/pyprod2.png +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/docs/quickstart.rst +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/docs/releasenotes.rst +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/docs/requirements.txt +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/pyprod.webp +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/pyprod2.png +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/pyproject.toml +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/build-c/Makefile +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/build-c/Prodfile.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/build-c/hello.c +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/build-c/hello.h +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/build-c/main.c +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/generate-doc/Prodfile.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/generate-doc/a.txt +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/generate-doc/b.txt +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/generate-doc/c.txt +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/generate-doc/inc1.txt +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/generate-doc/inc2.txt +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/md-to-pdf/Prodfile.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/md-to-pdf/doc.md +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/md-to-pdf/md_to_html.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/md-to-pdf/template.html +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/s3files/Prodfile.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/s3files/S3TEST.txt +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/tutorial-1/Prodfile.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/samples/tutorial-2/Prodfile.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/src/pyprod/__main__.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/src/pyprod/main.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/src/pyprod/utils.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/src/pyprod/venv.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/tests/__init__.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/tests/conftest.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/tests/test_prod.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/tests/test_prodfuncs.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/tests/test_rule.py +0 -0
- {pyprod-0.10.1 → pyprod-0.10.2}/tests/utils.py +0 -0
@@ -0,0 +1 @@
|
|
1
|
+
__version__ = "0.10.2"
|
@@ -713,8 +713,8 @@ class Prod:
|
|
713
713
|
finally:
|
714
714
|
ev.set()
|
715
715
|
|
716
|
-
|
717
|
-
|
716
|
+
events = [ev.wait() for ev in waits]
|
717
|
+
await asyncio.gather(*events)
|
718
718
|
|
719
719
|
ts = []
|
720
720
|
for dep in deps:
|
@@ -744,6 +744,7 @@ class Prod:
|
|
744
744
|
tasks.append(uses_task)
|
745
745
|
|
746
746
|
await asyncio.gather(*tasks)
|
747
|
+
|
747
748
|
ts = 0
|
748
749
|
if deps:
|
749
750
|
ts = deps_task.result()
|
@@ -1 +0,0 @@
|
|
1
|
-
__version__ = "0.10.1"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|