File tree Expand file tree Collapse file tree 3 files changed +11
-13
lines changed
Expand file tree Collapse file tree 3 files changed +11
-13
lines changed Original file line number Diff line number Diff line change 1616 python-version : ['3.7.9']
1717
1818 steps :
19- - name : Clone ${{github.repository}}
20- # actions/checkout breaks `git describe` so a manual clone is needed.
21- # https://github.com/actions/checkout/issues/272
22- run : |
23- git clone https://github.com/${{github.repository}}.git ${{github.workspace}}
24- git checkout ${{github.sha}}
19+ # v2 breaks `git describe` so v1 is needed.
20+ # https://github.com/actions/checkout/issues/272
21+ - uses : actions/checkout@v1
2522 - name : Checkout submodules
2623 run : |
2724 git submodule update --init --recursive --depth 1
4441 - name : Install Python dependencies
4542 run : |
4643 python -m pip install --upgrade pip
47- python -m pip install pytest pytest-cov pytest-benchmark wheel twine
48- python -m pip install git+https://github.com/HexDecimal/delocate.git@loader_path
44+ pip install pytest pytest-cov pytest-benchmark wheel twine
45+ pip install git+https://github.com/HexDecimal/delocate.git@loader_path
4946 if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
5047 - name : Build package.
5148 run : |
Original file line number Diff line number Diff line change 2323 fail-fast : false
2424
2525 steps :
26- - name : Checkout code
27- # v2 breaks `git describe` so v1 is needed.
28- # https://github.com/actions/checkout/issues/272
29- uses : actions/checkout@v1
26+ # v2 breaks `git describe` so v1 is needed.
27+ # https://github.com/actions/checkout/issues/272
28+ - uses : actions/checkout@v1
3029 - name : Checkout submodules
3130 run : |
3231 git submodule update --init --recursive --depth 1
4241 - name : Install Python dependencies
4342 run : |
4443 python -m pip install --upgrade pip
45- python -m pip install pytest pytest-cov pytest-benchmark wheel
44+ pip install pytest pytest-cov pytest-benchmark wheel twine
4645 if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
4746 - name : Initialize package
4847 run : |
Original file line number Diff line number Diff line change 88
99Unreleased
1010------------------
11+ Fixed
12+ - Fix Windows deployment.
1113
121412.3.0 - 2021-05-13
1315-------------------
You can’t perform that action at this time.
0 commit comments