From 17bdb1a757878f07d16e3853e32198935ddaf47e Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Thu, 14 Sep 2023 17:15:31 +0530 Subject: [PATCH 01/12] Add bulletin.md and update index.rst --- docs/bulletin.md | 36 ++++++++++++++++++++++++++++++++++++ docs/index.rst | 1 + 2 files changed, 37 insertions(+) create mode 100644 docs/bulletin.md diff --git a/docs/bulletin.md b/docs/bulletin.md new file mode 100644 index 000000000..e1eab9d27 --- /dev/null +++ b/docs/bulletin.md @@ -0,0 +1,36 @@ +# Bulletin + +This is a brown-bag release following insufficient restrictions on allowable `tensorflow` versions for the "pypi" extra `sleap[pypi]` in 1.3.2. While the conda packages for 1.3.2 were not affected (since `tensorflow` is pulled in from anaconda), the PyPI only package installed via `pip install sleap[pypi]` had conflicts between the version of `tensorflow` and the version of `keras`. See [1.3.0](https://github.com/talmolab/sleap/releases/tag/v1.3.0), [1.3.1](https://github.com/talmolab/sleap/releases/tag/v1.3.1), and [1.3.2](https://github.com/talmolab/sleap/releases/tag/v1.3.2) for previous notable changes. As a reminder: + +> The 1.3.1 dependency update requires [Mamba](https://mamba.readthedocs.io/en/latest/index.html) for faster dependency resolution. If you already have anaconda installed, then you _can_ set the solver to libmamba in the base environment: +>``` +>conda update -n base conda +>conda install -n base conda-libmamba-solver +>conda config --set solver libmamba +>``` +>Any subsequent `mamba` commands in the docs will need to be replaced with `conda` if you choose to use your existing Anaconda installation. +> +>Otherwise, follow the [recommended installation instruction for Mamba](https://mamba.readthedocs.io/en/latest/installation.html). + +# Quick install +**`mamba` (Windows/Linux/GPU)**: +``` +mamba create -y -n sleap -c conda-forge -c nvidia -c sleap -c anaconda sleap=1.3.3 +``` + +**`mamba` (Mac)**: +``` +mamba create -y -n sleap -c conda-forge -c anaconda -c sleap sleap=1.3.3 +``` + +**`pip` (any OS except Apple Silicon)**: +``` +pip install sleap[pypi]==1.3.3 +``` + +# Full Changelog + +## Dependencies +* Add version restrictions to tensorflow for pypi by @roomrys in https://github.com/talmolab/sleap/pull/1485 + +**Full Changelog**: https://github.com/talmolab/sleap/compare/v1.3.2...v1.3.3 \ No newline at end of file diff --git a/docs/index.rst b/docs/index.rst index 9a91f6c38..f9d764f44 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -19,4 +19,5 @@ SLEAP Documentation datasets GitHub Releases + bulletin help From 7085725b3108a977b83ae0eb9ab9cae332b8f005 Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Thu, 14 Sep 2023 20:22:55 +0530 Subject: [PATCH 02/12] Reorder the bulletin in index.rst --- docs/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.rst b/docs/index.rst index f9d764f44..36167228a 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -17,7 +17,7 @@ SLEAP Documentation notebooks/index Developer API datasets + bulletin GitHub Releases - bulletin help From b3b9dc8801b0bcd3c53abd80924cab97424c06b6 Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Thu, 14 Sep 2023 22:39:07 +0530 Subject: [PATCH 03/12] Add branch to github workflow in website.yml --- .github/workflows/website.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index 7db6b4d74..bd10331f4 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -9,6 +9,7 @@ on: - main - develop - liezl/add-pip-extras + - shrivaths/changelog-announcements-1 paths: - "docs/**" - "README.rst" From f2776e1564f40e932c9edd4d65b74875b0bacb5a Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Thu, 14 Sep 2023 22:43:58 +0530 Subject: [PATCH 04/12] Wrong branch added --- .github/workflows/website.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index bd10331f4..bb5224131 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -9,7 +9,7 @@ on: - main - develop - liezl/add-pip-extras - - shrivaths/changelog-announcements-1 + - shrivaths/changelog-announcement-1 paths: - "docs/**" - "README.rst" From 5a03d37635608b5d9f30a49d424ee756c0faa587 Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Fri, 15 Sep 2023 11:23:47 +0530 Subject: [PATCH 05/12] Update bulletin.md --- docs/bulletin.md | 49 ++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 43 insertions(+), 6 deletions(-) diff --git a/docs/bulletin.md b/docs/bulletin.md index e1eab9d27..ada22e840 100644 --- a/docs/bulletin.md +++ b/docs/bulletin.md @@ -1,6 +1,6 @@ # Bulletin -This is a brown-bag release following insufficient restrictions on allowable `tensorflow` versions for the "pypi" extra `sleap[pypi]` in 1.3.2. While the conda packages for 1.3.2 were not affected (since `tensorflow` is pulled in from anaconda), the PyPI only package installed via `pip install sleap[pypi]` had conflicts between the version of `tensorflow` and the version of `keras`. See [1.3.0](https://github.com/talmolab/sleap/releases/tag/v1.3.0), [1.3.1](https://github.com/talmolab/sleap/releases/tag/v1.3.1), and [1.3.2](https://github.com/talmolab/sleap/releases/tag/v1.3.2) for previous notable changes. As a reminder: +SLEAP 1.3.2 adds some nice usability features thanks to both the community ideas and new contributors! See [1.3.0](https://github.com/talmolab/sleap/releases/tag/v1.3.0) and [1.3.1](https://github.com/talmolab/sleap/releases/tag/v1.3.1) for previous notable changes. As a reminder: > The 1.3.1 dependency update requires [Mamba](https://mamba.readthedocs.io/en/latest/index.html) for faster dependency resolution. If you already have anaconda installed, then you _can_ set the solver to libmamba in the base environment: >``` @@ -15,22 +15,59 @@ This is a brown-bag release following insufficient restrictions on allowable `te # Quick install **`mamba` (Windows/Linux/GPU)**: ``` -mamba create -y -n sleap -c conda-forge -c nvidia -c sleap -c anaconda sleap=1.3.3 +mamba create -y -n sleap -c conda-forge -c nvidia -c sleap -c anaconda sleap=1.3.2 ``` **`mamba` (Mac)**: ``` -mamba create -y -n sleap -c conda-forge -c anaconda -c sleap sleap=1.3.3 +mamba create -y -n sleap -c conda-forge -c anaconda -c sleap sleap=1.3.2 ``` **`pip` (any OS except Apple Silicon)**: ``` -pip install sleap[pypi]==1.3.3 +pip install sleap[pypi]==1.3.2 ``` +# Highlights +* Limit max tracks via track-local queues by @shrivaths16 and @talmo in https://github.com/talmolab/sleap/pull/1447 +* Add option to remove videos in batch by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1382 and https://github.com/talmolab/sleap/pull/1406 +* Add shortcut to export analysis for current video by @KevinZ0217 in https://github.com/talmolab/sleap/pull/1414 and https://github.com/talmolab/sleap/pull/1444 +* Add video path and frame indices to metrics by @roomrys in https://github.com/talmolab/sleap/pull/1396 +* Add a button for copying model config to clipboard by @KevinZ0217 in https://github.com/talmolab/sleap/pull/1433 +* Add Option to Export CSV by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1438 + # Full Changelog +## Enhancements +* Add option to remove videos in batch by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1382 and https://github.com/talmolab/sleap/pull/1406 +* Add `Track` when add `Instance` by @roomrys in https://github.com/talmolab/sleap/pull/1408 +* Add `Video` to cache when adding `Track` by @roomrys in https://github.com/talmolab/sleap/pull/1407 +* Add shortcut to export analysis for current video by @KevinZ0217 in https://github.com/talmolab/sleap/pull/1414 and https://github.com/talmolab/sleap/pull/1444 +* Add video path and frame indices to metrics by @roomrys in https://github.com/talmolab/sleap/pull/1396 +* Improve error message for detecting video backend by @roomrys in https://github.com/talmolab/sleap/pull/1441 +* Add a button for copying model config to clipboard by @KevinZ0217 in https://github.com/talmolab/sleap/pull/1433 +* Add Option to Export CSV by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1438 +* Limit max tracks via track-local queues by @shrivaths16 and @talmo in https://github.com/talmolab/sleap/pull/1447 + +## Fixes +* Minor fix in computation of OKS by @shrivaths16 in https://github.com/talmolab/sleap/pull/1383 and https://github.com/talmolab/sleap/pull/1399 +* Fix `Filedialog` to work across (mac)OS by @roomrys in https://github.com/talmolab/sleap/pull/1393 +* Fix panning bounding box by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1398 +* Fix skeleton templates by @roomrys in https://github.com/talmolab/sleap/pull/1404 +* Fix labels export for json by @roomrys in https://github.com/talmolab/sleap/pull/1410 +* Correct GUI state emulation by @roomrys in https://github.com/talmolab/sleap/pull/1422 +* Update status message on status bar by @shrivaths16 in https://github.com/talmolab/sleap/pull/1411 +* Fix error thrown when last video is deleted by @shrivaths16 in https://github.com/talmolab/sleap/pull/1421 +* Add model folder to the unzip path by @roomrys in https://github.com/talmolab/sleap/pull/1445 +* Fix drag and drop by @talmo in https://github.com/talmolab/sleap/pull/1449 + ## Dependencies -* Add version restrictions to tensorflow for pypi by @roomrys in https://github.com/talmolab/sleap/pull/1485 +* Pin micromamba version by @roomrys in https://github.com/talmolab/sleap/pull/1376 +* Add pip extras by @roomrys in https://github.com/talmolab/sleap/pull/1481 + +## New Contributors +* @shrivaths16 made their first contribution in https://github.com/talmolab/sleap/pull/1383 +* @gitttt-1234 made their first contribution in https://github.com/talmolab/sleap/pull/1382 +* @KevinZ0217 made their first contribution in https://github.com/talmolab/sleap/pull/1414 -**Full Changelog**: https://github.com/talmolab/sleap/compare/v1.3.2...v1.3.3 \ No newline at end of file +**Full Changelog**: https://github.com/talmolab/sleap/compare/v1.3.1...v1.3.2 \ No newline at end of file From b485da28fc14f1b86358cfab4536876a38aa010a Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Wed, 20 Sep 2023 18:57:07 +0530 Subject: [PATCH 06/12] Adjust bulletin.md headings --- docs/bulletin.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/bulletin.md b/docs/bulletin.md index ada22e840..1d7da293f 100644 --- a/docs/bulletin.md +++ b/docs/bulletin.md @@ -12,7 +12,7 @@ SLEAP 1.3.2 adds some nice usability features thanks to both the community ideas > >Otherwise, follow the [recommended installation instruction for Mamba](https://mamba.readthedocs.io/en/latest/installation.html). -# Quick install +### Quick install **`mamba` (Windows/Linux/GPU)**: ``` mamba create -y -n sleap -c conda-forge -c nvidia -c sleap -c anaconda sleap=1.3.2 @@ -28,7 +28,7 @@ mamba create -y -n sleap -c conda-forge -c anaconda -c sleap sleap=1.3.2 pip install sleap[pypi]==1.3.2 ``` -# Highlights +### Highlights * Limit max tracks via track-local queues by @shrivaths16 and @talmo in https://github.com/talmolab/sleap/pull/1447 * Add option to remove videos in batch by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1382 and https://github.com/talmolab/sleap/pull/1406 * Add shortcut to export analysis for current video by @KevinZ0217 in https://github.com/talmolab/sleap/pull/1414 and https://github.com/talmolab/sleap/pull/1444 @@ -36,9 +36,9 @@ pip install sleap[pypi]==1.3.2 * Add a button for copying model config to clipboard by @KevinZ0217 in https://github.com/talmolab/sleap/pull/1433 * Add Option to Export CSV by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1438 -# Full Changelog +### Full Changelog -## Enhancements +#### Enhancements * Add option to remove videos in batch by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1382 and https://github.com/talmolab/sleap/pull/1406 * Add `Track` when add `Instance` by @roomrys in https://github.com/talmolab/sleap/pull/1408 * Add `Video` to cache when adding `Track` by @roomrys in https://github.com/talmolab/sleap/pull/1407 @@ -49,7 +49,7 @@ pip install sleap[pypi]==1.3.2 * Add Option to Export CSV by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1438 * Limit max tracks via track-local queues by @shrivaths16 and @talmo in https://github.com/talmolab/sleap/pull/1447 -## Fixes +#### Fixes * Minor fix in computation of OKS by @shrivaths16 in https://github.com/talmolab/sleap/pull/1383 and https://github.com/talmolab/sleap/pull/1399 * Fix `Filedialog` to work across (mac)OS by @roomrys in https://github.com/talmolab/sleap/pull/1393 * Fix panning bounding box by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1398 @@ -61,11 +61,11 @@ pip install sleap[pypi]==1.3.2 * Add model folder to the unzip path by @roomrys in https://github.com/talmolab/sleap/pull/1445 * Fix drag and drop by @talmo in https://github.com/talmolab/sleap/pull/1449 -## Dependencies +#### Dependencies * Pin micromamba version by @roomrys in https://github.com/talmolab/sleap/pull/1376 * Add pip extras by @roomrys in https://github.com/talmolab/sleap/pull/1481 -## New Contributors +###3 New Contributors * @shrivaths16 made their first contribution in https://github.com/talmolab/sleap/pull/1383 * @gitttt-1234 made their first contribution in https://github.com/talmolab/sleap/pull/1382 * @KevinZ0217 made their first contribution in https://github.com/talmolab/sleap/pull/1414 From 8ab2e6c5d8a93a2521f87fcf8e241e8d9e6465ae Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Thu, 21 Sep 2023 20:56:12 +0530 Subject: [PATCH 07/12] Typo --- docs/bulletin.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/bulletin.md b/docs/bulletin.md index 1d7da293f..a1be0e7b7 100644 --- a/docs/bulletin.md +++ b/docs/bulletin.md @@ -1,5 +1,6 @@ # Bulletin +## SLEAP v1.3.2 SLEAP 1.3.2 adds some nice usability features thanks to both the community ideas and new contributors! See [1.3.0](https://github.com/talmolab/sleap/releases/tag/v1.3.0) and [1.3.1](https://github.com/talmolab/sleap/releases/tag/v1.3.1) for previous notable changes. As a reminder: > The 1.3.1 dependency update requires [Mamba](https://mamba.readthedocs.io/en/latest/index.html) for faster dependency resolution. If you already have anaconda installed, then you _can_ set the solver to libmamba in the base environment: @@ -65,7 +66,7 @@ pip install sleap[pypi]==1.3.2 * Pin micromamba version by @roomrys in https://github.com/talmolab/sleap/pull/1376 * Add pip extras by @roomrys in https://github.com/talmolab/sleap/pull/1481 -###3 New Contributors +#### New Contributors * @shrivaths16 made their first contribution in https://github.com/talmolab/sleap/pull/1383 * @gitttt-1234 made their first contribution in https://github.com/talmolab/sleap/pull/1382 * @KevinZ0217 made their first contribution in https://github.com/talmolab/sleap/pull/1414 From e520176075628b4993630f4a1660c8169e2378ba Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Fri, 29 Sep 2023 20:07:16 +0530 Subject: [PATCH 08/12] Add date to bulletin --- docs/bulletin.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/bulletin.md b/docs/bulletin.md index a1be0e7b7..c578cb63e 100644 --- a/docs/bulletin.md +++ b/docs/bulletin.md @@ -1,6 +1,9 @@ # Bulletin ## SLEAP v1.3.2 + +_mm/dd/yyyy_ + SLEAP 1.3.2 adds some nice usability features thanks to both the community ideas and new contributors! See [1.3.0](https://github.com/talmolab/sleap/releases/tag/v1.3.0) and [1.3.1](https://github.com/talmolab/sleap/releases/tag/v1.3.1) for previous notable changes. As a reminder: > The 1.3.1 dependency update requires [Mamba](https://mamba.readthedocs.io/en/latest/index.html) for faster dependency resolution. If you already have anaconda installed, then you _can_ set the solver to libmamba in the base environment: From c0ea01dd7fa0c9245ff917ab4313adf61bd2b6f5 Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Fri, 29 Sep 2023 20:10:14 +0530 Subject: [PATCH 09/12] Add correct branch for build --- .github/workflows/website.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/website.yml b/.github/workflows/website.yml index bb5224131..e33c9df3e 100644 --- a/.github/workflows/website.yml +++ b/.github/workflows/website.yml @@ -8,7 +8,6 @@ on: # 'main' triggers updates to 'sleap.ai', all others to 'sleap.ai/develop' - main - develop - - liezl/add-pip-extras - shrivaths/changelog-announcement-1 paths: - "docs/**" From 9e0e1c4bc5c44092e4494d8ca5c067e28353f6d2 Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Wed, 20 Dec 2023 15:00:39 -0800 Subject: [PATCH 10/12] Update bulletin to What's new --- docs/bulletin.md | 61 ++++++++++++++++++++++++++++++++++++++++++++---- docs/index.rst | 2 +- 2 files changed, 57 insertions(+), 6 deletions(-) diff --git a/docs/bulletin.md b/docs/bulletin.md index c578cb63e..13a90fcf1 100644 --- a/docs/bulletin.md +++ b/docs/bulletin.md @@ -1,4 +1,55 @@ -# Bulletin +# What's New? + +## SLEAP v1.3.3 + +_mm/dd/yyyy_ + +This is a brown-bag release following insufficient restrictions on allowable `tensorflow` versions for the "pypi" extra `sleap[pypi]` in 1.3.2. While the conda packages for 1.3.2 were not affected (since `tensorflow` is pulled in from anaconda), the PyPI only package installed via `pip install sleap[pypi]` had conflicts between the version of `tensorflow` and the version of `keras`. See [1.3.0](https://github.com/talmolab/sleap/releases/tag/v1.3.0), [1.3.1](https://github.com/talmolab/sleap/releases/tag/v1.3.1), and [1.3.2](https://github.com/talmolab/sleap/releases/tag/v1.3.2) for previous notable changes. + +###### From 1.3.2+, to install SLEAP through pip use `pip install sleap[pypi]` to ensure all dependencies are gathered. + +As a reminder: + +> The 1.3.1 dependency update requires [Mamba](https://mamba.readthedocs.io/en/latest/index.html) for faster dependency resolution. If you already have anaconda installed, then you _can_ set the solver to libmamba in the base environment: +>``` +>conda update -n base conda +>conda install -n base conda-libmamba-solver +>conda config --set solver libmamba +>``` +>Any subsequent `mamba` commands in the docs will need to be replaced with `conda` if you choose to use your existing Anaconda installation. +> +>Otherwise, follow the [recommended installation instruction for Mamba](https://mamba.readthedocs.io/en/latest/installation.html). + +### Quick install +**`mamba` (Windows/Linux/GPU)**: +``` +mamba create -y -n sleap -c conda-forge -c nvidia -c sleap -c anaconda sleap=1.3.3 +``` + +**`mamba` (Mac)**: +``` +mamba create -y -n sleap -c conda-forge -c anaconda -c sleap sleap=1.3.3 +``` + +**`pip` (any OS except Apple Silicon)**: +``` +pip install sleap[pypi]==1.3.3 +``` + +### Full Changelog + +##### Fixes +* Do not try to remove item if already deleted by @roomrys in https://github.com/talmolab/sleap/pull/1498 +* Set `LD_LIBRARY_PATH` on mamba activate by @roomrys in https://github.com/talmolab/sleap/pull/1496 +* Reset `LD_LIBRARY_PATH` on deactivate by @roomrys in #1502 + +##### Dependencies +* Add version restirctions to tendorflow for pypi by @roomrys in #1485 +* Remove `imageio` pin by @roomrys in #1501 + +**Full Changelog**: https://github.com/talmolab/sleap/compare/v1.3.2...v1.3.3 + +--- ## SLEAP v1.3.2 @@ -42,7 +93,7 @@ pip install sleap[pypi]==1.3.2 ### Full Changelog -#### Enhancements +##### Enhancements * Add option to remove videos in batch by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1382 and https://github.com/talmolab/sleap/pull/1406 * Add `Track` when add `Instance` by @roomrys in https://github.com/talmolab/sleap/pull/1408 * Add `Video` to cache when adding `Track` by @roomrys in https://github.com/talmolab/sleap/pull/1407 @@ -53,7 +104,7 @@ pip install sleap[pypi]==1.3.2 * Add Option to Export CSV by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1438 * Limit max tracks via track-local queues by @shrivaths16 and @talmo in https://github.com/talmolab/sleap/pull/1447 -#### Fixes +##### Fixes * Minor fix in computation of OKS by @shrivaths16 in https://github.com/talmolab/sleap/pull/1383 and https://github.com/talmolab/sleap/pull/1399 * Fix `Filedialog` to work across (mac)OS by @roomrys in https://github.com/talmolab/sleap/pull/1393 * Fix panning bounding box by @gitttt-1234 in https://github.com/talmolab/sleap/pull/1398 @@ -65,11 +116,11 @@ pip install sleap[pypi]==1.3.2 * Add model folder to the unzip path by @roomrys in https://github.com/talmolab/sleap/pull/1445 * Fix drag and drop by @talmo in https://github.com/talmolab/sleap/pull/1449 -#### Dependencies +##### Dependencies * Pin micromamba version by @roomrys in https://github.com/talmolab/sleap/pull/1376 * Add pip extras by @roomrys in https://github.com/talmolab/sleap/pull/1481 -#### New Contributors +##### New Contributors * @shrivaths16 made their first contribution in https://github.com/talmolab/sleap/pull/1383 * @gitttt-1234 made their first contribution in https://github.com/talmolab/sleap/pull/1382 * @KevinZ0217 made their first contribution in https://github.com/talmolab/sleap/pull/1414 diff --git a/docs/index.rst b/docs/index.rst index 36167228a..60d59495f 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -17,7 +17,7 @@ SLEAP Documentation notebooks/index Developer API datasets - bulletin + What's new GitHub Releases help From 4a1a898cdb3da9819c41adc79eb38a7a66ed7bb5 Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Wed, 20 Dec 2023 17:45:32 -0800 Subject: [PATCH 11/12] edit bulletin.md --- docs/bulletin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bulletin.md b/docs/bulletin.md index 13a90fcf1..6690cea50 100644 --- a/docs/bulletin.md +++ b/docs/bulletin.md @@ -6,7 +6,7 @@ _mm/dd/yyyy_ This is a brown-bag release following insufficient restrictions on allowable `tensorflow` versions for the "pypi" extra `sleap[pypi]` in 1.3.2. While the conda packages for 1.3.2 were not affected (since `tensorflow` is pulled in from anaconda), the PyPI only package installed via `pip install sleap[pypi]` had conflicts between the version of `tensorflow` and the version of `keras`. See [1.3.0](https://github.com/talmolab/sleap/releases/tag/v1.3.0), [1.3.1](https://github.com/talmolab/sleap/releases/tag/v1.3.1), and [1.3.2](https://github.com/talmolab/sleap/releases/tag/v1.3.2) for previous notable changes. -###### From 1.3.2+, to install SLEAP through pip use `pip install sleap[pypi]` to ensure all dependencies are gathered. +**From 1.3.2+, to install SLEAP through pip use `pip install sleap[pypi]` to ensure all dependencies are gathered.** As a reminder: From 0c9b54d0024221310cf331b9b1d654f59ddb6375 Mon Sep 17 00:00:00 2001 From: Shrivaths Shyam Date: Tue, 2 Jan 2024 17:01:46 -0800 Subject: [PATCH 12/12] add dates for the what's new page --- docs/bulletin.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/bulletin.md b/docs/bulletin.md index 6690cea50..848e1d8a2 100644 --- a/docs/bulletin.md +++ b/docs/bulletin.md @@ -2,7 +2,7 @@ ## SLEAP v1.3.3 -_mm/dd/yyyy_ +_09/15/2023_ This is a brown-bag release following insufficient restrictions on allowable `tensorflow` versions for the "pypi" extra `sleap[pypi]` in 1.3.2. While the conda packages for 1.3.2 were not affected (since `tensorflow` is pulled in from anaconda), the PyPI only package installed via `pip install sleap[pypi]` had conflicts between the version of `tensorflow` and the version of `keras`. See [1.3.0](https://github.com/talmolab/sleap/releases/tag/v1.3.0), [1.3.1](https://github.com/talmolab/sleap/releases/tag/v1.3.1), and [1.3.2](https://github.com/talmolab/sleap/releases/tag/v1.3.2) for previous notable changes. @@ -53,7 +53,7 @@ pip install sleap[pypi]==1.3.3 ## SLEAP v1.3.2 -_mm/dd/yyyy_ +_09/10/2023_ SLEAP 1.3.2 adds some nice usability features thanks to both the community ideas and new contributors! See [1.3.0](https://github.com/talmolab/sleap/releases/tag/v1.3.0) and [1.3.1](https://github.com/talmolab/sleap/releases/tag/v1.3.1) for previous notable changes. As a reminder: