xds-k8s: Fix ModuleNotFoundError: No module named 'packaging' (#28556)

`packaging` was explicitly used in xds_url_map_testcase.py,
but wasn't added to the requirements.txt.
It (unintentionally) worked before because `packaging` is
a transitive dependency of `google-api-python-client@1.12.8`
via `google-api-core@1.31.5`.

With `google-api-python-client` upgraded to `1.12.10`, it's not
the case anymore.
pull/28486/head
Sergii Tkachenko 3 years ago committed by GitHub
parent d4e09406c1
commit fd3dbcb371
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      tools/run_tests/xds_k8s_test_driver/requirements.txt

@ -14,6 +14,7 @@ kubernetes~=12.0
retrying~=1.3
six~=1.13
tenacity~=6.2
packaging~=21.3
Pygments~=2.9
protobuf~=3.14
xds-protos~=0.0.8

Loading…
Cancel
Save