File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 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
22=========================================
33
44A 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 ) .
66
77This library validates that a string is of the form ` name@example.com ` . This is
88the 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.)
228228
229229### UCS-4 support required for Python 2.7
230230
231+ This library hopefully still works with Python 2.7.
231232Note that when using Python 2.7, it is required that it was built with
232233UCS-4 support (see
233234[ here] ( https://stackoverflow.com/questions/29109944/python-returns-length-of-2-for-single-unicode-character-string ) );
@@ -404,7 +405,7 @@ rm -rf dist
404405python3 setup.py sdist
405406python3 setup.py bdist_wheel
406407twine 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
408409git push --tags
409410```
410411
Original file line number Diff line number Diff line change 11[metadata]
22name = 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.
55long_description = file: README.md
66long_description_content_type = text/markdown
77url = https://github.com/JoshData/python-email-validator
You can’t perform that action at this time.
0 commit comments