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
Prelim testing of my app on python3.13 threw this error from core.py for u folks to consider:
ModuleNotFoundError: No module named 'pipes'
I haven't researched it further. Has anyone tinkered with FIRE in 3.13 yet?
The text was updated successfully, but these errors were encountered:
I got the same error here and I am moving down to 3.12 for now.
Sorry, something went wrong.
Replacing pipes with shlex should fix this, see ansible/ansible-runner@72dd9ce.
A dirty fix would be:
sed -i 's/pipes/shlex/g' <your-lib-folder>/python3.13/site-packages/fire/*.py
I guess drafting a PR with this would make this issue flow forward.
Although this seems like a great patch :))
No branches or pull requests
Prelim testing of my app on python3.13 threw this error from core.py for u folks to consider:
I haven't researched it further. Has anyone tinkered with FIRE in 3.13 yet?
The text was updated successfully, but these errors were encountered: