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

Check for stdout/stderr in case file descriptor is closed #1620

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

julien-lecomte
Copy link

Summary of changes

File descrptors may be closed when using pipx, such is a case when using the bash specific file redirections clauses >&- and/or "2&-`

Test plan

Before:

$ pipx install bumpversion2 >&-
Traceback (most recent call last):
  File "/home/julien/.local/bin/pipx", line 5, in <module>
    from pipx.main import cli
  File "/home/julien/.local/pipx/venvs/pipx/lib/python3.11/site-packages/pipx/main.py", line 22, in <module>
    from pipx import commands, constants, paths
  File "/home/julien/.local/pipx/venvs/pipx/lib/python3.11/site-packages/pipx/commands/__init__.py", line 3, in <module>
    from pipx.commands.inject import inject
  File "/home/julien/.local/pipx/venvs/pipx/lib/python3.11/site-packages/pipx/commands/inject.py", line 9, in <module>
    from pipx.colors import bold
  File "/home/julien/.local/pipx/venvs/pipx/lib/python3.11/site-packages/pipx/colors.py", line 9, in <module>
    PRINT_COLOR = sys.stdout.isatty()
                  ^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'isatty'

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant