Skip to content

Commit

Permalink
refactor(setup-python): update default Python version to 3.8 and enha…
Browse files Browse the repository at this point in the history
…nce build process
  • Loading branch information
HsiangNianian committed Dec 8, 2024
1 parent 1424f81 commit b677781
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/actions/setup-python/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Setup Python
inputs:
python-version:
description: Python version
default: '3.10'
default: '3.8'

runs:
using: composite
Expand All @@ -21,5 +21,7 @@ runs:
python-version: ${{ inputs.python-version }}

- name: Install the project
run: uv sync --all-extras --dev
run: |
uv sync --all-extras --dev --all-groups
uv build
shell: bash

0 comments on commit b677781

Please sign in to comment.