Skip to content

Commit 388fa17

Browse files
Updated files with 'repo_helper'. (#34)
Co-authored-by: repo-helper[bot] <74742576+repo-helper[bot]@users.noreply.github.com>
1 parent ac6a337 commit 388fa17

File tree

9 files changed

+27
-22
lines changed

9 files changed

+27
-22
lines changed

.github/workflows/flake8.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ permissions:
1616
jobs:
1717
Run:
1818
name: "Flake8"
19-
runs-on: "ubuntu-20.04"
19+
runs-on: "ubuntu-22.04"
2020

2121
steps:
2222
- name: Checkout 🛎️

.github/workflows/mypy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
os: ['ubuntu-20.04', 'windows-2019']
23+
os: ['ubuntu-22.04', 'windows-2019']
2424
fail-fast: false
2525

2626
steps:
@@ -43,7 +43,7 @@ jobs:
4343
python-version: "3.8"
4444

4545
- name: Install dependencies (Linux) 🔧
46-
if: ${{ matrix.os == 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }}
46+
if: ${{ matrix.os == 'ubuntu-22.04' && steps.changes.outputs.code == 'true' }}
4747
run: |
4848
python -VV
4949
python -m site
@@ -54,7 +54,7 @@ jobs:
5454
sudo apt install libhdf5-dev netcdf-bin libnetcdf-dev
5555
5656
- name: Install dependencies (Windows) 🔧
57-
if: ${{ matrix.os != 'ubuntu-20.04' && steps.changes.outputs.code == 'true' }}
57+
if: ${{ matrix.os != 'ubuntu-22.04' && steps.changes.outputs.code == 'true' }}
5858
run: |
5959
python -VV
6060
python -m site

.github/workflows/python_ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,4 @@ jobs:
7676
with:
7777
name: "coverage-${{ matrix.config.python-version }}"
7878
path: .coverage
79+
include-hidden-files: true

.github/workflows/python_ci_linux.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ permissions:
1919

2020
jobs:
2121
tests:
22-
name: "ubuntu-20.04 / Python ${{ matrix.config.python-version }}"
23-
runs-on: "ubuntu-20.04"
22+
name: "ubuntu-22.04 / Python ${{ matrix.config.python-version }}"
23+
runs-on: "ubuntu-22.04"
2424
continue-on-error: ${{ matrix.config.experimental }}
2525
env:
2626
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13'
@@ -80,11 +80,12 @@ jobs:
8080
with:
8181
name: "coverage-${{ matrix.config.python-version }}"
8282
path: .coverage
83+
include-hidden-files: true
8384

8485

8586
Coverage:
8687
needs: tests
87-
runs-on: "ubuntu-20.04"
88+
runs-on: "ubuntu-22.04"
8889
steps:
8990
- name: Checkout 🛎️
9091
uses: "actions/checkout@v4"
@@ -122,6 +123,7 @@ jobs:
122123
with:
123124
name: "combined-coverage"
124125
path: .coverage
126+
include-hidden-files: true
125127

126128
- name: "Upload Combined Coverage to Coveralls"
127129
if: ${{ steps.show.outcome != 'failure' }}
@@ -133,7 +135,7 @@ jobs:
133135
Deploy:
134136
needs: tests
135137

136-
runs-on: "ubuntu-20.04"
138+
runs-on: "ubuntu-22.04"
137139
steps:
138140
- name: Checkout 🛎️
139141
uses: "actions/checkout@v4"
@@ -207,6 +209,7 @@ jobs:
207209
$CONDA/bin/conda config --set always_yes yes --set changeps1 no
208210
$CONDA/bin/conda update -n base conda
209211
$CONDA/bin/conda info -a
212+
$CONDA/bin/conda install conda-forge::py-lief=0.14.1
210213
$CONDA/bin/conda config --add channels bioconda
211214
$CONDA/bin/conda config --add channels conda-forge
212215
$CONDA/bin/conda config --add channels domdfcoding

.github/workflows/python_ci_macos.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ permissions:
1818

1919
jobs:
2020
tests:
21-
name: "macos-13 / Python ${{ matrix.config.python-version }}"
22-
runs-on: "macos-13"
21+
name: "macos-${{ matrix.config.os-ver }} / Python ${{ matrix.config.python-version }}"
22+
runs-on: "macos-${{ matrix.config.os-ver }}"
2323
continue-on-error: ${{ matrix.config.experimental }}
2424
env:
2525
USING_COVERAGE: '3.7,3.8,3.9,3.10,3.11,3.12,3.13'
@@ -28,13 +28,13 @@ jobs:
2828
fail-fast: False
2929
matrix:
3030
config:
31-
- {python-version: "3.7", testenvs: "py37,build", experimental: False}
32-
- {python-version: "3.8", testenvs: "py38,build", experimental: False}
33-
- {python-version: "3.9", testenvs: "py39,build", experimental: False}
34-
- {python-version: "3.10", testenvs: "py310,build", experimental: False}
35-
- {python-version: "3.11", testenvs: "py311,build", experimental: False}
36-
- {python-version: "3.12", testenvs: "py312,build", experimental: False}
37-
- {python-version: "3.13", testenvs: "py313,build", experimental: False}
31+
- {python-version: "3.7", os-ver: "13", testenvs: "py37,build", experimental: False}
32+
- {python-version: "3.8", os-ver: "14", testenvs: "py38,build", experimental: False}
33+
- {python-version: "3.9", os-ver: "14", testenvs: "py39,build", experimental: False}
34+
- {python-version: "3.10", os-ver: "14", testenvs: "py310,build", experimental: False}
35+
- {python-version: "3.11", os-ver: "14", testenvs: "py311,build", experimental: False}
36+
- {python-version: "3.12", os-ver: "14", testenvs: "py312,build", experimental: False}
37+
- {python-version: "3.13", os-ver: "14", testenvs: "py313,build", experimental: False}
3838

3939
steps:
4040
- name: Checkout 🛎️
@@ -76,3 +76,4 @@ jobs:
7676
with:
7777
name: "coverage-${{ matrix.config.python-version }}"
7878
path: .coverage
79+
include-hidden-files: true

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ci:
88

99
repos:
1010
- repo: https://github.com/repo-helper/pyproject-parser
11-
rev: v0.11.1
11+
rev: v0.13.0
1212
hooks:
1313
- id: reformat-pyproject
1414

@@ -81,7 +81,7 @@ repos:
8181
- id: snippet-fmt
8282

8383
- repo: https://github.com/python-formate/formate
84-
rev: v0.7.0
84+
rev: v0.8.0
8585
hooks:
8686
- id: formate
8787
exclude: ^(doc-source/conf|__pkginfo__|setup)\.(_)?py$

.readthedocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ python:
1313
- requirements: requirements.txt
1414
- requirements: doc-source/requirements.txt
1515
build:
16-
os: ubuntu-20.04
16+
os: ubuntu-22.04
1717
tools:
1818
python: '3.9'
1919
jobs:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ PyMassSpec-Plot
109109
:target: https://github.com/PyMassSpec/PyMassSpec-Plot/commit/master
110110
:alt: GitHub last commit
111111

112-
.. |maintained| image:: https://img.shields.io/maintenance/yes/2024
112+
.. |maintained| image:: https://img.shields.io/maintenance/yes/2025
113113
:alt: Maintenance
114114

115115
.. |pypi-downloads| image:: https://img.shields.io/pypi/dm/PyMassSpec-Plot

doc-source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ PyMassSpec-Plot
114114
:last-commit:
115115
:alt: GitHub last commit
116116

117-
.. |maintained| maintained-shield:: 2024
117+
.. |maintained| maintained-shield:: 2025
118118
:alt: Maintenance
119119

120120
.. |pypi-downloads| pypi-shield::

0 commit comments

Comments
 (0)