Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dependencies: fix missing email_validator [more] #312

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 10 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,20 @@
Changes
=======

Version 1.2.1 (released 2020-04-28)

- Fixes issue with the latest WTForms v2.3.x release which now requires an
extra library for email validation.

Version 1.2.0 (released 2020-03-09)

- Replaces Flask dependency with centrally managed invenio-base

Version 1.1.4 (released 2020-04-28)

- Fixes issue with the latest WTForms v2.3.x release which now requires an
extra library for email validation.

Version 1.1.3 (released 2020-02-19)

- Replaces Flask-CeleryExt to invenio-celery due to version incompatibilities
Expand Down
2 changes: 1 addition & 1 deletion invenio_accounts/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

from __future__ import absolute_import, print_function

__version__ = '1.2.0'
__version__ = '1.2.1'
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
'mock>=2.0.0',
'pydocstyle>=1.0.0',
'pytest-cov>=1.8.0',
'pytest-flask>=0.10.0',
'pytest-flask>=0.10.0,<1.0.0',
'pytest-pep8>=1.0.6',
'pytest>=4.0.0,<5.0.0',
'selenium>=3.0.1',
Expand Down Expand Up @@ -72,6 +72,7 @@
'Flask-Menu>=0.5.0',
'Flask-Security>=3.0.0',
'Flask-WTF>=0.14.3',
'email-validator>=1.0.5',
'future>=0.16.0',
'invenio-base>=1.2.2',
'invenio-i18n>=1.2.0',
Expand All @@ -85,7 +86,7 @@
# Not using 'ipaddress' extras for SQLALchemy-Utils in favor of
# direct 'ipaddr' version marker (issues with Python3 builds on Travis).
'SQLAlchemy-Utils>=0.31.0',
'ua-parser>=0.7.3',
'ua-parser>=0.7.3'
]

packages = find_packages()
Expand Down