We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 22ae35f + b972177 commit ee5f254Copy full SHA for ee5f254
ehtim/__init__.py
@@ -46,7 +46,7 @@
46
47
try:
48
import pkg_resources
49
- version = pkg_resources.require("ehtim")[0].version
+ version = pkg_resources.get_distribution("ehtim").version
50
print("Welcome to eht-imaging! v ",version)
51
except:
52
print("Welcome to eht-imaging!")
setup.py
@@ -6,7 +6,7 @@ def read(fname):
6
7
if __name__ == "__main__":
8
setup(name="ehtim",
9
- version = "1.1.0",
+ version = "1.1.1",
10
author = "Andrew Chael",
11
author_email = "achael@cfa.harvard.edu",
12
description = ("Python code to load, simulate, and manipulate VLBI "+
0 commit comments