We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 241b220 commit 21a4dc2Copy full SHA for 21a4dc2
1 file changed
setup.py
@@ -73,7 +73,8 @@
73
PTH = '''\
74
try:
75
import coverage
76
-except ImportError:
+# coverage throws OSError when $PWD does not exist
77
+except (ImportError, OSError):
78
pass
79
else:
80
coverage.process_startup()
@@ -123,7 +124,7 @@ def main():
123
124
"""the entry point"""
125
setup(
126
name=str('coverage_enable_subprocess'),
- version='0',
127
+ version='1.0',
128
url="https://github.com/bukzor/python-coverage-enable-subprocess",
129
license="MIT",
130
author="Buck Evan",
0 commit comments