Skip to content

Commit 973016b

Browse files
author
Val Brodsky
committed
Remove backports
1 parent fd6231b commit 973016b

File tree

3 files changed

+13
-18
lines changed

3 files changed

+13
-18
lines changed

labelbox/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
name = "labelbox"
22
__version__ = "3.47.1"
33

4-
from backports.datetime_fromisoformat import MonkeyPatch
5-
6-
MonkeyPatch.patch_fromisoformat()
7-
84
from labelbox.client import Client
95
from labelbox.schema.project import Project
106
from labelbox.schema.model import Model

requirements.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
requests==2.22.0
21
backoff==1.10.0
3-
google-api-core>=1.22.1
4-
pydantic>=1.8,<2.0
5-
shapely
6-
tqdm
72
geojson
3+
google-api-core>=1.22.1
4+
imagesize
5+
nbconvert~=7.2.6
6+
nbformat~=5.7.0
87
numpy
9-
PILLOW
108
opencv-python
11-
imagesize
12-
pyproj
9+
PILLOW
10+
pydantic>=1.8,<2.0
1311
pygeotile
14-
typing-extensions==4.5.0
12+
pyproj
1513
pytest-xdist
16-
nbformat~=5.7.0
17-
nbconvert~=7.2.6
14+
python-dateutil>=2.8.2,<2.9.0
15+
requests==2.22.0
16+
shapely
17+
tqdm
1818
typeguard==2.13.3
19-
backports-datetime-fromisoformat~=2.0
19+
typing-extensions==4.5.0

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
packages=setuptools.find_packages(),
2222
install_requires=[
2323
"backoff==1.10.0", "requests>=2.22.0", "google-api-core>=1.22.1",
24-
"pydantic>=1.8,<2.0", "tqdm", "backports-datetime-fromisoformat~=2.0"
24+
"pydantic>=1.8,<2.0", "tqdm", "python-dateutil>=2.8.2,<2.9.0"
2525
],
2626
extras_require={
2727
'data': [
@@ -31,7 +31,6 @@
3131
],
3232
},
3333
classifiers=[
34-
'Development Status :: 3 - Alpha',
3534
'License :: OSI Approved :: Apache Software License',
3635
'Programming Language :: Python :: 3',
3736
'Programming Language :: Python :: 3.7',

0 commit comments

Comments
 (0)