foamlib 0.3.6__tar.gz → 0.3.7__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.
- {foamlib-0.3.6 → foamlib-0.3.7}/PKG-INFO +1 -1
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib/__init__.py +1 -1
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib/_util.py +2 -3
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib.egg-info/PKG-INFO +1 -1
- {foamlib-0.3.6 → foamlib-0.3.7}/LICENSE.txt +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/README.md +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib/_cases.py +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib/_files/__init__.py +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib/_files/_base.py +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib/_files/_files.py +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib/_files/_io.py +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib/_files/_parsing.py +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib/_files/_serialization.py +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib/py.typed +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib.egg-info/SOURCES.txt +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib.egg-info/dependency_links.txt +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib.egg-info/requires.txt +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/foamlib.egg-info/top_level.txt +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/pyproject.toml +0 -0
- {foamlib-0.3.6 → foamlib-0.3.7}/setup.cfg +0 -0
@@ -74,8 +74,8 @@ def run_process(
|
|
74
74
|
proc = subprocess.run(
|
75
75
|
cmd,
|
76
76
|
cwd=cwd,
|
77
|
-
env=_env(cwd),
|
78
|
-
stdout=
|
77
|
+
env=_env(cwd) if not shell else None,
|
78
|
+
stdout=subprocess.DEVNULL,
|
79
79
|
stderr=subprocess.PIPE if check else subprocess.DEVNULL,
|
80
80
|
text=True,
|
81
81
|
shell=shell,
|
@@ -95,7 +95,6 @@ async def run_process_async(
|
|
95
95
|
proc = await asyncio.create_subprocess_shell(
|
96
96
|
str(cmd),
|
97
97
|
cwd=cwd,
|
98
|
-
env=_env(cwd),
|
99
98
|
stdout=asyncio.subprocess.DEVNULL,
|
100
99
|
stderr=asyncio.subprocess.PIPE if check else asyncio.subprocess.DEVNULL,
|
101
100
|
)
|
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
|