Fix declared pykwalify compatibility version range in setup.py (#88).
This commit is contained in:
parent
7b77fd2510
commit
5e2a5494af
2 changed files with 6 additions and 2 deletions
4
NEWS
4
NEWS
|
@ -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
|
1.2.2
|
||||||
* #85: Fix compatibility issue between pykwalify and ruamel.yaml 0.15.52, which manifested in
|
* #85: Fix compatibility issue between pykwalify and ruamel.yaml 0.15.52, which manifested in
|
||||||
borgmatic as a pykwalify RuleError.
|
borgmatic as a pykwalify RuleError.
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -1,7 +1,7 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
|
|
||||||
VERSION = '1.2.2'
|
VERSION = '1.2.3.dev0'
|
||||||
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
@ -32,7 +32,7 @@ setup(
|
||||||
'atticmatic',
|
'atticmatic',
|
||||||
],
|
],
|
||||||
install_requires=(
|
install_requires=(
|
||||||
'pykwalify>=1.6.0',
|
'pykwalify>=1.6.0,<14.06',
|
||||||
'ruamel.yaml>0.15.0,<0.16.0',
|
'ruamel.yaml>0.15.0,<0.16.0',
|
||||||
'setuptools',
|
'setuptools',
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue