Added pyasyncore to pyproject, fixing issue #601 (#822)

Changed python version requirement to >=3.9 to fix error:
pygobject requires Python <4.0,>=3.9, so it will not be satisfied for
Python >=3.8,<3.9
Changes to be committed:
	modified:   poetry.lock
	modified:   pyproject.toml
This commit is contained in:
Devin McAnelly 2025-03-25 01:29:35 -05:00 committed by GitHub
parent 8f026ac649
commit af5fb382e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 811 additions and 787 deletions

1593
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -21,14 +21,15 @@ packages = [
]
[tool.poetry.dependencies]
python = "^3.8"
python = ">=3.9, <4.0"
psutil = ">=6.0.0,<8.0.0"
click = "^8.1.0"
distro = "^1.8.0"
requests = "^2.32.3"
PyGObject = "3.50.0"
PyGObject = {version="3.50.0", optional=true}
urwid = "^2.6.16"
pyinotify = {git = "https://github.com/shadeyg56/pyinotify-3.12"}
pyasyncore = "^1.0.4"
[tool.poetry.group.dev.dependencies]
poetry = "^1.6.1"