Skip to content

Commit

Permalink
Merge pull request #9 from cokelaer/main
Browse files Browse the repository at this point in the history
update workflows
  • Loading branch information
cokelaer committed May 23, 2023
2 parents 9318dae + d346676 commit 7b39d4c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
max-parallel: 5
matrix:
python: [3.7, 3.8, 3.9]
python: [3.8, 3.9, '3.10']
fail-fast: false


Expand All @@ -41,7 +41,7 @@ jobs:
- name: conda
run: |
conda install -c conda-forge -c bioconda --quiet -y python=${{ matrix.python }}
conda install -c conda-forge -c bioconda --quiet -y python=${{ matrix.python }}
- name: Install dependencies
run: |
Expand All @@ -53,7 +53,7 @@ jobs:
- name: testing
run: |
pytest -v --cov-report term-missing --cov=sequana_pipelines.coverage
pytest -v --cov-report term-missing --cov=sequana_pipelines.multicov
- name: coveralls
run: |
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sequana>=0.14.1
sequana_pipetools>=0.9.2
sequana>=0.15.1
sequana_pipetools>=0.12.4
3 changes: 0 additions & 3 deletions sequana_pipelines/multicov/multicov.rules
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@ rule multiqc:
f"{sequana_wrapper_branch}/wrappers/multiqc"



rule sequana_coverage:
input:
bed=manager.getrawdata(),
Expand All @@ -84,8 +83,6 @@ rule sequana_coverage:
wrapper:
f"{sequana_wrapper_branch}/wrappers/sequana_coverage"

#expected_output += expand("{sample}/sequana_coverage/sequana_coverage.html", sample=manager.samples)

onsuccess:
pass

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

_MAJOR = 1
_MINOR = 1
_MICRO = 0
_MICRO = 1
version = '%d.%d.%d' % (_MAJOR, _MINOR, _MICRO)
release = '%d.%d' % (_MAJOR, _MINOR)

Expand All @@ -22,9 +22,9 @@
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
Expand Down

0 comments on commit 7b39d4c

Please sign in to comment.