We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent afcff0d commit ede44ceCopy full SHA for ede44ce
.github/workflows/tests.yml
@@ -24,8 +24,6 @@ jobs:
24
python-version: ${{ matrix.python-version }}
25
- name: Install dependencies
26
run: |
27
- python -m pip install --upgrade pip
28
- pip install pytest
29
- - name: Test with pytest
30
- run: |
31
- pytest
+ python -m pip install --upgrade uv
+ make install
+ pytest
Makefile
@@ -7,9 +7,8 @@ test:
7
check: black test
8
9
install:
10
- python -m pip install -e ".[test]"
+ uv pip install -e ".[test]"
11
12
pypi:
13
- python setup.py sdist
14
- python setup.py bdist_wheel --universal
15
- twine upload dist/*
+ uv build
+ uv publish
0 commit comments