Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
mattdangerw committed Sep 20, 2024
1 parent 007de1b commit d065314
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pip_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ def update_version(build_path, package, version, is_nightly=False):
setup_contents = f.read()
with open(build_path / "setup.py", "w") as f:
setup_contents = setup_contents.replace(
"name=", f'name="{package_name}", # '
"name=", f'name="{package_name}", # '
)
setup_contents = setup_contents.replace(
"VERSION = ", f'VERSION = "{version}" # '
"VERSION = ", f'VERSION = "{version}" # '
)
f.write(setup_contents)

Expand Down

0 comments on commit d065314

Please sign in to comment.