Skip to content

Commit

Permalink
Merge pull request #898 from kitzeslab/develop
Browse files Browse the repository at this point in the history
update version number to 0.10.1
  • Loading branch information
sammlapp authored Oct 26, 2023
2 parents f4dbc7b + 50bbf1e commit cf77a56
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Details about installation are available on the OpenSoundscape documentation at

#### How do I install OpenSoundscape?

* Most users should install OpenSoundscape via pip, preferably within a virtual environment: `pip install opensoundscape==0.10.0`.
* Most users should install OpenSoundscape via pip, preferably within a virtual environment: `pip install opensoundscape==0.10.1`.
* To use OpenSoundscape in Jupyter Notebooks (e.g. for tutorials), follow the installation instructions for your operating system, then follow the "Jupyter" instructions.
* Contributors and advanced users can also use Poetry to install OpenSoundscape using the "Contributor" instructions

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
author = "Sam Lapp, Tessa Rhinehart, Louis Freeland-Haynes, Jatin Khilnani, Alexandra Syunkova, Justin Kitzes"

# The full version, including alpha/beta/rc tags
release = "0.10.0"
release = "0.10.1"


# -- General configuration ---------------------------------------------------
Expand Down
6 changes: 3 additions & 3 deletions docs/installation/mac_and_linux.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Mac and Linux

OpenSoundscape can be installed on Mac and Linux machines with Python >=3.9 using the pip command `pip install opensoundscape==0.10.0`. We recommend installing OpenSoundscape in a virtual environment to prevent dependency conflicts.
OpenSoundscape can be installed on Mac and Linux machines with Python >=3.9 using the pip command `pip install opensoundscape==0.10.1`. We recommend installing OpenSoundscape in a virtual environment to prevent dependency conflicts.

Below are instructions for installation with two package managers:
* `conda`: Python and package management through Anaconda, a package manager popular among scientific programmers
Expand All @@ -15,7 +15,7 @@ Feel free to use another virtual environment manager (e.g. `virtualenvwrapper`)
* follow the [installation instructions](https://docs.anaconda.com/anaconda/install/) for your operating system.
* Create a Python (>=3.9) conda environment for opensoundscape: `conda create --name opensoundscape pip python=3.10` (you can leave out the requirement of python 3.10, just make sure you have at least python 3.9)
* Activate the environment: `conda activate opensoundscape`
* Install opensoundscape using pip: `pip install opensoundscape==0.10.0`
* Install opensoundscape using pip: `pip install opensoundscape==0.10.1`
* Deactivate the environment when you're done using it: `conda deactivate`

## Installation via `venv`
Expand All @@ -29,7 +29,7 @@ Run the following commands in your bash terminal:
* Make a directory for virtual environments and `cd` into it: `mkdir .venv && cd .venv`
* Create an environment called `opensoundscape` in the directory: `python3 -m venv opensoundscape`
* Activate/use the environment: `source opensoundscape/bin/activate`
* Install OpenSoundscape in the environment: `pip install opensoundscape==0.10.0`
* Install OpenSoundscape in the environment: `pip install opensoundscape==0.10.1`
* Once you are done with OpenSoundscape, deactivate the environment: `deactivate`
* To use the environment again, you will have to refer to absolute path of the virtual environments folder. For instance, if I were on a Mac and created `.venv` inside a directory `/Users/MyFiles/Code` I would activate the virtual environment using: `source /Users/MyFiles/Code/.venv/opensoundscape/bin/activate`

Expand Down
4 changes: 2 additions & 2 deletions docs/installation/windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ You can now manage packages with `conda`.
## Install OpenSoundscape in virtual environment
- Create a Python (>=3.9) conda environment for opensoundscape: `conda create --name opensoundscape pip python=3.10` (you can leave out the requirement of python 3.10, just make sure you have at least python 3.9)
- Activate the environment: `conda activate opensoundscape`
- Install opensoundscape using pip: `pip install opensoundscape==0.10.0`
- Install opensoundscape using pip: `pip install opensoundscape==0.10.1`
If you see an error that says "No matching distribution found...", your
best bet is to use these commands to download then install the package:
Expand All @@ -64,7 +64,7 @@ pip install .
If you run into this error and you are on a Windows 10 machine:
```
(opensoundscape_environment) username@computername:~$ pip install opensoundscape==0.10.0
(opensoundscape_environment) username@computername:~$ pip install opensoundscape==0.10.1
WARNING: Retrying (Retry(total=4, connect=None, read=None, redirect=None, status=None)) after connection broken by 'NewConnectionError('<pip._vendor.urllib3.connection.HTTPSConnection object at 0x7f7603c5da90>: Failed to establish a new connection: [Errno -2] Name or service not known')': /simple/opensoundscape/
```
You may be able to solve it by going to System Settings, searching for “Proxy Settings,” and beneath “Automatic proxy setup,” turning “Automatically detect settings” OFF. Restart your terminal for changes to take effect. Then activate the environment and install OpenSoundscape using pip.
2 changes: 1 addition & 1 deletion docs/intro/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Details about installation are available on the OpenSoundscape documentation at

### How do I install OpenSoundscape?

* Most users should install OpenSoundscape via pip, preferably within a virtual environment: `pip install opensoundscape==0.10.0`.
* Most users should install OpenSoundscape via pip, preferably within a virtual environment: `pip install opensoundscape==0.10.1`.
* To use OpenSoundscape in Jupyter Notebooks (e.g. for tutorials), follow the installation instructions for your operating system, then follow the "Jupyter" instructions.
* Contributors and advanced users can also use Poetry to install OpenSoundscape using the "Contributor" instructions

Expand Down
2 changes: 1 addition & 1 deletion opensoundscape/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.10.0"
__version__ = "0.10.1"

from . import annotations
from . import audio
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "opensoundscape"
version = "0.10.0"
version = "0.10.1"
description = "Open source, scalable acoustic classification for ecology and conservation"
authors = [
"Sam Lapp <sammlapp@gmail.com>",
Expand Down

0 comments on commit cf77a56

Please sign in to comment.