diff options
-rw-r--r-- | .appveyor.yaml | 2 | ||||
-rw-r--r-- | setup.py | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.appveyor.yaml b/.appveyor.yaml index f11d6f7..eecbfd8 100644 --- a/.appveyor.yaml +++ b/.appveyor.yaml @@ -17,7 +17,7 @@ environment: install: - | - %PYTHON%\python.exe -m pip install --upgrade -q pip wheel + %PYTHON%\python.exe -m pip install --upgrade -q pip wheel setuptools %PYTHON%\python.exe -m pip list --format columns # only used when compiling (for Python with C extensions this is done in the after_test) @@ -712,11 +712,11 @@ class NameSpacePackager(object): return None if platform.python_implementation() == 'Jython': return None - if sys.platform == "win32" and not self._pkg_data.get('win32bin'): - return None - if sys.platform == "win32": - if os.getenv("RUAMEL_FORCE_EXT_BUILD") is None: - return None + # if sys.platform == "win32" and not self._pkg_data.get('win32bin'): + # return None + # if sys.platform == "win32": + # if os.getenv("RUAMEL_FORCE_EXT_BUILD") is None: + # return None try: plat = sys.argv.index('--plat-name') if 'win' in sys.argv[plat + 1]: |