Skip to content

Commit

Permalink
py312
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewtrotter committed Apr 28, 2024
1 parent 3b43212 commit 002fd76
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/python-lib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build pytest wheel distutils
pip install build pytest wheel
if [ "${{ matrix.python-version }}" = "3.12" ]; then pip install distutils; fi
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test with pytest
run: pytest test.py
Expand Down

0 comments on commit 002fd76

Please sign in to comment.