Skip to content

Commit ef49586

Browse files
authored
Merge pull request #69 from vsoch/development
updating main build to not use in memory tar, not suitable for singul…
2 parents 6689726 + ea6361d commit ef49586

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

singularity/build/main.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -176,10 +176,6 @@ def run_build(build_dir,params,verbose=True):
176176

177177
# Get singularity version
178178
singularity_version = get_singularity_version()
179-
180-
old_version = False
181-
if singularity_version.startswith('2.2'):
182-
old_version=True
183179

184180
# Package the image metadata (files, folders, etc)
185181
image_package = package(image_path=image,
@@ -188,7 +184,7 @@ def run_build(build_dir,params,verbose=True):
188184
sudopw='',
189185
remove_image=True,
190186
verbose=True,
191-
old_version=old_version)
187+
old_version=True)
192188

193189
# Derive software tags by subtracting similar OS
194190
diff = get_diff(image_package=image_package)

singularity/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
SOFTWARE.
2323
'''
2424

25-
__version__ = "1.1.9"
25+
__version__ = "1.2.0"
2626
AUTHOR = 'Vanessa Sochat'
2727
AUTHOR_EMAIL = '[email protected]'
2828
NAME = 'singularity'

0 commit comments

Comments
 (0)