From b17362d3028c42ffbf00f17c29cc886388d6d6c4 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Mon, 24 Jul 2017 21:12:06 +0100 Subject: [PATCH 1/2] mypy_extensions doesn't use any posix only features --- extensions/setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/extensions/setup.py b/extensions/setup.py index b0ffbc503d55..8af6f00ef54a 100644 --- a/extensions/setup.py +++ b/extensions/setup.py @@ -19,7 +19,6 @@ 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', - 'Operating System :: POSIX', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', @@ -39,7 +38,6 @@ author_email='jukka.lehtosalo@iki.fi', url='http://www.mypy-lang.org/', license='MIT License', - platforms=['POSIX'], py_modules=['mypy_extensions'], classifiers=classifiers, ) From 8de1164d1d076d7dc078ad54845244b9b5976452 Mon Sep 17 00:00:00 2001 From: Thomas Grainger Date: Mon, 24 Jul 2017 21:13:57 +0100 Subject: [PATCH 2/2] mypy doesn't use any posix only features except in tests, where it uses posixpath --- setup.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/setup.py b/setup.py index da4581c6e3fd..0edad29878d0 100644 --- a/setup.py +++ b/setup.py @@ -82,7 +82,6 @@ def run(self): 'Environment :: Console', 'Intended Audience :: Developers', 'License :: OSI Approved :: MIT License', - 'Operating System :: POSIX', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', @@ -102,7 +101,6 @@ def run(self): author_email='jukka.lehtosalo@iki.fi', url='http://www.mypy-lang.org/', license='MIT License', - platforms=['POSIX'], package_dir=package_dir, py_modules=[], packages=['mypy'],