From da2160920107490ff2c8e060cf36477e5a5ebcf9 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Fri, 15 Sep 2023 12:43:38 -0400 Subject: [PATCH 1/6] retrigger docs build --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index cdb1b0f96a6..9ebb0e278d8 100644 --- a/README.md +++ b/README.md @@ -200,3 +200,4 @@ Code and documentation copyright 2019 Plotly, Inc. Code released under the [MIT license](https://github.com/plotly/plotly.py/blob/master/LICENSE.txt). Docs released under the [Creative Commons license](https://github.com/plotly/documentation/blob/source/LICENSE). + From 5e018edc1ce012e23310d70a8a60e49a74facd3e Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Fri, 15 Sep 2023 12:53:59 -0400 Subject: [PATCH 2/6] retrigger docs build --- release.md | 1 - 1 file changed, 1 deletion(-) diff --git a/release.md b/release.md index e1ea03ac42b..658f6f0b91b 100644 --- a/release.md +++ b/release.md @@ -270,4 +270,3 @@ From `packages/python/plotly-geo`, build the conda package ``` Then upload to the plotly anaconda channel as described above. - From b7afccf89d9378200cb1e0c6f1c26ca29c7fe3ea Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Thu, 12 Oct 2023 09:59:19 -0400 Subject: [PATCH 3/6] 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 4/6] 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) From d85f52360dabc3a7b36bbb3b60a80acf1aa822c0 Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Sat, 14 Oct 2023 08:01:40 -0400 Subject: [PATCH 5/6] update igraph --- doc/python/tree-plots.md | 4 ++-- doc/requirements.txt | 2 +- doc/unconverted/python/3d-network-graph.md | 2 +- doc/unconverted/python/chord-diagram.md | 2 +- doc/unconverted/python/igraph-networkx-comparison.md | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/python/tree-plots.md b/doc/python/tree-plots.md index a5b361f80e3..ba44146673d 100644 --- a/doc/python/tree-plots.md +++ b/doc/python/tree-plots.md @@ -35,10 +35,10 @@ jupyter: #### Set Up Tree with [igraph](http://igraph.org/python/) -Install igraph with `pip install python-igraph`. +Install igraph with `pip install igraph`. ```python -!pip install python-igraph +!pip install igraph ``` ```python diff --git a/doc/requirements.txt b/doc/requirements.txt index 8e3c0b0b493..8170b158cb3 100644 --- a/doc/requirements.txt +++ b/doc/requirements.txt @@ -10,7 +10,7 @@ scipy==1.3.1 patsy==0.5.1 numpy==1.19.5 plotly-geo -python-igraph +igraph geopandas==0.8.1 pyshp==2.1.2 shapely==1.7.1 diff --git a/doc/unconverted/python/3d-network-graph.md b/doc/unconverted/python/3d-network-graph.md index 6cf373b0651..dc60a713da3 100644 --- a/doc/unconverted/python/3d-network-graph.md +++ b/doc/unconverted/python/3d-network-graph.md @@ -33,7 +33,7 @@ Plotly's Python library is free and open source! [Get started](https://plot.ly/p We define our graph as an `igraph.Graph` object. [Python `igraph`](http://igraph.org/python/) -is a library for high-performance graph generation and analysis. Install the Python library with `sudo pip install python-igraph`. +is a library for high-performance graph generation and analysis. Install the Python library with `pip install igraph`. ```python import igraph as ig diff --git a/doc/unconverted/python/chord-diagram.md b/doc/unconverted/python/chord-diagram.md index 57697a9fd90..8be1ec826c8 100644 --- a/doc/unconverted/python/chord-diagram.md +++ b/doc/unconverted/python/chord-diagram.md @@ -55,7 +55,7 @@ Namely, if the distance(`V[i], V[j]`), belongs to the $K^{th}$ interval associat We processed data provided by [Eurovision Song Contest](http://www.eurovision.tv/page/history/by-year/contest?event=2083#Scoreboard), and saved the corresponding graph in a `gml` file. Now we can read the `gml` file and define an [`igraph.Graph`](http://igraph.org/python/) object. -Install the Python libraries with `sudo pip install python-igraph` and `sudo pip install networkx`. +Install the Python libraries with `pip install igraph` and `sudo pip install networkx`. ```python import igraph as ig diff --git a/doc/unconverted/python/igraph-networkx-comparison.md b/doc/unconverted/python/igraph-networkx-comparison.md index b46ef78e1e7..5a3296118e0 100644 --- a/doc/unconverted/python/igraph-networkx-comparison.md +++ b/doc/unconverted/python/igraph-networkx-comparison.md @@ -31,7 +31,7 @@ Plotly's Python library is free and open source! [Get started](https://plot.ly/p #### Comparison -In this tutorial we plot the same network - the coauthorship network of scientists working on network theory and experiment - first as an `igraph.Graph` object, with the Kamada-Kawai layout, and then as a `networkx.Graph`, with the Fruchterman-Reingold layout. Install the Python libraries with `sudo pip install python-igraph` and `sudo pip install networkx`. +In this tutorial we plot the same network - the coauthorship network of scientists working on network theory and experiment - first as an `igraph.Graph` object, with the Kamada-Kawai layout, and then as a `networkx.Graph`, with the Fruchterman-Reingold layout. Install the Python libraries with `pip install igraph` and `sudo pip install networkx`. The graph data are read from a gml file, posted at UC Irvine [Network Data Repository](http://networkdata.ics.uci.edu/data/netscience/netscience.gml): From d86e19f155369666931deb5d646abd8bbc3c751c Mon Sep 17 00:00:00 2001 From: Liam Connors Date: Mon, 16 Oct 2023 12:23:50 -0400 Subject: [PATCH 6/6] leave python2 pages as is --- doc/unconverted/python/3d-network-graph.md | 2 +- doc/unconverted/python/chord-diagram.md | 2 +- doc/unconverted/python/igraph-networkx-comparison.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/unconverted/python/3d-network-graph.md b/doc/unconverted/python/3d-network-graph.md index dc60a713da3..2ae805855d9 100644 --- a/doc/unconverted/python/3d-network-graph.md +++ b/doc/unconverted/python/3d-network-graph.md @@ -33,7 +33,7 @@ Plotly's Python library is free and open source! [Get started](https://plot.ly/p We define our graph as an `igraph.Graph` object. [Python `igraph`](http://igraph.org/python/) -is a library for high-performance graph generation and analysis. Install the Python library with `pip install igraph`. +is a library for high-performance graph generation and analysis. Install the Python library with `sudo pip install igraph`. ```python import igraph as ig diff --git a/doc/unconverted/python/chord-diagram.md b/doc/unconverted/python/chord-diagram.md index 8be1ec826c8..470a4ae4b06 100644 --- a/doc/unconverted/python/chord-diagram.md +++ b/doc/unconverted/python/chord-diagram.md @@ -55,7 +55,7 @@ Namely, if the distance(`V[i], V[j]`), belongs to the $K^{th}$ interval associat We processed data provided by [Eurovision Song Contest](http://www.eurovision.tv/page/history/by-year/contest?event=2083#Scoreboard), and saved the corresponding graph in a `gml` file. Now we can read the `gml` file and define an [`igraph.Graph`](http://igraph.org/python/) object. -Install the Python libraries with `pip install igraph` and `sudo pip install networkx`. +Install the Python libraries with `sudo pip install igraph` and `sudo pip install networkx`. ```python import igraph as ig diff --git a/doc/unconverted/python/igraph-networkx-comparison.md b/doc/unconverted/python/igraph-networkx-comparison.md index 5a3296118e0..55260491f86 100644 --- a/doc/unconverted/python/igraph-networkx-comparison.md +++ b/doc/unconverted/python/igraph-networkx-comparison.md @@ -31,7 +31,7 @@ Plotly's Python library is free and open source! [Get started](https://plot.ly/p #### Comparison -In this tutorial we plot the same network - the coauthorship network of scientists working on network theory and experiment - first as an `igraph.Graph` object, with the Kamada-Kawai layout, and then as a `networkx.Graph`, with the Fruchterman-Reingold layout. Install the Python libraries with `pip install igraph` and `sudo pip install networkx`. +In this tutorial we plot the same network - the coauthorship network of scientists working on network theory and experiment - first as an `igraph.Graph` object, with the Kamada-Kawai layout, and then as a `networkx.Graph`, with the Fruchterman-Reingold layout. Install the Python libraries with `sudo pip install igraph` and `sudo pip install networkx`. The graph data are read from a gml file, posted at UC Irvine [Network Data Repository](http://networkdata.ics.uci.edu/data/netscience/netscience.gml):