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

Add automatic .py extension for script initialization #12328

Closed
wants to merge 2 commits into from

Conversation

chhoumann
Copy link
Contributor

Summary

When initializing a script with uv init --script, automatically append .py extension if the user didn't specify it.

This is a quality-of-life feature that follows the principle of least surprise. Most users would expect a Python script to have a .py extension, and many may forget to add it manually. At least, I did prior to making this PR :)

Test Plan

Added a new test case init_script_auto_py_extension() that verifies the behavior works correctly:

  • Verified the extension is correctly added, and the file is created with the right path
  • Confirmed the output messages to the user correctly display the path with extension

When initializing a script with , automatically append .py extension
if the user didn't specify it.
@chhoumann
Copy link
Contributor Author

chhoumann commented Mar 20, 2025

I noticed the test cache_prune::prune_unzipped is failing, but I believe it's unrelated to the changes in this PR. PR #12327 (which adds UV_PROJECT environment variable support) is seeing the same test failure despite making completely different changes.

My local testing shows the new init_script_auto_py_extension test passes, and the functionality works as expected.

The error message in the failing test changed slightly in format. Happy to help address this if needed, or we could handle it in a separate PR if that would be preferred. Thanks for reviewing!

charliermarsh pushed a commit that referenced this pull request Mar 20, 2025
…ormat (#12330)

## Summary

Fixes the failing `cache_prune::prune_unzipped` test that was causing CI
failures in my other PR (#12328) and others like PR #12327.

The error message format changed to show a specific version constraint
(`iniconfig<=2.0.0`) rather than the generic 'all versions' message.
This PR updates the test to expect the new, more specific error message.

## Test Plan
Ran `cargo test -p uv cache_prune::prune_unzipped` to verify the test
now passes.
@zanieb
Copy link
Member

zanieb commented Mar 20, 2025

I think if we want to do this, we'll probably want to do it everywhere --script is accepted? I'm not sure how I feel. It's a bit easier to sell here, but the lack of consistency would bother me. Let me try to get some opinions from the rest of the team.

@zanieb
Copy link
Member

zanieb commented Mar 21, 2025

I think we're leaning away from this for now — it's valid to write Python scripts without the extension. Thanks for contributing though.

@zanieb zanieb closed this Mar 21, 2025
@chhoumann
Copy link
Contributor Author

Thanks for considering this idea! Totally understand that Python doesn't require extensions. Appreciate the feedback and looking forward to finding other ways to contribute to uv!

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.

2 participants