fix: removed distutils dependency in setup.py per PEP 632
This commit is contained in:
parent
7835492b09
commit
9f41936861
17
setup.py
17
setup.py
|
@ -6,12 +6,25 @@ import os
|
||||||
import re
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
from distutils.util import strtobool
|
|
||||||
|
|
||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
from setuptools.command.test import test as TestCommand
|
from setuptools.command.test import test as TestCommand
|
||||||
|
|
||||||
|
|
||||||
|
def strtobool(query: str) -> bool:
|
||||||
|
"""
|
||||||
|
reimplement strtobool per PEP 632 and python 3.12 deprecation
|
||||||
|
|
||||||
|
True values are y, yes, t, true, on and 1; false values are n, no, f,
|
||||||
|
false, off and 0. Raises ValueError if val is anything else.
|
||||||
|
"""
|
||||||
|
if query.lower() in ["y", "yes", "t", "true", "on", "1"]:
|
||||||
|
return True
|
||||||
|
elif query.lower() in ["n", "no", "f", "false", "off", "0"]:
|
||||||
|
return False
|
||||||
|
else:
|
||||||
|
raise ValueError
|
||||||
|
|
||||||
|
|
||||||
class PyTest(TestCommand):
|
class PyTest(TestCommand):
|
||||||
"""
|
"""
|
||||||
Provide a Test runner to be used from setup.py to run unit tests
|
Provide a Test runner to be used from setup.py to run unit tests
|
||||||
|
|
Loading…
Reference in New Issue
Block a user