Fix hang in unit testing

Because the unit tests use multiprocessing, we must avoid launching
setuptools again when we spawn a child process.
This commit is contained in:
Zane Bitter 2023-05-25 01:06:55 +12:00
commit e634e76b33

View file

@ -1,3 +1,4 @@
from setuptools import setup
setup(install_requires=["setuptools>=30.3.0"])
if __name__ == '__main__':
setup(install_requires=["setuptools>=30.3.0"])