Skip to content

Commit 4433683

Browse files
authored
Merge pull request #13 from MihaiBalint/master
Dnspython now uses a single source for Python 2 and Python 3
2 parents a09df08 + def6410 commit 4433683

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,15 @@
3030
'Programming Language :: Python :: 2.7',
3131
'Programming Language :: Python :: 3',
3232
'Programming Language :: Python :: 3.4',
33+
'Programming Language :: Python :: 3.5',
3334
],
3435

3536
keywords="email address validator",
3637

3738
packages=find_packages(),
3839
install_requires=[
3940
"idna>=2.0.0",
40-
"dnspython3" if sys.version_info > (3,) else "dnspython"],
41+
"dnspython>=1.13.0"],
4142

4243
entry_points={
4344
'console_scripts': [

0 commit comments

Comments
 (0)