Skip to content

Commit 36d1b71

Browse files
author
Mahmood Mohammed Seoud
committed
🐛 fix: exclude C projects from Python wheel, bump to v0.1.1
setuptools was including .py files from satdeploy-agent/ and satdeploy-apm/ submodule trees in the wheel, causing PyPI upload to fail with 400.
1 parent 5191c8a commit 36d1b71

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "satdeploy"
7-
version = "0.1.0"
7+
version = "0.1.1"
88
description = "Deployment tool for embedded Linux satellites — push, track, rollback over SSH and CSP"
99
readme = "README.md"
1010
license = {text = "MIT"}
@@ -29,8 +29,8 @@ satdeploy = "satdeploy.cli:main"
2929

3030
[tool.setuptools.packages.find]
3131
where = ["."]
32-
include = ["satdeploy*"]
33-
exclude = ["tests*"]
32+
include = ["satdeploy", "satdeploy.*"]
33+
exclude = ["tests*", "satdeploy-agent*", "satdeploy-apm*"]
3434

3535
[tool.pytest.ini_options]
3636
testpaths = ["tests"]

0 commit comments

Comments
 (0)