From 4c77286e1aa817e6ad75c14aa63f3186555ffe86 Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Mon, 19 May 2025 22:57:53 -0400 Subject: [PATCH 1/7] Document conda support --- README.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/README.md b/README.md index 1140e9c037..0d14a978f4 100644 --- a/README.md +++ b/README.md @@ -100,6 +100,23 @@ with `pip install 'rustworkx[graphviz]'`. If you would like to install all the optional Python dependencies when you install rustworkx you can use `pip install 'rustworkx[all]'` to do this. +### Conda Ecosystem + +[![Conda Version](https://img.shields.io/conda/vn/conda-forge/rustworkx.svg)](https://anaconda.org/conda-forge/rustworkx) + +Community supported binaries are published to the Conda ecosystem via `conda-forge`. Although +unofficial, they can be helpful for `conda` users. To install, simply run: + +``` +conda install conda-forge::rustworkx +``` + +Likewise, if you have `mamba` instead of `conda`: + +``` +mamba install conda-forge::rustworkx +``` + ## Authors and Citation rustworkx is the work of [many people](https://github.com/Qiskit/rustworkx/graphs/contributors) who contribute From 5abc15eb61e5e2054f4aad7086b7e205a9d36dd2 Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Mon, 19 May 2025 22:59:18 -0400 Subject: [PATCH 2/7] Add badge next to Conda Ecosystem --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 0d14a978f4..2bb641c48b 100644 --- a/README.md +++ b/README.md @@ -100,9 +100,7 @@ with `pip install 'rustworkx[graphviz]'`. If you would like to install all the optional Python dependencies when you install rustworkx you can use `pip install 'rustworkx[all]'` to do this. -### Conda Ecosystem - -[![Conda Version](https://img.shields.io/conda/vn/conda-forge/rustworkx.svg)](https://anaconda.org/conda-forge/rustworkx) +### Conda Ecosystem [![Conda Version](https://img.shields.io/conda/vn/conda-forge/rustworkx.svg)](https://anaconda.org/conda-forge/rustworkx) Community supported binaries are published to the Conda ecosystem via `conda-forge`. Although unofficial, they can be helpful for `conda` users. To install, simply run: From 35c4020e0f9e63fd11146fe2572a2843d38138a1 Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Mon, 19 May 2025 22:59:52 -0400 Subject: [PATCH 3/7] Revert "Add badge next to Conda Ecosystem" This reverts commit 5abc15eb61e5e2054f4aad7086b7e205a9d36dd2. --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2bb641c48b..0d14a978f4 100644 --- a/README.md +++ b/README.md @@ -100,7 +100,9 @@ with `pip install 'rustworkx[graphviz]'`. If you would like to install all the optional Python dependencies when you install rustworkx you can use `pip install 'rustworkx[all]'` to do this. -### Conda Ecosystem [![Conda Version](https://img.shields.io/conda/vn/conda-forge/rustworkx.svg)](https://anaconda.org/conda-forge/rustworkx) +### Conda Ecosystem + +[![Conda Version](https://img.shields.io/conda/vn/conda-forge/rustworkx.svg)](https://anaconda.org/conda-forge/rustworkx) Community supported binaries are published to the Conda ecosystem via `conda-forge`. Although unofficial, they can be helpful for `conda` users. To install, simply run: From b06155b5d2bf015bbab3786375346f0002a04e02 Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Mon, 19 May 2025 23:03:28 -0400 Subject: [PATCH 4/7] Fix grammar --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0d14a978f4..3f3efc3c80 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ install rustworkx you can use `pip install 'rustworkx[all]'` to do this. [![Conda Version](https://img.shields.io/conda/vn/conda-forge/rustworkx.svg)](https://anaconda.org/conda-forge/rustworkx) -Community supported binaries are published to the Conda ecosystem via `conda-forge`. Although +Community-supported binaries are published to the Conda ecosystem via `conda-forge`. Although unofficial, they can be helpful for `conda` users. To install, simply run: ``` From 1b4a4c03304a214ad6a18616929d47240c08d285 Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Tue, 20 May 2025 17:13:42 -0400 Subject: [PATCH 5/7] Shorte section --- README.md | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 3f3efc3c80..e6bb653b9f 100644 --- a/README.md +++ b/README.md @@ -102,19 +102,11 @@ install rustworkx you can use `pip install 'rustworkx[all]'` to do this. ### Conda Ecosystem -[![Conda Version](https://img.shields.io/conda/vn/conda-forge/rustworkx.svg)](https://anaconda.org/conda-forge/rustworkx) - -Community-supported binaries are published to the Conda ecosystem via `conda-forge`. Although -unofficial, they can be helpful for `conda` users. To install, simply run: - -``` -conda install conda-forge::rustworkx -``` - -Likewise, if you have `mamba` instead of `conda`: +Community-supported binaries are published to [conda-forge](https://anaconda.org/conda-forge/rustworkx). Although +unofficial, they can be helpful for users of the Conda ecosystem (including `mamba`, `micromamba`, `pixi`). To install, simply run: ``` -mamba install conda-forge::rustworkx +conda install -c conda-forge rustworkx ``` ## Authors and Citation From b941b11166896b3ccde4b6041ce3ed75b0789619 Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Tue, 20 May 2025 17:14:20 -0400 Subject: [PATCH 6/7] Styling --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6bb653b9f..dbf6820d71 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ install rustworkx you can use `pip install 'rustworkx[all]'` to do this. ### Conda Ecosystem Community-supported binaries are published to [conda-forge](https://anaconda.org/conda-forge/rustworkx). Although -unofficial, they can be helpful for users of the Conda ecosystem (including `mamba`, `micromamba`, `pixi`). To install, simply run: +unofficial, they can be helpful for users of the `conda` ecosystem (including `mamba`, `micromamba`, `pixi`). To install, simply run: ``` conda install -c conda-forge rustworkx From b6c7b63bd317406a3ed339d25c1cdfe0b131c10d Mon Sep 17 00:00:00 2001 From: Ivan Carvalho Date: Tue, 20 May 2025 17:16:22 -0400 Subject: [PATCH 7/7] Even more grammars (how many commits for a small PR?) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dbf6820d71..f39a6dea88 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ install rustworkx you can use `pip install 'rustworkx[all]'` to do this. ### Conda Ecosystem Community-supported binaries are published to [conda-forge](https://anaconda.org/conda-forge/rustworkx). Although -unofficial, they can be helpful for users of the `conda` ecosystem (including `mamba`, `micromamba`, `pixi`). To install, simply run: +unofficial, they can be helpful for users of the `conda` ecosystem (including `mamba`, `micromamba`, and `pixi`). To install, simply run: ``` conda install -c conda-forge rustworkx