Skip to content

Commit a18771c

Browse files
authored
Merge pull request ageitgey#7 from ageitgey/scipy-version-fix
Scipy version fix
2 parents 5a81ac9 + df70b9e commit a18771c

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

HISTORY.rst

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
History
22
=======
33

4+
0.1.9 (2017-03-16)
5+
------------------
6+
7+
* Fix minimum scipy version required.
8+
9+
10+
0.1.8 (2017-03-16)
11+
------------------
12+
13+
* Fix missing Pillow dependency.
14+
15+
416
0.1.7 (2017-03-13)
517
------------------
618

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Click>=6.0
33
dlib>=19.3.0
44
numpy
55
Pillow
6-
scipy
6+
scipy>=0.17.0

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
'dlib>=19.3.0',
1616
'numpy',
1717
'Pillow',
18-
'scipy'
18+
'scipy>=0.17.0'
1919
]
2020

2121
test_requirements = [
@@ -24,7 +24,7 @@
2424

2525
setup(
2626
name='face_recognition',
27-
version='0.1.8',
27+
version='0.1.9',
2828
description="Recognize faces from Python or from the command line",
2929
long_description=readme + '\n\n' + history,
3030
author="Adam Geitgey",

0 commit comments

Comments
 (0)