1
0
mirror of https://github.com/ciromattia/kcc synced 2026-01-29 08:27:48 +00:00

Build tweaks

This commit is contained in:
Paweł Jastrzębski
2015-10-13 18:42:24 +02:00
parent af2c4e7250
commit a2651747cd
4 changed files with 9 additions and 30 deletions

View File

@@ -153,10 +153,10 @@ def dependencyCheck(level):
if level > 1:
try:
from psutil import __version__ as psutilVersion
if StrictVersion('3.2.1') > StrictVersion(psutilVersion):
missing.append('psutil 3.2.1+')
if StrictVersion('3.2.2') > StrictVersion(psutilVersion):
missing.append('psutil 3.2.2+')
except ImportError:
missing.append('psutil 3.2.1+')
missing.append('psutil 3.2.2+')
try:
from slugify import __version__ as slugifyVersion
if StrictVersion('1.1.4') > StrictVersion(slugifyVersion):