Skip to content
New issue

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

Commiting to a fork of this repo on a mac or linux does not work (using git) #12549

Open
XenoBytesX opened this issue Jan 30, 2025 · 2 comments
Labels
awaiting triage Awaiting triage from a maintainer

Comments

@XenoBytesX
Copy link
Contributor

What would you like to share?

Commiting to a fork of this repo on a mac or linux using git cli does not work because of pre-commit

In scripts/validate_files.py, the first line is:-
#!python

When pre-commit runs the validate_files hook, it uses python but python is there on windows.
On macos and linux, its python3. I also tried using alias python = python3 but it still does not work

Additional information

No response

@XenoBytesX XenoBytesX added the awaiting triage Awaiting triage from a maintainer label Jan 30, 2025
@joey-the-33rd
Copy link

Bug Report

Title: pre-commit hook validate_files.py fails on macOS/Linux due to incorrect Python interpreter

Description:

The pre-commit hook validate_files.py located in the scripts/ directory fails when committing changes on macOS and Linux systems. This is because the shebang line #!/usr/bin/env python in the script forces the use of python, which often points to Python 2 on these systems. Python 2 is not guaranteed to be present, and the script may not be compatible with it. Aliasing python to python3 does not resolve the issue as the shebang line explicitly calls python.

Steps to Reproduce:

  1. Set up a fork of the repository on a macOS or Linux system.
  2. Install pre-commit.
  3. Attempt to commit any changes.
  4. The validate_files hook will fail, displaying an error related to Python 2 not being found or the script not being compatible with Python 2.

Expected Result:

The validate_files hook should execute successfully using Python 3 on macOS and Linux systems.

Actual Result:

The validate_files hook fails due to the incorrect Python interpreter being called.

Possible cause:

The shebang line #!/usr/bin/env python in scripts/validate_files.py forces the use of python which often defaults to Python 2 on macOS/Linux.

Proposed Solution:

Modify the shebang line in scripts/validate_files.py to use #!/usr/bin/env python3 to explicitly call Python 3, or use #!/usr/bin/env python and ensure the script is compatible with both Python 2 and Python 3. Ideally, the first option is preferred.

Environment:

  • Operating Systems: macOS, Linux
  • pre-commit version: (Please specify the version used)
  • Git version: (Please specify the version used)

Additional Information:

  • The issue does not occur on Windows systems where python is more likely to refer to a Python 3 installation.
  • Attempting to alias python to python3 in the shell does not resolve the issue.

@XenoBytesX
Copy link
Contributor Author

If we change the shebang to python3 instead of python then it would stop working for windows

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
awaiting triage Awaiting triage from a maintainer
Projects
None yet
Development

No branches or pull requests

2 participants