Skip to content

Commit a681469

Browse files
Fix typos found by codespell
1 parent 7281159 commit a681469

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
### Breaking
1414

15-
- fix #1019: pass python version build tags from scm version to results propperly
15+
- fix #1019: pass python version build tags from scm version to results properly
1616

1717
### Added
1818

@@ -37,7 +37,7 @@
3737
- fix #1150: enable setuptools-scm when we are a build requirement
3838
- feature #1154: add the commit id the the default version file template
3939
- drop scriv
40-
- fix #921: document setuptools version requirements more consistently - 61 as minumum asn 8 as recommended minimum
40+
- fix #921: document setuptools version requirements more consistently - 61 as minimum asn 8 as recommended minimum
4141

4242
### Fixed
4343

@@ -71,7 +71,7 @@
7171

7272
### Fixed
7373

74-
- fixed #1131: allow self-build without importlib_metadata avaliable on python3.9
74+
- fixed #1131: allow self-build without importlib_metadata available on python3.9
7575

7676
## v8.3.0
7777

testing/test_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,13 +514,13 @@ def local(self) -> str | None:
514514
def test_no_matching_entrypoints(config_key: str) -> None:
515515
version = meta(
516516
"1.0",
517-
config=replace(c, **{config_key: "nonexistant"}), # type: ignore[arg-type]
517+
config=replace(c, **{config_key: "nonexistent"}), # type: ignore[arg-type]
518518
)
519519
with pytest.raises(
520520
ValueError,
521521
match=(
522522
r'Couldn\'t find any implementations for entrypoint "setuptools_scm\..*?"'
523-
' with value "nonexistant"'
523+
' with value "nonexistent"'
524524
),
525525
):
526526
format_version(version)

0 commit comments

Comments
 (0)