kou commented on PR #12763: URL: https://github.com/apache/arrow/pull/12763#issuecomment-1128281504
I added a workaround for https://github.com/grpc/grpc/issues/28387 (use .tar.gz not .wheel). There is only one failure: https://github.com/ursacomputing/crossbow/runs/6462425244?check_suite_focus=true#step:10:386 ```text _______________________________ test_gcs_options _______________________________ @pytest.mark.gcs def test_gcs_options(): from pyarrow.fs import GcsFileSystem dt = datetime.now() fs = GcsFileSystem(access_token='abc', target_service_account='service_account@apache', credential_token_expiration=dt, default_bucket_location='us-west2', scheme='https', endpoint_override='localhost:8999') assert isinstance(fs, GcsFileSystem) assert fs.default_bucket_location == 'us-west2' > assert pickle.loads(pickle.dumps(fs)) == fs E assert <pyarrow._gcsfs.GcsFileSystem object at 0x12c391770> == <pyarrow._gcsfs.GcsFileSystem object at 0x12a24e1b0> E + where <pyarrow._gcsfs.GcsFileSystem object at 0x12c391770> = <built-in function loads>(b"\x80\x04\x95t\x01\x00\x00\x00\x00\x00\x00\x8c\x08builtins\x94\x8c\x07getattr\x94\x93\x94\x8c\x0epyarrow._gcsfs\x94\x...fault_bucket_location\x94\x8c\x08us-west2\x94\x8c\x10default_metadata\x94N\x8c\x10retry_time_limit\x94Nu\x85\x94R\x94.") E + where <built-in function loads> = pickle.loads E + and b"\x80\x04\x95t\x01\x00\x00\x00\x00\x00\x00\x8c\x08builtins\x94\x8c\x07getattr\x94\x93\x94\x8c\x0epyarrow._gcsfs\x94\x...fault_bucket_location\x94\x8c\x08us-west2\x94\x8c\x10default_metadata\x94N\x8c\x10retry_time_limit\x94Nu\x85\x94R\x94." = <built-in function dumps>(<pyarrow._gcsfs.GcsFileSystem object at 0x12a24e1b0>) E + where <built-in function dumps> = pickle.dumps ``` Could someone take a look at this failure? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
