We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57277c5 commit 894352eCopy full SHA for 894352e
.github/scripts/test-windows.ps1
@@ -97,7 +97,7 @@ exec { python -m pip install -r dev-requirements.txt }
97
98
# Install test helper package
99
Push-Location test/win-dshow-capture
100
-exec { python -m pip install wheel }
+exec { python -m pip install wheel setuptools }
101
exec { python -u setup.py bdist_wheel }
102
python -m pip uninstall -y pyvirtualcam_win_dshow_capture
103
ls dist\*cp${PYVER}*win*.whl | % { exec { python -m pip install $_ } }
pyvirtualcam/native_linux_v4l2loopback/virtual_output.h
@@ -130,7 +130,7 @@ class VirtualOutput {
130
} catch (std::exception &ex) {
131
close(_camera_fd);
132
_camera_fd = -1;
133
- throw ex;
+ throw;
134
}
135
};
136
0 commit comments