DGL Nightly Build question

Hello! According to this I see that DGL has a “nightly build” system: Deep Graph Library

pip install --pre dgl -f https://data.dgl.ai/wheels-test/repo.html

A few questions:
(1) How often is this “nightly build” updated? Is it indeed daily AND always checks out the latest origin/master?

(2) Given a nightly build, is it possible for me to retrieve the git commit hash that generated the build?
Sadly, the dgl.__version__ doesn’t seem helpful:

>>> import dgl
>>> dgl.__version__
'0.8a210818'

I believe this means that this was built on 2021-08-18, but I don’t know what the git commit is.

Thanks!

(1) Yes. More precisely it checks out whatever head on the master branch at 08:00AM GMT.

(2) Although not visible on the GitHub repository, the nightly builds automatically appends commit hash in dgl._ffi.libinfo.__commit__.

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.