Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

1 change: 1 addition & 0 deletions docs/source/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Follow commands below to install unified-cache-management:
# Replace <branch_or_tag_name> with the branch or tag name needed
git clone --depth 1 --branch <branch_or_tag_name> https://github.com/ModelEngine-Group/unified-cache-management.git
cd unified-cache-management
export PLATFORM=cuda
pip install -v -e .
cd ..
```
Expand Down
1 change: 1 addition & 0 deletions docs/source/getting-started/installation_npu.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ Follow commands below to install unified-cache-management:
# Replace <branch_or_tag_name> with the branch or tag name needed
git clone --depth 1 --branch <branch_or_tag_name> https://github.com/ModelEngine-Group/unified-cache-management.git
cd unified-cache-management
export PLATFORM=ascend
pip install -v -e .
cd ..
```
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,9 @@ def run(self):
}

print("FOUND PACKAGES:", find_packages())
__version__ = Path(__file__).with_name('VERSION').read_text().strip()
print("Current version:", __version__)
setup(
name="unifiedcache",
version=__version__,
version='0.0.1',
author="Unified Cache Team",
description="Unified Cache Management",
packages=find_packages(),
Expand Down