File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -19,23 +19,24 @@ jobs:
1919 id : version
2020 run : echo "value=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
2121
22- - name : Setup Python 3.10
22+ - name : Setup Python 3.11
2323 uses : actions/setup-python@v5
2424 with :
25- python-version : " 3.13 "
25+ python-version : ' 3.11 '
2626
2727 - uses : actions/cache@v4
2828 name : Cache pip dependencies
2929 with :
3030 path : ~/.cache/pip
31- key : ${{ runner.os }}-pip-${{ hashFiles('requirements*.txt ') }}
31+ key : ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml ') }}
3232 restore-keys : |
3333 ${{ runner.os }}-pip-
3434
3535 - name : Install dependencies
3636 run : |
3737 python -m pip install --upgrade pip
38- python -m pip install ".[dev,test]"
38+ python -m pip install build
39+ python -m pip install ".[dev]"
3940
4041 - name : Install
4142 run : make install
You can’t perform that action at this time.
0 commit comments