Skip to content

Commit a2092f0

Browse files
authored
Brown bag bump to 1.3.3 (#1484)
* Add version restrictions to tensorflow for pypi * Bump to 1.3.3 * Advise 1.3.3 pip install * Get GUI working on Linux * Get GUI working on Windows * Get inference working on windows * Restrict urllib3 range (non-blocking error in installation) * Get training/inference working on linux minimal environment * Put quotes around sleap install
1 parent cf831b6 commit a2092f0

11 files changed

+12
-12
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Please include information about how you installed.
2828
- OS:
2929
<!-- [e.g. ubuntu 20.04, macOS 11.0] -->
3030
- Version(s):
31-
<!-- e.g. [SLEAP v1.3.2, python 3.8] --->
31+
<!-- e.g. [SLEAP v1.3.3, python 3.8] --->
3232
- SLEAP installation method (listed [here](https://sleap.ai/installation.html#)):
3333
- [ ] [Conda from package](https://sleap.ai/installation.html#conda-package)
3434
- [ ] [Conda from source](https://sleap.ai/installation.html#conda-from-source)

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
copyright = f"2019–{date.today().year}, Talmo Lab"
2929

3030
# The short X.Y version
31-
version = "1.3.2"
31+
version = "1.3.3"
3232

3333
# Get the sleap version
3434
# with open("../sleap/version.py") as f:
3535
# version_file = f.read()
3636
# version = re.search("\d.+(?=['\"])", version_file).group(0)
3737

3838
# Release should be the full branch name
39-
release = "v1.3.2"
39+
release = "v1.3.3"
4040

4141
html_title = f"SLEAP ({release})"
4242
html_short_title = "SLEAP"

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ Although you do not need Mambaforge installed to perform a `pip install`, we rec
232232
3. Finally, we can perform the `pip install`:
233233

234234
```bash
235-
pip install sleap[pypi]==1.3.2
235+
pip install sleap[pypi]==1.3.3
236236
```
237237

238238
This works on **any OS except Apple silicon** and on **Google Colab**.

docs/notebooks/Data_structures.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"source": [
5757
"# This should take care of all the dependencies on colab:\n",
5858
"!pip uninstall -qqq -y opencv-python opencv-contrib-python\n",
59-
"!pip install -qqq sleap==1.3.1111\n",
59+
"!pip install -qqq \"sleap[pypi]>=1.3.3\"\n",
6060
"\n",
6161
"# But to do it locally, we'd recommend the conda package (available on Windows + Linux):\n",
6262
"# conda create -n sleap -c sleap -c conda-forge -c nvidia sleap"

docs/notebooks/Interactive_and_realtime_inference.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"source": [
6161
"# This should take care of all the dependencies on colab:\n",
6262
"!pip uninstall -qqq -y opencv-python opencv-contrib-python\n",
63-
"!pip install -qqq sleap==1.3.1\n",
63+
"!pip install -qqq \"sleap[pypi]>=1.3.3\"\n",
6464
"\n",
6565
"\n",
6666
"# But to do it locally, we'd recommend the conda package (available on Windows + Linux):\n",

docs/notebooks/Interactive_and_resumable_training.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
"source": [
6363
"# This should take care of all the dependencies on colab:\n",
6464
"!pip uninstall -qqq -y opencv-python opencv-contrib-python\n",
65-
"!pip install -qqq sleap==1.3.1\n",
65+
"!pip install -qqq \"sleap[pypi]>=1.3.3\"\n",
6666
"\n",
6767
"\n",
6868
"# But to do it locally, we'd recommend the conda package (available on Windows + Linux):\n",

docs/notebooks/Model_evaluation.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
],
4141
"source": [
4242
"!pip uninstall -qqq -y opencv-python opencv-contrib-python\n",
43-
"!pip install -qqq sleap==1.3.1\n",
43+
"!pip install -qqq \"sleap[pypi]>=1.3.3\"\n",
4444
"!apt -qq install tree\n",
4545
"!wget -q https://storage.googleapis.com/sleap-data/reference/flies13/td_fast.210505_012601.centered_instance.n%3D1800.zip\n",
4646
"!unzip -qq -o -d \"td_fast.210505_012601.centered_instance.n=1800\" \"td_fast.210505_012601.centered_instance.n=1800.zip\""

docs/notebooks/Post_inference_tracking.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"source": [
6262
"# This should take care of all the dependencies on colab:\n",
6363
"!pip uninstall -qqq -y opencv-python opencv-contrib-python\n",
64-
"!pip install -qqq sleap==1.3.1\n",
64+
"!pip install -qqq \"sleap[pypi]>=1.3.3\"\n",
6565
"\n",
6666
"# But to do it locally, we'd recommend the conda package (available on Windows + Linux):\n",
6767
"# conda create -n sleap -c sleap -c conda-forge -c nvidia sleap"

docs/notebooks/Training_and_inference_on_an_example_dataset.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
],
6363
"source": [
6464
"!pip uninstall -qqq -y opencv-python opencv-contrib-python\n",
65-
"!pip install -qqq sleap==1.3.1"
65+
"!pip install -qqq \"sleap[pypi]>=1.3.3\""
6666
]
6767
},
6868
{

docs/notebooks/Training_and_inference_using_Google_Drive.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
],
6060
"source": [
6161
"!pip uninstall -qqq -y opencv-python opencv-contrib-python\n",
62-
"!pip install -qqq sleap==1.3.1"
62+
"!pip install -qqq \"sleap[pypi]>=1.3.3\""
6363
]
6464
},
6565
{

0 commit comments

Comments
 (0)