Thanks. Installing the jira module fixed it. First PR merged!
On Sun, Aug 19, 2018 at 11:26 PM Wes McKinney <wesmck...@gmail.com> wrote: > hi Andy, > > I think the system Python on Ubuntu 16.04 should work fine (we support > both 2.7 and 3.5/6). What do the following commands print for you? > > $ python > Python 2.7.15 | packaged by conda-forge | (default, May 8 2018, 14:46:53) > [GCC 4.8.2 20140120 (Red Hat 4.8.2-15)] on linux2 > Type "help", "copyright", "credits" or "license" for more information. > >>> import jira > >>> jira.__version__ > '2.0.0' > >>> jira.client.JIRA > <class 'jira.client.JIRA'> > > try pip install -U jira to make sure you have the latest version of > the jira library > > - Wes > > On Sun, Aug 19, 2018 at 11:56 PM, Andy Grove <andygrov...@gmail.com> > wrote: > > I'm trying to merge my first PR and the script is failing with the > > following output. What version of Python should I be running? Is there > some > > prerequisite that I'm missing? I did install jira-python. > > > > I'm running on Ubuntu 16.04 in case that is relevant. > > > > andy@freedom:~/git/arrow$ dev/merge_arrow_pr.py > > ARROW_HOME = /home/andy/git/arrow > > PROJECT_NAME = arrow > > Traceback (most recent call last): > > File "dev/merge_arrow_pr.py", line 81, in <module> > > ASF_JIRA = jira.client.JIRA({'server': JIRA_API_BASE}, > > AttributeError: 'module' object has no attribute 'JIRA' > > > > Thanks, > > > > Andy. >