fix: revert back to ThreadPoolExecutor

ProcessPoolExecutor didn't work for me :(
This commit is contained in:
2024-05-08 17:21:34 +07:00
parent f4e09a7aad
commit bbdb8d3596
4 changed files with 588 additions and 577 deletions

View File

@ -12,7 +12,15 @@ platformdirs = "^3.5.1"
requests = "^2.31.0"
cleo = "^2.1.0"
packaging = "^23.2"
tqdm = { version = "^4.65.0", optional = true }
[tool.poetry.group.cli]
optional = true
[tool.poetry.group.cli.dependencies]
tqdm = "^4.65.0"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"