Skip to content

Commit c5dc98e

Browse files
committed
fixed workflow env
1 parent dace062 commit c5dc98e

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/build_wheel.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@ jobs:
66
build:
77
runs-on: ubuntu-latest
88
env:
9-
VERSION: "0.10.0"
109
PYTHON_VERSION: "3.7"
1110
steps:
1211
- uses: actions/checkout@v2
13-
- name: Set up Python ${{ PYTHON_VERSION }}
12+
- name: Set up Python ${{ env.PYTHON_VERSION }}
1413
uses: actions/setup-python@v2
1514
with:
16-
python-version: ${{ PYTHON_VERSION }}
15+
python-version: ${{ env.PYTHON_VERSION }}
1716
- name: Install dependencies
1817
run: |
1918
python -m pip install --upgrade pip

0 commit comments

Comments
 (0)