Skip to content

Commit

Permalink
Client Release v3.0.2 (#12445)
Browse files Browse the repository at this point in the history
GitOrigin-RevId: 63e2fcfb551635a88526553cc08b555db8dd3459
  • Loading branch information
stephencpope authored and Descartes Labs Build committed Feb 9, 2024
1 parent f303eb1 commit bc51d67
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 5 deletions.
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ The documentation for the latest release can be found at [https://docs.descartes

Changelog
=========
## [3.0.2] - 2024-02-09

### Vector

- Fixed a bug in `Table.visualize()` which could cause Authorization (401) errors when rendering tiles into an `ipyleaflet.Map`.

### General

- Bumped some minimum dependency version constraints to avoid security vulnerabilities.

## [3.0.1] - 2024-02-07

### Vector
Expand Down
2 changes: 1 addition & 1 deletion descarteslabs/core/client/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "3.0.1"
__version__ = "3.0.2"
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,22 +103,21 @@ def do_setup():
"imagecodecs>=2021.5.20",
"lazy_object_proxy>=1.7.1",
"mercantile>=1.1.3",
"numpy>=1.21.6,<1.23.0;python_version<'3.8'",
"numpy>=1.21.6;python_version>='3.8' and python_version<'3.11'",
"numpy>=1.22.0;python_version>='3.8' and python_version<'3.11'",
"numpy>=1.23.2;python_version>='3.11'",
"Pillow>=9.2.0",
"pyarrow>=14.0.1",
"pydantic>=2.1.0",
"pytz>=2021.1",
"requests>=2.28.1,<3",
"requests>=2.31.0,<3",
# It is not obvious but dynaconf requires pkg_resources from setuptools.
"setuptools>=65.6.3",
"shapely>=2.0.0",
"strenum>=0.4.8",
"tifffile==2023.4.12;python_version=='3.8'",
"tifffile>=2023.9.26;python_version>='3.9'",
"tqdm>=4.32.1",
"urllib3>=1.26.18",
"urllib3>=1.26.18, !=2.0.0, !=2.0.1, !=2.0.2, !=2.0.3, !=2.0.4",
],
extras_require={
"visualization": viz_requires,
Expand Down

0 comments on commit bc51d67

Please sign in to comment.