Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
![PyPI](https://img.shields.io/pypi/v/lazy-loader?style=for-the-badge)
![PyPI](https://img.shields.io/pypi/v/lazy_loader?style=for-the-badge)

`lazy-loader` makes it easy to load subpackages and functions on demand.
`lazy_loader` makes it easy to load subpackages and functions on demand.

## Motivation

Expand All @@ -12,7 +12,7 @@ For a more detailed discussion, see [the SPEC](https://scientific-python.org/spe
## Installation

```
pip install -U lazy-loader
pip install -U lazy_loader
```

## Usage
Expand Down
12 changes: 6 additions & 6 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

Example `version`

- 1.8.dev0 \# development version of 1.8 (release candidate 1)
- 1.8rc1 \# 1.8 release candidate 1
- 1.8rc2.dev0 \# development version of 1.8 (release candidate 2)
- 1.8 \# 1.8 release
- 1.9.dev0 \# development version of 1.9 (release candidate 1)
- 1.8.dev0 # development version of 1.8 (release candidate 1)
- 1.8rc1 # 1.8 release candidate 1
- 1.8rc2.dev0 # development version of 1.8 (release candidate 2)
- 1.8 # 1.8 release
- 1.9.dev0 # development version of 1.9 (release candidate 1)

## Process

Expand All @@ -24,7 +24,7 @@ Example `version`
git add pyproject.toml CHANGELOG.md
git commit -m 'Designate <version> release'

- Add the version number (e.g., [v1.2.0]{.title-ref}) as a tag in git:
- Add the version number (e.g., `1.2.0`) as a tag in git:

git tag -s [-u <key-id>] v<version> -m 'signed <version> tag'

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ lint = ["pre-commit >= 2.20"]

[project.urls]
Home = "https://scientific-python.org/specs/spec-0001/"
Source = "https://github.com/scientific-python/lazy-loader"
Source = "https://github.com/scientific-python/lazy_loader"

[tool.flit.sdist]
exclude = ["tests/*"]