Skip to content

Commit a45f3ff

Browse files
Release 3.49.1 (#1164)
2 parents 061a513 + 1d4a314 commit a45f3ff

File tree

5 files changed

+10
-13
lines changed

5 files changed

+10
-13
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# Changelog
2+
# Version 3.49.1 (2023-06-29)
3+
## Fixed
4+
* Removed numpy version lock that caused Python version >3.8 to download incompatible numpy version
5+
26
# Version 3.49.0 (2023-06-27)
37

48
## Changed
59
* Improved batch creation logic when more than 1000 global keys provided
610

7-
811
## Notebooks
912
* Added example on how to access mark in export v2
1013
* Removed NDJSON library from `examples/basics/custom_embeddings.ipynb`

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
copyright = '2021, Labelbox'
2222
author = 'Labelbox'
2323

24-
release = '3.49.0'
24+
release = '3.49.1'
2525

2626
# -- General configuration ---------------------------------------------------
2727

labelbox/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "labelbox"
2-
__version__ = "3.49.0"
2+
__version__ = "3.49.1"
33

44
from labelbox.client import Client
55
from labelbox.schema.project import Project

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,5 @@ requests==2.22.0
1515
shapely
1616
tqdm
1717
typeguard==2.13.3
18-
typing-extensions==4.5.0
18+
typing-extensions==4.5.0
19+
numpy

setup.py

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,8 @@
2020
url="https://labelbox.com",
2121
packages=setuptools.find_packages(),
2222
install_requires=[
23-
"backoff==1.10.0",
24-
"requests>=2.22.0",
25-
"google-api-core>=1.22.1",
26-
"pydantic>=1.8,<2.0",
27-
"tqdm",
28-
"python-dateutil>=2.8.2,<2.9.0",
29-
'numpy==1.21.6; python_version<"3.8"',
30-
'numpy~=1.23.5; python_version=="3.8"',
31-
'numpy~=1.25.0; python_version>"3.8"',
23+
"backoff==1.10.0", "requests>=2.22.0", "google-api-core>=1.22.1",
24+
"pydantic>=1.8,<2.0", "tqdm", "python-dateutil>=2.8.2,<2.9.0"
3225
],
3326
extras_require={
3427
'data': [

0 commit comments

Comments
 (0)