1
0

Compare commits

..

No commits in common. "d1d2214f4aaa57586236b2e1dda314a1938ad03f" and "a6bfeef6bd4ac5a98b253cd40286e7ccaa79eeba" have entirely different histories.

2 changed files with 1 additions and 4 deletions

View File

@ -1 +1 @@
__version__ = '0.1.6'
__version__ = '0.1.5'

View File

@ -15,7 +15,6 @@ PACKAGE_NAME = 'datagraph'
with open('README.md') as f:
readme = f.read()
def parse_version_file(text: str) -> str:
match = re.match(r'^__version__\s*=\s*(["\'])([\d\.]+)\1$', text)
if match is None:
@ -23,11 +22,9 @@ def parse_version_file(text: str) -> str:
raise Exception(msg)
return match.group(2)
with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read())
def parse_requirements(text: str) -> list[str]:
return text.strip().split('\n')