From 561edf94ac612dc09d89627c2c8e59082b0810b4 Mon Sep 17 00:00:00 2001 From: 2lives Date: Tue, 26 Mar 2024 16:48:40 -0700 Subject: [PATCH] SCP-7 pyvips 2.2.1, updated readme --- README.md | 6 ++++++ setup.py | 6 +++--- skylab_studio/version.py | 2 +- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7c326d7..478179b 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,12 @@ libvips is required to be installed on your machine in order to install skylab-s - [Libvips documentation](https://www.libvips.org/install.html) +pyvips v2.2.1 is required. If you encounter trouble installing pyvips == 2.2.1, for the time being you can use a conda environment and install pyvips there. + +```bash +$ conda install --channel conda-forge pyvips +``` + ## Installation ```bash diff --git a/setup.py b/setup.py index 65e0a19..c88377c 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='skylab_studio', - version='0.0.14', + version='0.0.15', author='skylabtech', author_email='info@skylabtech.ai', packages=find_packages(), @@ -24,7 +24,7 @@ test_suite="skylabtech.test", install_requires=[ "aiohttp >= 3.9.3", - "pyvips==2.0.2", + "pyvips == 2.2.1", "requests >= 2.0.0" ], extras_require={ @@ -34,7 +34,7 @@ "requests_mock >= 1.5.2", ] }, - + classifiers=[ "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", diff --git a/skylab_studio/version.py b/skylab_studio/version.py index b0992ef..3cd14b9 100644 --- a/skylab_studio/version.py +++ b/skylab_studio/version.py @@ -3,4 +3,4 @@ For more information, visit https://studio.skylabtech.ai """ -VERSION = '0.0.14' +VERSION = '0.0.15'