@@ -153,7 +153,7 @@ poetry install --without test,docs
153
153
```
154
154
155
155
{{% note %}}
156
- The ` --no-dev ` option is now deprecated. You should use the ` --without dev ` or ` --only main ` notation instead.
156
+ The ` --no-dev ` option is now deprecated. You should use the ` --only main ` or ` --without dev ` notation instead.
157
157
{{% /note %}}
158
158
159
159
You can also select optional dependency groups with the ` --with ` option.
@@ -262,7 +262,7 @@ is set to `false` because the old installer always compiles source files to byte
262
262
* ` --extras (-E) ` : Features to install (multiple values allowed).
263
263
* ` --all-extras ` : Install all extra features (conflicts with --extras).
264
264
* ` --compile ` : Compile Python source files to bytecode.
265
- * ` --no-dev ` : Do not install dev dependencies. (** Deprecated** , use ` --without dev ` or ` --only main ` instead)
265
+ * ` --no-dev ` : Do not install dev dependencies. (** Deprecated** , use ` --only main ` or ` --without dev ` instead)
266
266
* ` --remove-untracked ` : Remove dependencies not presented in the lock file. (** Deprecated** , use ` --sync ` instead)
267
267
268
268
{{% note %}}
@@ -301,7 +301,7 @@ You can do this using the `add` command.
301
301
* ` --with ` : The optional dependency groups to include.
302
302
* ` --only ` : The only dependency groups to include.
303
303
* ` --dry-run ` : Outputs the operations but will not execute anything (implicitly enables --verbose).
304
- * ` --no-dev ` : Do not update the development dependencies. (** Deprecated** , use ` --without dev ` or ` --only main ` instead)
304
+ * ` --no-dev ` : Do not update the development dependencies. (** Deprecated** , use ` --only main ` or ` --without dev ` instead)
305
305
* ` --lock ` : Do not perform install (only update the lockfile).
306
306
307
307
{{% note %}}
@@ -509,7 +509,7 @@ required by
509
509
* ` --why ` : When showing the full list, or a ` --tree ` for a single package, display whether they are a direct dependency or required by other packages.
510
510
* ` --with ` : The optional dependency groups to include.
511
511
* ` --only ` : The only dependency groups to include.
512
- * ` --no-dev ` : Do not list the dev dependencies. (** Deprecated** , use ` --without dev ` or ` --only main ` instead)
512
+ * ` --no-dev ` : Do not list the dev dependencies. (** Deprecated** , use ` --only main ` or ` --without dev ` instead)
513
513
* ` --tree ` : List the dependencies as a tree.
514
514
* ` --latest (-l) ` : Show the latest version.
515
515
* ` --outdated (-o) ` : Show the latest version but only for packages that are outdated.
0 commit comments