"...text-generation-inference.git" did not exist on "c4fb09f2aef0730d88ce7e4ce54eacd7839b48cc"
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: ...@@ -110,7 +110,7 @@ if include_libs:
} }
setup( setup(
name='dgl', name='dgl' + os.getenv('DGL_PACKAGE_SUFFIX', ''),
version=VERSION, version=VERSION,
description='Deep Graph Library', description='Deep Graph Library',
zip_safe=False, zip_safe=False,
......
...@@ -11,7 +11,8 @@ import re ...@@ -11,7 +11,8 @@ import re
# current version # current version
# We use the version of the incoming release for code # We use the version of the incoming release for code
# that is under development # that is under development
__version__ = "0.3" __version__ = "0.3" + os.getenv('DGL_PRERELEASE', '')
print(__version__)
# Implementations # Implementations
def update(file_name, pattern, repl): 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