Skip to content

Commit 3a09f80

Browse files
committed
feat(pypi): update torchlm to pypi v0.1.3 (#16)
1 parent f2d6b2d commit 3a09f80

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55

66

77
def get_long_description():
8-
description = (PATH_ROOT / "docs/README.md").read_text(encoding="utf-8")
8+
description = (PATH_ROOT / "README.md").read_text(encoding="utf-8")
99
# replace relative repository path to absolute link to the release
1010
static_url = f"https://github.com/DefTruth/torchlm/blob/main/"
1111
description = description.replace("docs/res/", f"{static_url}/docs/res/")
1212
return description
1313

1414
setuptools.setup(
1515
name="torchlm",
16-
version="0.1.2",
16+
version="0.1.3",
1717
author="DefTruth",
1818
author_email="qyjdef@163.com",
1919
description="A PyTorch landmarks-only library with 100+ data augmentations, "

torchlm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Versions
2-
__version__ = '0.1.2'
2+
__version__ = '0.1.3'
33
# Transforms Module: 100+ transforms available, can bind torchvision and
44
# albumentations into torchlm pipeline with autodtype wrapper.
55
from .transfroms import *

0 commit comments

Comments
 (0)