Skip to content

Commit f4f5519

Browse files
authored
Merge pull request #163 from cpp-lln-lab/dev
[ENH] release 1.2.1
2 parents 6fe3612 + 4f88924 commit f4f5519

File tree

158 files changed

+382
-206
lines changed

Some content is hidden

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

158 files changed

+382
-206
lines changed

.github/workflows/check_markdown.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/check_md_links.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ on:
77
branches:
88
- master
99
pull_request:
10-
branches: '*'
10+
branches: ['*']
1111

1212
jobs:
1313
markdown-link-check:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- uses: actions/checkout@master
17-
- uses: gaurav-nelson/github-action-markdown-link-check@v1
17+
- uses: gaurav-nelson/github-action-markdown-link-check@v1

.github/workflows/miss_hit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- master
77
pull_request:
8-
branches: '*'
8+
branches: ['*']
99

1010
jobs:
1111
build:

.github/workflows/moxunit.yml renamed to .github/workflows/run_tests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
name: MOxUnit
1+
name: tests and coverage
22

33
on:
44
push:
55
branches:
66
- master
77
pull_request:
8-
branches: '*'
8+
branches: ['*']
99

1010
jobs:
1111
build:
@@ -16,7 +16,7 @@ jobs:
1616
submodules: true
1717
fetch-depth: 1
1818
- name: MOxUnit Action
19-
uses: joergbrech/moxunit-action@v1.1
19+
uses: joergbrech/moxunit-action@v1.2.0
2020
with:
2121
tests: tests
2222
src: src

.pre-commit-config.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
repos:
2+
3+
- repo: local
4+
5+
hooks:
6+
7+
- id: mh_version
8+
name: mh_version
9+
entry: mh_style
10+
args: [-v]
11+
verbose: true
12+
language: python
13+
additional_dependencies: [miss_hit_core]
14+
15+
# - id: mh_style
16+
# name: mh_style
17+
# entry: mh_style
18+
# args: [--process-slx, --fix]
19+
# files: ^(.*\.(m|slx))$
20+
# language: python
21+
# additional_dependencies: [miss_hit_core]
22+
23+
# - id: mh_metric
24+
# name: mh_metric
25+
# entry: mh_metric
26+
# args: [--ci]
27+
# files: ^(.*\.(m|slx))$
28+
# language: python
29+
# additional_dependencies: [miss_hit_core]
30+
31+
# - id: mh_lint
32+
# name: mh_lint
33+
# entry: mh_lint
34+
# files: ^(.*\.(m|slx))$
35+
# language: python
36+
# additional_dependencies: [miss_hit]
37+
38+
- repo: https://github.com/pre-commit/pre-commit-hooks
39+
rev: v2.0.0
40+
hooks:
41+
- id: trailing-whitespace
42+
- id: end-of-file-fixer
43+
- id: check-yaml
44+
- id: check-added-large-files

.readthedocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ formats:
2121

2222
# Optionally set the version of Python and requirements required to build your docs
2323
python:
24-
version: 3.7
24+
version: "3.7"
2525
install:
26-
- requirements: requirements.txt
26+
- requirements: requirements.txt

.remarkrc

Lines changed: 0 additions & 11 deletions
This file was deleted.

.zenodo.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@
1616
"affiliation": "Université Catholique de Louvain",
1717
"name": "Battal, Ceren",
1818
"orcid": "0000-0002-9844-7630"
19+
},
20+
{
21+
"affiliation": "Université Catholique de Louvain",
22+
"name": "Falagiarda, Federica"
23+
},
24+
{
25+
"affiliation": "Université Catholique de Louvain",
26+
"name": "Shahzad, Iqra"
1927
}
2028
],
2129
"keywords": [
@@ -26,4 +34,4 @@
2634
],
2735
"license": "MIT license",
2836
"upload_type": "software"
29-
}
37+
}

README.md

Lines changed: 0 additions & 2 deletions

demos/miss_hit.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# style guide (https://florianschanda.github.io/miss_hit/style_checker.html)
22
line_length: 100
33
regex_function_name: "CPP_[a-z]+(([A-Z]){1}[A-Za-z]+)*"
4+
regex_script_name: "CPP_[a-z]+(([A-Z]){1}[A-Za-z]+)*"
45
copyright_entity: "Sam Schwarzkopf"
56
copyright_entity: "Agah Karakuzu"
67
copyright_entity: "CPP_PTB developers"
@@ -9,4 +10,4 @@ copyright_entity: "CPP_PTB developers"
910
metric "cnest": limit 4
1011
metric "file_length": limit 500
1112
metric "cyc": limit 15
12-
metric "parameters": limit 5
13+
metric "parameters": limit 5

0 commit comments

Comments
 (0)