Compare commits
2 Commits
v3.0.1-bet
...
3.0.1-beta
| Author | SHA1 | Date | |
|---|---|---|---|
| bbe7a112fd | |||
| 8a09a49951 |
4
.github/workflows/python-publish.yml
vendored
4
.github/workflows/python-publish.yml
vendored
@ -24,8 +24,8 @@ jobs:
|
|||||||
pip install setuptools wheel twine
|
pip install setuptools wheel twine
|
||||||
- name: Build and publish
|
- name: Build and publish
|
||||||
env:
|
env:
|
||||||
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
|
TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }}
|
||||||
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
|
TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }}
|
||||||
run: |
|
run: |
|
||||||
python setup.py sdist bdist_wheel
|
python setup.py sdist bdist_wheel
|
||||||
python3 -m twine check dist/*
|
python3 -m twine check dist/*
|
||||||
|
|||||||
@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
* Complete rewrite, cleaner object oriented code.
|
* Complete rewrite, cleaner object oriented code.
|
||||||
* Python 3 and 2 support.
|
* 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/).
|
* Installable via [pip](https://pypi.org/project/zfs-autobackup/).
|
||||||
* Backwards compatible with your current backups and parameters.
|
* Backwards compatible with your current backups and parameters.
|
||||||
* Progressive thinning (via a destroy schedule. default schedule should be fine for most people)
|
* Progressive thinning (via a destroy schedule. default schedule should be fine for most people)
|
||||||
|
|||||||
@ -23,7 +23,7 @@ if sys.stdout.isatty():
|
|||||||
colorama = False
|
colorama = False
|
||||||
pass
|
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)
|
HEADER = "zfs-autobackup v{} - Copyright 2020 E.H.Eefting (edwin@datux.nl)".format(VERSION)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
1
setup.py
1
setup.py
@ -2,7 +2,6 @@ import setuptools
|
|||||||
import bin.zfs_autobackup
|
import bin.zfs_autobackup
|
||||||
import os
|
import os
|
||||||
|
|
||||||
os.system("git tag -m ' ' -a v{}".format(bin.zfs_autobackup.VERSION))
|
|
||||||
|
|
||||||
with open("README.md", "r") as fh:
|
with open("README.md", "r") as fh:
|
||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|||||||
Reference in New Issue
Block a user