We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a237ffe + c32c704 commit eb721acCopy full SHA for eb721ac
labelbox/__init__.py
@@ -1,6 +1,13 @@
1
name = "labelbox"
2
__version__ = "3.19.1"
3
4
+import sys
5
+import warnings
6
+
7
+if sys.version_info < (3, 7):
8
+ warnings.warn("""Python 3.6 will no longer be actively supported
9
+ starting 06/01/2022. Please upgrade to Python 3.7 or higher.""")
10
11
from labelbox.client import Client
12
from labelbox.schema.project import Project
13
from labelbox.schema.model import Model
0 commit comments