Skip to content

Commit c4bc964

Browse files
committed
move requirements files around
1 parent e99f5f3 commit c4bc964

File tree

5 files changed

+58
-70
lines changed

5 files changed

+58
-70
lines changed

ci/helpers/install_pylint.bash

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ PYLINT_VERSION="$(grep pylint== $REQUIREMENTS | awk '{print $1}')"
1616
uv pip install "$PYLINT_VERSION"
1717

1818
# Minimal packages to pass linter
19-
echo "$CURDIR/requirements.txt"
20-
uv pip install -r "$CURDIR/requirements.txt"
19+
echo "$CURDIR/requirements/requirements.txt"
20+
uv pip install -r "$CURDIR/requirements/requirements.txt"
2121

2222
echo "INFO:" "$(pylint --version)" "@" "$(command -v pylint)"

ci/helpers/requirements.txt

Lines changed: 0 additions & 67 deletions
This file was deleted.

ci/helpers/requirements/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#
2+
# Targets to pip-compile requirements
3+
#
4+
include ../../../requirements/base.Makefile
5+
6+
# Add here any extra explicit dependency: e.g. _migration.txt: _base.txt

ci/helpers/requirements.in renamed to ci/helpers/requirements/requirements.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#
33
# Installing these void e.g. E0611: No name 'UploadFile' in module 'fastapi' (no-name-in-module)
44
#
5-
--constraint ../../requirements/constraints.txt
5+
--constraint ../../../requirements/constraints.txt
66

77
aiohttp
88
fastapi
Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
aiohttp==3.9.5
2+
aiosignal==1.3.1
3+
# via aiohttp
4+
annotated-types==0.7.0
5+
# via pydantic
6+
anyio==4.3.0
7+
# via starlette
8+
attrs==23.2.0
9+
# via aiohttp
10+
certifi==2024.12.14
11+
# via requests
12+
charset-normalizer==3.4.1
13+
# via requests
14+
docker==7.1.0
15+
fastapi==0.115.0
16+
frozenlist==1.4.1
17+
# via
18+
# aiohttp
19+
# aiosignal
20+
idna==3.7
21+
# via
22+
# anyio
23+
# requests
24+
# yarl
25+
multidict==6.0.5
26+
# via
27+
# aiohttp
28+
# yarl
29+
pydantic==2.10.5
30+
# via fastapi
31+
pydantic-core==2.27.2
32+
# via pydantic
33+
requests==2.32.3
34+
# via docker
35+
sniffio==1.3.1
36+
# via anyio
37+
starlette==0.38.6
38+
# via fastapi
39+
typing-extensions==4.12.2
40+
# via
41+
# fastapi
42+
# pydantic
43+
# pydantic-core
44+
urllib3==2.3.0
45+
# via
46+
# docker
47+
# requests
48+
yarl==1.9.4
49+
# via aiohttp

0 commit comments

Comments
 (0)