-
Notifications
You must be signed in to change notification settings - Fork 129
Open
Labels
Description
- etcd-cpp-apiv3: 'uint64_t' does not name a type
This issue has been fixed in the upstream: Fix uint64_t type error with gcc 13.3. etcd-cpp-apiv3/etcd-cpp-apiv3#299. Seems to be a problem caused by the changes in gcc 13 libraries. Related issue: Compile error: error: ‘uint64_t’ was not declared in this scope hobuinc/untwine#141 - libgrape-lite: oid -Werror=maybe-uninitialized in gnn_sampler/sampler_context.h
https://github.com/alibaba/libgrape-lite/blob/35d0893abccf93d4c1d92ba0892dba9423829bfe/grape/fragment/fragment_base.h#L178-L182
OID_T Gid2Oid(VID_T gid) const {
OID_T oid{}; // <- initialize here
vm_ptr_->GetOid(gid, oid);
return oid;
}- v6d/python: AttributeError: module 'configparser' has no attribute 'SafeConfigParser'. Did you mean: 'RawConfigParser'?
This error roots in a deprecated transitive dependency versioneer, caused by the removal ofSafeConfigParserin python3.12. The dependency was introduced by hdfs, a build dependency that was deprecated years ago. Removing hdfs3 resolves the issue. (should not cause problems as hdfs3 is not used anywhere in the code)
Lines 102 to 108 in f57ca13
'wheel', ], install_requires=[ 'fsspec>=2022.10.0', 'hdfs3', 'oss2', 'pyarrow',