浏览代码

update make_release script to print deployed version at end of script

Bastien Sevajol 7 年前
父节点
当前提交
a9e90e0105
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      make_release

+ 2 - 0
make_release 查看文件

173
             push_on_github(remote_name)
173
             push_on_github(remote_name)
174
 
174
 
175
     push_on_pypi()
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
 if __name__ == '__main__':
180
 if __name__ == '__main__':