-
Notifications
You must be signed in to change notification settings - Fork 91
Closed
Labels
CICI systems, GitHub ActionsCI systems, GitHub ActionsbugSomething isn't workingSomething isn't working
Description
After Issue #1990 had the workflow fixed by PR #1995, the codemeta comparison check is still failing with
< "version": ">=3.0.0"
---
> "version": ">=4.15.0"
91c91
< "version": ">=1.3.0"
---
> "version": ">=1.4.0"
This is because jsonschema needs to get updated from v3.0.0
Lines 75 to 87 in 7cc4b78
| { | |
| "@type": "SoftwareApplication", | |
| "identifier": "jsonschema", | |
| "name": "jsonschema", | |
| "provider": { | |
| "@id": "https://pypi.org", | |
| "@type": "Organization", | |
| "name": "The Python Package Index", | |
| "url": "https://pypi.org" | |
| }, | |
| "runtimePlatform": "Python 3", | |
| "version": ">=3.0.0" | |
| }, |
to v4.15.0
Line 41 in 7cc4b78
| jsonschema>=4.15.0 # for utils |
and importlib-resources needs to get updated from 1.3.0
Lines 114 to 126 in 7cc4b78
| { | |
| "@type": "SoftwareApplication", | |
| "identifier": "importlib-resources", | |
| "name": "importlib-resources", | |
| "provider": { | |
| "@id": "https://pypi.org", | |
| "@type": "Organization", | |
| "name": "The Python Package Index", | |
| "url": "https://pypi.org" | |
| }, | |
| "runtimePlatform": "Python 3", | |
| "version": ">=1.3.0" | |
| }, |
to 1.4.0.
Line 44 in 7cc4b78
| importlib_resources>=1.4.0; python_version < "3.9" # for resources in schema |
Metadata
Metadata
Assignees
Labels
CICI systems, GitHub ActionsCI systems, GitHub ActionsbugSomething isn't workingSomething isn't working