environment: matrix: - PYTHON: C:\Python266 # - PYTHON: C:\Python27 # - PYTHON: C:\Python33 # - PYTHON: C:\Python34 # - PYTHON: C:\Python35 - PYTHON: C:\Python266-x64 # - PYTHON: C:\Python27-x64 # - PYTHON: C:\Python33-x64 # DISTUTILS_USE_SDK: '1' # - PYTHON: 'C:\Python34-x64' # DISTUTILS_USE_SDK: '1' # - PYTHON: 'C:\Python35-x64' install: - > %PYTHON%\python.exe -c "import sys, os; os.system('%s -c \\"import urllib2; open(\\'c:\\\\get-pip.py\\', \\'w\\'). write(urllib2.urlopen(\\'https://bootstrap.pypa.io/get-pip.py\\').read())\\"' % sys.executable) if sys.version_info < (2, 7) else True" - > %PYTHON%\python.exe -c "import sys, os; os.system('%s c:\\get-pip.py' % sys.executable) if sys.version_info < (2, 7) else True" - '%PYTHON%\python.exe -m pip install wheel' build: off test_script: - echo Skipped for now after_test: - '%PYTHON%\python.exe setup.py bdist_wheel' artifacts: # bdist_wheel puts your built wheel in the dist directory - path: dist\*