@@ -4,24 +4,24 @@ Changelog
441.8.0 (Jan 25, 2025)
55==================
66
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.
88 The package is compiled on manylinux_2_28 against kernel 4.18.
99
1010- The ``evdev.ecodes `` module is now generated at install time and contains only constants. This allows type
1111 checking and introspection of the ``evdev.ecodes `` module, without having to execute it first. The old
1212 module is available as ``evdev.ecodes_runtime ``. In case generation of the static ``ecodes.py `` fails, the
1313 install process falls back to using ``ecodes_runtime.py `` as ``ecodes.py ``.
1414
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::
1616
1717 >>> ecodes.KEY[153]
18- 153: ('KEY_DIRECTION', 'KEY_ROTATE_DISPLAY'),
18+ ('KEY_DIRECTION', 'KEY_ROTATE_DISPLAY')
1919
20- - Minimum Python version raised to Python 3.8.
20+ - Raise the minimum supported Python version to 3.8.
2121
22- - Fix keyboard delay and repeat being swapped.
22+ - Fix keyboard delay and repeat being swapped (#227) .
2323
24- - Move ` syn() ` convenience method from `InputDevice ` to `EventIO `.
24+ - Move the `` syn() `` convenience method from `` InputDevice `` to `` EventIO `` (#224) .
2525
2626
27271.7.1 (May 8, 2024)
@@ -41,7 +41,7 @@ Changelog
4141
4242- Add the uniq address to the string representation of ``InputDevice ``.
4343
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 > `_).
4545
4646- Repository TLC (reformatted with ruff, fixed linting warnings, moved packaging metadata to ``pyproject.toml `` etc.).
4747
0 commit comments