did icon indicating copy to clipboard operation
did copied to clipboard

Invalid plugin type 'jira' in section 'issues'.

Open maxandersen opened this issue 1 year ago • 3 comments

I've added:

[issues]
type = jira
url = https://issues.redhat.com/
ssl_verify = true

and I get:

 ERROR  Invalid plugin type 'jira' in section 'issues'.

maxandersen avatar Nov 18 '23 10:11 maxandersen

figured it out - need to do pip3 install did\[jira\] for each plugin.

Would be great if the error message would give a hint to that as its not mentioned afaics in the getting started docs :)

maxandersen avatar Nov 18 '23 10:11 maxandersen

I encountered the same issue, but I could not get the plugin to successfully install. The failure was associated with

 ERROR: Failed building wheel for gssapi
Successfully built requests-gssapi
Failed to build gssapi
ERROR: Could not build wheels for gssapi, which is required to install pyproject.toml-based projects

I eventually got it installed by (I am running python 3.11.2)

$ sudo yum install python3.11-devel

$ pip install requests-gssapi

then rerunning pip3 install did\[jira\]

kquinn1204 avatar Nov 20 '23 22:11 kquinn1204

Yes, there are some extra packages needed to be installed on the system for pip install:

  • https://did.readthedocs.io/en/latest/install.html#pip

Perhaps, we could mention this in the individual plugin documentation as well.

psss avatar Nov 21 '23 08:11 psss