Skip to content

Commit

Permalink
Remove annotations from pipfile install
Browse files Browse the repository at this point in the history
  • Loading branch information
obscurerichard committed May 14, 2024
1 parent 5ed292c commit b1c4267
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/install_packages
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ requirements_files=$2
echo "::group::Install fawltydeps"
if [ -z "$fawltydeps_version" ] || [ "$fawltydeps_version" == "latest" ]; then
echo "Installing latest version of fawltydeps"
python3 -m pip install "fawltydeps[requirements_deprecated_finder,pipfile_deprecated_finder]"
python3 -m pip install "fawltydeps"
else
echo "Installing fawltydeps==$fawltydeps_version"
python3 -m pip install "fawltydeps[requirements_deprecated_finder,pipfile_deprecated_finder]==$fawltydeps_version"
python3 -m pip install "fawltydeps==$fawltydeps_version"
fi
echo "::endgroup::"

Expand Down

0 comments on commit b1c4267

Please sign in to comment.