Skip to content

Commit 8455a42

Browse files
committed
Update classifiers include Python 3.5.
And remove 2.6 since that's no longer routinely tested.
1 parent 95d194a commit 8455a42

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,7 @@ def _check_output(*popenargs, **kwargs):
285285
return output.decode("ascii")
286286
return output
287287

288+
288289
def _get_interop_filename():
289290
"""interopXX.cs is auto-generated as part of the build.
290291
For common windows platforms pre-generated files are included
@@ -326,11 +327,11 @@ def _get_interop_filename():
326327
url='http://pythonnet.github.io/',
327328
author="Python for .Net developers",
328329
classifiers=[
329-
'Programming Language :: Python :: 2.6',
330330
'Programming Language :: Python :: 2.7',
331331
'Programming Language :: Python :: 3.2',
332332
'Programming Language :: Python :: 3.3',
333333
'Programming Language :: Python :: 3.4',
334+
'Programming Language :: Python :: 3.5',
334335
'Programming Language :: C#',
335336
'License :: OSI Approved :: Zope Public License',
336337
'Development Status :: 5 - Production/Stable',
@@ -355,3 +356,4 @@ def _get_interop_filename():
355356
},
356357
setup_requires=setup_requires
357358
)
359+

0 commit comments

Comments
 (0)