Skip to content

Commit 229ff2b

Browse files
committed
Try migrating to python 3 build module in test CI
1 parent 1b43f7e commit 229ff2b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/scc-linux.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ jobs:
2222
with:
2323
python-version: '3.13'
2424
# Install dependencies
25-
- run: pip install ioctl-opt libusb1 toml vdf pytest
25+
- run: |
26+
apt install -y python3-setuptools
27+
pip install ioctl-opt libusb1 toml vdf pytest
2628
# Build
27-
- run: python setup.py build
29+
- run: python -m build
2830
# Test
2931
- run: python -m pytest tests

0 commit comments

Comments
 (0)