Skip to content

Commit

Permalink
Attempting fix for build fail on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
shz9 committed Apr 4, 2024
1 parent e306fc5 commit dc6a558
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,12 @@ jobs:
steps:
- uses: actions/checkout@v4

- uses: actions/setup-python@v5
name: Install Python
with:
python-version: '3.11'
architecture: 'x64'

- name: Build wheels
uses: pypa/[email protected]

Expand All @@ -40,13 +46,14 @@ jobs:
name: Install Python
with:
python-version: '3.11'
architecture: 'x64'

- name: Build sdist
run: pipx run build --sdist
run: python -m pipx run build --sdist

- name: test install
run: pip install dist/magenpy*.tar.gz
run: |
python -m pip install --upgrade pip
python -m pip install dist/magenpy*.tar.gz
- uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit dc6a558

Please sign in to comment.