Browse Source

update make_release script to print deployed version at end of script

Bastien Sevajol 6 years ago
parent
commit
a9e90e0105
1 changed files with 2 additions and 0 deletions
  1. 2 0
      make_release

+ 2 - 0
make_release View File

@@ -173,6 +173,8 @@ def main():
173 173
             push_on_github(remote_name)
174 174
 
175 175
     push_on_pypi()
176
+    actual_version = extract_version_from_setup_py_content()
177
+    print('Deployed version: {}'.format(actual_version))
176 178
 
177 179
 
178 180
 if __name__ == '__main__':