Skip to content

Commit db78211

Browse files
authored
Merge pull request #51 from vsoch/wkpalan-master
Wkpalan master
2 parents f9fdcc9 + 9888f35 commit db78211

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.travis/before_install

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@ which python
1818
python setup.py sdist && python setup.py install
1919

2020
# Install Singularity (development)
21-
cd /tmp && git clone https://github.com/singularityware/singularity.git && cd singularity && ./autogen.sh && ./configure --prefix=/usr/local && make && sudo make install
21+
cd /tmp && git clone -b vault/release-2.5 https://github.com/singularityware/singularity.git && cd singularity && ./autogen.sh && ./configure --prefix=/usr/local && make && sudo make install
2222

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ The client here will eventually be released as "spython" (and eventually to
1717
singularity on pypi), and the versions here will coincide with these releases.
1818

1919
## [master](https://github.com/singularityhub/singularity-cli/tree/master)
20+
- remove uri function should only right strip to support relative paths (0.0.39)
21+
- adjusting container build to use correct Github branch (vault/release-2.5)
2022
- adding support and documentation for container instances (0.0.38)
2123
- fixing bug with recipe Dockerfile conversion (0.0.37)
2224
- typo in pypi PACKAGE_URL (0.0.36)

spython/image/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def remove_uri(self, image):
5656
image = image or ''
5757
uri = self.get_uri(image) or ''
5858
image = image.replace('%s://' %uri,'', 1)
59-
return image.strip('-').strip('/')
59+
return image.strip('-').rstrip('/')
6060

6161

6262
def parse_image_name(self, image):

spython/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020

21-
__version__ = "0.0.38"
21+
__version__ = "0.0.39"
2222
AUTHOR = 'Vanessa Sochat'
2323
AUTHOR_EMAIL = '[email protected]'
2424
NAME = 'spython'

0 commit comments

Comments
 (0)