Fix poetry dependency spec to <1.2 for last 0.8 release

Update pylint to >2.13 to fix security warning
This commit is contained in:
Ethan Paul 2022-09-06 15:08:01 -04:00
parent b3a5e869ac
commit 5f30656683
Signed by: enpaul
GPG Key ID: 07F53B438281D181
3 changed files with 342 additions and 363 deletions

697
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "tox-poetry-installer" name = "tox-poetry-installer"
version = "0.8.4" version = "0.8.5"
license = "MIT" license = "MIT"
authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"] authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
description = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile" description = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile"
@ -39,7 +39,7 @@ poetry = ["poetry"]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.6.1" python = "^3.6.1"
poetry = {version = "^1.0.0", optional = true} poetry = {version = ">=1.0.0,<1.2", optional = true}
poetry-core = "^1.0.0" poetry-core = "^1.0.0"
tox = "^3.8.0" tox = "^3.8.0"
@ -53,7 +53,7 @@ mdformat-gfm = "^0.2"
mypy = "^0.930" mypy = "^0.930"
pre-commit = "^2.7.1" pre-commit = "^2.7.1"
pre-commit-hooks = "^3.3.0" pre-commit-hooks = "^3.3.0"
pylint = "^2.4.4" pylint = { version = "^2.13.0", python = "^3.7" }
pytest = "^6.0.2" pytest = "^6.0.2"
pytest-cov = "^2.10.1" pytest-cov = "^2.10.1"
reorder-python-imports = "^2.3.5" reorder-python-imports = "^2.3.5"

View File

@ -1,7 +1,7 @@
# pylint: disable=missing-docstring # pylint: disable=missing-docstring
__title__ = "tox-poetry-installer" __title__ = "tox-poetry-installer"
__summary__ = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile" __summary__ = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile"
__version__ = "0.8.4" __version__ = "0.8.5"
__url__ = "https://github.com/enpaul/tox-poetry-installer/" __url__ = "https://github.com/enpaul/tox-poetry-installer/"
__license__ = "MIT" __license__ = "MIT"
__authors__ = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"] __authors__ = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]