File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 13
13
# limitations under the License.
14
14
docker :
15
15
image : gcr.io/cloud-devrel-public-resources/owlbot-python:latest
16
- digest : sha256:240b5bcc2bafd450912d2da2be15e62bc6de2cf839823ae4bf94d4f392b451dc
17
- # created: 2023-06-03T21:25:37.968717478Z
16
+ digest : sha256:2d816f26f728ac8b24248741e7d4c461c09764ef9f7be3684d557c9632e46dbd
17
+ # created: 2023-06-28T17:03:33.371210701Z
Original file line number Diff line number Diff line change @@ -38,3 +38,12 @@ env_vars: {
38
38
key: " SECRET_MANAGER_KEYS"
39
39
value: " releasetool-publish-reporter-app,releasetool-publish-reporter-googleapis-installation,releasetool-publish-reporter-pem"
40
40
}
41
+
42
+ # Store the packages we uploaded to PyPI. That way, we have a record of exactly
43
+ # what we published, which we can use to generate SBOMs and attestations.
44
+ action {
45
+ define_artifacts {
46
+ regex: " github/python-db-dtypes-pandas/**/*.tar.gz"
47
+ strip_prefix: " github/python-db-dtypes-pandas"
48
+ }
49
+ }
Original file line number Diff line number Diff line change @@ -401,10 +401,9 @@ def docfx(session):
401
401
402
402
session .install ("-e" , "." )
403
403
session .install (
404
- "sphinx==4.0.1 " ,
404
+ "gcp- sphinx-docfx-yaml " ,
405
405
"alabaster" ,
406
406
"recommonmark" ,
407
- "gcp-sphinx-docfx-yaml" ,
408
407
)
409
408
410
409
shutil .rmtree (os .path .join ("docs" , "_build" ), ignore_errors = True )
@@ -476,6 +475,7 @@ def prerelease_deps(session):
476
475
"grpcio!=1.52.0rc1" ,
477
476
"grpcio-status" ,
478
477
"google-api-core" ,
478
+ "google-auth" ,
479
479
"proto-plus" ,
480
480
"google-cloud-testutils" ,
481
481
# dependencies of google-cloud-testutils"
@@ -488,7 +488,6 @@ def prerelease_deps(session):
488
488
# Remaining dependencies
489
489
other_deps = [
490
490
"requests" ,
491
- "google-auth" ,
492
491
]
493
492
session .install (* other_deps )
494
493
You can’t perform that action at this time.
0 commit comments