Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = "mscclpp"
copyright = "2025, MSCCL++ Team"
author = "MSCCL++ Team"
release = "v0.8.0"
release = "v0.7.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
4 changes: 1 addition & 3 deletions python/mscclpp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,11 @@
import os
import warnings
from functools import wraps

from mscclpp._version import __version__, __commit_id__

if os.environ.get("MSCCLPP_HOME", None) is None:
os.environ["MSCCLPP_HOME"] = os.path.abspath(os.path.dirname(__file__))

from ._version import __version__, __commit_id__


# Parse the version
version = {
Expand Down
2 changes: 2 additions & 0 deletions test/deploy/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ else
fi

cd /root/mscclpp && pip3 install .
pip3 install setuptools_scm
python3 -m setuptools_scm --force-write-version-files

mkdir -p /var/run/sshd
/usr/sbin/sshd -p 22345
Loading