Skip to content

Commit 16fe7e7

Browse files
authored
fix: add name and version info to fixup script name (#490)
1 parent 16cf77a commit 16fe7e7

File tree

4 files changed

+2
-2
lines changed

4 files changed

+2
-2
lines changed

gapic/ads-templates/setup.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ setuptools.setup(
2929
'libcst >= 0.2.5',
3030
],
3131
scripts=[
32-
'scripts/fixup_keywords.py',
32+
'scripts/fixup_{{ api.naming.versioned_module_name }}_keywords.py',
3333
],
3434
classifiers=[
3535
'Development Status :: 3 - Alpha',

gapic/templates/setup.py.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ setuptools.setup(
2525
),
2626
python_requires='>={% if opts.lazy_import %}3.7{% else %}3.6{% endif %}',{# Lazy import requires module-level getattr #}
2727
scripts=[
28-
'scripts/fixup_keywords.py',
28+
'scripts/fixup_{{ api.naming.versioned_module_name }}_keywords.py',
2929
],
3030
classifiers=[
3131
'Development Status :: 3 - Alpha',

0 commit comments

Comments
 (0)