Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.

Commit a0d4ede

Browse files
committed
Use version specified in codecov_cli/__init__.py
Signed-off-by: joseph-sentry <[email protected]>
1 parent 157996f commit a0d4ede

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

codecov_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.0"
1+
__version__ = "0.1.16"

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,12 @@
88
with open(path.join(here, "README.md"), encoding="utf-8") as f:
99
long_description = f.read()
1010

11+
with open(path.join(here, "codecov_cli/__init__.py"), encoding="utf-8") as f:
12+
version = f.read().split('"')[1]
13+
1114
setup(
1215
name="codecov-cli",
13-
version="0.1.16",
16+
version=version,
1417
packages=find_packages(exclude=["contrib", "docs", "tests*"]),
1518
description="Codecov Command Line Interface",
1619
long_description=long_description,

0 commit comments

Comments
 (0)