Fix declared pykwalify compatibility version range in setup.py (#88).

This commit is contained in:
Dan Helfman 2018-08-18 14:07:18 -07:00
parent 7b77fd2510
commit 5e2a5494af
2 changed files with 6 additions and 2 deletions

4
NEWS
View File

@ -1,3 +1,7 @@
1.2.3.dev0
* #88: Fix declared pykwalify compatibility version range in setup.py to prevent use of ancient
versions of pykwalify with large version numbers.
1.2.2
* #85: Fix compatibility issue between pykwalify and ruamel.yaml 0.15.52, which manifested in
borgmatic as a pykwalify RuleError.

View File

@ -1,7 +1,7 @@
from setuptools import setup, find_packages
VERSION = '1.2.2'
VERSION = '1.2.3.dev0'
setup(
@ -32,7 +32,7 @@ setup(
'atticmatic',
],
install_requires=(
'pykwalify>=1.6.0',
'pykwalify>=1.6.0,<14.06',
'ruamel.yaml>0.15.0,<0.16.0',
'setuptools',
),