@@ -4,18 +4,18 @@ Changelog
4
4
1.8.0 (Jan 25, 2025)
5
5
==================
6
6
7
- - Binary wheels are now provided by the `evdev-binary http://pypi.python.org/pypi/evdev-binary `_ package.
7
+ - Binary wheels are now provided by the `evdev-binary < http://pypi.python.org/pypi/evdev-binary > `_ package.
8
8
The package is compiled on manylinux_2_28 against kernel 4.18.
9
9
10
10
- The ``evdev.ecodes `` module is now generated at install time and contains only constants. This allows type
11
11
checking and introspection of the ``evdev.ecodes `` module, without having to execute it first. The old
12
12
module is available as ``evdev.ecodes_runtime ``. In case generation of the static ``ecodes.py `` fails, the
13
13
install process falls back to using ``ecodes_runtime.py `` as ``ecodes.py ``.
14
14
15
- - Reverse mappings in ``evdev.ecodes `` that point to more than one value are now tuples and not lists. For example::
15
+ - Reverse mappings in ``evdev.ecodes `` that point to more than one value are now tuples instead of lists. For example::
16
16
17
17
>>> ecodes.KEY[153]
18
- 153: ('KEY_DIRECTION', 'KEY_ROTATE_DISPLAY'),
18
+ ('KEY_DIRECTION', 'KEY_ROTATE_DISPLAY')
19
19
20
20
- Minimum Python version raised to Python 3.8.
21
21
@@ -41,7 +41,7 @@ Changelog
41
41
42
42
- Add the uniq address to the string representation of ``InputDevice ``.
43
43
44
- - Improved method for finding the device node corresponding to a uinput device (`#206 https://github.com/gvalkov/python-evdev/pull/206 `_).
44
+ - Improved method for finding the device node corresponding to a uinput device (`#206 < https://github.com/gvalkov/python-evdev/pull/206 > `_).
45
45
46
46
- Repository TLC (reformatted with ruff, fixed linting warnings, moved packaging metadata to ``pyproject.toml `` etc.).
47
47
0 commit comments