Fixes in unix.py

This commit is contained in:
absurdo 2023-05-26 01:39:42 +02:00
parent 6318ece7e1
commit d4009d8f09

View file

@ -5,15 +5,15 @@ import os
from setuptools import setup, find_packages
if sys.version_info < (3, 3):
raise NotImplementedError("Sorry, you need at least Python 3.3 for use pastafariutils.")
if sys.version_info < (3, 6):
raise NotImplementedError("Sorry, you need at least Python 3.6 for use pastafariutils.")
#import paramecio
# Pillow should be installed after if you need ImageField
# If you install passlib and bcrypt, the password system will use bcrypt by default, if not, will use native crypt libc
setup(name='pastafariutils',
version='0.6.0',
version='0.6.1',
description='Utils for make *nix scripts.',
long_description='Utils for make *nix scripts.',
author='Antonio de la Rosa Caballero',