Skip to content

Commit 5bcb5f6

Browse files
committed
Update test_min_reqs.yml
1 parent 78974ae commit 5bcb5f6

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

.github/workflows/test_min_reqs.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,7 @@ jobs:
7575
python -m pip install --upgrade pip
7676
pip install -r requirements-dev.txt
7777
pip install cbor2==5.1.2
78-
if [ "${{ runner.os }}" == "macOS" ]; then
79-
pip install coincurve==18.0.0
80-
else
81-
pip install coincurve==15.0.1
82-
fi
78+
pip install coincurve==${{ runner.os == 'macOS' && '18.0.0' || '15.0.1' }}
8379
pip install crcmod==1.7
8480
pip install ecdsa==0.17
8581
pip install ed25519-blake2b==1.4
@@ -110,11 +106,7 @@ jobs:
110106
python -m pip install --upgrade pip
111107
pip install -r requirements-dev.txt
112108
pip install cbor2==5.1.2
113-
if [ "${{ runner.os }}" == "macOS" ]; then
114-
pip install coincurve==18.0.0
115-
else
116-
pip install coincurve==16.0.0
117-
fi
109+
pip install coincurve==${{ runner.os == 'macOS' && '18.0.0' || '16.0.0' }}
118110
pip install crcmod==1.7
119111
pip install ecdsa==0.17
120112
pip install ed25519-blake2b==1.4

0 commit comments

Comments
 (0)