Unpin LXML, and remove linux deps as they were only required when building lxml from source (#3874)

This commit is contained in:
Bert Blommers 2021-04-24 09:33:00 +01:00 committed by GitHub
parent 8b523c3fe1
commit ede2579836
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 13 deletions

View File

@ -27,10 +27,6 @@ jobs:
with:
path: ${{ steps.pip-cache-dir.outputs.dir }}
key: pip-${{ matrix.python-version }}-${{ hashFiles('**/setup.py') }}
- name: Install Linux dependencies
if: ${{ matrix.python-version == 3.8 && steps.pip-cache.outputs.cache-hit != 'true' }}
run: |
sudo apt-get install libxslt-dev libxml2-dev -y
- name: Update pip
if: ${{ steps.pip-cache.outputs.cache-hit != 'true' && matrix.python-version != '2.7' }}
run: |
@ -102,10 +98,6 @@ jobs:
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: pip-${{ matrix.python-version }}-${{ hashFiles('**/setup.py') }}
- name: Install Linux dependencies
if: ${{ matrix.python-version == 3.8 }}
run: |
sudo apt-get install libxslt-dev libxml2-dev -y
- name: Update pip
if: ${{ matrix.python-version != '2.7' }}
run: |
@ -154,10 +146,6 @@ jobs:
with:
path: ${{ steps.pip-cache.outputs.dir }}
key: pip-${{ matrix.python-version }}-${{ hashFiles('**/setup.py') }}
- name: Install Linux dependencies
if: ${{ matrix.python-version == 3.8 }}
run: |
sudo apt-get install libxslt-dev libxml2-dev -y
- name: Update pip
if: ${{ matrix.python-version != '2.7' }}
run: |

View File

@ -9,6 +9,6 @@ boto>=2.45.0
prompt-toolkit==2.0.10 # 3.x is not available with python2
click==6.7
inflection==0.3.1
lxml==4.2.3
lxml
packaging