diff --git a/CHANGELOG.md b/CHANGELOG.md index 2fb458b..2b253e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,7 +17,8 @@ The client here will eventually be released as "spython" (and eventually to singularity on pypi), and the versions here will coincide with these releases. ## [master](https://github.com/singularityhub/singularity-cli/tree/master) - - add more verbosity to instance start/stop (0.0.12) + - adding support to pull from a url (0.1.13) + - add more verbosity to instance start/stop (0.1.12) - adding more verbosity to running commands (0.1.11) - log error paths are optional (0.1.1) - instance list doesn't always include container_image (0.1.0) diff --git a/spython/main/pull.py b/spython/main/pull.py index 5446acc..2018260 100644 --- a/spython/main/pull.py +++ b/spython/main/pull.py @@ -60,8 +60,10 @@ def pull( bot.exit("You must provide an image uri, or use client.load() first.") # Singularity Only supports shub, docker and library pull - if not re.search("^(shub|docker|library)://", image): - bot.exit("pull only valid for docker, shub and library. Use sregistry client.") + if not re.search("^(shub|docker|library|https)://", image): + bot.exit( + "pull only valid for docker, https, shub and library. Use sregistry client." + ) # If we still don't have a custom name, base off of image uri. if name is None: diff --git a/spython/version.py b/spython/version.py index 892de27..674a420 100644 --- a/spython/version.py +++ b/spython/version.py @@ -5,7 +5,7 @@ # with this file, You can obtain one at http://mozilla.org/MPL/2.0/. -__version__ = "0.1.12" +__version__ = "0.1.13" AUTHOR = "Vanessa Sochat" AUTHOR_EMAIL = "vsochat@stanford.edu" NAME = "spython"