Skip to content

Commit ede44ce

Browse files
committed
update install
1 parent afcff0d commit ede44ce

File tree

2 files changed

+6
-9
lines changed

2 files changed

+6
-9
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ jobs:
2424
python-version: ${{ matrix.python-version }}
2525
- name: Install dependencies
2626
run: |
27-
python -m pip install --upgrade pip
28-
pip install pytest
29-
- name: Test with pytest
30-
run: |
31-
pytest
27+
python -m pip install --upgrade uv
28+
make install
29+
pytest

Makefile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ test:
77
check: black test
88

99
install:
10-
python -m pip install -e ".[test]"
10+
uv pip install -e ".[test]"
1111

1212
pypi:
13-
python setup.py sdist
14-
python setup.py bdist_wheel --universal
15-
twine upload dist/*
13+
uv build
14+
uv publish

0 commit comments

Comments
 (0)