Unverified Commit bdcba9c8 authored by Quan (Andy) Gan's avatar Quan (Andy) Gan Committed by GitHub
Browse files

setup for prerelease builds (#763)

parent 2ee3c78c
......@@ -110,7 +110,7 @@ if include_libs:
}
setup(
name='dgl',
name='dgl' + os.getenv('DGL_PACKAGE_SUFFIX', ''),
version=VERSION,
description='Deep Graph Library',
zip_safe=False,
......
......@@ -11,7 +11,8 @@ import re
# current version
# We use the version of the incoming release for code
# that is under development
__version__ = "0.3"
__version__ = "0.3" + os.getenv('DGL_PRERELEASE', '')
print(__version__)
# Implementations
def update(file_name, pattern, repl):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment