Skip to content

Commit

Permalink
Pinned click version in Python formatting script to avoid black issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bert Vandenbroucke committed Apr 12, 2022
1 parent 49c2684 commit 4991728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion format_python.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ if [ ! -d black_formatting_env ]
then
echo "Formatting environment not found, installing it..."
python3 -m venv black_formatting_env
./black_formatting_env/bin/python3 -m pip install black==19.3b0
./black_formatting_env/bin/python3 -m pip install click==8.0.4 black==19.3b0
fi
# Now we know exactly which black to use
black="./black_formatting_env/bin/python3 -m black"
Expand Down

0 comments on commit 4991728

Please sign in to comment.