Skip to content

Commit f479b5d

Browse files
committed
fix: Maturin typos
1 parent 0bd95fd commit f479b5d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/projects.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ Add the `polylith-cli` to the workspace `pyproject.toml` configuration.
212212

213213
``` toml
214214
[project.optional-dependencies]
215-
tests = [
215+
dev = [
216216
"polylith-cli",
217217
]
218218
```

docs/setup.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ Add the `polylith-cli` as a development dependency to your `pyproject.toml` file
223223

224224
``` toml
225225
[project.optional-dependencies]
226-
tests = [
226+
dev = [
227227
"polylith-cli",
228228
]
229229
```
@@ -246,7 +246,7 @@ poly create workspace --name my_namespace --theme loose
246246
Make Maturin aware of the way Polylith organizes source code by adding this to the `pyproject.toml`:
247247
``` toml
248248
[tool.maturin]
249-
include = ["bases", "components"]
249+
include = ["bases", "components", "development", "."]
250250
```
251251

252252
`--name` (required) the workspace name, that will be used as the single top namespace for all bricks.

0 commit comments

Comments
 (0)