Skip to content

Commit e601172

Browse files
authored
chore: fix release action (#1733)
1 parent 8fcc417 commit e601172

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)