Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand All @@ -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={
Expand All @@ -34,7 +34,7 @@
"requests_mock >= 1.5.2",
]
},

classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
Expand Down
2 changes: 1 addition & 1 deletion skylab_studio/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
For more information, visit https://studio.skylabtech.ai
"""

VERSION = '0.0.14'
VERSION = '0.0.15'