Skip to content

Commit ee1159a

Browse files
committed
docs: fix links
Signed-off-by: Henry Schreiner <[email protected]>
1 parent 402b8c8 commit ee1159a

File tree

6 files changed

+15
-16
lines changed

6 files changed

+15
-16
lines changed

docs/build.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ the current workaround).
236236
scikit-build-core.
237237

238238
[repairwheel]: https://github.com/jvolkman/repairwheel
239-
[cibuildwheel]: https://cibuildwheel.readthedocs.io
239+
[cibuildwheel]: https://cibuildwheel.pypa.io
240240
[compatibility tags]: https://packaging.python.org/en/latest/specifications/binary-distribution-format
241241

242242
<!-- prettier-ignore-end -->

docs/configuration.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ Scikit-build-core supports dynamic metadata with three built-in plugins.
545545

546546
:::{tab} Setuptools-scm
547547

548-
You can use [setuptools-scm](https://github.com/pypa/setuptools_scm) to pull the
548+
You can use [setuptools-scm](https://github.com/pypa/setuptools-scm) to pull the
549549
version from VCS:
550550

551551
```toml
@@ -562,9 +562,9 @@ write_to = "src/package/_version.py"
562562
```
563563

564564
This sets the python project version according to
565-
[git tags](https://github.com/pypa/setuptools_scm/blob/fb261332d9b46aa5a258042d85baa5aa7b9f4fa2/README.rst#default-versioning-scheme)
565+
[git tags](https://github.com/pypa/setuptools-scm/blob/fb261332d9b46aa5a258042d85baa5aa7b9f4fa2/README.rst#default-versioning-scheme)
566566
or a
567-
[`.git_archival.txt`](https://github.com/pypa/setuptools_scm/blob/fb261332d9b46aa5a258042d85baa5aa7b9f4fa2/README.rst#git-archives)
567+
[`.git_archival.txt`](https://github.com/pypa/setuptools-scm/blob/fb261332d9b46aa5a258042d85baa5aa7b9f4fa2/README.rst#git-archives)
568568
file, or equivalents for other VCS systems.
569569

570570
If you need to set the CMake project version without scikit-build-core (which

docs/data/projects.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pypi = "pyzmq"
1111
github = "zeromq/pyzmq"
1212

1313
[[project]]
14-
pypi = "LightGBM"
14+
pypi = "lightgbm"
1515
github = "microsoft/LightGBM"
1616
path = "python-package/pyproject.toml"
1717

@@ -45,7 +45,7 @@ github = "scikit-hep/awkward"
4545
path = "awkward-cpp/pyproject.toml"
4646

4747
[[project]]
48-
pypi = "openexr"
48+
pypi = "OpenEXR"
4949
github = "AcademySoftwareFoundation/OpenEXR"
5050

5151
[[project]]

docs/examples/downstream/nanobind_example/README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,10 @@ The `.github/workflows` directory contains two continuous integration workflows
4141
for GitHub Actions. The first one (`pip`) runs automatically after each commit
4242
and ensures that packages can be built successfully and that tests pass.
4343

44-
The `wheels` workflow uses
45-
[cibuildwheel](https://cibuildwheel.readthedocs.io/en/stable/) to automatically
46-
produce binary wheels for a large variety of platforms. If a `pypi_password`
47-
token is provided using GitHub Action's _secrets_ feature, this workflow can
48-
even automatically upload packages on PyPI.
44+
The `wheels` workflow uses [cibuildwheel](https://cibuildwheel.pypa.io) to
45+
automatically produce binary wheels for a large variety of platforms. If a
46+
`pypi_password` token is provided using GitHub Action's _secrets_ feature, this
47+
workflow can even automatically upload packages on PyPI.
4948

5049
## License
5150

docs/examples/downstream/pybind11_example/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ import scikit_build_example
5252
scikit_build_example.add(1, 2)
5353
```
5454

55-
[`cibuildwheel`]: https://cibuildwheel.readthedocs.io
55+
[`cibuildwheel`]: https://cibuildwheel.pypa.io

docs/projects.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,30 +26,30 @@ for project in projects["project"]:
2626
* [cmake](https://pypi.org/project/cmake) ([source](https://github.com/scikit-build/cmake-python-distributions/blob/HEAD/pyproject.toml))
2727
* [ninja](https://pypi.org/project/ninja) ([source](https://github.com/scikit-build/ninja-python-distributions/blob/HEAD/pyproject.toml))
2828
* [pyzmq](https://pypi.org/project/pyzmq) ([source](https://github.com/zeromq/pyzmq/blob/HEAD/pyproject.toml))
29-
* [LightGBM](https://pypi.org/project/LightGBM) ([source](https://github.com/microsoft/LightGBM/blob/HEAD/python-package/pyproject.toml))
29+
* [lightgbm](https://pypi.org/project/lightgbm) ([source](https://github.com/microsoft/LightGBM/blob/HEAD/python-package/pyproject.toml))
3030
* [phik](https://pypi.org/project/phik) ([source](https://github.com/kaveio/phik/blob/HEAD/pyproject.toml))
3131
* [clang-format](https://pypi.org/project/clang-format) ([source](https://github.com/ssciwr/clang-format-wheel/blob/HEAD/pyproject.toml))
3232
* [llama-cpp-python](https://pypi.org/project/llama-cpp-python) ([source](https://github.com/abetlen/llama-cpp-python/blob/HEAD/pyproject.toml))
3333
* [coreforecast](https://pypi.org/project/coreforecast) ([source](https://github.com/Nixtla/coreforecast/blob/HEAD/pyproject.toml))
3434
* [sparse-dot-topn](https://pypi.org/project/sparse-dot-topn) ([source](https://github.com/ing-bank/sparse_dot_topn/blob/HEAD/pyproject.toml))
3535
* [spglib](https://pypi.org/project/spglib) ([source](https://github.com/spglib/spglib/blob/HEAD/pyproject.toml))
3636
* [awkward-cpp](https://pypi.org/project/awkward-cpp) ([source](https://github.com/scikit-hep/awkward/blob/HEAD/awkward-cpp/pyproject.toml))
37-
* [openexr](https://pypi.org/project/openexr) ([source](https://github.com/AcademySoftwareFoundation/OpenEXR/blob/HEAD/pyproject.toml))
37+
* [OpenEXR](https://pypi.org/project/OpenEXR) ([source](https://github.com/AcademySoftwareFoundation/OpenEXR/blob/HEAD/pyproject.toml))
3838
* [iminuit](https://pypi.org/project/iminuit) ([source](https://github.com/scikit-hep/iminuit/blob/HEAD/pyproject.toml))
3939
* [boost-histogram](https://pypi.org/project/boost-histogram) ([source](https://github.com/scikit-hep/iminuit/blob/HEAD/pyproject.toml))
4040
* [astyle](https://pypi.org/project/astyle) ([source](https://github.com/Freed-Wu/astyle-wheel/blob/HEAD/pyproject.toml))
4141
* [lammps](https://pypi.org/project/lammps) ([source](https://github.com/njzjz/lammps-wheel/blob/HEAD/pyproject.toml))
4242
* [llamacpp](https://pypi.org/project/llamacpp) ([source](https://github.com/thomasantony/llamacpp-python/blob/HEAD/pyproject.toml))
4343
* [nodejs-wheel](https://pypi.org/project/nodejs-wheel) ([source](https://github.com/njzjz/nodejs-wheel/blob/HEAD/pyproject.toml))
4444
* [pygram11](https://pypi.org/project/pygram11) ([source](https://github.com/douglasdavis/pygram11/blob/HEAD/pyproject.toml))
45-
<!--[[[end]]] (checksum: a4abb793ffea3e66bfd362c5cc587555) -->
45+
<!--[[[end]]] (checksum: 8067a47175c7598c556172d67c1d1adc) -->
4646

4747
In addition, most of the [RAPIDSAI](https://github.com/rapidsai) projects use
4848
scikit-build-core, but they are not published on PyPI. A few of them are:
4949

5050
- CuDF ([source](https://github.com/rapidsai/cudf/blob/HEAD/python/cudf/pyproject.toml))
5151
- CuGraph ([source](https://github.com/rapidsai/cugraph/blob/HEAD/python/cugraph/pyproject.toml))
52-
- CuML ([source](https://github.com/rapidsai/cuml/blob/HEAD/python/cuml/pyproject.toml))
52+
- CuML ([source](https://github.com/rapidsai/cuml/blob/HEAD/python/pyproject.toml))
5353
- CuSpatial ([source](https://github.com/rapidsai/cuspatial/blob/HEAD/python/cuspatial/pyproject.toml))
5454
- RMM ([source](https://github.com/rapidsai/rmm/blob/HEAD/python/rmm/pyproject.toml))
5555
- Raft ([source](https://github.com/rapidsai/raft/blob/HEAD/python/pylibraft/pyproject.toml))

0 commit comments

Comments
 (0)