docs: remove unused helper script

This commit is contained in:
Ronny Pfannschmidt 2016-09-05 21:03:22 +02:00
parent e21ae3991d
commit a2b8981b50
1 changed files with 0 additions and 16 deletions

View File

@ -1,16 +0,0 @@
#!/usr/bin/env python
import py
def get_version_string():
fn = py.path.local(__file__).join("..", "..", "..",
"_pytest", "__init__.py")
for line in fn.readlines():
if "version" in line and not line.strip().startswith('#'):
return eval(line.split("=")[-1])
def get_minor_version_string():
return ".".join(get_version_string().split(".")[:2])
if __name__ == "__main__":
print (get_minor_version_string())