Skip to content

Commit

Permalink
Add support for flake8 4.x (#12)
Browse files Browse the repository at this point in the history
Adds support for flake8 4.x
  • Loading branch information
johnfraney authored Oct 20, 2021
1 parent 3255956 commit 85a4497
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 37 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ To enable this hook in your local repository, add the following `repo` to your `
# .pre-commit-config.yaml
repos:
- repo: https://github.com/johnfraney/flake8-markdown
rev: v0.2.0
rev: v0.3.0
hooks:
- id: flake8-markdown
```
Expand All @@ -62,6 +62,12 @@ Everyone interacting in the project's codebases, issue trackers, chat rooms, and
## History
## [0.3.0] - 2021-10-19
### Added
- Added support for `flake8` v4

## [0.2.0] - 2019-06-14

### Added
Expand Down
68 changes: 34 additions & 34 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "flake8-markdown"
version = "0.2.0"
version = "0.3.0"
description = "Lints Python code blocks in Markdown files using flake8"
authors = ["John Franey <[email protected]>"]
repository = "https://github.com/johnfraney/flake8-markdown"
Expand All @@ -22,7 +22,7 @@ include = [

[tool.poetry.dependencies]
python = "^3.6"
flake8 = "^3.7"
flake8 = ">=3.0,<5.0"

[tool.poetry.dev-dependencies]
pytest = "^5.0"
Expand Down

0 comments on commit 85a4497

Please sign in to comment.