Skip to content
Closed

Xds test #37193

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions .github/workflows/update_python_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,14 +78,6 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_EVENT: ${{ github.event_name }}
run: |
# Take the current date, subtract from a release cut date in the past (Mar 6, 2024),
# then get the num days % 42 (our release cadence is 42 days).
# This will ensure it only runs the week after a release branch has been cut.
days_diff=$(( ($(date +%s) - $(date --date="240306" +%s) )/(60*60*24)%42 ))
if [[ $GH_EVENT != 'workflow_dispatch' && $days_diff -gt 6 ]]; then
echo "Exiting early. We only update dependencies the week after we cut the release"
exit 0
fi
branchName=weekly_update_python_dependencies_$(date +%s)
git checkout -b $branchName
git add -A
Expand Down
3 changes: 3 additions & 0 deletions sdks/python/container/license_scripts/dep_urls_py.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,6 @@ pip_dependencies:
license: "https://raw.githubusercontent.com/triton-lang/triton/refs/heads/main/LICENSE"
wget:
license: "https://raw.githubusercontent.com/mirror/wget/master/COPYING"
xds-protos:
license: "https://raw.githubusercontent.com/grpc/grpc/master/LICENSE"
notice: "https://raw.githubusercontent.com/grpc/grpc/master/NOTICE.txt"
1 change: 1 addition & 0 deletions sdks/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -404,6 +404,7 @@ def get_portability_package_data():
'requests>=2.32.4,<3.0.0',
'sortedcontainers>=2.4.0',
'typing-extensions>=3.7.0',
'xds-protos>=1.75.0; python_version >= "3.13"',
'zstandard>=0.18.0,<1',
'pyyaml>=3.12,<7.0.0',
'beartype>=0.21.0,<0.23.0',
Expand Down
Loading