File tree 4 files changed +32
-12
lines changed
4 files changed +32
-12
lines changed Original file line number Diff line number Diff line change @@ -5,10 +5,8 @@ cache: pip
5
5
6
6
python :
7
7
# - '2.7'
8
- # - '3.4'
9
- - ' 3.5'
10
8
- ' 3.6'
11
- # - '3.7'
9
+ - ' 3.7'
12
10
- ' 3.8'
13
11
- ' 3.9'
14
12
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 3.5+ by [ Joshua Tauberer] ( https://joshdata.me ) .
5
+ Python by [ Joshua Tauberer] ( https://joshdata.me ) .
6
6
7
7
This library validates that a string is of the form
` [email protected] ` . This is
8
8
the sort of validation you would want for an email-based login form on
@@ -32,6 +32,10 @@ This library was first published in 2015. The current version is 1.1.1
32
32
from ` validate_email ` has changed, but dict-style access to the validated
33
33
address information still works, so it is backwards compatible.**
34
34
35
+ This library is tested with Python 3.6+ but should work in earlier versions:
36
+
37
+ [ ![ Build Status] ( https://app.travis-ci.com/JoshData/python-email-validator.svg?branch=main )] ( https://app.travis-ci.com/JoshData/python-email-validator )
38
+
35
39
Installation
36
40
------------
37
41
Original file line number Diff line number Diff line change @@ -16,8 +16,6 @@ classifiers =
16
16
Programming Language :: Python :: 2
17
17
Programming Language :: Python :: 2.7
18
18
Programming Language :: Python :: 3
19
- Programming Language :: Python :: 3.5
20
- Programming Language :: Python :: 3.6
21
19
Programming Language :: Python :: 3.7
22
20
Programming Language :: Python :: 3.8
23
21
Programming Language :: Python :: 3.9
Original file line number Diff line number Diff line change 1
- coverage==4.5.4
2
- docutils==0.15.2
3
- flake8==3.7.9
4
- pytest==5.2.2
5
- pytest-cov==2.8.1
6
- idna>=2.8
1
+ # This file was generated by running
2
+ # pip install dnspython idna # from setup.cfg
3
+ # pip install pytest pytest-cov coverage flake8
4
+ # pip freeze
5
+ # in a virtualenv with Python 3.6. (Some packages' latest versions
6
+ # are not compatible with Python 3.6, so we must pin versions for
7
+ # repeatable testing in earlier versions of Python.)
8
+ attrs==21.4.0
9
+ coverage==6.2
10
+ dnspython==2.2.1
11
+ flake8==4.0.1
12
+ idna==3.3
13
+ importlib-metadata==4.2.0
14
+ iniconfig==1.1.1
15
+ mccabe==0.6.1
16
+ packaging==21.3
17
+ pluggy==1.0.0
18
+ py==1.11.0
19
+ pycodestyle==2.8.0
20
+ pyflakes==2.4.0
21
+ pyparsing==3.0.7
22
+ pytest==7.0.1
23
+ pytest-cov==3.0.0
24
+ tomli==1.2.3
25
+ typing_extensions==4.1.1
26
+ zipp==3.6.0
You can’t perform that action at this time.
0 commit comments