fix: python versions were defined incorrectly and remove 3.9 (#3006)

* chore: update requirements to python3.10
* chore: format RUF007 rule for py310
* wrongly specified python version
python3.13 there is a greenlet build error
This commit is contained in:
dni ⚡ 2025-03-03 12:53:30 +01:00 committed by GitHub
parent 4ce14e2312
commit c5964436b5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 351 additions and 382 deletions

View file

@ -12,7 +12,7 @@ packages = [
]
[tool.poetry.dependencies]
python = "^3.13 | ^3.12 | ^3.11 | ^3.10 | ^3.9"
python = "~3.12 | ~3.11 | ~3.10"
bech32 = "1.2.0"
click = "8.1.7"
ecdsa = "0.19.0"
@ -192,7 +192,7 @@ extend-exclude = [
select = ["F", "E", "W", "I", "A", "C", "N", "UP", "RUF", "B"]
# UP007: pyupgrade: use X | Y instead of Optional. (python3.10)
# RUF012: mutable-class-default
ignore = ["UP007", "RUF012"]
ignore = ["RUF012"]
# Allow autofix for all enabled rules (when `--fix`) is provided.
fixable = ["ALL"]