Skip to content

Commit b0c92ba

Browse files
Update project to use uv
1 parent 194620c commit b0c92ba

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/unittest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
8+
python-version: ['3.11', '3.12', '3.13', '3.14']
99

1010
timeout-minutes: 10
1111

@@ -19,10 +19,10 @@ jobs:
1919
python-version: ${{ matrix.python-version }}
2020

2121
- name: Install Requirements
22-
run: python -m pip install pytest coverage pytest-cov
22+
run: uv sync
2323

2424
- name: Install package
25-
run: python setup.py install
25+
run: uv run pip install -e .
2626

2727
- name: Execute Tests
28-
run: flake8 engineering_notation & pytest -v tests
28+
run: uv run ruff check engineering_notation & uv run python -m pytest

0 commit comments

Comments
 (0)