Skip to content

Commit 3b70f51

Browse files
authored
pyproject.toml: Fix PEP 660 builds by setting build-system to use poetry-core (#722)
* pyproject.toml: Fix PEP 660 builds by setting build-system to use poetry-core * Update CHANGELOG.md
1 parent c58d74d commit 3b70f51

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ All notable changes to this project will be documented in this file.
2828
* [Full changelog: 1.1.0...1.2.0](https://github.com/ni/nidaqmx-python/compare/1.1.0...1.2.0)
2929

3030
* ### Resolved Issues
31-
* ...
31+
* Fix PEP 660 builds by setting `build-system` to use `poetry-core`
3232

3333
* ### Major Changes
3434
* Removed the `docs` extra and converted it to a Poetry dependency group.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,8 @@ markers = [
130130
]
131131

132132
[build-system]
133-
requires = ["poetry>=1.2"]
134-
build-backend = "poetry.masonry.api"
133+
requires = ["poetry-core>=1.8"]
134+
build-backend = "poetry.core.masonry.api"
135135

136136
[tool.mypy]
137137
files = "generated/,tests/"

0 commit comments

Comments
 (0)