File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed
Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments