@@ -33,6 +33,7 @@ fn help() {
3333 venv Create a virtual environment
3434 build Build Python packages into source distributions and wheels
3535 publish Upload distributions to an index
36+ workspace Manage workspaces
3637 cache Manage uv's cache
3738 self Manage the uv executable
3839 generate-shell-completion Generate shell completion
@@ -98,26 +99,27 @@ fn help_flag() {
9899 Usage: uv [OPTIONS] <COMMAND>
99100
100101 Commands:
101- auth Manage authentication
102- run Run a command or script
103- init Create a new project
104- add Add dependencies to the project
105- remove Remove dependencies from the project
106- version Read or update the project's version
107- sync Update the project's environment
108- lock Update the project's lockfile
109- export Export the project's lockfile to an alternate format
110- tree Display the project's dependency tree
111- format Format Python code in the project
112- tool Run and install commands provided by Python packages
113- python Manage Python versions and installations
114- pip Manage Python packages with a pip-compatible interface
115- venv Create a virtual environment
116- build Build Python packages into source distributions and wheels
117- publish Upload distributions to an index
118- cache Manage uv's cache
119- self Manage the uv executable
120- help Display documentation for a command
102+ auth Manage authentication
103+ run Run a command or script
104+ init Create a new project
105+ add Add dependencies to the project
106+ remove Remove dependencies from the project
107+ version Read or update the project's version
108+ sync Update the project's environment
109+ lock Update the project's lockfile
110+ export Export the project's lockfile to an alternate format
111+ tree Display the project's dependency tree
112+ format Format Python code in the project
113+ tool Run and install commands provided by Python packages
114+ python Manage Python versions and installations
115+ pip Manage Python packages with a pip-compatible interface
116+ venv Create a virtual environment
117+ build Build Python packages into source distributions and wheels
118+ publish Upload distributions to an index
119+ workspace Manage workspaces
120+ cache Manage uv's cache
121+ self Manage the uv executable
122+ help Display documentation for a command
121123
122124 Cache options:
123125 -n, --no-cache Avoid reading from or writing to the cache, instead using a temporary
@@ -178,26 +180,27 @@ fn help_short_flag() {
178180 Usage: uv [OPTIONS] <COMMAND>
179181
180182 Commands:
181- auth Manage authentication
182- run Run a command or script
183- init Create a new project
184- add Add dependencies to the project
185- remove Remove dependencies from the project
186- version Read or update the project's version
187- sync Update the project's environment
188- lock Update the project's lockfile
189- export Export the project's lockfile to an alternate format
190- tree Display the project's dependency tree
191- format Format Python code in the project
192- tool Run and install commands provided by Python packages
193- python Manage Python versions and installations
194- pip Manage Python packages with a pip-compatible interface
195- venv Create a virtual environment
196- build Build Python packages into source distributions and wheels
197- publish Upload distributions to an index
198- cache Manage uv's cache
199- self Manage the uv executable
200- help Display documentation for a command
183+ auth Manage authentication
184+ run Run a command or script
185+ init Create a new project
186+ add Add dependencies to the project
187+ remove Remove dependencies from the project
188+ version Read or update the project's version
189+ sync Update the project's environment
190+ lock Update the project's lockfile
191+ export Export the project's lockfile to an alternate format
192+ tree Display the project's dependency tree
193+ format Format Python code in the project
194+ tool Run and install commands provided by Python packages
195+ python Manage Python versions and installations
196+ pip Manage Python packages with a pip-compatible interface
197+ venv Create a virtual environment
198+ build Build Python packages into source distributions and wheels
199+ publish Upload distributions to an index
200+ workspace Manage workspaces
201+ cache Manage uv's cache
202+ self Manage the uv executable
203+ help Display documentation for a command
201204
202205 Cache options:
203206 -n, --no-cache Avoid reading from or writing to the cache, instead using a temporary
@@ -892,6 +895,7 @@ fn help_unknown_subcommand() {
892895 venv
893896 build
894897 publish
898+ workspace
895899 cache
896900 self
897901 generate-shell-completion
@@ -921,6 +925,7 @@ fn help_unknown_subcommand() {
921925 venv
922926 build
923927 publish
928+ workspace
924929 cache
925930 self
926931 generate-shell-completion
@@ -979,6 +984,7 @@ fn help_with_global_option() {
979984 venv Create a virtual environment
980985 build Build Python packages into source distributions and wheels
981986 publish Upload distributions to an index
987+ workspace Manage workspaces
982988 cache Manage uv's cache
983989 self Manage the uv executable
984990 generate-shell-completion Generate shell completion
@@ -1102,6 +1108,7 @@ fn help_with_no_pager() {
11021108 venv Create a virtual environment
11031109 build Build Python packages into source distributions and wheels
11041110 publish Upload distributions to an index
1111+ workspace Manage workspaces
11051112 cache Manage uv's cache
11061113 self Manage the uv executable
11071114 generate-shell-completion Generate shell completion
0 commit comments