Skip to content

Commit afff616

Browse files
committed
single source version, keep version at 1.0.3 (we dont want to publish this ver bump, we want it be merged with the v2 scope PR)
1 parent 5e4d969 commit afff616

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

cms_bluebutton/version.py

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors = [
1010
description = "An SDK used for interacting with the CMS Blue Button 2.0 API"
1111
requires-python = ">=3.9"
1212
readme = "README.md"
13-
version = "1.0.4"
13+
dynamic = ["version"]
1414
license = "CC0-1.0"
1515
classifiers=[
1616
"Programming Language :: Python :: 3",

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
import setuptools
22

3+
version = {}
4+
with open("./cms_bluebutton/version.py") as fp:
5+
exec(fp.read(), version)
36

4-
setuptools.setup()
7+
setuptools.setup(version=version['__version__'])

0 commit comments

Comments
 (0)