We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b67016b commit aeb8502Copy full SHA for aeb8502
.travis.yml
@@ -4,6 +4,7 @@ python:
4
- 3.3
5
- 3.4
6
- 3.5
7
+ - 3.6
8
- pypy
9
- pypy3
10
install:
setup.py
@@ -32,10 +32,10 @@ def get_version():
32
],
33
}
34
35
-install_requires=[
36
- 'six>=1.4.0',
37
- 'decorator>=3.4.0',
38
- ]
+install_requires = [
+ 'six>=1.4.0',
+ 'decorator>=3.4.0',
+]
39
40
setup(
41
name='validators',
@@ -65,6 +65,7 @@ def get_version():
65
'Programming Language :: Python :: 3.3',
66
'Programming Language :: Python :: 3.4',
67
'Programming Language :: Python :: 3.5',
68
+ 'Programming Language :: Python :: 3.6',
69
'Programming Language :: Python :: Implementation :: CPython',
70
'Programming Language :: Python :: Implementation :: PyPy',
71
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
0 commit comments