From: W. Trevor King Date: Tue, 2 Aug 2016 04:24:52 +0000 (-0700) Subject: setup.py: Claim compatibility through 3.5 X-Git-Tag: v0.3~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=d792fd52667563a306efc1dcc8d6e392043a6b2d;p=igor.git setup.py: Claim compatibility through 3.5 I haven't actually tested all of these, but I doubt I did anything so magical that support has been dropped in the meantime ;). It would be nice to drop the doctests [1], but until then testing Python 3 is going to be difficult. [1]: https://github.com/wking/igor/pull/1#issuecomment-190309065 --- diff --git a/setup.py b/setup.py index 2ff3273..8d0813b 100644 --- a/setup.py +++ b/setup.py @@ -47,6 +47,9 @@ setup(name=package_name, 'Programming Language :: Python', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Scientific/Engineering', 'Topic :: Software Development :: Libraries :: Python Modules', ],