Skip to content

Commit 9f1d4ab

Browse files
committed
ci: fix build
1 parent 7243621 commit 9f1d4ab

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
- name: Checkout code
1414
uses: actions/checkout@v2
1515

16-
- name: Set up Python, Install Dependencies, Build, Test, and Audit
16+
- name: Setup, Build, Test and Audit
1717
run: |
18-
python_versions=("cp39" "cp310" "cp311" "cp312")
18+
python_versions=("cp39" "cp310" "cp311" "cp312", "cp13")
1919
for version in "${python_versions[@]}"; do
2020
/opt/python/$version-$version/bin/pip install --upgrade pip setuptools rich wheel requests pillow
2121
/opt/python/$version-$version/bin/python setup.py bdist_wheel
@@ -26,7 +26,7 @@ jobs:
2626
/opt/python/$version-$version/bin/python tests/test_all.py test_image.jpg 1
2727
# Run auditwheel only for Python 3.9
2828
if [ "$version" == "cp39" ]; then
29-
/opt/python/$version-$version.bin/pip install auditwheel
29+
/opt/python/$version-$version/bin/pip install auditwheel
3030
mkdir wheelhouse
3131
mv dist/*.tar.gz wheelhouse
3232
auditwheel repair dist/*

tests/test_all.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,6 @@
9494
)
9595
console.print(st)
9696

97-
exit()
98-
9997
def print_scheme(scheme_function, name):
10098
print()
10199
schemes = [scheme_function(rgb) for rgb in selected]

0 commit comments

Comments
 (0)