Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Try to use pip packages #226

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
if: steps.cache-python.outputs.cache-hit != 'true'

- name: Install Pipenv
run: pyenv exec pip install pipenv
run: PIP_BREAK_SYSTEM_PACKAGES=1 pyenv exec pip install pipenv
- name: Cache Pip dependencies
id: cache-pipenv
uses: actions/cache@v2
Expand All @@ -50,7 +50,7 @@ jobs:
key: ${{ runner.os }}-python${{ matrix.python-version }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}-v3
- name: Install Pip dependencies
if: steps.cache-pipenv.outputs.cache-hit != 'true'
run: pyenv exec pipenv install --dev
run: PIP_BREAK_SYSTEM_PACKAGES=1 pyenv exec pipenv install --dev

- name: Build
run: pyenv exec pipenv run make
Expand All @@ -65,7 +65,7 @@ jobs:
uses: actions/checkout@v2

- name: Install Pipenv
run: pip3 install pipenv
run: PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install pipenv
- name: Cache Pip dependencies
id: cache-pipenv
uses: actions/cache@v2
Expand All @@ -74,7 +74,7 @@ jobs:
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}-v3
- name: Install Pip dependencies
if: steps.cache-pipenv.outputs.cache-hit != 'true'
run: pipenv install --dev
run: PIP_BREAK_SYSTEM_PACKAGES=1 pipenv install --dev

- name: Build
run: pipenv run make
Expand All @@ -89,7 +89,7 @@ jobs:
uses: actions/checkout@v2

- name: Install Pipenv
run: pip3 install pipenv
run: PIP_BREAK_SYSTEM_PACKAGES=1 pip3 install pipenv
- name: Cache Pip dependencies
id: cache-pipenv
uses: actions/cache@v2
Expand All @@ -98,7 +98,7 @@ jobs:
key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}-v3
- name: Install Pip dependencies
if: steps.cache-pipenv.outputs.cache-hit != 'true'
run: pipenv install --dev
run: PIP_BREAK_SYSTEM_PACKAGES=1 pipenv install --dev

- name: Build
run: pipenv run make
Expand Down
Loading