We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe546d6 commit e078660Copy full SHA for e078660
setup.py
@@ -7,7 +7,7 @@
7
import subprocess
8
9
PACKAGE_NAME = 'harmony_model_checker'
10
-PACKAGE_VERSION = "0.0.20a14"
+PACKAGE_VERSION = "0.0.20a15"
11
12
PACKAGE_CONFIG = Path.home() / ".harmony-model-checker"
13
@@ -18,10 +18,6 @@ def run(self):
18
PACKAGE_CONFIG.mkdir()
19
super().run()
20
21
- pkg_version_file = PACKAGE_CONFIG / "package_version"
22
- with pkg_version_file.open("w") as f:
23
- f.write(PACKAGE_VERSION)
24
-
25
harmony_cmd = shutil.which("harmony")
26
if harmony_cmd is not None:
27
ec = subprocess.run([harmony_cmd, "--build-model-checker"])
0 commit comments