Skip to content

Bump version: 1.9.2 → 1.9.3 #127

Bump version: 1.9.2 → 1.9.3

Bump version: 1.9.2 → 1.9.3 #127

Workflow file for this run

name: Test install
on:
- push
- pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13", "3.14"]
include:
- os: ubuntu-latest
python-version: "3.9"
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Install python-evdev
run: |
python -m pip install -v .
(cd /tmp && python -c "import evdev.ecodes; print(evdev.ecodes)")