Skip to content

Commit

Permalink
Fix pylint for python 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
analog-cbarber committed Oct 8, 2023
1 parent 76d5683 commit be4d50e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/whl2conda/cli/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,8 +211,12 @@ def conda_bld_install(parsed: InstallArgs, subdir: str):
shutil.copyfile(
parsed.package_file, subdir_path.joinpath(parsed.package_file.name)
)
# subprocess.check_call(
# ["conda", "index", "--subdir", subdir, str(conda_bld_path)]
# )
# Really just want subdir, but having problems in CI. See if this works:
subprocess.check_call(
["conda", "index", "--subdir", subdir, str(conda_bld_path)]
["conda", "index", str(conda_bld_path)]
)


Expand Down

0 comments on commit be4d50e

Please sign in to comment.