Skip to content

Commit 235ec1b

Browse files
committed
Less commands.
1 parent 97a0b14 commit 235ec1b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/makeapp/helpers/dist.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,5 @@ def upload(cls):
3232
if not env_vars:
3333
LOG.warning(f'PyPI credentials not found in {pypirc_file}')
3434

35-
cls.run_command_uv('build --wheel')
36-
cls.run_command_uv('build --sdist')
35+
cls.run_command_uv('build')
3736
cls.run_command_uv('publish', env=env_vars)

tests/test_apptools.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ def dummy_communicate(self, *args, **kwargs):
4343
assert issued_commands == [
4444
'git push',
4545
'git push --tags',
46-
'uv build --wheel',
47-
'uv build --sdist',
46+
'uv build',
4847
'uv publish'
4948
]
5049

0 commit comments

Comments
 (0)