Skip to content

Commit e1dd9f1

Browse files
committed
chore: back to building with setup.py
I'm holding it wrong, but the previous dist is missing most of its content πŸ™„ Signed-off-by: Yves Bastide <yves@botify.com>
1 parent 32bba87 commit e1dd9f1

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

β€Žpyproject.tomlβ€Ž

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ dependencies = [
4949
[project.optional-dependencies]
5050
dev = [
5151
"black",
52-
"build",
5352
"flaky",
5453
"invoke",
5554
"moto<3.0.0",

β€Žscript/releaseβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ def main():
326326

327327
# push package to pypi
328328
step(f"Generate and push package to {args.repository or args.repository_url or 'pypi'}")
329-
execute(["python", "-m", "build"], log=True)
329+
execute(["python", "setup.py", "bdist_wheel", "sdist"], log=True)
330330
wheel = f"dist/simpleflow-{new_version}-py3-none-any.whl"
331331
tar_gz = f"dist/simpleflow-{new_version}.tar.gz"
332332
cmd = ["twine", "upload", wheel, tar_gz]

0 commit comments

Comments
Β (0)