From 93567ba08817d66264b5826079df08eaf6cd0037 Mon Sep 17 00:00:00 2001 From: Bryon Tjanaka Date: Fri, 15 Sep 2023 12:11:25 -0700 Subject: [PATCH 1/4] PR format --- HISTORY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HISTORY.md b/HISTORY.md index 952053719..b50ae47ea 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -13,7 +13,7 @@ - **Backwards-incompatible:** Allow using kwargs for colorbar in parallel_axes_plot ({pr}`358`) - Removes cbar_orientaton and cbar_pad args for parallel_axes_plot -- Add `rasterized` arg for heatmaps (#359) +- Add `rasterized` arg for heatmaps ({pr}`359`) - Support 1D cvt_archive_heatmap ({pr}`362`) - Add 3D plots for CVTArchive ({pr}`371`) - Add visualization of 3D QDax repertoires ({pr}`373`) From 88ace4197806250c81f892e24c073d0d41d31d87 Mon Sep 17 00:00:00 2001 From: Bryon Tjanaka Date: Thu, 21 Sep 2023 15:21:01 -0700 Subject: [PATCH 2/4] Note all in contributing docs --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 747aacc8b..e307db8c3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -35,7 +35,7 @@ Ready to contribute? Here's how to set up pyribs for local development. cd pyribs conda create --prefix ./env python=3.8 # 3.8 is the minimum version pyribs supports. conda activate ./env - pip install -e .[dev] + pip install -e .[all,dev] ``` 1. We roughly follow the From c3348c84d58b6a65f6af61b20ce69df6199208e6 Mon Sep 17 00:00:00 2001 From: Bryon Tjanaka Date: Thu, 21 Sep 2023 15:43:17 -0700 Subject: [PATCH 3/4] Comment about all --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e307db8c3..32316f1cb 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -33,9 +33,9 @@ Ready to contribute? Here's how to set up pyribs for local development. ```bash cd pyribs - conda create --prefix ./env python=3.8 # 3.8 is the minimum version pyribs supports. + conda create --prefix ./env python=3.8 # 3.8 is the minimum version pyribs supports. conda activate ./env - pip install -e .[all,dev] + pip install -e .[all,dev] # `all` contains dependencies for all extras of pyribs. ``` 1. We roughly follow the From 50d6a0e3d3a99f10b06384b7d7c42a138bf690c5 Mon Sep 17 00:00:00 2001 From: Bryon Tjanaka Date: Thu, 21 Sep 2023 15:43:59 -0700 Subject: [PATCH 4/4] Comment on dev deps --- CONTRIBUTING.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 32316f1cb..f66fcaf27 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -36,6 +36,7 @@ Ready to contribute? Here's how to set up pyribs for local development. conda create --prefix ./env python=3.8 # 3.8 is the minimum version pyribs supports. conda activate ./env pip install -e .[all,dev] # `all` contains dependencies for all extras of pyribs. + # `dev` contains development dependencies. ``` 1. We roughly follow the