Skip to content

Commit 9ef1996

Browse files
committed
Revert "Revert "Merge branch 'release/1.18.8'""
This reverts commit 1afdeac.
1 parent 1afdeac commit 9ef1996

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

setup.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,17 @@
1919
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
2020
long_description = f.read()
2121

22+
# Get the version from the VERSION file
23+
with open(path.join(here, 'VERSION'), encoding='utf-8') as f:
24+
version = f.read()
25+
2226
setup(
2327
name='bunq_sdk',
2428

2529
# Versions should comply with PEP440. For a discussion on single-sourcing
2630
# the version across setup.py and the project code, see
2731
# https://packaging.python.org/en/latest/single_source_version.html
28-
version='1.14.18',
32+
version=version,
2933

3034
description='bunq Python SDK',
3135
long_description=long_description,

0 commit comments

Comments
 (0)