Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ jobs:
# FIXME: c.f. https://github.com/proycon/codemetapy/issues/24
- name: Verify requirements in codemeta.json
run: |
python -m pip install jq "codemetapy>=2.2.2"
python -m pip install jq "codemetapy>=2.4.1"
codemetapy --inputtype python --no-extras pyhf > codemeta_generated.json
diff <(jq -S .softwareRequirements codemeta.json) <(jq -S .softwareRequirements codemeta_generated.json)
35 changes: 16 additions & 19 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,78 +58,75 @@
"Python 3",
"Python 3 Only",
"Python 3.10",
"Python 3.11",
"Python 3.7",
"Python 3.8",
"Python 3.9",
"Python Implementation CPython"
],
"softwareHelp": {
"@id": "https://pyhf.readthedocs.io/"
},
"softwareHelp": "https://pyhf.readthedocs.io/",
"softwareRequirements": [
{
"@id": "/dependency/click-ge-8.0.0",
"@type": "SoftwareApplication",
"identifier": "click",
"name": "click",
"runtimePlatform": "Python 3",
"version": ">=8.0.0"
"version": ">= 8.0.0"
},
{
"@id": "/dependency/importlib-resources-ge-1.4.0",
"@type": "SoftwareApplication",
"identifier": "importlib-resources",
"name": "importlib-resources",
"runtimePlatform": "Python 3",
"version": ">=1.4.0"
"version": ">= 1.4.0"
},
{
"@id": "/dependency/jsonpatch-ge-1.15",
"@type": "SoftwareApplication",
"identifier": "jsonpatch",
"name": "jsonpatch",
"runtimePlatform": "Python 3",
"version": ">=1.15"
"version": ">= 1.15"
},
{
"@id": "/dependency/jsonschema-ge-4.15.0",
"@type": "SoftwareApplication",
"identifier": "jsonschema",
"name": "jsonschema",
"runtimePlatform": "Python 3",
"version": ">=4.15.0"
"version": ">= 4.15.0"
},
{
"@type": "SoftwareApplication",
"identifier": "numpy",
"name": "numpy",
"runtimePlatform": "Python 3"
},
{
"@id": "/dependency/pyyaml-ge-5.1",
"@type": "SoftwareApplication",
"identifier": "pyyaml",
"name": "pyyaml",
"runtimePlatform": "Python 3",
"version": ">=5.1"
"version": ">= 5.1"
},
{
"@id": "/dependency/scipy-ge-1.2.0",
"@type": "SoftwareApplication",
"identifier": "scipy",
"name": "scipy",
"runtimePlatform": "Python 3",
"version": ">=1.2.0"
"version": ">= 1.2.0"
},
{
"@id": "/dependency/tqdm-ge-4.56.0",
"@type": "SoftwareApplication",
"identifier": "tqdm",
"name": "tqdm",
"runtimePlatform": "Python 3",
"version": ">=4.56.0"
"version": ">= 4.56.0"
},
{
"@id": "/dependency/typing-extensions-ge-3.7.4.3",
"@type": "SoftwareApplication",
"identifier": "typing-extensions",
"name": "typing-extensions",
"runtimePlatform": "Python 3",
"version": ">=3.7.4.3"
"version": ">= 3.7.4.3"
}
],
"targetProduct": {
Expand Down