Skip to content

Commit bc51d67

Browse files
Stephen C. PopeDescartes Labs Build
authored andcommitted
Client Release v3.0.2 (#12445)
GitOrigin-RevId: 63e2fcfb551635a88526553cc08b555db8dd3459
1 parent f303eb1 commit bc51d67

3 files changed

Lines changed: 14 additions & 5 deletions

File tree

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ The documentation for the latest release can be found at [https://docs.descartes
1717

1818
Changelog
1919
=========
20+
## [3.0.2] - 2024-02-09
21+
22+
### Vector
23+
24+
- Fixed a bug in `Table.visualize()` which could cause Authorization (401) errors when rendering tiles into an `ipyleaflet.Map`.
25+
26+
### General
27+
28+
- Bumped some minimum dependency version constraints to avoid security vulnerabilities.
29+
2030
## [3.0.1] - 2024-02-07
2131

2232
### Vector

descarteslabs/core/client/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "3.0.1"
15+
__version__ = "3.0.2"

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -103,22 +103,21 @@ def do_setup():
103103
"imagecodecs>=2021.5.20",
104104
"lazy_object_proxy>=1.7.1",
105105
"mercantile>=1.1.3",
106-
"numpy>=1.21.6,<1.23.0;python_version<'3.8'",
107-
"numpy>=1.21.6;python_version>='3.8' and python_version<'3.11'",
106+
"numpy>=1.22.0;python_version>='3.8' and python_version<'3.11'",
108107
"numpy>=1.23.2;python_version>='3.11'",
109108
"Pillow>=9.2.0",
110109
"pyarrow>=14.0.1",
111110
"pydantic>=2.1.0",
112111
"pytz>=2021.1",
113-
"requests>=2.28.1,<3",
112+
"requests>=2.31.0,<3",
114113
# It is not obvious but dynaconf requires pkg_resources from setuptools.
115114
"setuptools>=65.6.3",
116115
"shapely>=2.0.0",
117116
"strenum>=0.4.8",
118117
"tifffile==2023.4.12;python_version=='3.8'",
119118
"tifffile>=2023.9.26;python_version>='3.9'",
120119
"tqdm>=4.32.1",
121-
"urllib3>=1.26.18",
120+
"urllib3>=1.26.18, !=2.0.0, !=2.0.1, !=2.0.2, !=2.0.3, !=2.0.4",
122121
],
123122
extras_require={
124123
"visualization": viz_requires,

0 commit comments

Comments
 (0)