Selaa lähdekoodia

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

Dan Helfman 6 vuotta sitten
vanhempi
sitoutus
5e2a5494af
2 muutettua tiedostoa jossa 6 lisäystä ja 2 poistoa
  1. 4 0
      NEWS
  2. 2 2
      setup.py

+ 4 - 0
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.

+ 2 - 2
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',
     ),
     ),