Skip to content

Commit 35b1325

Browse files
committed
Released version 0.5.30
This version adds pinned dependencies to the setup file. Suggested in #151. Thanks!
1 parent b5870d7 commit 35b1325

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.29
1+
0.5.30

openleadr/fingerprint.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,6 @@ def show_fingerprint():
1212
cert_str = file.read()
1313
print(certificate_fingerprint(cert_str))
1414

15+
1516
if __name__ == "__main__":
16-
show_fingerprint()
17+
show_fingerprint()

setup.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,8 @@
1919
with open('README.md', 'r', encoding='utf-8') as file:
2020
long_description = file.read()
2121

22-
with open('VERSION', 'r', encoding='utf-8') as file:
23-
version = file.read().strip()
24-
2522
setup(name='openleadr',
26-
version='0.5.29',
23+
version='0.5.30',
2724
description='Python3 library for building OpenADR Clients (VENs) and Servers (VTNs)',
2825
long_description=long_description,
2926
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)