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

fix workflow #78

Merged
merged 1 commit into from
Sep 13, 2023
Merged
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
29 changes: 8 additions & 21 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,12 @@ jobs:
matrix:
python-version: [2.7.17]
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64

- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade pip setuptools
pip install twine wheel coveralls
pip install -r requirements.txt
pip install -e .[${EXTRAS}]

pip2 install --user --upgrade pip setuptools
pip2 --no-cache-dir install --user setuptools wheel "urllib3==1.25.11"
pip2 --no-cache-dir install --user -r requirements.txt
pip2 --no-cache-dir install --user -e .[${EXTRAS}]

- name: Show python dependencies
run: |
Expand Down Expand Up @@ -117,17 +109,12 @@ jobs:
with:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 2.7.17

- name: Install python dependencies
run: |
pip install --upgrade pip setuptools
pip install twine wheel coveralls
pip install -r requirements.txt
pip install -e .[${EXTRAS}]
pip2 install --user --upgrade pip setuptools
pip2 --no-cache-dir install --user setuptools wheel "urllib3==1.25.11"
pip2 --no-cache-dir install --user -r requirements.txt
pip2 --no-cache-dir install --user -e .[${EXTRAS}]

- name: Show python dependencies
run: |
Expand Down