Skip to content

Commit 0304046

Browse files
authored
update CI configs (#158)
1 parent 04daaa6 commit 0304046

5 files changed

Lines changed: 15 additions & 13 deletions

File tree

.github/workflows/autopublish.yaml

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

1616
steps:
1717
- name: Checkout source
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: "3.x"
2424

.github/workflows/changelog-enforcer.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414
- uses: dangoslen/changelog-enforcer@v3
1515
with:
1616
skipLabels: 'skip-changelog'

.github/workflows/publish.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414

1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717

1818
- name: Set up Python
19-
uses: actions/setup-python@v4
19+
uses: actions/setup-python@v5
2020
with:
2121
python-version: "3.x"
2222
cache: "pip"
@@ -32,10 +32,10 @@ jobs:
3232
runs-on: ubuntu-latest
3333

3434
steps:
35-
- uses: actions/checkout@v3
35+
- uses: actions/checkout@v4
3636

3737
- name: Set up Python
38-
uses: actions/setup-python@v4
38+
uses: actions/setup-python@v5
3939
with:
4040
python-version: "3.x"
4141
cache: "pip"
@@ -54,10 +54,10 @@ jobs:
5454

5555
steps:
5656
- name: Checkout source
57-
uses: actions/checkout@v3
57+
uses: actions/checkout@v4
5858

5959
- name: Set up Python
60-
uses: actions/setup-python@v4
60+
uses: actions/setup-python@v5
6161
with:
6262
python-version: "3.x"
6363

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ jobs:
2626
python-version: [3.7, 3.8, 3.9, "3.10", 3.11]
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
# See: https://github.com/marketplace/actions/setup-miniconda
3131
- name: Setup miniconda
32-
uses: conda-incubator/setup-miniconda@v2
32+
uses: conda-incubator/setup-miniconda@v3
3333
with:
3434
auto-update-conda: true
35-
miniforge-variant: Mambaforge
36-
conda-channels: conda-forge
35+
miniforge-variant: Miniforge3
36+
channels: conda-forge
3737
python-version: ${{ matrix.python-version }}
3838
use-mamba: true
3939
- name: Install BioPandas

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@
5050
'Programming Language :: Python :: 3.7',
5151
'Programming Language :: Python :: 3.8',
5252
'Programming Language :: Python :: 3.9',
53+
'Programming Language :: Python :: 3.10',
54+
'Programming Language :: Python :: 3.11',
5355
'Topic :: Scientific/Engineering',
5456
],
5557
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)