FEAT: remove python 3.7 and update dependencies (#1629)

* FEAT: remove python 3.7 and update dependencies

* readd pylint
This commit is contained in:
dni ⚡ 2023-04-17 09:44:08 +02:00 committed by GitHub
parent 156a19f05c
commit fe315d0a9b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 158 additions and 201 deletions

View file

@ -9,7 +9,7 @@ generate-setup-file = false
script = "tools/build.py"
[tool.poetry.dependencies]
python = "^3.10 | ^3.9 | ^3.8 | ^3.7"
python = "^3.10 | ^3.9 | ^3.8.1"
bech32 = "1.2.0"
bitstring = "3.1.9"
click = "8.0.4"
@ -40,8 +40,8 @@ pyln-client = "0.11.1"
boltz-client = "0.1.3"
cashu = "0.9.0"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
isort = "^5.10.1"
pytest = "^7.1.2"
mock = "^4.0.3"
@ -50,8 +50,7 @@ pytest-asyncio = "^0.19.0"
pytest-cov = "^3.0.0"
mypy = "^0.971"
types-protobuf = "^3.19.22"
flake8 = { version = "^6.0.0", python = ">=3.8.1" }
pylint = { version = "^2.15.10", python = ">=3.7.2" }
pylint = "^2.17.2"
[build-system]
requires = ["poetry-core>=1.0.0", "pyscss"]