File tree 5 files changed +12
-8
lines changed
5 files changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,10 @@ sudo: false
2
2
language : python
3
3
python :
4
4
- " 2.7"
5
- - " 3.4"
6
- - " 3.5"
7
5
- " 3.6"
8
6
- " 3.7"
7
+ - " 3.8"
8
+ - " 3.9"
9
9
- " pypy"
10
10
11
11
# command to install dependencies
Original file line number Diff line number Diff line change
1
+ - 1.4.2
2
+ Libraries Updated
3
+ Python version updated
4
+
1
5
- 1.4.1
2
6
Library Updated
3
7
Fix custom message with format {} fails with Key error #47 - Thanks @rubber-side-down
Original file line number Diff line number Diff line change 65
65
# The short X.Y version.
66
66
version = '1.4'
67
67
# The full version, including alpha/beta/rc tags.
68
- release = '1.4.1 '
68
+ release = '1.4.2 '
69
69
70
70
# The language for content autogenerated by Sphinx. Refer to documentation
71
71
# for a list of supported languages.
Original file line number Diff line number Diff line change 5
5
from sqlalchemy import event
6
6
from .exceptions import ValidateError
7
7
8
- __version__ = '1.4.1 '
8
+ __version__ = '1.4.2 '
9
9
10
10
11
11
class FlaskValidator (object ):
Original file line number Diff line number Diff line change 10
10
11
11
setup (
12
12
name = 'Flask-Validator' ,
13
- version = '1.4.1 ' ,
13
+ version = '1.4.2 ' ,
14
14
license = 'Mozilla Public License' ,
15
15
author = 'Jesus Roldan' ,
16
16
21
21
platforms = 'any' ,
22
22
test_suite = 'nose.collector' ,
23
23
install_requires = [
24
- 'Flask-SQLAlchemy>=1.0 ' ,
24
+ 'Flask-SQLAlchemy==2.4.4 ' ,
25
25
'email_validator==1.1.1' ,
26
26
'iso3166==1.0.1' ,
27
27
'pytz==2020.1' ,
38
38
'Operating System :: OS Independent' ,
39
39
'Programming Language :: Python' ,
40
40
'Programming Language :: Python :: 2.7' ,
41
- 'Programming Language :: Python :: 3.4' ,
42
- 'Programming Language :: Python :: 3.5' ,
43
41
'Programming Language :: Python :: 3.6' ,
44
42
'Programming Language :: Python :: 3.7' ,
43
+ 'Programming Language :: Python :: 3.8' ,
44
+ 'Programming Language :: Python :: 3.9' ,
45
45
'Topic :: Database' ,
46
46
'Topic :: Software Development :: Libraries :: Python Modules' ,
47
47
]
You can’t perform that action at this time.
0 commit comments