This is an automated email from the ASF dual-hosted git repository. damccorm pushed a commit to branch users/damccorm/setup_file in repository https://gitbox.apache.org/repos/asf/beam.git
commit f26f1369a78a1cf72ea135d577380f1caea99011 Author: Danny Mccormick <[email protected]> AuthorDate: Fri Jan 16 15:43:58 2026 -0500 Change setup.py to use setuptools --- sdks/python/apache_beam/examples/complete/juliaset/setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/sdks/python/apache_beam/examples/complete/juliaset/setup.py b/sdks/python/apache_beam/examples/complete/juliaset/setup.py index c3a9fe04376..721c4c5e3c4 100644 --- a/sdks/python/apache_beam/examples/complete/juliaset/setup.py +++ b/sdks/python/apache_beam/examples/complete/juliaset/setup.py @@ -31,10 +31,7 @@ import subprocess import setuptools -# It is recommended to import setuptools prior to importing distutils to avoid -# using legacy behavior from distutils. -# https://setuptools.readthedocs.io/en/latest/history.html#v48-0-0 -from distutils.command.build import build as _build # isort:skip +from setuptools.command.build import build as _build # isort:skip # This class handles the pip install mechanism.
