Skip to content

Fix typos #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 29, 2022
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/*"]