Skip to content

Commit c03511d

Browse files
committed
swithc channels bioconda and conda-forge
fixing cI fixing cI fixup! Merge pull request #8 from cokelaer/dev fixup! Merge pull request #8 from cokelaer/dev
1 parent d596893 commit c03511d

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,18 +38,23 @@ jobs:
3838
3939
4040
- name: install package itself
41+
shell: bash -l {0}
4142
run: |
42-
pip install .
43+
which pip
44+
pip install .
4345
4446
- name: Install dependencies
47+
shell: bash -l {0}
4548
run: |
4649
pip install coveralls pytest-cov pytest pytest-xdist
4750
4851
- name: testing
52+
shell: bash -l {0}
4953
run: |
5054
pytest -v --cov-report term-missing --cov=sequana_pipelines.fastqc
5155
5256
- name: coveralls
57+
shell: bash -l {0}
5358
run: |
5459
echo $COVERALLS_REPO_TOKEN
5560
coveralls --service=github

README.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,8 @@ Changelog
132132
========= ====================================================================
133133
Version Description
134134
========= ====================================================================
135+
1.6.1 * pin sequana version to 1.4.4 to force usage of new fastqc module
136+
to fix falco. Updated config documentation.
135137
1.6.0 * Fixed falco output error and use singularity containers
136138
1.5.0 * removed modules completely.
137139
1.4.2 * simplified pipeline (suppress setup and use existing wrapper)

environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
name: sequana_fastqc
22

33
channels:
4-
- bioconda
54
- conda-forge
5+
- bioconda
66
- defaults
77
- r
88

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
sequana>=0.14.3
1+
sequana>=0.14.4
22
sequana_pipetools>=0.9.1

setup.py

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

66
_MAJOR = 1
77
_MINOR = 6
8-
_MICRO = 0
8+
_MICRO = 1
99
version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO)
1010
release = '%d.%d' % (_MAJOR, _MINOR)
1111

0 commit comments

Comments
 (0)