Skip to content

Commit f7186d4

Browse files
committed
VERSION 0.9.7
1 parent 1deed9f commit f7186d4

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ To run Solida, Conda e Mamba must be presents in your computer.
1717
To install Conda, see [https://conda.io/miniconda.html](https://conda.io/miniconda.html)
1818
To install Mamba, see [https://github.com/mamba-org/mamba](https://github.com/mamba-org/mamba)
1919
```bash
20-
conda install -c conda-forge mamba```
20+
conda install -c conda-forge mamba
21+
```
2122

2223

2324
## Usage

solida/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.9.7.1
1+
0.9.7.2

solida/cache_manager.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ def clone(self, label):
4747
requirements_path = os.path.join(repo_dir, self.core_environment_file)
4848
if not path_exists(requirements_path):
4949
data = {'channels': ['bioconda', 'conda-forge', 'defaults'],
50-
'dependencies': ['python==3.6.1', 'pip']}
50+
'dependencies': ['python==3.7', 'pip']}
5151
dump(data, requirements_path)
5252

5353
requirements_path = os.path.join(repo_dir, self.environment_file)
5454
if not path_exists(requirements_path):
5555
data = {'channels': ['bioconda', 'conda-forge', 'defaults'],
56-
'dependencies': ['snakemake', 'drmaa==0.7.8']}
56+
'dependencies': ['snakemake', 'drmaa==0.7.9']}
5757
dump(data, requirements_path)
5858

5959
print("commit id: {}".format(master.commit))

solida/playbooks/common.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
dest: "{{ pipeline_dir }}"
1212

1313
- name: Create Conda virtual environment
14-
shell: "mamba create --force -q -n {{ project_name }} \
14+
shell: "mamba env create --force -q -n {{ project_name }} \
1515
--file core_environment.yml"
1616
args:
1717
chdir: "{{ pipeline_dir }}"

0 commit comments

Comments
 (0)