We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03f51c8 commit d5dda86Copy full SHA for d5dda86
.github/workflows/scc-linux.yml
@@ -23,7 +23,7 @@ jobs:
23
python-version: '3.13'
24
25
- name: Install dependencies
26
- run: pip install build setuptools ioctl-opt libusb1 toml vdf pytest
+ run: pip install build setuptools ioctl-opt libusb1 vdf pytest
27
28
- name: Build SCC
29
run: python -m build
Dockerfile
@@ -43,8 +43,11 @@ RUN <<EOR
43
python -m build --wheel
44
python -m venv .env
45
. .env/bin/activate
46
- pip install libusb1 pytest toml vdf
47
- python -m pytest tests
+ pip install libusb1 pytest vdf
+ # Tests need Python 3.11+
48
+ if [ ${UBUNTU_CODENAME-} != 'jammy' ]; then
49
+ python -m pytest tests
50
+ fi
51
pip install --prefix "${TARGET}/usr" --no-warn-script-location dist/*.whl
52
53
# Save version
0 commit comments