Skip to content

Commit

Permalink
Fix build system
Browse files Browse the repository at this point in the history
  • Loading branch information
Josh5 committed Sep 29, 2023
1 parent b31f22d commit 5e1ff96
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build_all_packages_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:
py_build:

name: Build Python package
needs: integration_tests
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -52,6 +51,7 @@ jobs:
run: |
python -m pip install --upgrade pip
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; fi
# Build python dist package
- name: Build python dist package
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,5 @@ dumb-udev

This python module is a minimal input broadcaster designed to be run inside containers as a replacement to udevd.
This is not a full udevd replacement.

---
2 changes: 2 additions & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
wheel==0.38.4
setuptools>=39.0.1

0 comments on commit 5e1ff96

Please sign in to comment.