Skip to content

Commit 69f8175

Browse files
committed
Change the inline keyword to packages for better readability
1 parent d821473 commit 69f8175

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

docs/options.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1353,7 +1353,7 @@ Options can be supplied after the name.
13531353

13541354
> Control the versions of the tools cibuildwheel uses
13551355
1356-
Options: `pinned` `latest` `inline: SPECIFIER...` `<your constraints file>`
1356+
Options: `pinned` `latest` `packages: SPECIFIER...` `<your constraints file>`
13571357

13581358
Default: `pinned`
13591359

@@ -1369,7 +1369,7 @@ fixes that can't wait for a new cibuildwheel release.
13691369
To control the versions of dependencies yourself, you can supply a [pip
13701370
constraints](https://pip.pypa.io/en/stable/user_guide/#constraints-files) file
13711371
here and it will be used instead. Alternatively, you can list constraint
1372-
specifiers inline with the `inline: SPECIFIER...` syntax.
1372+
specifiers inline with the `packages: SPECIFIER...` syntax.
13731373

13741374
!!! note
13751375
If you need different dependencies for each python version, provide them
@@ -1402,10 +1402,10 @@ Platform-specific environment variables are also available:<br/>
14021402
CIBW_DEPENDENCY_VERSIONS: ./constraints.txt
14031403

14041404
# Specify requirements inline
1405-
CIBW_DEPENDENCY_VERSIONS: "inline: auditwheel==6.2.0"
1405+
CIBW_DEPENDENCY_VERSIONS: "packages: auditwheel==6.2.0"
14061406

14071407
# Choose a specific pyodide-build version
1408-
CIBW_DEPENDENCY_VERSIONS_PYODIDE: "inline: pyodide-build==0.29.1"
1408+
CIBW_DEPENDENCY_VERSIONS_PYODIDE: "packages: pyodide-build==0.29.1"
14091409
```
14101410

14111411
!!! tab examples "pyproject.toml"
@@ -1422,11 +1422,11 @@ Platform-specific environment variables are also available:<br/>
14221422
dependency-versions = "./constraints.txt"
14231423

14241424
# Specify requirements inline
1425-
dependency-versions = { inline = ["auditwheel==6.2.0"] }
1425+
dependency-versions = { packages = ["auditwheel==6.2.0"] }
14261426

14271427
[tool.cibuildwheel.pyodide]
14281428
# Choose a specific pyodide-build version
1429-
dependency-versions = { inline = ["pyodide-build==0.29.1"] }
1429+
dependency-versions = { packages = ["pyodide-build==0.29.1"] }
14301430
```
14311431

14321432

0 commit comments

Comments
 (0)