diff --git a/ImageGoNord/__init__.py b/ImageGoNord/__init__.py index e61d2e0..5d8a7f1 100755 --- a/ImageGoNord/__init__.py +++ b/ImageGoNord/__init__.py @@ -1,4 +1,4 @@ # gonord version -__version__ = "1.0.1" +__version__ = "1.0.2" from ImageGoNord.GoNord import * \ No newline at end of file diff --git a/setup.py b/setup.py index 614f255..a7495fa 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="image-go-nord", - version="1.0.1", + version="1.0.2", description="A tool to convert any RGB image or video to any theme or color palette input by the user", long_description=README, long_description_content_type="text/markdown", @@ -32,6 +32,6 @@ packages=find_packages(), package_data={'': ['*.txt', 'palettes/*.txt', 'models/*.pt', '*.pt', '*.state_dict.*']}, include_package_data=True, - install_requires=["Pillow", "ffmpeg-python", "numpy", "torch", "skimage", "torchvision"], + install_requires=["Pillow", "ffmpeg-python", "numpy", "torch", "scikit-image", "torchvision"], python_requires=">=3.5" )