Skip to content

Commit

Permalink
Update flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
lilleyse committed Oct 1, 2024
1 parent 0594e65 commit dc9146b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
sudo apt update
sudo apt remove python3-urllib3 python3-distro
sudo apt install -y doxygen clang-tidy-15 gcovr
sudo pip3 install conan==1.63.0 black==23.1.0 flake8==6.0.0 --break-system-packages
sudo pip3 install conan==1.63.0 black==23.1.0 flake8==7.1.1 --break-system-packages
# Could not figure out how to add Chocolatey libraries to the PATH automatically with refreshenv, so
# hardcoding their locations instead. Followed these instructions for adding to the PATH on PowerShell:
Expand All @@ -152,7 +152,7 @@ jobs:
run: |
choco install -y conan --version 1.63.0
choco install -y llvm --version=15.0.7 --allow-downgrade
pip3 install black==23.1.0 flake8==6.0.0 requests
pip3 install black==23.1.0 flake8==7.1.1 requests
echo "C:/Program Files/conan/conan" >> $env:GITHUB_PATH
# Note: CMAKE_BUILD_TYPE is only used by Linux. It is ignored for Windows.
Expand Down
6 changes: 3 additions & 3 deletions docs/developer-setup/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ See [Linux](#linux) or [Windows](#windows) for step-by-step installation instruc
```
- Install `black` and `flake8`
```sh
pip3 install black==23.1.0 flake8==6.0.0
pip3 install black==23.1.0 flake8==7.1.1
```
- Add symlinks the clang-15 tools so that the correct version is chosen when running `clang-format`, `clang-tidy`, etc
```sh
Expand Down Expand Up @@ -127,7 +127,7 @@ There are two ways to install prerequisites for Windows, [manually](#install-man
```
- Install `black` and `flake8`
```sh
pip3 install black==23.1.0 flake8==6.0.0
pip3 install black==23.1.0 flake8==7.1.1
```
- Install `colorama` to enable color diff support
```sh
Expand Down Expand Up @@ -181,7 +181,7 @@ There are two ways to install prerequisites for Windows, [manually](#install-man
```
- Install `black` and `flake8`
```sh
pip3 install black==23.1.0 flake8==6.0.0
pip3 install black==23.1.0 flake8==7.1.1
```
- Install `colorama` to enable color diff support
```sh
Expand Down

0 comments on commit dc9146b

Please sign in to comment.