setup.py: use packaging instead of wheel.vendored.packaging (#13083)

This commit is contained in:
Chih-Hsuan Yen 2022-09-24 23:32:44 +08:00 committed by GitHub
parent 2cc4e7e5c2
commit 9abd6e3a30
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -14,9 +14,9 @@ from os import environ, getcwd, path, popen, remove
from pathlib import Path
from shutil import copyfile
from packaging.tags import sys_tags
from setuptools import Extension, setup
from setuptools.command.install import install as InstallCommandBase
from wheel.vendored.packaging.tags import sys_tags
nightly_build = False
package_name = "onnxruntime"