Skip to content

Commit

Permalink
Remove upper bound from flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
decorator-factory committed Jan 31, 2023
1 parent 6bdf6d2 commit a9597e1
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 100 deletions.
2 changes: 1 addition & 1 deletion flake8_useless_assert/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class UselessAssert:
name = "flake8-useless-assert"
version = "0.4.3"
version = "0.4.4"

def __init__(self, tree: ast.Module) -> None:
self._tree = tree
Expand Down
141 changes: 46 additions & 95 deletions poetry.lock

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

6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "flake8-useless-assert"
version = "0.4.3"
version = "0.4.4"
description = "flake8 plugin to catch useless `assert` statements"
authors = ["decorator-factory <decorator-factory@yandex.ru>"]
license = "MIT"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/decorator-factory/flake8-useless-assert"

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

[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
Expand All @@ -21,5 +21,3 @@ ULA = "flake8_useless_assert:UselessAssert"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"


0 comments on commit a9597e1

Please sign in to comment.