Skip to content

Commit e0b31e4

Browse files
committed
Fix version reading in setup.py
Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
1 parent e2b6970 commit e0b31e4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ def read(*args):
1313
PKGDIR = 'jacklib'
1414
version = {}
1515
exec(read(PKGDIR, 'version.py'), {}, version)
16-
setup(packages=[PKGDIR], **version)
16+
setup(version=version["__version__"], packages=[PKGDIR])

0 commit comments

Comments
 (0)