diff --git a/conda/meta.yaml b/conda/meta.yaml index fd5324e..a74181f 100644 --- a/conda/meta.yaml +++ b/conda/meta.yaml @@ -1,6 +1,6 @@ package: name: alinea.caribu - version: 8.0.1 + version: 8.0.7 source: path: .. diff --git a/src/alinea/caribu/caribu_shell.py b/src/alinea/caribu/caribu_shell.py index 750852a..aa0eba0 100644 --- a/src/alinea/caribu/caribu_shell.py +++ b/src/alinea/caribu/caribu_shell.py @@ -308,7 +308,7 @@ def setup_working_dir(self): def copyfiles(self, skip_sky=False, skip_pattern=False, skip_opt=False): d = self.tempdir - if os.path.exists(self.scene): + if str(self.scene).endswith('.can'): fn = Path(self.scene) fn.copy(d / fn.basename()) else: diff --git a/src/alinea/caribu/version.py b/src/alinea/caribu/version.py index cd2e623..72a3aed 100644 --- a/src/alinea/caribu/version.py +++ b/src/alinea/caribu/version.py @@ -15,7 +15,7 @@ major = 8 minor = 0 -post = 6 +post = 7 __version__ = ".".join([str(s) for s in (major, minor, post)]) # #}