Skip to content

Commit 950fbf8

Browse files
committed
Update Python version to 3.10 in workflows and dependencies
1 parent e8d51a8 commit 950fbf8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/run_tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515

1616
steps:
1717
- uses: actions/checkout@v4
18-
- name: Set up Python 3.6
18+
- name: Set up Python 3.10
1919
uses: actions/setup-python@v3
2020
with:
21-
python-version: '3.6.15'
21+
python-version: '3.10.13'
2222
- name: Create conda/mamba environment using micromamba
2323
uses: mamba-org/setup-micromamba@v1
2424
with:

environment.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ channels:
44
- bioconda
55
- defaults
66
dependencies:
7-
- python=3.6
7+
- python=3.10
88
- blast=2.12.0
99
- bwa=0.7.17
1010
- picard=2.20.3
1111
- pigz>=2.4
12-
- quast=5.0.2
12+
- quast=5.3.0
1313
- samtools=1.13
1414
- trimmomatic=0.39
1515
- r-base=4.1.1

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@
2929
entry_points={
3030
'console_scripts': ['microSALT=microSALT.cli:root'],
3131
},
32-
)
33-
32+
python_requires='>=3.10',
33+
)

0 commit comments

Comments
 (0)