File tree 5 files changed +16
-6
lines changed
user_guide/dataset_creation
5 files changed +16
-6
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,15 @@ FiftyOne Release Notes
3
3
4
4
.. default-role :: code
5
5
6
+
7
+ FiftyOne 0.25.2
8
+ ---------------
9
+ *Released September 19, 2024 *
10
+
11
+ * Require `pymongo<4.9 ` to fix database connections
12
+ * Require `pydicom<3 ` for :ref: `DICOM datasets <DICOMDataset-import >`
13
+
14
+
6
15
FiftyOne Teams 2.0.1
7
16
--------------------
8
17
*Released September 6, 2024 *
Original file line number Diff line number Diff line change @@ -4507,8 +4507,8 @@ of images and their associated properties stored in
4507
4507
4508
4508
.. note ::
4509
4509
4510
- You must have `pydicom <https://github.com/pydicom/pydicom >`_ installed in
4511
- order to load DICOM datasets.
4510
+ You must have `pydicom<3 <https://github.com/pydicom/pydicom >`_ installed
4511
+ in order to load DICOM datasets.
4512
4512
4513
4513
The standard format for datasets of this type is the following:
4514
4514
Original file line number Diff line number Diff line change 5
5
| `voxel51.com <https://voxel51.com/>`_
6
6
|
7
7
"""
8
+
8
9
import logging
9
10
import os
10
11
import warnings
16
17
import fiftyone .core .utils as fou
17
18
import fiftyone .utils .data as foud
18
19
19
- fou .ensure_package ("pydicom" )
20
+ fou .ensure_package ("pydicom<3 " )
20
21
import pydicom
21
22
from pydicom .fileset import FileInstance , FileSet
22
23
Original file line number Diff line number Diff line change 1
1
open3d>=0.16.0
2
2
itsdangerous==2.0.1
3
3
werkzeug==3.0.3
4
- pydicom
4
+ pydicom<3
5
5
pytest==7.3.1
6
6
pytest-cov==4.0.0
7
7
pytest-mock==3.10.0
Original file line number Diff line number Diff line change 13
13
from setuptools import setup , find_packages
14
14
15
15
16
- VERSION = "0.25.1 "
16
+ VERSION = "0.25.2 "
17
17
18
18
19
19
def get_version ():
@@ -55,7 +55,7 @@ def get_version():
55
55
"plotly>=4.14" ,
56
56
"pprintpp" ,
57
57
"psutil" ,
58
- "pymongo>=3.12" ,
58
+ "pymongo>=3.12,<4.9 " ,
59
59
"pytz" ,
60
60
"PyYAML" ,
61
61
"regex" ,
You can’t perform that action at this time.
0 commit comments