File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 12
12
13
13
### Breaking
14
14
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
16
16
17
17
### Added
18
18
37
37
- fix #1150 : enable setuptools-scm when we are a build requirement
38
38
- feature #1154 : add the commit id the the default version file template
39
39
- 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
41
41
42
42
### Fixed
43
43
71
71
72
72
### Fixed
73
73
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
75
75
76
76
## v8.3.0
77
77
Original file line number Diff line number Diff line change @@ -514,13 +514,13 @@ def local(self) -> str | None:
514
514
def test_no_matching_entrypoints (config_key : str ) -> None :
515
515
version = meta (
516
516
"1.0" ,
517
- config = replace (c , ** {config_key : "nonexistant " }), # type: ignore[arg-type]
517
+ config = replace (c , ** {config_key : "nonexistent " }), # type: ignore[arg-type]
518
518
)
519
519
with pytest .raises (
520
520
ValueError ,
521
521
match = (
522
522
r'Couldn\'t find any implementations for entrypoint "setuptools_scm\..*?"'
523
- ' with value "nonexistant "'
523
+ ' with value "nonexistent "'
524
524
),
525
525
):
526
526
format_version (version )
You can’t perform that action at this time.
0 commit comments