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:
2022-09-06 15:08:01 -04:00
parent b3a5e869ac
commit 5f30656683
3 changed files with 342 additions and 363 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "tox-poetry-installer"
version = "0.8.4"
version = "0.8.5"
license = "MIT"
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"
@@ -39,7 +39,7 @@ poetry = ["poetry"]
[tool.poetry.dependencies]
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"
tox = "^3.8.0"
@@ -53,7 +53,7 @@ mdformat-gfm = "^0.2"
mypy = "^0.930"
pre-commit = "^2.7.1"
pre-commit-hooks = "^3.3.0"
pylint = "^2.4.4"
pylint = { version = "^2.13.0", python = "^3.7" }
pytest = "^6.0.2"
pytest-cov = "^2.10.1"
reorder-python-imports = "^2.3.5"