colcon / colcon-python-setup-py

Extension for colcon to support Python packages with the metadata in the setup.py file
http://colcon.readthedocs.io
Apache License 2.0
2 stars 7 forks source link

setuptools 72.2.0 breaks colcon-python-setup-py #58

Open lianghongzhuo opened 3 weeks ago

lianghongzhuo commented 3 weeks ago

similar to https://github.com/colcon/colcon-python-setup-py/issues/56 but this time, setuptools removes: setuptools.extern.packaging and I get error: ModuleNotFoundError: No module named 'setuptools.extern.packaging'

I fixed it by running: pip install setuptools=70.1.1

lianghongzhuo commented 3 weeks ago

the wrong import still in master branch: https://github.com/colcon/colcon-python-setup-py/blob/master/colcon_python_setup_py/package_identification/python_setup_py.py#L253

lianghongzhuo commented 1 week ago

any updates?