Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

Change pyjq to jq #11

Merged
merged 2 commits into from
May 27, 2024
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 g2p_openid_vci/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"g2p_registry_base",
"g2p_encryption",
],
"external_dependencies": {"python": ["cryptography<37", "python-jose", "pyjq", "PyLD"]},
"external_dependencies": {"python": ["cryptography<37", "python-jose", "jq", "PyLD"]},
"data": [
"security/ir.model.access.csv",
"views/vci_issuers.xml",
Expand Down
2 changes: 1 addition & 1 deletion g2p_openid_vci/models/vci_issuer.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import uuid
from datetime import datetime

import pyjq as jq
import jq
import requests
from cryptography.hazmat.primitives import hashes
from jose import jwt
Expand Down
2 changes: 1 addition & 1 deletion g2p_openid_vci_rest_api/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"fastapi",
"extendable_fastapi",
],
"external_dependencies": {"python": ["extendable-pydantic", "pydantic", "pyjq"]},
"external_dependencies": {"python": ["extendable-pydantic", "pydantic", "jq"]},
"data": ["data/fastapi_endpoint_vci.xml"],
"assets": {
"web.assets_backend": [],
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
PyLD
cryptography<37
extendable-pydantic
jq
pydantic
pyjq
python-jose