-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
deps: fix dependency specification problem
The way dependencies were set up previously, we'd eventually run into conflicts since `uv pip compile` would run independently for each `.in` file. This is now fixed since we're using `-r *.in` in the `.in` files.
- Loading branch information
1 parent
750b7ad
commit eff83b2
Showing
7 changed files
with
112 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
kind: Dependencies | ||
body: Fix the way we specify dependencies to avoid conflicts. | ||
time: 2024-06-24T15:17:29.393201+02:00 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
-r async.in | ||
-r sync.in | ||
|
||
ruff | ||
basedpyright | ||
uv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,57 @@ | ||
# This file was autogenerated by uv via the following command: | ||
# uv pip compile deps/dev.in -o deps/dev.txt | ||
aiohttp==3.9.5 | ||
# via gql | ||
aiosignal==1.3.1 | ||
# via aiohttp | ||
anyio==4.4.0 | ||
# via gql | ||
attrs==23.2.0 | ||
# via aiohttp | ||
backoff==2.2.1 | ||
# via gql | ||
basedpyright==1.12.6 | ||
# via -r deps/dev.in | ||
certifi==2024.6.2 | ||
# via requests | ||
charset-normalizer==3.3.2 | ||
# via requests | ||
frozenlist==1.4.1 | ||
# via | ||
# aiohttp | ||
# aiosignal | ||
gql==3.5.0 | ||
# via | ||
# -r deps/async.in | ||
# -r deps/sync.in | ||
graphql-core==3.2.3 | ||
# via gql | ||
idna==3.7 | ||
# via | ||
# anyio | ||
# requests | ||
# yarl | ||
multidict==6.0.5 | ||
# via | ||
# aiohttp | ||
# yarl | ||
nodejs-wheel-binaries==20.14.0 | ||
# via basedpyright | ||
requests==2.32.3 | ||
# via | ||
# gql | ||
# requests-toolbelt | ||
requests-toolbelt==1.0.0 | ||
# via gql | ||
ruff==0.4.8 | ||
# via -r deps/dev.in | ||
sniffio==1.3.1 | ||
# via anyio | ||
urllib3==2.2.2 | ||
# via requests | ||
uv==0.2.13 | ||
# via -r deps/dev.in | ||
yarl==1.9.4 | ||
# via | ||
# aiohttp | ||
# gql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
-r async.in | ||
-r sync.in | ||
|
||
pytest>=8.2.0,<9.0.0 | ||
pytest-asyncio>=0.23.7,<0.24.0 | ||
pytest-subtests>=0.12.1,<0.13.0 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters