Skip to content

Commit

Permalink
uplift: NebulaGraph 3.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wey-gu committed May 23, 2024
1 parent 569f5b9 commit 6104f6a
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors = [
dependencies = [
"udocker==1.3.13",
"psutil>=5.9.6",
"nebula3-python>=3.5.0",
"nebula3-python>=3.8.0",
]
requires-python = ">=3.8"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion src/nebulagraph_lite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ["nebulagraph_let"]

__version__ = "0.2.2"
__version__ = "0.2.3"
8 changes: 4 additions & 4 deletions src/nebulagraph_lite/nebulagraph.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

# ModelScope Model ID
MODELSCOPE_MODEL_ID = "sdfsdfoph1ofdsaofdf/nebulagraph-lite"
MODELSCOPE_MODEL_FILE_PATH = "releases/3.6.0/nebulagraph_lite.tar.gz"
MODELSCOPE_MODEL_FILE_PATH = "releases/3.8.0/nebulagraph_lite.tar.gz"
MODELSCOPE_MODEL_VERSION = "master"

# udocker tarball
Expand Down Expand Up @@ -164,9 +164,9 @@ def _try_download_modelscope(self):
)

# export UDOCKER_TARBALL={self.base_path}
os.environ["UDOCKER_TARBALL"] = (
f"{self.base_path}/{UDOCKER_TARBALL_FILENAME}"
)
os.environ[
"UDOCKER_TARBALL"
] = f"{self.base_path}/{UDOCKER_TARBALL_FILENAME}"
return model_file
except Exception as e:
fancy_dict_print(
Expand Down
4 changes: 2 additions & 2 deletions tools/host_artifacts_on_modelscope.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

```bash
git clone https://sdfsdfoph1ofdsaofdf@www.modelscope.cn/sdfsdfoph1ofdsaofdf/nebulagraph-lite.git
cd nebulagraph-lite/releases/3.6.0
cd nebulagraph-lite/releases/3.8.0
docker save -o nebulagraph_lite_meta.tar vesoft/nebula-metad:v3
docker save -o nebulagraph_lite_storage.tar vesoft/nebula-storaged:v3
docker save -o nebulagraph_lite_graph.tar vesoft/nebula-graphd:v3
Expand Down Expand Up @@ -34,7 +34,7 @@ sudo apt-get install git-lfs -y
git lfs install
git lfs track "*.tar.gz"

git add releases/3.6.0/*.tar.gz
git add releases/3.8.0/*.tar.gz
git add releases/3.6.0/*.ngql

git commit -m "add artifacts"
Expand Down

0 comments on commit 6104f6a

Please sign in to comment.