File tree Expand file tree Collapse file tree 2 files changed +13
-6
lines changed Expand file tree Collapse file tree 2 files changed +13
-6
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ is more appropriate for. And this library does NOT permit obsolete
21
21
forms of email addresses, so if you need strict validation against the
22
22
email specs exactly, use `pyIsEmail <https://github.com/michaelherold/pyIsEmail >`__.
23
23
24
- The current version is 1.0.1 (March 6, 2016).
24
+ The current version is 1.0.3 (Sept 12, 2017). The only changes since 1.0.0 (Sept 5, 2015)
25
+ have been small bug and packaging fixes.
25
26
26
27
Installation
27
28
------------
@@ -386,3 +387,12 @@ them through the validator (without deliverability checks) like so:
386
387
387
388
python3 email_validator/__init__.py --tests < test_pass.txt
388
389
390
+ For Project Maintainers
391
+ -----------------------
392
+
393
+ To publish a universal wheel to pypi::
394
+
395
+ pip3 install twine
396
+ rm -rf dist
397
+ python3 setup.py bdist_wheel --universal
398
+ twine upload dist/*
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
3
- # To deploy:
4
- # rm -rf dist && python3 setup.py sdist && twine upload dist/*
5
-
6
3
import sys
7
4
from setuptools import setup , find_packages
8
5
from codecs import open
9
6
10
7
setup (
11
8
name = 'email_validator' ,
12
- version = '1.0.2 ' ,
9
+ version = '1.0.3 ' ,
13
10
14
11
description = 'A robust email syntax and deliverability validation library for Python 2.x/3.x.' ,
15
12
long_description = open ("README.rst" , encoding = 'utf-8' ).read (),
30
27
'Programming Language :: Python :: 2.7' ,
31
28
'Programming Language :: Python :: 3' ,
32
29
'Programming Language :: Python :: 3.4' ,
33
- 'Programming Language :: Python :: 3.5' ,
30
+ 'Programming Language :: Python :: 3.5' ,
34
31
],
35
32
36
33
keywords = "email address validator" ,
You can’t perform that action at this time.
0 commit comments