Skip to content

Commit

Permalink
Move clang-tidy and clang-format into requirements_dev.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
clydebarrow committed Jan 3, 2024
1 parent 4b803c0 commit 202fe95
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
3 changes: 3 additions & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Useful stuff when working in a development environment
clang-format==13.0.1
clang-tidy==14.0.6
3 changes: 0 additions & 3 deletions requirements_test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,3 @@ pytest-mock==3.12.0
pytest-asyncio==0.23.2
asyncmock==0.4.2
hypothesis==5.49.0

clang-format==13.0.1 ; platform_machine != 'armv7l'
clang-tidy==14.0.6 ; platform_machine != 'armv7l'
2 changes: 1 addition & 1 deletion script/setup
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ if [ -n "$DEVCONTAINER" ];then
git config --global --add safe.directory "$PWD"
fi

pip3 install -r requirements.txt -r requirements_optional.txt -r requirements_test.txt
pip3 install -r requirements.txt -r requirements_optional.txt -r requirements_test.txt -r requirements_dev.txt
pip3 install setuptools wheel
pip3 install --no-use-pep517 -e .

Expand Down

0 comments on commit 202fe95

Please sign in to comment.