Don not upgrade pip on older pythons

This commit is contained in:
rocky
2021-10-23 07:51:15 -04:00
parent ada786e08c
commit 01859ce820
2 changed files with 4 additions and 9 deletions

View File

@@ -21,11 +21,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
# Until the next xdis release
pip install git+git://github.com/rocky/python-xdis.git@python-3.3-to-3.5#egg=xdis
pip install -e .
pip install -r requirements-dev.txt
pip install --disable-version-check -e .
pip install --disable-version-check -r requirements-dev.txt
- name: Test uncompyle6
run: |
make check

View File

@@ -21,10 +21,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install git+git://github.com/rocky/python-xdis.git@python-3.3-to-3.5#egg=xdis
pip install -e .
pip install -r requirements-dev.txt
pip install --disable-version-check -e .
pip install --disable-version-check -r requirements-dev.txt
- name: Test uncompyle6
run: |
make check