Skip to content

Commit

Permalink
Released version 0.5.30
Browse files Browse the repository at this point in the history
This version adds pinned dependencies to the setup file.

Suggested in #151. Thanks!
  • Loading branch information
stan-janssen committed Feb 9, 2023
1 parent b5870d7 commit 35b1325
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.29
0.5.30
3 changes: 2 additions & 1 deletion openleadr/fingerprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,6 @@ def show_fingerprint():
cert_str = file.read()
print(certificate_fingerprint(cert_str))


if __name__ == "__main__":
show_fingerprint()
show_fingerprint()
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,8 @@
with open('README.md', 'r', encoding='utf-8') as file:
long_description = file.read()

with open('VERSION', 'r', encoding='utf-8') as file:
version = file.read().strip()

setup(name='openleadr',
version='0.5.29',
version='0.5.30',
description='Python3 library for building OpenADR Clients (VENs) and Servers (VTNs)',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 35b1325

Please sign in to comment.