File tree Expand file tree Collapse file tree 3 files changed +4
-12
lines changed Expand file tree Collapse file tree 3 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,14 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
steps :
12
12
- name : Release
13
- uses : patrick-kidger/action_update_python_project@v6
13
+ uses : patrick-kidger/action_update_python_project@v7
14
14
with :
15
15
python-version : " 3.11"
16
16
test-script : |
17
17
cp -r ${{ github.workspace }}/tests ./tests
18
18
cp ${{ github.workspace }}/pyproject.toml ./pyproject.toml
19
- python -m pip install -r ./tests/requirements.txt
20
- pytest
19
+ uv sync --extra dev --no- install-project --inexact
20
+ uv run --no-sync pytest
21
21
pypi-token : ${{ secrets.pypi_token }}
22
22
github-user : patrick-kidger
23
23
github-token : ${{ github.token }}
Original file line number Diff line number Diff line change 37
37
- name : Install dependencies
38
38
run : |
39
39
python -m pip install --upgrade pip
40
- python -m pip install -r ./tests/requirements.txt
40
+ python -m pip install '.[dev]' 'jax[cpu]'
41
41
42
42
- name : Checks with pre-commit
43
43
uses :
pre-commit/[email protected]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments