| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 2062c5c commit 110cf0c
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,5 +13,5 @@ | |||
| 13 | 13 | # limitations under the License. | |
| 14 | 14 | docker: | |
| 15 | 15 | image: gcr.io/cloud-devrel-public-resources/owlbot-python:latest | |
| 16 | - digest: sha256:6c1cbc75c74b8bdd71dada2fa1677e9d6d78a889e9a70ee75b93d1d0543f96e1 | ||
| 17 | - # created: 2023-07-25T21:01:10.396410762Z | ||
| 16 | + digest: sha256:bced5ca77c4dda0fd2f5d845d4035fc3c5d3d6b81f245246a36aee114970082b | ||
| 17 | + # created: 2023-08-01T17:41:45.434027321Z | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -26,6 +26,6 @@ repos: | |||
| 26 | 26 | hooks: | |
| 27 | 27 | - id: black | |
| 28 | 28 | - repo: https://github.com/pycqa/flake8 | |
| 29 | - rev: 3.9.2 | ||
| 29 | + rev: 6.1.0 | ||
| 30 | 30 | hooks: | |
| 31 | 31 | - id: flake8 | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -26,6 +26,7 @@ | |||
| 26 | 26 | ||
| 27 | 27 | import nox | |
| 28 | 28 | ||
| 29 | + FLAKE8_VERSION = "flake8==6.1.0" | ||
| 29 | 30 | BLACK_VERSION = "black==22.3.0" | |
| 30 | 31 | ISORT_VERSION = "isort==5.10.1" | |
| 31 | 32 | LINT_PATHS = ["docs", "google", "tests", "noxfile.py", "setup.py"] | |
@@ -82,7 +83,7 @@ def lint(session): | |||
| 82 | 83 | Returns a failure if the linters find linting errors or sufficiently | |
| 83 | 84 | serious code quality issues. | |
| 84 | 85 | """ | |
| 85 | - session.install("flake8", BLACK_VERSION) | ||
| 86 | + session.install(FLAKE8_VERSION, BLACK_VERSION) | ||
| 86 | 87 | session.run( | |
| 87 | 88 | "black", | |
| 88 | 89 | "--check", | |
| Back | FazBrowse Home | New Git URL |
0 commit comments