Skip to content

Commit

Permalink
Bump to 1.4.1a1 (#1791)
Browse files Browse the repository at this point in the history
* bump versions to 1.4.1a1

* we can change the version on the installation page since this will be merged into the develop branch and not main
  • Loading branch information
eberrigan authored Jun 3, 2024
1 parent f0bfd0b commit 61dbe62
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Please include information about how you installed.
- OS:
<!-- [e.g. ubuntu 20.04, macOS 11.0] -->
- Version(s):
<!-- e.g. [SLEAP v1.3.3, python 3.8] --->
<!-- e.g. [SLEAP v1.4.1a1, python 3.8] --->
- SLEAP installation method (listed [here](https://sleap.ai/installation.html#)):
- [ ] [Conda from package](https://sleap.ai/installation.html#conda-package)
- [ ] [Conda from source](https://sleap.ai/installation.html#conda-from-source)
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
copyright = f"2019–{date.today().year}, Talmo Lab"

# The short X.Y version
version = "1.3.3"
version = "1.4.1a1"

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

# Release should be the full branch name
release = "v1.3.3"
release = "v1.4.1a1"

html_title = f"SLEAP ({release})"
html_short_title = "SLEAP"
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ Although you do not need Mambaforge installed to perform a `pip install`, we rec
3. Finally, we can perform the `pip install`:
```bash
pip install sleap[pypi]==1.3.3
pip install sleap[pypi]==1.4.1a1
```
This works on **any OS except Apple silicon** and on **Google Colab**.
Expand Down
2 changes: 1 addition & 1 deletion sleap/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"""


__version__ = "1.4.1a0"
__version__ = "1.4.1a1"


def versions():
Expand Down

0 comments on commit 61dbe62

Please sign in to comment.