-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue 1 Upgrading pip to pip10, breaks NU installation. #185
Comments
This came up for me with openworm/tests as well. See openworm/tests#11 and scidash/sciunit#70 |
Typical output from a failed NU install inside Docker
Works under pip10 import os
import requests
try:
from setuptools import setup
except ImportError:
from distutils.core import setup, find_packages
from setuptools import setup
def read_requirements():
'''parses requirements from requirements.txt'''
reqs_path = os.path.join('.', 'requirements.txt')
install_reqs = parse_requirements(reqs_path, session=PipSession())
reqs = [str(ir.req) for ir in install_reqs]
return reqs
setup(
name='neuronunit',
version='0.19',
author='Rick Gerkin',
author_email='[email protected]',
packages=['neuronunit',
'neuronunit.capabilities',
'neuronunit.neuroconstruct',
'neuronunit.models',
'neuronunit.tests',
'neuronunit.optimization',
'neuronunit.unit_test'],
url='http://github.com/scidash/neuronunit',
license='MIT',
description='A SciUnit library for data-driven testing of single-neuron physiology models.',
long_description="",
test_suite="neuronunit.unit_test.core_tests")
#install_requires=read_requirements(), https://github.com/scidash/neuronunit/blob/master/setup.py Other people with similar issues suggest downgrading pip |
@russelljjarvis @gsarma There is a |
My mistake, the stack trace I provided was wrong, but I stand by the subject heading of the error message. The stack trace I provided pertained to a developing the workaround solution. |
@russelljjarvis So what is the formula to reproduce the error? For me with pip10 it installs fine. |
Yep, working formula to reproduce the error. Admittedly I have not managed to recreate the error today, as I have been concentrating on the progress report. I will reopen it, if it comes up again. I suspect that the issue involved was caused by short syntax for pip installs, ie |
No description provided.
The text was updated successfully, but these errors were encountered: