Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dgl
Commits
bdcba9c8
Unverified
Commit
bdcba9c8
authored
Aug 14, 2019
by
Quan (Andy) Gan
Committed by
GitHub
Aug 14, 2019
Browse files
setup for prerelease builds (#763)
parent
2ee3c78c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
python/setup.py
python/setup.py
+1
-1
python/update_version.py
python/update_version.py
+2
-1
No files found.
python/setup.py
View file @
bdcba9c8
...
...
@@ -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
,
...
...
python/update_version.py
View file @
bdcba9c8
...
...
@@ -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
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment