change dependency

This commit is contained in:
Dmitry Shibanov 2022-01-26 13:37:40 +03:00
parent 3ec2fb61ee
commit cf5bb8df2b

View File

@ -39,7 +39,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ubuntu-latest, windows-latest, macos-latest] os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.7', '3.8', '3.9'] python-version: ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x']
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Setup Python - name: Setup Python
@ -47,14 +47,11 @@ jobs:
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
cache: 'pipenv' cache: 'pipenv'
- run: pip install --user pipenv - name: Install pipenv
run: pipx install pipenv
- name: Install dependencies - name: Install dependencies
shell: pwsh run: pipenv install numpy
run: |
if ($IsMacOS) {
$env:PATH += ":/Users/runner/.local/bin"
}
pipenv install flake8
python-pip-dependencies-caching-path: python-pip-dependencies-caching-path:
name: Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }}) name: Test pip (Python ${{ matrix.python-version}}, ${{ matrix.os }})
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
@ -81,7 +78,7 @@ jobs:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ubuntu-latest, windows-latest, macos-latest] os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.7', '3.8', '3.9'] python-version: ['3.7', '3.8', '3.9', 'pypy-3.7-v7.3.5', 'pypy-3.7-v7.x']
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Setup Python - name: Setup Python
@ -90,11 +87,7 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
cache: 'pipenv' cache: 'pipenv'
cache-dependency-path: '**/requirements-linux.txt' cache-dependency-path: '**/requirements-linux.txt'
- run: pip install --user pipenv - name: Install pipenv
run: pipx install pipenv
- name: Install dependencies - name: Install dependencies
shell: pwsh run: pipenv install numpy
run: |
if ($IsMacOS) {
$env:PATH += ":/Users/runner/.local/bin"
}
pipenv install flake8