about summary refs log tree commit diff stats
path: root/.github
diff options
context:
space:
mode:
authortoonn <toonn@toonn.io>2022-06-13 15:50:28 +0200
committertoonn <toonn@toonn.io>2022-06-13 15:50:28 +0200
commitd8311106abd2925e62650ca371f46bb7648463ca (patch)
tree8e0fac6dc5698037c403a4526ba0209b9d91a350 /.github
parentff909fab98f5941d9e59c983fed787256c35e12d (diff)
parent9473bd0612d3ca6b3a2a62b8d9ea5a103503eadb (diff)
downloadranger-d8311106abd2925e62650ca371f46bb7648463ca.tar.gz
Merge branch 'pylint'
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/python.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml
index dc41318e..fe2c7e59 100644
--- a/.github/workflows/python.yml
+++ b/.github/workflows/python.yml
@@ -28,7 +28,9 @@ jobs:
     - name: Install dependencies
       run: |
         python -m pip install --upgrade pip
-        pip install -r requirements.txt
+        # We need to ignore PyLint because we can't install the one we need for
+        # Python 2.7 and 3.5
+        pip install -r <(grep -v pylint requirements.txt)
     - name: Flake8 and test
       run: |
         make test_flake8 test_doctest test_other
147'>147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220