From b7afccf89d9378200cb1e0c6f1c26ca29c7fe3ea Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Thu, 12 Oct 2023 09:59:19 -0400 Subject: [PATCH 1/2] Update 3d-surface-plots.md --- doc/python/3d-surface-plots.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/python/3d-surface-plots.md b/doc/python/3d-surface-plots.md index fbace329f60..a7b561e7a6c 100644 --- a/doc/python/3d-surface-plots.md +++ b/doc/python/3d-surface-plots.md @@ -77,7 +77,7 @@ fig.show() #### Surface Plot With Contours -Display and customize contour data for each axis using the `contours` attribute ([reference](plotly.com/python/reference/surface/#surface-contours)). +Display and customize contour data for each axis using the `contours` attribute ([reference](https://plotly.com/python/reference/surface/#surface-contours)). ```python import plotly.graph_objects as go From ad72d4320d6a47bd73254f8e509ec2f869a9cf77 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Fri, 13 Oct 2023 14:16:58 -0400 Subject: [PATCH 2/2] Update setup.py --- packages/python/plotly/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/python/plotly/setup.py b/packages/python/plotly/setup.py index 178f176457c..a9a2ac5869f 100644 --- a/packages/python/plotly/setup.py +++ b/packages/python/plotly/setup.py @@ -420,7 +420,7 @@ def run(self): # update plotly.js version in _plotlyjs_version rev = build_info["vcs_revision"] - date = build_info["committer_date"] + date = str(build_info["committer_date"]) version = "_".join([self.devrepo, self.devbranch, date[:10], rev[:8]]) overwrite_plotlyjs_version_file(version)