Skip to content

Change pip install command to editable mode#223

Open
beniroquai wants to merge 1 commit intomasterfrom
beniroquai-patch-1
Open

Change pip install command to editable mode#223
beniroquai wants to merge 1 commit intomasterfrom
beniroquai-patch-1

Conversation

@beniroquai
Copy link
Collaborator

No description provided.

Copilot AI review requested due to automatic review settings February 9, 2026 14:34
Copy link
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates developer setup instructions to install UC2-REST in editable mode when using uv pip, aligning with a source-based development workflow.

Changes:

  • Modify the README’s UC2-REST installation command to use editable installs.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

git clone https://github.com/openuc2/UC2-REST
cd UC2-REST
uv pip install .
uv pip install . -e
Copy link

Copilot AI Feb 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

uv pip install . -e is not valid option ordering for pip/uv; -e/--editable must precede the path (uv pip install -e .). As written, this will likely be interpreted as trying to install a package named -e or error out, so the README command will fail for developers.

Suggested change
uv pip install . -e
uv pip install -e .

Copilot uses AI. Check for mistakes.
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