Skip to content

Commit c6c874b

Browse files
committed
[2.4.0] Release branch cut. (#7738)
1 parent 647d8ea commit c6c874b

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

conda/dgl/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: dgl{{ environ.get('DGL_PACKAGE_SUFFIX', '') }}
3-
version: 2.4{{ environ.get('DGL_VERSION_SUFFIX', '') }}
3+
version: 2.4.0{{ environ.get('DGL_VERSION_SUFFIX', '') }}
44

55
source:
66
git_rev: {{ environ.get('DGL_RELEASE_BRANCH', 'master') }}

include/dgl/runtime/c_runtime_api.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
#endif
3434

3535
// DGL version
36-
#define DGL_VERSION "2.4"
36+
#define DGL_VERSION "2.4.0"
3737

3838
#ifdef __cplusplus
3939
extern "C" {

python/dgl/_ffi/libinfo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ def find_lib_path(name=None, search_path=None, optional=False):
105105
# We use the version of the incoming release for code
106106
# that is under development.
107107
# The following line is set by dgl/python/update_version.py
108-
__version__ = "2.4"
108+
__version__ = "2.4.0"

python/setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,7 @@ def get_lib_file_path(lib_name, backend=""):
230230
"requests>=2.19.0",
231231
"scipy>=1.1.0",
232232
"tqdm",
233+
"torch<=2.4.0",
233234
]
234235

235236
setup(

python/update_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# (usually "aYYMMDD")
1717
# The environment variable DGL_VERSION_SUFFIX is the local version label
1818
# suffix for indicating CPU and CUDA versions as in PEP 440 (e.g. "+cu102")
19-
__version__ = "2.4" + os.getenv("DGL_PRERELEASE", "")
19+
__version__ = "2.4.0" + os.getenv("DGL_PRERELEASE", "")
2020
__version__ += os.getenv("DGL_VERSION_SUFFIX", "")
2121
print(__version__)
2222

0 commit comments

Comments
 (0)