6

I am trying to assign issues to epics using Jira's python API. From the documentation, I found there is an add_issues_to_epic method in the GreenHopper class, but it doesn't seem to work for me. I have the following so far

from jira.client import JIRA
from jira.client import GreenHopper

jira = JIRA(options, basic_auth=(username, password))
greenhopper = GreenHopper(options, basic_auth=(username, password))
epicLink = 'IR-345'
issuesToAdd = ['IR-1459']
greenhopper.add_issues_to_epic(epicLink, issuesToAdd)

But that gives me the error that add_issues_to_epic is not found for class GreenHopper. I've tried jira.add_issues_to_epic(epicLink, issuesToAdd), but that gives me the same error.

What am I doing wrong?

PS376
  • 539
  • 8
  • 13
  • probably using an old version of jira-python I suspect. Check the function exists in the your local jira/client.py file – mdoar Feb 25 '14 at 18:46
  • Yup, that solved it...thanks! I had to upgrade to the new version of the API. – PS376 Apr 25 '14 at 16:56

2 Answers2

2

I just had to upgrade to the new version of the API.

PS376
  • 539
  • 8
  • 13
2

As of January 2022, add_issues_to_epic is not supported for next-gen projects (you'll get this error: "Jira Agile Public API does not support this request").

https://ecosystem.atlassian.net/browse/ACJIRA-1634 explains how to do it now:

Move issues to epic - Edit the issue and set the parent field. Example: {"fields":{"parent":{"id":"11111"}}}

Code example:


issue = jira.create_issue(project='PRJ',
                          summary='Heisenbug',
                          description='Can't reproduce it.',
                          issuetype={'name': 'Bug'})

issue.update(fields={'parent': {'id': epic.id}})
Pamphile
  • 1,566
  • 12
  • 15