Skip to content

Commit

Permalink
Add python source build
Browse files Browse the repository at this point in the history
  • Loading branch information
SonicField committed Oct 8, 2024
1 parent 1d73579 commit 6318145
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
# Upgrade pip to the latest version.
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
$LOCAL_PYTHON -m pip install --upgrade pip
# Make sure Visual Studio build is all in place on Windows.
- name: Setup MSVC
Expand All @@ -99,7 +99,7 @@ jobs:
# Install dependencies required for building and testing.
- name: Install dependencies
run: |
pip install --upgrade setuptools wheel
$LOCAL_PYTHON -m pip install --upgrade setuptools wheel
# Build the wheel package with or without nogil suffix.
- name: Build
Expand All @@ -114,7 +114,7 @@ jobs:
# Install the built wheel package so we can test it.
- name: Install wheel
run: |
pip install build/dist/*.whl
$LOCAL_PYTHON -m pip install build/dist/*.whl
shell: bash
working-directory: ${{github.workspace}}

Expand Down

0 comments on commit 6318145

Please sign in to comment.