Ver código fonte

update make_release script to print deployed version at end of script

Bastien Sevajol 6 anos atrás
pai
commit
a9e90e0105
1 arquivos alterados com 2 adições e 0 exclusões
  1. 2 0
      make_release

+ 2 - 0
make_release Ver arquivo

@@ -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__':