We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 585fc23 commit 0ce82e8Copy full SHA for 0ce82e8
1 file changed
.github/workflows/python-extension.yml
@@ -62,8 +62,13 @@ jobs:
62
- name: Install dependencies
63
run: |
64
cd python
65
- pipenv --python ${{ matrix.python }}
66
- pipenv install --dev
+ if [[ "$RUNNER_OS" == "Windows" ]]; then
+ PYTHON_EXE_PATH="$pythonLocation/python.exe"
67
+ else
68
+ PYTHON_EXE_PATH="$pythonLocation/python"
69
+ fi
70
+ echo "Using Python executable at: $PYTHON_EXE_PATH"
71
+ pipenv install --dev --python "$PYTHON_EXE_PATH"
72
- name: Build extension
73
74
0 commit comments