Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9fc5262

Browse files
authoredSep 23, 2024
Merge branch 'master' into update-license-year
2 parents 8535e3f + 673c19c commit 9fc5262

File tree

835 files changed

+88534
-33950
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

835 files changed

+88534
-33950
lines changed
 

‎.circleci/config.yml

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,21 @@ jobs:
234234
- test_optional:
235235
py: "39_pandas_2"
236236

237+
# No numpy
238+
python_312_no_numpy:
239+
docker:
240+
- image: cimg/python:3.12-browsers
241+
steps:
242+
- run:
243+
name: Check that numpy is not installed
244+
command: |
245+
if pip list | grep numpy > /dev/null 2>&1
246+
then exit 1
247+
else exit 0
248+
fi
249+
- test_optional:
250+
py: "312_no_numpy"
251+
237252
# Orca
238253
python_38_orca:
239254
docker:
@@ -385,6 +400,8 @@ jobs:
385400
- run:
386401
name: Create conda environment
387402
command: |
403+
conda config --remove channels defaults
404+
conda config --add channels conda-forge
388405
conda create -n env --yes python=3.9 conda-build=3.28.4 conda-verify
389406
conda install -n env -c conda-forge jupyterlab=3 nodejs=16
390407
conda init bash
@@ -448,7 +465,7 @@ jobs:
448465
docker:
449466
# specify the version you desire here
450467
# use `-browsers` prefix for selenium tests, for example, `3.9-browsers`
451-
- image: cimg/python:3.10-browsers
468+
- image: cimg/python:3.9-browsers
452469

453470
steps:
454471
- add_ssh_keys:
@@ -598,5 +615,5 @@ workflows:
598615
- python_39_pandas_2_optional
599616
- python_38_orca
600617
- python_39_percy
618+
- python_312_no_numpy
601619
- build-doc
602-

‎CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [5.24.1] - 2024-09-12
6+
7+
### Updated
8+
9+
- Updated Plotly.js from version 2.35.0 to version 2.35.2. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2352----2024-09-10) for more information.
10+
11+
## [5.24.0] - 2024-08-29
12+
13+
### Added
14+
- New `px` functions for maps: `scatter_map`, `line_map`, `choropleth_map`, and `density_map`.
15+
16+
### Updated
17+
18+
- Updated Plotly.js from version 2.34.0 to version 2.35.0. See the [plotly.js CHANGELOG](https://github.com/plotly/plotly.js/blob/master/CHANGELOG.md#2350----2024-08-29) for more information. These changes are reflected in the auto-generated `plotly.graph_objects` module. Notable changes include:
19+
- Add new traces: scattermap, choroplethmap and densitymap and map subplots which use maplibre to render maps [[#7015](https://github.com/plotly/plotly.js/pull/7015), [#7060](https://github.com/plotly/plotly.js/pull/7060), [#7085](https://github.com/plotly/plotly.js/pull/7085), [#7088](https://github.com/plotly/plotly.js/pull/7088), [#7090](https://github.com/plotly/plotly.js/pull/7090), [#7092](https://github.com/plotly/plotly.js/pull/7092), [#7094](https://github.com/plotly/plotly.js/pull/7094), [#7134](https://github.com/plotly/plotly.js/pull/7134)]
20+
- Deprecate mapbox traces and mapbox subplot [[#7087](https://github.com/plotly/plotly.js/pull/7087)]
21+
22+
- Fixed a bug in integer validation of arrays that threw an error when an array contained a mix of strings and integers.
23+
524
## [5.23.0] - 2024-07-23
625

726
### Updated

0 commit comments

Comments
 (0)