mirror of https://github.com/Nonannet/pyhoff.git
CITATION.cff fixed and CITATION.cff validation added to CI
This commit is contained in:
parent
ddec81acaa
commit
6cb067ce43
|
@ -27,6 +27,13 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install -e .[dev]
|
python -m pip install -e .[dev]
|
||||||
|
if [ "${{ matrix.python-version }}" = "3.13" ]; then
|
||||||
|
python -m pip install cffconvert
|
||||||
|
fi
|
||||||
|
|
||||||
|
- name: Validate CITATION.cff
|
||||||
|
if: ${{ matrix.python-version == '3.13' }}
|
||||||
|
run: cffconvert --validate
|
||||||
|
|
||||||
- name: Lint code with flake8
|
- name: Lint code with flake8
|
||||||
run: flake8
|
run: flake8
|
||||||
|
|
|
@ -1,15 +1,16 @@
|
||||||
cff-version: 1.2.0
|
cff-version: 1.1.0
|
||||||
|
message: "If you use this software, please cite it as below."
|
||||||
title: pyhoff
|
title: pyhoff
|
||||||
abstract: The pyhoff package allows easy accessing of Beckhoff and Wago terminals with python over ModBus TCP
|
abstract: The pyhoff package allows easy accessing of Beckhoff and Wago terminals with python over ModBus TCP
|
||||||
authors:
|
authors:
|
||||||
- family-names: Kruse
|
- family-names: Kruse
|
||||||
given-names: Nicolas
|
given-names: Nicolas
|
||||||
orcid: "https://orcid.org/0000-0001-6758-2269"
|
orcid: "https://orcid.org/0000-0001-6758-2269"
|
||||||
version: 1.1.0
|
version: v1.2.0
|
||||||
#date-released: "2025-04-01"
|
date-released: "2025-04-01"
|
||||||
#identifiers:
|
#identifiers:
|
||||||
# - description: This is the collection of archived snapshots of all versions of My Research Software
|
# - description: This is the collection of archived snapshots of all versions of My Research Software
|
||||||
# type: doi
|
# type: doi
|
||||||
# value: "10.5281/"
|
# value: "10.5281/"
|
||||||
license: MIT License
|
license: MIT
|
||||||
repository-code: "https://github.com/Nonannet/pyhoff"
|
repository-code: "https://github.com/Nonannet/pyhoff"
|
Loading…
Reference in New Issue