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.
2 parents e57cf46 + 710434f commit 0df34c7Copy full SHA for 0df34c7
CHANGELOG.rst
@@ -1,3 +1,8 @@
1
+v3.4.3
2
+======
3
+
4
+* fix #399: ensure the git file finder terminates subprocess after reading archive
5
6
v3.4.2
7
======
8
src/setuptools_scm/file_finder_git.py
@@ -49,8 +49,8 @@ def _git_ls_files_and_dirs(toplevel):
49
try:
50
return _git_interpret_archive(proc.stdout, toplevel)
51
finally:
52
- # ensure we avoid ressource warnings by cleaning up the pocess
53
- proc.wait()
+ # ensure we avoid resource warnings by cleaning up the process
+ proc.terminate()
54
except Exception:
55
if proc.wait() != 0:
56
log.exception("listing git files failed - pretending there aren't any")
0 commit comments