Open Rplesha opened 5 years ago
Without the full traceback, it is hard to tell. But if removing jira
fixed it, then it is probably something incompatible between https://pypi.org/project/jira/ C files and your compiler.
Tracked on JIRA as issue SCSB-16.
When installing the package on a linux server, I get the error message:
error: Setup script exited with error: command 'gcc' failed with exit status 1
.I don't understand what the issue is, but it appears that the root cause of this is coming from line 129 in setup.py:
install_requires=[s.strip() for s in metadata.get('install_requires', 'astropy').split(',')],
which is based off of line 51 in setup.cfg:install_requires = astropy, astropy-helpers, pygithub, jira
.Removing jira from the install_requires list allows the package to be installed on a linux machine without any errors. I had no issues installing from the same directory on a mac.