diff --git a/.appveyor.yml b/.appveyor.yml index 0cc0bbb12..e4da6d3c6 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -8,17 +8,12 @@ environment: matrix: - PYTHON: 'C:\Python27-x64' - SHAPELY_WHEEL: 'https://download.lfd.uci.edu/pythonlibs/r5uhg2lo/Shapely-1.6.4.post1-cp27-cp27m-win_amd64.whl' - PYTHON: 'C:\Python35-x64' - SHAPELY_WHEEL: 'https://download.lfd.uci.edu/pythonlibs/r5uhg2lo/Shapely-1.6.4.post1-cp35-cp35m-win_amd64.whl' - PYTHON: 'C:\Python36-x64' - SHAPELY_WHEEL: 'https://download.lfd.uci.edu/pythonlibs/r5uhg2lo/Shapely-1.6.4.post1-cp36-cp36m-win_amd64.whl' - PYTHON: 'C:\Python37-x64' - SHAPELY_WHEEL: 'https://download.lfd.uci.edu/pythonlibs/r5uhg2lo/Shapely-1.6.4.post1-cp37-cp37m-win_amd64.whl' install: - '%PYTHON%\python.exe -m pip install -U pip wheel setuptools' - - '%PYTHON%\python.exe -m pip install %SHAPELY_WHEEL%' - '%PYTHON%\python.exe -m pip install .[tests]' - '%PYTHON%\python.exe -m pip install flake8 flake8-docstrings' diff --git a/albumentations/__init__.py b/albumentations/__init__.py index 9d3a114f7..4373c6297 100644 --- a/albumentations/__init__.py +++ b/albumentations/__init__.py @@ -1,6 +1,6 @@ from __future__ import absolute_import -__version__ = '0.1.10' +__version__ = '0.1.11' from .core.composition import * from .core.transforms_interface import * diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml index e21832ffc..e11f5a7c3 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -15,17 +15,17 @@ build: requirements: build: - python - - numpy>=1.11.1 + - numpy>=1.11.1,<1.16.0 - scipy - opencv run: - python - - numpy>=1.11.1 + - numpy>=1.11.1,<1.16.0 - scipy - opencv - # ImgAug is not at Conda and should be installed via pip install 'imgaug>=0.2.5' - # - imgaug>=0.2.5 + # ImgAug is not at Conda and should be installed via pip install 'imgaug>=0.2.5,<0.2.7' + # - imgaug>=0.2.5,<0.2.7 test: imports: diff --git a/setup.py b/setup.py index 7e80a3aaf..5fd858bdc 100644 --- a/setup.py +++ b/setup.py @@ -31,11 +31,11 @@ def get_long_description(): description='Fast image augmentation library and easy to use wrapper around other libraries', long_description=get_long_description(), long_description_content_type='text/markdown', - author='Buslaev Alexander, Alexander Parinov, Vladimir Iglovikov', + author='Buslaev Alexander, Alexander Parinov, Vladimir Iglovikov, Eugene Khvedchenya', license='MIT', url='https://github.com/albu/albumentations', packages=find_packages(exclude=['tests']), - install_requires=['numpy>=1.11.1', 'scipy', 'opencv-python', 'imgaug>=0.2.5'], + install_requires=['numpy>=1.11.1,<1.16.0', 'scipy', 'opencv-python', 'imgaug>=0.2.5,<0.2.7'], extras_require={'tests': get_test_requirements()}, classifiers=[ 'Development Status :: 4 - Beta',