Skip to content

Commit a054865

Browse files
authored
Merge branch 'dev' into update-to-python-3_10
2 parents 4323c17 + faadb21 commit a054865

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+737
-251
lines changed

.devcontainer/build-devcontainer/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ FROM "mcr.microsoft.com/devcontainers/miniconda@sha256:8e262a2664fab1d53054738d3
55
# copy this repo at current revision
66
COPY . /root/nfcore-tools/
77

8-
# Explicitly reinstall python 3.13 via conda
8+
# Explicitly reinstall python 3.14 via conda
99
# install local nf-core tools version, and precommit hooks
1010
RUN cd /root/nfcore-tools/ && \
11-
conda install -y python=3.13 && \
11+
conda install -y python=3.14 && \
1212
pip install --no-cache-dir --upgrade pip setuptools wheel pre-commit && \
1313
pip install -r requirements.txt --no-cache-dir -e . && \
1414
pre-commit install --install-hooks && \

.devcontainer/build-devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nfcore-devcontainer-build",
33

4-
// installs python3.13, nf-core tools from current workspace, nextflow, nf-test,
4+
// installs python3.14, nf-core tools from current workspace, nextflow, nf-test,
55
// and apptainer based on mcr.microsoft.com/devcontainers/miniconda image
66
"build": {
77
"dockerfile": "./Dockerfile",

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ body:
3838
* Executor _(eg. slurm, local, awsbatch)_
3939
* OS _(eg. CentOS Linux, macOS, Linux Mint)_
4040
* Version of nf-core/tools _(eg. 1.10, 1.12.1, 1.13)_
41-
* Python version _(eg. 3.12, 3.13)_
41+
* Python version _(eg. 3.13, 3.14)_

.github/workflows/changelog.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
3939
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
4040
with:
41-
python-version: "3.13"
41+
python-version: "3.14"
4242

4343
- name: Install packages
4444
run: |
@@ -66,10 +66,10 @@ jobs:
6666
echo "File changed: $file_changed"
6767
echo "changed=$file_changed" >> $GITHUB_OUTPUT
6868
69-
- name: Set up Python 3.13
69+
- name: Set up Python 3.14
7070
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
7171
with:
72-
python-version: "3.13"
72+
python-version: "3.14"
7373
cache: "pip"
7474

7575
- name: Install pre-commit

.github/workflows/create-lint-wf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
name: Check out source-code repository
4747

4848
# Set up nf-core/tools
49-
- name: Set up Python 3.13
49+
- name: Set up Python 3.14
5050
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
5151
with:
52-
python-version: "3.13"
52+
python-version: "3.14"
5353
cache: pip
5454

5555
- name: Install python dependencies

.github/workflows/create-test-lint-wf-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ jobs:
5858
- name: Check out source-code repository
5959
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
6060

61-
- name: Set up Python 3.13
61+
- name: Set up Python 3.14
6262
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
6363
with:
64-
python-version: "3.13"
64+
python-version: "3.14"
6565

6666
- name: Install python dependencies
6767
run: |

.github/workflows/create-test-wf.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@ jobs:
4444
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
4545
name: Check out source-code repository
4646

47-
- name: Set up Python 3.13
47+
- name: Set up Python 3.14
4848
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
4949
with:
50-
python-version: "3.13"
50+
python-version: "3.14"
5151

5252
- name: Install python dependencies
5353
run: |

.github/workflows/deploy-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
1717
name: Check out source-code repository
1818

19-
- name: Set up Python 3.13
19+
- name: Set up Python 3.14
2020
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
2121
with:
22-
python-version: "3.13"
22+
python-version: "3.14"
2323

2424
- name: Install python dependencies
2525
run: |

.github/workflows/fix-linting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
# Install and run pre-commit
3535
- uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
3636
with:
37-
python-version: "3.13"
37+
python-version: "3.14"
3838

3939
- name: Install pre-commit
4040
run: pip install pre-commit

.github/workflows/lint-code.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2424

25-
- name: Set up Python 3.13
25+
- name: Set up Python 3.14
2626
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6
2727
with:
28-
python-version: "3.13"
28+
python-version: "3.14"
2929
cache: "pip"
3030

3131
- name: Install pre-commit

0 commit comments

Comments
 (0)