- minimum python: 3.10

- typing
- task_error bug fix
- remove some deprecated functions
This commit is contained in:
Wim Pomp
2024-04-26 18:32:12 +02:00
parent 42746d21eb
commit ac4d599646
4 changed files with 133 additions and 132 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry]
name = "parfor"
version = "2024.3.0"
version = "2024.4.0"
description = "A package to mimic the use of parfor as done in Matlab."
authors = ["Wim Pomp <wimpomp@gmail.com>"]
license = "GPLv3"
@@ -9,7 +9,7 @@ keywords = ["parfor", "concurrency", "multiprocessing", "parallel"]
repository = "https://github.com/wimpomp/parfor"
[tool.poetry.dependencies]
python = "^3.8"
python = "^3.10"
tqdm = ">=4.50.0"
dill = ">=0.3.0"
pytest = { version = "*", optional = true }
@@ -17,6 +17,9 @@ pytest = { version = "*", optional = true }
[tool.poetry.extras]
test = ["pytest"]
[tool.isort]
line_length = 119
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"