Skip to content

Commit 02f1bb3

Browse files
committed
TST: use uv pip compile to keep lint deps in sync
1 parent 9fd2157 commit 02f1bb3

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

.github/workflows/lint_python.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ jobs:
88
- uses: actions/setup-python@v5
99
with:
1010
python-version: 3.x
11-
- run: pip install -r requirements/dependencies.txt || true
11+
- run: |
12+
pipx run uv pip compile pyproject.toml > deps.txt
13+
pip install -r deps.txt
1214
- run: shopt -s globstar
1315
# - run: pip install safety && safety check

pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ keywords = ["cmasher perceptually uniform sequential colormaps plotting python v
3131

3232
requires-python = ">=3.9, <4"
3333

34-
# keep in sync with requirements/dependencies.txt
3534
dependencies = [
3635
"colorspacious>=1.1.0",
3736
"matplotlib>=3.5",

requirements/dependencies.txt

-4
This file was deleted.

0 commit comments

Comments
 (0)