8000 don't force setuptools upgrade during installation of requirements fo… · pythonnet/pythonnet@4020a0c · GitHub
[go: up one dir, main page]

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 3 deletions
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)
0