Skip to content

Commit c283e66

Browse files
committed
UpdateVersion10-2020: Updated version and libraries
1 parent 613a35b commit c283e66

File tree

5 files changed

+12
-8
lines changed

5 files changed

+12
-8
lines changed

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ sudo: false
22
language: python
33
python:
44
- "2.7"
5-
- "3.4"
6-
- "3.5"
75
- "3.6"
86
- "3.7"
7+
- "3.8"
8+
- "3.9"
99
- "pypy"
1010

1111
# command to install dependencies

CHANGES

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
- 1.4.2
2+
Libraries Updated
3+
Python version updated
4+
15
- 1.4.1
26
Library Updated
37
Fix custom message with format {} fails with Key error #47 - Thanks @rubber-side-down

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
# The short X.Y version.
6666
version = '1.4'
6767
# The full version, including alpha/beta/rc tags.
68-
release = '1.4.1'
68+
release = '1.4.2'
6969

7070
# The language for content autogenerated by Sphinx. Refer to documentation
7171
# for a list of supported languages.

flask_validator/validator.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from sqlalchemy import event
66
from .exceptions import ValidateError
77

8-
__version__ = '1.4.1'
8+
__version__ = '1.4.2'
99

1010

1111
class FlaskValidator(object):

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name='Flask-Validator',
13-
version='1.4.1',
13+
version='1.4.2',
1414
license='Mozilla Public License',
1515
author='Jesus Roldan',
1616
author_email='[email protected]',
@@ -21,7 +21,7 @@
2121
platforms='any',
2222
test_suite='nose.collector',
2323
install_requires=[
24-
'Flask-SQLAlchemy>=1.0',
24+
'Flask-SQLAlchemy==2.4.4',
2525
'email_validator==1.1.1',
2626
'iso3166==1.0.1',
2727
'pytz==2020.1',
@@ -38,10 +38,10 @@
3838
'Operating System :: OS Independent',
3939
'Programming Language :: Python',
4040
'Programming Language :: Python :: 2.7',
41-
'Programming Language :: Python :: 3.4',
42-
'Programming Language :: Python :: 3.5',
4341
'Programming Language :: Python :: 3.6',
4442
'Programming Language :: Python :: 3.7',
43+
'Programming Language :: Python :: 3.8',
44+
'Programming Language :: Python :: 3.9',
4545
'Topic :: Database',
4646
'Topic :: Software Development :: Libraries :: Python Modules',
4747
]

0 commit comments

Comments
 (0)