Upgrade ruamel.yaml compatibility version range and fix support for Python 3.7 (#38, #76).

This commit is contained in:
Dan Helfman 2018-07-22 11:25:06 -07:00
parent e5ef485d6b
commit d29c7956bc
4 changed files with 6 additions and 4 deletions

1
.gitignore vendored
View File

@ -3,6 +3,7 @@
*.swp *.swp
.cache .cache
.coverage .coverage
.pytest_cache
.tox .tox
build build
dist dist

1
NEWS
View File

@ -1,5 +1,6 @@
1.2.1.dev0 1.2.1.dev0
* Skip before/after backup hooks when only doing --prune, --check, --list, and/or --info. * Skip before/after backup hooks when only doing --prune, --check, --list, and/or --info.
* #38, #76: Upgrade ruamel.yaml compatibility version range and fix support for Python 3.7.
1.2.0 1.2.0
* #61: Support for Borg --list option via borgmatic command-line to list all archives. * #61: Support for Borg --list option via borgmatic command-line to list all archives.

View File

@ -33,7 +33,7 @@ setup(
], ],
install_requires=( install_requires=(
'pykwalify>=1.6.0', 'pykwalify>=1.6.0',
'ruamel.yaml<=0.15', 'ruamel.yaml>0.15.0,<0.16.0',
'setuptools', 'setuptools',
), ),
tests_require=( tests_require=(

View File

@ -1,5 +1,5 @@
flexmock==0.10.2 flexmock==0.10.2
pykwalify==1.6.0 pykwalify==1.6.1
pytest==2.9.1 pytest==3.6.3
pytest-cov==2.5.1 pytest-cov==2.5.1
ruamel.yaml==0.15.18 ruamel.yaml>0.15.0,<0.16.0