Skip to content

Commit 5ce4031

Browse files
authored
requirements: Include main.in contents within dev.in (#221)
1 parent ea888ad commit 5ce4031

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
all:
44
@echo "Run my targets individually!"
55

6-
.venv/pyvenv.cfg: requirements/dev.txt requirements/main.txt
6+
.venv/pyvenv.cfg: requirements/dev.txt
77
uv venv
88
. ./.venv/bin/activate && \
9-
uv pip install -r requirements/main.txt -r requirements/dev.txt
9+
uv pip install -r requirements/dev.txt
1010

1111
.PHONY: dev
1212
dev: .venv/pyvenv.cfg

requirements/dev.in

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,7 @@ isort
33
black
44
mypy
55
types-requests
6+
7+
# copied from main.in
8+
sigstore ~= 3.6
9+
requests ~= 2.32

0 commit comments

Comments
 (0)