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
14cafe73
Unverified
Commit
14cafe73
authored
Oct 01, 2022
by
Quan (Andy) Gan
Committed by
GitHub
Oct 01, 2022
Browse files
bump version (#4667)
* bump version * Update setup.py * Update setup.py
parent
5bf17547
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
6 additions
and
4 deletions
+6
-4
conda/dgl/meta.yaml
conda/dgl/meta.yaml
+1
-1
include/dgl/runtime/c_runtime_api.h
include/dgl/runtime/c_runtime_api.h
+1
-1
python/dgl/_ffi/libinfo.py
python/dgl/_ffi/libinfo.py
+1
-1
python/setup.py
python/setup.py
+2
-0
python/update_version.py
python/update_version.py
+1
-1
No files found.
conda/dgl/meta.yaml
View file @
14cafe73
package
:
package
:
name
:
dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }}
name
:
dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }}
version
:
"
0.
9
"
version
:
"
0.
10
"
source
:
source
:
git_rev
:
0.8.x
git_rev
:
0.8.x
...
...
include/dgl/runtime/c_runtime_api.h
View file @
14cafe73
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
#endif
#endif
// DGL version
// DGL version
#define DGL_VERSION "0.
9
"
#define DGL_VERSION "0.
10
"
#ifdef __cplusplus
#ifdef __cplusplus
extern
"C"
{
extern
"C"
{
...
...
python/dgl/_ffi/libinfo.py
View file @
14cafe73
...
@@ -90,4 +90,4 @@ def find_lib_path(name=None, search_path=None, optional=False):
...
@@ -90,4 +90,4 @@ def find_lib_path(name=None, search_path=None, optional=False):
# 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.
# The following line is set by dgl/python/update_version.py
# The following line is set by dgl/python/update_version.py
__version__
=
"0.
9
"
__version__
=
"0.
10
"
python/setup.py
View file @
14cafe73
...
@@ -123,6 +123,8 @@ def config_cython():
...
@@ -123,6 +123,8 @@ def config_cython():
],
],
library_dirs
=
library_dirs
,
library_dirs
=
library_dirs
,
libraries
=
libraries
,
libraries
=
libraries
,
# Crashes without this flag with GCC 5.3.1
extra_compile_args
=
[
"-std=c++11"
],
language
=
"c++"
))
language
=
"c++"
))
return
cythonize
(
ret
,
force
=
True
)
return
cythonize
(
ret
,
force
=
True
)
except
ImportError
:
except
ImportError
:
...
...
python/update_version.py
View file @
14cafe73
...
@@ -11,7 +11,7 @@ import re
...
@@ -11,7 +11,7 @@ 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.
9
"
+
os
.
getenv
(
'DGL_PRERELEASE'
,
''
)
__version__
=
"0.
10
"
+
os
.
getenv
(
'DGL_PRERELEASE'
,
''
)
print
(
__version__
)
print
(
__version__
)
# Implementations
# Implementations
...
...
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