We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dace062 commit c5dc98eCopy full SHA for c5dc98e
.github/workflows/build_wheel.yml
@@ -6,14 +6,13 @@ jobs:
6
build:
7
runs-on: ubuntu-latest
8
env:
9
- VERSION: "0.10.0"
10
PYTHON_VERSION: "3.7"
11
steps:
12
- uses: actions/checkout@v2
13
- - name: Set up Python ${{ PYTHON_VERSION }}
+ - name: Set up Python ${{ env.PYTHON_VERSION }}
14
uses: actions/setup-python@v2
15
with:
16
- python-version: ${{ PYTHON_VERSION }}
+ python-version: ${{ env.PYTHON_VERSION }}
17
- name: Install dependencies
18
run: |
19
python -m pip install --upgrade pip
0 commit comments