We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
setuptools==78.1.0
python 3.10
Ubuntu 22.04 ARM64
I am building rosmaster
rosmaster
It creates a package then calls setup(...) for the install part.
setup(...)
Source: https://github.com/ros/ros_comm/tree/noetic-devel/tools/rosmaster
The shebangs #!/usr/bin/env python are being replaced by #!python making the scripts non working.
#!/usr/bin/env python
#!python
This seems to be related to
setuptools/setuptools/_distutils/command/build_scripts.py
Lines 105 to 113 in 6ead555
The shebangs are not modified
pip install rosinstall_generator rosinstall_generator --rosdistro noetic --deps --tar \ rosmaster > rosmaster.rosinstall && \ mkdir -p src && \ vcs import src < rosmaster.rosinstall ROS_VERSION=1 ./src/catkin/bin/catkin_make_isolated --install \ -DCMAKE_BUILD_TYPE=Release \ -DPYTHON_EXECUTABLE=/usr/bin/python3
$ cat install_isolated/bin/rosmaster #!python [...]
The text was updated successfully, but these errors were encountered:
Reverting setuptools with pip install setuptools==75.8.2 fixes it.
pip install setuptools==75.8.2
The commit is c712663
Sorry, something went wrong.
No branches or pull requests
setuptools version
setuptools==78.1.0
Python version
python 3.10
OS
Ubuntu 22.04 ARM64
Additional environment information
I am building
rosmaster
It creates a package then calls
setup(...)
for the install part.Source: https://github.com/ros/ros_comm/tree/noetic-devel/tools/rosmaster
Description
The shebangs
#!/usr/bin/env python
are being replaced by#!python
making the scripts non working.This seems to be related to
setuptools/setuptools/_distutils/command/build_scripts.py
Lines 105 to 113 in 6ead555
Expected behavior
The shebangs are not modified
How to Reproduce
Output
The text was updated successfully, but these errors were encountered: