Add support for ruamel.yaml 0.17.x YAML parsing library (#404).
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Dan Helfman 2021-03-30 15:53:19 -07:00
parent 631da1465e
commit c072678936
4 changed files with 6 additions and 5 deletions

3
NEWS
View File

@ -1,5 +1,6 @@
1.5.13.dev0
1.5.13
* #373: Document that passphrase is used for Borg keyfile encryption, not just repokey encryption.
* #404: Add support for ruamel.yaml 0.17.x YAML parsing library.
* Update systemd service example to return a permission error when a system call isn't permitted
(instead of terminating borgmatic outright).
* Drop support for Python 3.5, which has been end-of-lifed.

View File

@ -1,5 +1,5 @@
[metadata]
description-file=README.md
description_file=README.md
[tool:pytest]
testpaths = tests

View File

@ -1,6 +1,6 @@
from setuptools import find_packages, setup
VERSION = '1.5.13.dev0'
VERSION = '1.5.13'
setup(
@ -32,7 +32,7 @@ setup(
install_requires=(
'pykwalify>=1.6.0,<14.06',
'requests',
'ruamel.yaml>0.15.0,<0.17.0',
'ruamel.yaml>0.15.0,<0.18.0',
'setuptools',
'colorama>=0.4.1,<0.5',
),

View File

@ -23,6 +23,6 @@ python-dateutil==2.8.1
PyYAML==5.3.1
regex; python_version >= '3.8'
requests==2.25.0
ruamel.yaml>0.15.0,<0.17.0
ruamel.yaml>0.15.0,<0.18.0
toml==0.10.2; python_version >= '3.8'
typed-ast==1.4.2; python_version >= '3.8'