Skip to content

Commit d71d644

Browse files
committed
v4.1.11 Release
1 parent 3606ad3 commit d71d644

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

python/deeplake/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def progress_bar(iterable, *args, **kwargs):
1616
from deeplake.ingestion import from_coco
1717

1818

19-
__version__ = "4.1.10"
19+
__version__ = "4.1.11"
2020

2121
__all__ = [
2222
"__version__",

python/deeplake/__init__.pyi

+7
Original file line numberDiff line numberDiff line change
@@ -1873,6 +1873,13 @@ class DatasetView:
18731873
<!-- test-context
18741874
```python
18751875
import deeplake
1876+
import multiprocessing as mp
1877+
try:
1878+
mp.set_start_method('fork')
1879+
except RuntimeError:
1880+
pass # method has already been set
1881+
1882+
18761883
ds = deeplake.create("tmp://")
18771884
ds.add_column("images", "int32")
18781885
ds.append({"images": [0] * 300})

0 commit comments

Comments
 (0)