Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
oberstet committed Mar 9, 2021
1 parent c4ed583 commit fee2b7c
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,19 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

# no, thanks, we don't need no fucking "new resolver"
- name: Install Python package dependencies
run: |
curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py
python get-pip.py "pip<20"
pip show pip
pip install -r requirements-dev.txt
- name: Set environment
run: |
echo AUTOBAHN_BUILD_DATE=`date -u +"%Y-%m-%d"` >> $GITHUB_ENV
Expand All @@ -48,11 +61,6 @@ jobs:
echo " AWS_S3_BUCKET_NAME = ${AWS_S3_BUCKET_NAME}"
echo ""
- name: Install Python package dependencies
run: |
python -m pip install -U "pip==19.3.1"
pip install -U -r requirements-dev.txt
- name: Install this package
run: |
pip install .[all]
Expand Down

0 comments on commit fee2b7c

Please sign in to comment.