0
0
mirror of https://github.com/llvm/llvm-project.git synced 2025-04-21 15:56:53 +00:00

Revert "Replace distutils.version with looseversion since the former was deprecated in python 3.10 and removed in 3.12." ()

Reverts  because it breaks a bunch of build bots.
This commit is contained in:
Jonas Devlieghere 2024-07-20 14:57:23 -07:00 committed by GitHub
parent efa833dd0f
commit 2572a76f23
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -4,7 +4,8 @@ import re
import subprocess
import sys
from looseversion import LooseVersion
# TODO: LooseVersion is undocumented; use something else.
from distutils.version import LooseVersion
import lit.formats
import lit.util