Skip to content

Commit

Permalink
Fix tox -e build by pinning Python version (#51)
Browse files Browse the repository at this point in the history
`python -m build` was giving issues with Python 3.12.1, so pinned to version 3.9
  • Loading branch information
yunzheng committed Jan 8, 2024
1 parent aa15ef7 commit 65716f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/package.yml
Expand Up @@ -16,9 +16,9 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down

0 comments on commit 65716f6

Please sign in to comment.