You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Had to change setup.py to below to get to build with python 3.8. Thanks for the repo, dude!
# requirements = [str(ir.req) for ir in install_requirements]
install_requirements = list(install_requirements)
try:
requirements = [str(ir.req) for ir in install_requirements]
except:
requirements = [str(ir.requirement) for ir in install_requirements]
The text was updated successfully, but these errors were encountered:
Had to change setup.py to below to get to build with python 3.8. Thanks for the repo, dude!
The text was updated successfully, but these errors were encountered: