Skip to content

Commit

Permalink
tests: Switch to own fork of python-uinput
Browse files Browse the repository at this point in the history
The upstream repository is not maintained anymore, switch to own fork
that has py3.11 patches on top.

Fixes QubesOS/qubes-issues#7833
  • Loading branch information
marmarek committed Oct 31, 2022
1 parent 07abab9 commit b9f7578
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qubesinputproxy/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def setUp(self):
self.vm.start(start_guid=False)
if self.vm.run("python3 -c 'import uinput'", wait=True, gui=False) != 0:
# If uinput module not installed, try to install it with pip
p = self.vm.run("pip3 install python-uinput 2>&1", passio_popen=True,
p = self.vm.run("pip3 install git+https://github.com/marmarek/python-uinput@py311 2>&1", passio_popen=True,
user="root", gui=False)
(stdout, _) = p.communicate()
if p.returncode != 0:
Expand Down

0 comments on commit b9f7578

Please sign in to comment.