diff --git a/README.md b/README.md index 2785edf8..e36b17a2 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docs/conf.py b/docs/conf.py index f097c9e9..3c20528b 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 --------------------------------------------------- diff --git a/docs/installation/mac_and_linux.md b/docs/installation/mac_and_linux.md index e44691fc..8df8e1d9 100644 --- a/docs/installation/mac_and_linux.md +++ b/docs/installation/mac_and_linux.md @@ -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 @@ -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` @@ -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` diff --git a/docs/installation/windows.md b/docs/installation/windows.md index 64522b44..0e2e867e 100644 --- a/docs/installation/windows.md +++ b/docs/installation/windows.md @@ -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: @@ -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(': 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. diff --git a/docs/intro/quick-start.md b/docs/intro/quick-start.md index 0e181f80..8c4b85da 100644 --- a/docs/intro/quick-start.md +++ b/docs/intro/quick-start.md @@ -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 diff --git a/opensoundscape/__init__.py b/opensoundscape/__init__.py index c7a8972d..55e8ecbf 100644 --- a/opensoundscape/__init__.py +++ b/opensoundscape/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.10.0" +__version__ = "0.10.1" from . import annotations from . import audio diff --git a/pyproject.toml b/pyproject.toml index 8cfce423..b07f0ab6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 ",