no longer git tag in setup.py

This commit is contained in:
Edwin Eefting 2021-02-02 20:27:31 +01:00
parent 8a09a49951
commit bbe7a112fd
3 changed files with 2 additions and 3 deletions

View File

@ -7,7 +7,7 @@
* Complete rewrite, cleaner object oriented code.
* Python 3 and 2 support.
* Automated regression against real ZFS environment.
* Automated regression test against real ZFS environment.
* Installable via [pip](https://pypi.org/project/zfs-autobackup/).
* Backwards compatible with your current backups and parameters.
* Progressive thinning (via a destroy schedule. default schedule should be fine for most people)

View File

@ -23,7 +23,7 @@ if sys.stdout.isatty():
colorama = False
pass
VERSION = "3.0.1-beta1"
VERSION = "3.0.1-beta3"
HEADER = "zfs-autobackup v{} - Copyright 2020 E.H.Eefting (edwin@datux.nl)".format(VERSION)

View File

@ -2,7 +2,6 @@ import setuptools
import bin.zfs_autobackup
import os
os.system("git tag -m ' ' -a v{}".format(bin.zfs_autobackup.VERSION))
with open("README.md", "r") as fh:
long_description = fh.read()