diff --git a/lethe.py b/lethe.py index 6154516..d0a4ab9 100755 --- a/lethe.py +++ b/lethe.py @@ -13,7 +13,7 @@ import sys __author__ = 'Jan Petykeiwicz' -version = 0.7 +__version__ = '0.8' def _run(command: str or List[str], **kwargs): diff --git a/setup.py b/setup.py index 4f65088..fffcae1 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,12 @@ #!/usr/bin/env python3 from setuptools import setup -import lethe with open('README.md', 'r') as f: long_description = f.read() setup(name='lethe', - version=lethe.version, + version='0.8', description='Git-based snapshotting', long_description=long_description, long_description_content_type='text/markdown',