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 }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip pip install --disable-version-check -e .
# Until the next xdis release pip install --disable-version-check -r requirements-dev.txt
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
- name: Test uncompyle6 - name: Test uncompyle6
run: | run: |
make check make check

View File

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