- Dec 18, 2024
-
-
The map is supposed to be a dict of tuples, see https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html Signed-off-by:
Stephen Kitt <steve@sk2.org> Part-of: <!31>
-
Peter Hutterer authored
Required for pipelines to run after some infrastructure changes, see freedesktop/freedesktop#438
-
- Jan 18, 2024
-
-
Matt Turner authored
Setuptools v54.1.0 introduces a warning that the use of dash-separated options in 'setup.cfg' will not be supported in a future version [1]. Get ahead of the issue by replacing the dashes with underscores. Without this, we see 'UserWarning' messages like the following on new enough versions of setuptools: UserWarning: Usage of dash-separated 'description-file' will not be supported in future versions. Please use the underscore name 'description_file' instead [1] https://github.com/pypa/setuptools/commit/a2e9ae4cb
-
- Nov 22, 2023
-
-
Peter Hutterer authored
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- Jun 22, 2023
-
-
Peter Hutterer authored
See https://blog.readthedocs.com/migrate-configuration-v2/ , config file copy/pasted from there. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- May 29, 2022
-
-
Peter Hutterer authored
Due to some branch mixup, the 0.10 tag points at a commit not actually on the master branch in the gitlab setup. Let's fix this by just bumping the version again so we agree on where we're at.
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
-
Peter Hutterer authored
Without a DCO the SOB is mostly pointless anyway and unlike other projects there's nothing in this repo anywhere that points at someone else's DCO either. Let's just drop this requirement, we'll get on fine without it.
-
- Dec 16, 2021
-
-
Peter Hutterer authored
This removes the need of suffixing `.value` when we need the numeric value of an evcode, which is virtually all the time. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- Aug 23, 2021
-
-
Peter Hutterer authored
Fixes #11 Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
We don't use static pages so let's get rid of the associated warning Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
And start using a container for the flake and install jobs - we're hitting docker pull limits too frequently. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- Sep 23, 2020
-
-
Peter Hutterer authored
Testing tablets without acces to the hw is reasonably common, let's provide a simple example that can be extended to the user's liking. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- Jun 16, 2020
-
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- Jun 04, 2020
-
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- Apr 04, 2020
-
-
Peter Hutterer authored
Because I spent way too long trying to assign device.id['vendor'] before I remembered that it doesn't work that way. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- Mar 11, 2020
-
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
These break when running offa custom VM that may not have any local devices at all. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- Mar 10, 2020
-
-
Filipe Laíns authored
Signed-off-by:
Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Signed-off-by:
Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Signed-off-by:
Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Signed-off-by:
Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Signed-off-by:
Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Use the same format for the names. Signed-off-by:
Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Signed-off-by:
Filipe Laíns <lains@archlinux.org>
-
Filipe Laíns authored
Fixes #1 Signed-off-by:
Filipe Laíns <lains@archlinux.org>
-
- Aug 26, 2019
-
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
This makes flake8 a lot happier Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Peter Hutterer authored
-
- Aug 12, 2019
-
-
Peter Hutterer authored
Previously, event codes without a kernel define would resolve into properly named objects, e.g. libevdev.EV_REL.REL_0B This breaks the API whenever the kernel introduces a new define because that named object will just disappear. e.g. the above REL_0B is now REL_WHEEL_HI_RES. Since the undefined names aren't supposed to be used by callers directly anyway, rename them to be underscored instead: libevdev.EV_REL._REL_0B This means we can still return them from evbit() and events() but the underscore signals a private API. The actual name remains the same, so print(_REL_0B.name) will not have an underscore. This is to avoid bugs/breakage where the caller uses the 3-lettter prefix for other purposes. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
- Aug 06, 2019
-
-
Peter Hutterer authored
A large percentage of real-world use-cases are tied into some external mainloop and require non-blocking operation. It's too easy to forget about that, so let's add the O_NONBLOCK call to the example documentation here. Those that don't need it can remove it easily anyway. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-
Filipe Laíns authored
Signed-off-by:
Filipe Laíns <lains@archlinux.org>
-
- Aug 05, 2019
-
-
Filipe Laíns authored
Signed-off-by:
Filipe Laíns <lains@archlinux.org>
-
- May 24, 2019
-
-
Peter Hutterer authored
test/test_device.py:434: DeprecationWarning: Please use assertEqual instead. Signed-off-by:
Peter Hutterer <peter.hutterer@who-t.net>
-