Skip to content

Commit af65c0d

Browse files
authored
chore(librarian): update configuration for google-cloud-firestore (#16024)
Generation for `google-cloud-firestore` failed in #16023 because of failed check that was added in #14441. The library had an incorrect distribution name in `setup.py`. The generation process for google-cloud-python packages with multiple API versions/sub-packages relies on the order of entries in the apis list. Since each API path generates a setup.py and the last one processed takes precedence, the previous ordering caused the package to be incorrectly named google-cloud-firestore-admin instead of the expected google-cloud-firestore. This PR moves google/firestore/v1 to the bottom of the apis list, resulting in the correct package name in the generated setup.py. See related issue googleapis/librarian#4205
1 parent 3ed2d68 commit af65c0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.librarian/state.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1770,12 +1770,12 @@ libraries:
17701770
version: 2.23.0
17711771
last_generated_commit: d420134ab324c0cbe0f4ae06ad9697dac77f26ad
17721772
apis:
1773-
- path: google/firestore/v1
1774-
service_config: firestore_v1.yaml
17751773
- path: google/firestore/admin/v1
17761774
service_config: firestore_v1.yaml
17771775
- path: google/firestore/bundle
17781776
service_config: ""
1777+
- path: google/firestore/v1
1778+
service_config: firestore_v1.yaml
17791779
source_roots:
17801780
- packages/google-cloud-firestore
17811781
preserve_regex:

0 commit comments

Comments
 (0)