Skip to content

Commit 2f7f67d

Browse files
authored
Update Pillow and drop support for Python 3.5 (#34)
1 parent fc45f6f commit 2f7f67d

File tree

7 files changed

+261
-115
lines changed

7 files changed

+261
-115
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
dist: xenial
22
language: python
33
python:
4-
- "3.5"
54
- "3.6"
65
- "3.7"
76
- "3.8"
7+
- "3.9"
88
install:
99
- pip install -r requirements.txt
1010
script:

Pipfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@ verify_ssl = true
66
[dev-packages]
77
coveralls = "*"
88
nose = "*"
9+
autopep8 = "*"
10+
pylint = "*"
911

1012
[packages]
1113
requests = "*"
1214
python-dateutil = "*"
1315
pytz = "*"
1416
flask = "*"
15-
pillow = ">=7.1.0"
17+
pillow = "*"
1618
werkzeug = "*"
1719
filetype = "*"
1820

Pipfile.lock

+234-99
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![](https://coveralls.io/repos/github/codingedward/flask-sieve/badge.svg?branch=master)](https://coveralls.io/github/codingedward/flask-sieve?branch=master)
55
[![](https://api.codacy.com/project/badge/Grade/041c02c078b649a98b5c8c58bd8fd015)](https://www.codacy.com/app/codingedward/flask-sieve?utm_source=github.com&utm_medium=referral&utm_content=codingedward/flask-sieve&utm_campaign=Badge_Grade)
66
[![](https://pepy.tech/badge/flask-sieve)](https://pepy.tech/project/flask-sieve)
7-
[![](https://img.shields.io/badge/python-3.5%20%7C%203.6%20%7C%203.7%20%7C%203.8-blue.svg)](https://pypi.org/project/flask-sieve/)
7+
[![](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue.svg)](https://pypi.org/project/flask-sieve/)
88

99

1010
A requests validator for Flask inspired by Laravel.

docs/source/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![](https://coveralls.io/repos/github/codingedward/flask-sieve/badge.svg?branch=master)](https://coveralls.io/github/codingedward/flask-sieve?branch=master)
55
[![](https://api.codacy.com/project/badge/Grade/041c02c078b649a98b5c8c58bd8fd015)](https://www.codacy.com/app/codingedward/flask-sieve?utm_source=github.com&utm_medium=referral&utm_content=codingedward/flask-sieve&utm_campaign=Badge_Grade)
66
[![](https://pepy.tech/badge/flask-sieve)](https://pepy.tech/project/flask-sieve)
7-
[![](https://img.shields.io/badge/python-3.5%20%7C%203.6%20%7C%203.7%20%7C%203.8-blue.svg)](https://pypi.org/project/flask-sieve/)
7+
[![](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-blue.svg)](https://pypi.org/project/flask-sieve/)
88

99

1010
<img src="https://raw.githubusercontent.com/codingedward/flask-sieve/master/docs/source/_static/sieve.png" style="width: 40%; float: right; transform: rotate(-15deg)" />

requirements.txt

+18-9
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,29 @@
1-
certifi==2020.6.20
2-
chardet==3.0.4
1+
astroid==2.5.1
2+
autopep8==1.5.6
3+
certifi==2020.12.5
4+
chardet==4.0.0
35
click==7.1.2
4-
coverage==5.2.1
5-
coveralls==2.1.2
6+
coverage==5.5
7+
coveralls==3.0.1
68
docopt==0.6.2
79
filetype==1.0.7
810
Flask==1.1.2
911
idna==2.10
12+
isort==5.7.0
1013
itsdangerous==1.1.0
11-
Jinja2==2.11.2
14+
Jinja2==2.11.3
15+
lazy-object-proxy==1.5.2
1216
MarkupSafe==1.1.1
17+
mccabe==0.6.1
1318
nose==1.3.7
14-
Pillow==7.2.0
19+
Pillow==8.1.2
20+
pycodestyle==2.7.0
21+
pylint==2.7.2
1522
python-dateutil==2.8.1
16-
pytz==2020.1
17-
requests==2.24.0
23+
pytz==2021.1
24+
requests==2.25.1
1825
six==1.15.0
19-
urllib3==1.25.10
26+
toml==0.10.2
27+
urllib3==1.26.4
2028
Werkzeug==1.0.1
29+
wrapt==1.12.1

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
name='flask-sieve',
66
description='A Laravel inspired requests validator for Flask',
77
long_description='Find the documentation at https://flask-sieve.readthedocs.io/en/latest/',
8-
version='1.3.1',
8+
version='2.0.0',
99
url='https://github.com/codingedward/flask-sieve',
1010
license='BSD-2',
1111
author='Edward Njoroge',
@@ -22,10 +22,10 @@
2222
],
2323
classifiers=[
2424
'Development Status :: 5 - Production/Stable',
25-
'Programming Language :: Python :: 3.5',
2625
'Programming Language :: Python :: 3.6',
2726
'Programming Language :: Python :: 3.7',
2827
'Programming Language :: Python :: 3.8',
28+
'Programming Language :: Python :: 3.9',
2929
'Topic :: Software Development :: Libraries :: Python Modules'
3030
],
3131
packages=find_packages(),
@@ -34,6 +34,6 @@
3434
'Source': 'https://github.com/codingedward/flask-sieve/',
3535
'Tracker': 'https://github.com/codingedward/flask-sieve/issues',
3636
},
37-
python_requires='>=3.5',
37+
python_requires='>=3.6',
3838
zip_safe=False
3939
)

0 commit comments

Comments
 (0)