Skip to content

Commit

Permalink
fix: missing c extensions with newer poetry (#1129)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco committed Feb 14, 2023
1 parent 961c406 commit 44d7fc6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Expand Up @@ -24,7 +24,6 @@ classifiers=[
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
]
build = "build_ext.py"
packages = [
{ include = "zeroconf", from = "src" },
]
Expand All @@ -33,6 +32,10 @@ packages = [
"Bug Tracker" = "https://github.com/python-zeroconf/python-zeroconf/issues"
"Changelog" = "https://github.com/python-zeroconf/python-zeroconf/blob/master/CHANGELOG.md"

[tool.poetry.build]
generate-setup-file = true
script = "build_ext.py"

[tool.semantic_release]
branch = "master"
version_toml = "pyproject.toml:tool.poetry.version"
Expand Down

0 comments on commit 44d7fc6

Please sign in to comment.