psss / did

What did you do last week, month, year?
https://did.readthedocs.io/
GNU General Public License v2.0
245 stars 103 forks source link

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

Open maxandersen opened 7 months ago

maxandersen commented 7 months ago

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 commented 7 months ago

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 :)

kquinn1204 commented 7 months ago

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\]

psss commented 7 months ago

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

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