Skip to content

Commit 4020a0c

Browse files
committed
don't force setuptools upgrade during installation of requirements for testing
upgrade caused InvalidVersion: Invalid version: '0.23ubuntu1' on Ubuntu due to setuptools dropping support for that version format
1 parent 1729698 commit 4020a0c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/ARM.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
2828
- name: Install dependencies
2929
run: |
30-
pip install --upgrade -r requirements.txt
30+
pip install -r requirements.txt
3131
pip install pytest numpy # for tests
3232
3333
- name: Build and Install

requirements.txt

+2-3
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,7 @@ codecov
88

99
wheel
1010
pycparser
11-
setuptools
12-
clr-loader
11+
clr-loader==0.2.*
1312

1413
# Discover libpython
15-
find_libpython
14+
find_libpython==0.3.*

0 commit comments

Comments
 (0)