Skip to content

Commit

Permalink
Do not recalculate dependencies when exporting
Browse files Browse the repository at this point in the history
Saves a few milliseconds :D
  • Loading branch information
nsoranzo committed Nov 5, 2024
1 parent 1b4dd45 commit 1fadd2f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/galaxy/dependencies/dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file was autogenerated by uv via the following command:
# uv export --no-hashes --only-group=dev
# uv export --frozen --no-hashes --only-group=dev
aiohappyeyeballs==2.4.3
aiohttp==3.10.10
aiosignal==1.3.1
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/dependencies/pinned-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file was autogenerated by uv via the following command:
# uv export --no-hashes --no-dev
# uv export --frozen --no-hashes --no-dev
a2wsgi==1.10.7
adal==1.2.7
aiobotocore==2.15.2
Expand Down
2 changes: 1 addition & 1 deletion lib/galaxy/dependencies/pinned-typecheck-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This file was autogenerated by uv via the following command:
# uv export --no-hashes --only-group=typecheck
# uv export --frozen --no-hashes --only-group=typecheck
annotated-types==0.7.0
boto3-stubs==1.35.49
botocore-stubs==1.35.49
Expand Down
6 changes: 3 additions & 3 deletions lib/galaxy/dependencies/update.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,6 @@ else
fi

# Update pinned requirements files.
${uv} export --no-hashes --no-dev > "$this_directory/pinned-requirements.txt"
${uv} export --no-hashes --only-group=dev > "$this_directory/dev-requirements.txt"
${uv} export --no-hashes --only-group=typecheck > "$this_directory/pinned-typecheck-requirements.txt"
${uv} export --frozen --no-hashes --no-dev > "$this_directory/pinned-requirements.txt"
${uv} export --frozen --no-hashes --only-group=dev > "$this_directory/dev-requirements.txt"
${uv} export --frozen --no-hashes --only-group=typecheck > "$this_directory/pinned-typecheck-requirements.txt"

0 comments on commit 1fadd2f

Please sign in to comment.