We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75443ab commit b1bbac0Copy full SHA for b1bbac0
.github/workflows/pypi_release.yml
@@ -13,16 +13,14 @@ jobs:
13
runs-on: ubuntu-latest
14
15
steps:
16
-
17
- # Need the tags so that setuptools-scm can form a valid version number
18
- - name: Fetch git tags
19
- run: git fetch origin 'refs/tags/*:refs/tags/*'
20
21
- - uses: actions/checkout@v2
22
- - name: Set up Python
23
- uses: actions/setup-python@v2
24
- with:
25
- python-version: '3.x'
+ - uses: actions/checkout@v2
+ # Need the tags so that setuptools-scm can form a valid version number
+ - name: Fetch git tags
+ run: git fetch origin 'refs/tags/*:refs/tags/*'
+ - name: Set up Python
+ uses: actions/setup-python@v2
+ with:
+ python-version: '3.x'
26
- name: Install dependencies
27
run: |
28
python -m pip install --upgrade pip
0 commit comments