Skip to content

Commit 15dc749

Browse files
committed
fix uv sync --upgrade
1 parent 21f0816 commit 15dc749

File tree

5 files changed

+952
-500
lines changed

5 files changed

+952
-500
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
enable-cache: true
1818

1919
- name: Install dependencies
20-
run: uv sync --group doc --all-extras
20+
run: uv sync --upgrade --group doc --all-extras
2121

2222
- name: Build docs
2323
run: |

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
enable-cache: true
1818

1919
- name: Install dependencies
20-
run: uv sync --group build --all-extras
20+
run: uv sync --upgrade --group build --all-extras
2121

2222
- name: Build and publish
2323
env:

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737

3838
- name: Install dependencies
3939
run: |
40-
uv sync --all-extras --all-groups
40+
uv sync --upgrade --all-extras --all-groups
4141
uv add "${{ matrix.flask-version }}"
4242
4343
- name: Test with pytest

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Before submitting pr, you need to complete the following steps:
1010
1. Install requirements
1111

1212
```bash
13-
uv sync --all-extras --all-groups
13+
uv sync --upgrade --all-extras --all-groups
1414
```
1515

1616
2. Running the tests

0 commit comments

Comments
 (0)