You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
User may want to fully sync the environment, but install the project in editable mode.
Example 2 and 3 can be achieved with workaround if we have 1:
2. Use uv pip install -r pyproject.toml on the synced venv.
3. Use uv pip install -e . on the synced venv.
I would like to know do we have a way to only create venv based on requires-python in pyproject.toml?
The text was updated successfully, but these errors were encountered:
uv sync
can be roughly divided into three steps:project.requires-python
in pyproject.toml)project.dependencies
in pyproject.toml)User may demand more specific behaviors in the sync process. For example:
project.requires-python
in pyproject.toml)Example 2 and 3 can be achieved with workaround if we have 1:
2. Use
uv pip install -r pyproject.toml
on the synced venv.3. Use
uv pip install -e .
on the synced venv.I would like to know do we have a way to only create venv based on
requires-python
in pyproject.toml?The text was updated successfully, but these errors were encountered: