简体   繁体   中英

Python wheels bdist_wheel

I'm trying to generate a wheel which is a pre-built binary module. It uses *.dll's that have been built in vs2015.

Wheel names take the form:

name-version-cp36-none-win_amd64.whl

At the supported tags are:

import pip._internal; print(pip._internal.pep425tags.get_supported()) [('cp36', 'cp36m', 'win_amd64'), ('cp36', 'none', 'win_amd64'), ('py3', 'none', 'win_amd64'), ('cp36', 'none', 'any'), ('cp3', 'none', 'any'), ('py36', 'none', 'any'), ('py3', 'none', 'any'), ('py35', 'none', 'any'), ('py34', 'none', 'any'), ('py33', 'none', 'any'), ('py32', 'none', 'any'), ('py31', 'none', 'any'), ('py30', 'none', 'any')]

There doesn't seem to be a way to specific what compiler a user might need. For instance, I have different variants of this because I ship it for vs2013, vs2010 etc. How do I differentiate between these different compilers?

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM