Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad Warren <bmw@users.noreply.github.com>2017-04-29 02:06:45 +0300
committerGitHub <noreply@github.com>2017-04-29 02:06:45 +0300
commit8fa12bef8e7c687400367cf45a022b43e8c92754 (patch)
tree26bd4a82dade39669e7c42a1f802cee0ff07bfa4 /certbot-compatibility-test
parent89af460792fcdfb23c7dc4f9fcdec1bfa07a2656 (diff)
Tell the world we're Python 3 compatible (#4568)
* Mention python 3 support in setup.py * Build universal (py2 and py3 compatible) wheels * Mention Python 3.3+ support in docs * we work on python 3.6 too
Diffstat (limited to 'certbot-compatibility-test')
-rw-r--r--certbot-compatibility-test/setup.cfg2
-rw-r--r--certbot-compatibility-test/setup.py5
2 files changed, 7 insertions, 0 deletions
diff --git a/certbot-compatibility-test/setup.cfg b/certbot-compatibility-test/setup.cfg
new file mode 100644
index 000000000..2a9acf13d
--- /dev/null
+++ b/certbot-compatibility-test/setup.cfg
@@ -0,0 +1,2 @@
+[bdist_wheel]
+universal = 1
diff --git a/certbot-compatibility-test/setup.py b/certbot-compatibility-test/setup.py
index aecae329f..dfd05bfd9 100644
--- a/certbot-compatibility-test/setup.py
+++ b/certbot-compatibility-test/setup.py
@@ -42,6 +42,11 @@ setup(
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
+ 'Programming Language :: Python :: 3',
+ 'Programming Language :: Python :: 3.3',
+ 'Programming Language :: Python :: 3.4',
+ 'Programming Language :: Python :: 3.5',
+ 'Programming Language :: Python :: 3.6',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
],