We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0a0136 commit f6df907Copy full SHA for f6df907
src/zope/meta/setup_to_pyproject.py
@@ -467,8 +467,10 @@ def main():
467
if args.interactive or args.commit:
468
print('Look through setup.py to see if it needs changes.')
469
call(os.environ['EDITOR'], 'setup.py')
470
+ call('git', 'add', 'setup.py')
471
print('Look through pyproject.toml to see if it needs changes.')
472
call(os.environ['EDITOR'], 'pyproject.toml')
473
+ call('git', 'add', 'pyproject.toml')
474
475
if args.run_tests:
476
tox_path = shutil.which('tox') or (
0 commit comments