From 6f6c3bc7fcb18a1e8d32e93d402d4567c3288326 Mon Sep 17 00:00:00 2001 From: Wenzel Jakob Date: Sun, 7 Feb 2016 17:37:40 +0100 Subject: [PATCH] fixed tarball link in setup.py, added py 3.6 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ae1ca8bf2..d8c598726 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ setup( author='Wenzel Jakob', author_email='wenzel@inf.ethz.ch', url='https://github.com/wjakob/pybind11', - download_url='https://github.com/wjakob/pybind11/tarball/v1.0', + download_url='https://github.com/wjakob/pybind11/tarball/v' + __version__, packages=['pybind11'], license='BSD', headers=[ @@ -41,6 +41,7 @@ setup( 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'License :: OSI Approved :: BSD License', ], keywords='C++11, Python bindings',