Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
kmurphy4 committed Dec 24, 2024
1 parent c6ce2c6 commit 4217be9
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build_wheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,22 @@ jobs:
- name: Prepare build
run: |
./synclibs.sh --use-head && ./autogen.sh && ./configure && make sources >/dev/null
- name: Install Python
run: |
uv python install 3.12.6
- name: Create virtual environment
run: |
rm -rf venv
python3 -m venv venv
uv venv --python 3.12.6 venv
echo "$(pwd)/venv/bin" >> $GITHUB_PATH
- name: Check stuff?
run: |
python3 --version
python3 -c 'import sys; print(sys.executable)'
uv --version
- name: Install Python dependencies
run: |
python3 -m pip install \
uv pip install \
'build' \
'mypy' \
'setuptools>=65' \
Expand Down

0 comments on commit 4217be9

Please sign in to comment.