absurdfarce commented on code in PR #1264: URL: https://github.com/apache/cassandra-python-driver/pull/1264#discussion_r2767802899
########## setup.py: ########## @@ -16,131 +16,20 @@ import os import sys -import warnings -import ez_setup -ez_setup.use_setuptools() - -from setuptools import setup -from distutils.command.build_ext import build_ext -from distutils.core import Extension -from distutils.errors import (CCompilerError, DistutilsPlatformError, - DistutilsExecError) -from distutils.cmd import Command - -try: - import subprocess - has_subprocess = True -except ImportError: - has_subprocess = False +from pathlib import Path +from setuptools import setup, Extension +import toml Review Comment: There's a bit more to it than what's posted above... I've implemented the same idea in a new commit. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]

