Skip to content

Commit

Permalink
Bump pillow and autocrop version (#130)
Browse files Browse the repository at this point in the history
Co-authored-by: François Leblanc <francois.leblanc@shopify.com>
  • Loading branch information
leblancfg and leblancfg authored Feb 17, 2021
1 parent f8c2463 commit ab05acb
Show file tree
Hide file tree
Showing 5 changed files with 159 additions and 443 deletions.
2 changes: 1 addition & 1 deletion autocrop/__version__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__title__ = "autocrop"
__description__ = "Automatically crops faces from batches of pictures"
__author__ = "François Leblanc"
__version__ = "1.1.0"
__version__ = "1.1.1"
17 changes: 16 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
## 1.1.1 - 17-02-2021
### Deprecations

- Deprecate Python 3.5
- Deprecate OpenCV 3

### API Additions

- User can now specify what file extension to save cropped files at the CLI

### Security

- Update Pillow dependency in order to limit possible security issues

### Other changes

- Updates to the developer setup tools and documentation
- Updates to the example notebook

## 1.1.0 - 24-10-2020
### Added
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
numpy>=1.10
opencv-python>=3, <5
Pillow>5
Pillow~=8.1.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
AUTHOR = "François Leblanc"

# What packages are required for this module to be executed?
REQUIRED = ["numpy>=1.10", "opencv-python>=3, <5", "Pillow>5"]
REQUIRED = ["numpy>=1.10", "opencv-python>=3, <5", "Pillow~=8.1.0"]

# The rest you shouldn't have to touch too much :)
# ------------------------------------------------
Expand Down
579 changes: 140 additions & 439 deletions tests/visual_tests.ipynb

Large diffs are not rendered by default.

0 comments on commit ab05acb

Please sign in to comment.