File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ email-validator: Validate Email Addresses
2
2
=========================================
3
3
4
4
A robust email address syntax and deliverability validation library for
5
- Python 2.7/3.4 + by [Joshua Tauberer](https://joshdata.me).
5
+ Python 3.5 + by [Joshua Tauberer](https://joshdata.me).
6
6
7
7
This library validates that a string is of the form `name@example.com`. This is
8
8
the sort of validation you would want for an email-based login form on
@@ -228,6 +228,7 @@ change the user's login information without telling them.)
228
228
229
229
### UCS-4 support required for Python 2.7
230
230
231
+ This library hopefully still works with Python 2.7.
231
232
Note that when using Python 2.7, it is required that it was built with
232
233
UCS-4 support (see
233
234
[here](https://stackoverflow.com/questions/29109944/python-returns-length-of-2-for-single-unicode-character-string));
@@ -404,7 +405,7 @@ rm -rf dist
404
405
python3 setup.py sdist
405
406
python3 setup.py bdist_wheel
406
407
twine upload dist/*
407
- git tag v1.0.XXX # replace with version in setup.py
408
+ git tag v1.0.XXX # replace with version in setup.cfg
408
409
git push --tags
409
410
```
410
411
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = email_validator
3
- version = 1.1.3
4
- description = A robust email syntax and deliverability validation library for Python 2.x/3.x .
3
+ version = 1.2.0
4
+ description = A robust email syntax and deliverability validation library.
5
5
long_description = file: README.md
6
6
long_description_content_type = text/markdown
7
7
url = https://github.com/JoshData/python-email-validator
You can’t perform that action at this time.
0 commit comments