Skip to content

Commit

Permalink
chore: add more-itertools as a dependency
Browse files Browse the repository at this point in the history
Signed-off-by: Jack Cherng <[email protected]>
  • Loading branch information
jfcherng committed May 12, 2024
1 parent 55fa51e commit f2bf733
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ UV_INSTALL_FLAGS :=
all:

.PHONY: install
install: install-dev install-docs
install:
uv pip install $(UV_INSTALL_FLAGS) -r requirements.txt

.PHONY: install-dev
install-dev:
Expand All @@ -16,6 +17,7 @@ install-docs:

.PHONY: pip-compile
pip-compile:
uv pip compile --upgrade requirements.in -o requirements.txt
uv pip compile --upgrade requirements-dev.in -o requirements-dev.txt
uv pip compile --upgrade requirements-docs.in -o requirements-docs.txt

Expand Down
7 changes: 7 additions & 0 deletions dependencies.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"*": {
"*": [
"more-itertools"
]
}
}
2 changes: 2 additions & 0 deletions requirements-dev.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
-r requirements.in

mypy
ruff>=0.4
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# This file was autogenerated by uv via the following command:
# uv pip compile requirements-dev.in -o requirements-dev.txt
more-itertools==10.2.0
mypy==1.10.0
mypy-extensions==1.0.0
# via mypy
Expand Down
1 change: 1 addition & 0 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
more-itertools>=10,<11
3 changes: 3 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# This file was autogenerated by uv via the following command:
# uv pip compile requirements.in -o requirements.txt
more-itertools==10.2.0

0 comments on commit f2bf733

Please sign in to comment.