Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
gvalkov committed Jan 25, 2025
1 parent 27eb2ff commit 06151f0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ Changelog
1.8.0 (Jan 25, 2025)
==================

- Binary wheels are now provided by the `evdev-binary http://pypi.python.org/pypi/evdev-binary`_ package.
- Binary wheels are now provided by the `evdev-binary <http://pypi.python.org/pypi/evdev-binary>`_ package.
The package is compiled on manylinux_2_28 against kernel 4.18.

- The ``evdev.ecodes`` module is now generated at install time and contains only constants. This allows type
checking and introspection of the ``evdev.ecodes`` module, without having to execute it first. The old
module is available as ``evdev.ecodes_runtime``. In case generation of the static ``ecodes.py`` fails, the
install process falls back to using ``ecodes_runtime.py`` as ``ecodes.py``.

- Reverse mappings in ``evdev.ecodes`` that point to more than one value are now tuples and not lists. For example::
- Reverse mappings in ``evdev.ecodes`` that point to more than one value are now tuples instead of lists. For example::

>>> ecodes.KEY[153]
153: ('KEY_DIRECTION', 'KEY_ROTATE_DISPLAY'),
('KEY_DIRECTION', 'KEY_ROTATE_DISPLAY')

- Minimum Python version raised to Python 3.8.

Expand All @@ -41,7 +41,7 @@ Changelog

- Add the uniq address to the string representation of ``InputDevice``.

- Improved method for finding the device node corresponding to a uinput device (`#206 https://github.com/gvalkov/python-evdev/pull/206`_).
- Improved method for finding the device node corresponding to a uinput device (`#206 <https://github.com/gvalkov/python-evdev/pull/206>`_).

- Repository TLC (reformatted with ruff, fixed linting warnings, moved packaging metadata to ``pyproject.toml`` etc.).

Expand Down

0 comments on commit 06151f0

Please sign in to comment.