Skip to content

Commit cfc699c

Browse files
committed
rename lkbuild to lkdev
1 parent c055a36 commit cfc699c

10 files changed

+12
-12
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ contains other information on *developing* LensKit. User-facing documentation is
5555
at <https://lkpy.lenskit.org>.
5656

5757
[conda-lock]: https://github.com/conda-incubator/conda-lock
58-
[lkbuild]: https://github.com/lenskit/lkbuild
58+
[lkdev]: https://github.com/lenskit/lkdev
5959

6060
We recommend using an Anaconda environment for developing LensKit. We provide a
6161
tool to automate setting up Conda environments from the LensKit dependencies; to

codecov.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
ignore:
22
- build*.py
33
- build-tools/*
4-
- lkbuild/*
4+
- lkdev/*

justfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ preview-docs:
6464

6565
# update the environment file used to install documentation
6666
update-doc-env:
67-
python -m lkbuild.conda -o docs/environment.yml \
67+
python -m lkdev.conda -o docs/environment.yml \
6868
-e all requirements-doc.txt docs/doc-dep-constraints.yml \
6969
{{ append('/pyproject.toml', PACKAGES) }}
7070
-pre-commit run --files docs/environment.yml
@@ -75,5 +75,5 @@ update-headers:
7575

7676
# update GH workflows
7777
update-workflows:
78-
python -m lkbuild.ghactions --render test
78+
python -m lkdev.ghactions --render test
7979
-pre-commit run --files .github/workflows/*.yml

lenskit/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ contains other information on *developing* LensKit. User-facing documentation is
5555
at <https://lkpy.lenskit.org>.
5656

5757
[conda-lock]: https://github.com/conda-incubator/conda-lock
58-
[lkbuild]: https://github.com/lenskit/lkbuild
58+
[lkdev]: https://github.com/lenskit/lkdev
5959

6060
We recommend using an Anaconda environment for developing LensKit. We provide a
6161
tool to automate setting up Conda environments from the LensKit dependencies; to
File renamed without changes.

lkbuild/conda.py lkdev/conda.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
Generate and manage Conda environments.
1010
1111
Usage:
12-
lkbuild.conda [-v] [-o FILE | -n NAME]
12+
lkdev.conda [-v] [-o FILE | -n NAME]
1313
[--micromamba] [--mkl] [--cuda]
1414
[-p VER] [-e EXTRA]... REQFILE...
1515

lkbuild/ghactions.py lkdev/ghactions.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
import yaml
2323
from docopt import docopt
2424

25-
_log = logging.getLogger("lkbuild.ghactions")
25+
_log = logging.getLogger("lkdev.ghactions")
2626

2727

2828
class script:
@@ -80,7 +80,7 @@ def main():
8080

8181

8282
def render_workflow(name: str, options: dict[str, Any]):
83-
mod_name = f"lkbuild.workflows.{name}"
83+
mod_name = f"lkdev.workflows.{name}"
8484
_log.info("loading module %s", mod_name)
8585
mod = import_module(mod_name)
8686

File renamed without changes.
File renamed without changes.

pyproject.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# the project here is just the build / support utilities
22
[project]
3-
name = "lkbuild"
3+
name = "lkdev"
44
description = "LensKit dev utilities"
55
authors = [{ name = "Michael Ekstrand", email = "[email protected]" }]
66
requires-python = ">= 3.10"
@@ -15,11 +15,11 @@ dependencies = [
1515
]
1616

1717
[project.scripts]
18-
lk-conda = "lkbuild.conda:main"
19-
lk-actions = "lkbuild.ghactions:main"
18+
lk-conda = "lkdev.conda:main"
19+
lk-actions = "lkdev.ghactions:main"
2020

2121
[tool.setuptools.packages.find]
22-
include = ["lkbuild*"]
22+
include = ["lkdev*"]
2323

2424
[tool.setuptools_scm]
2525
version_scheme = "release-branch-semver"

0 commit comments

Comments
 (0)