[LNT] r274146 - don't use pip session arg

Chris Matthews via llvm-commits llvm-commits at lists.llvm.org
Thu Jun 30 13:30:55 PDT 2016


Sorry, I figured that out and fixed it, and never pushed.  I have now. Should work in:

r274266

> On Jun 30, 2016, at 1:01 PM, Bill Seurer <seurer at linux.vnet.ibm.com> wrote:
> 
> This updates causes failures on some of the llvm buildbots that I maintain.
> 
> For example: http://lab.llvm.org:8011/builders/clang-ppc64le-linux-lnt/builds/3097/steps/setup%20lit/logs/stdio
> 
> /usr/lib/python2.7/distutils/extension.py:133: UserWarning: Unknown Extension options: 'optional'
>  warnings.warn(msg)
> Traceback (most recent call last):
>  File "/home/buildbots/ppc64le-clang-lnt-test/clang-ppc64le-lnt/test/lnt/setup.py", line 34, in <module>
>    reqs = [str(ir.req) for ir in install_reqs]
>  File "/home/buildbots/ppc64le-clang-lnt-test/clang-ppc64le-lnt/test/sandbox/local/lib/python2.7/site-packages/pip/req/req_file.py", line 79, in parse_requirements
>    "parse_requirements() missing 1 required keyword argument: "
> TypeError: parse_requirements() missing 1 required keyword argument: 'session'
> 
> 
> I verified that it fails when I run it by hand, too.
> 
> 
> On 06/29/16 12:59, Chris Matthews via llvm-commits wrote:
>> Author: cmatthews
>> Date: Wed Jun 29 12:59:34 2016
>> New Revision: 274146
>> 
>> URL: http://llvm.org/viewvc/llvm-project?rev=274146&view=rev
>> Log:
>> don't use pip session arg
>> 
>> It is not supported in some versions of pip, and I don't think it matters here.
>> 
>> Modified:
>>     lnt/trunk/setup.py
>> 
>> Modified: lnt/trunk/setup.py
>> URL: http://llvm.org/viewvc/llvm-project/lnt/trunk/setup.py?rev=274146&r1=274145&r2=274146&view=diff
>> ==============================================================================
>> --- lnt/trunk/setup.py (original)
>> +++ lnt/trunk/setup.py Wed Jun 29 12:59:34 2016
>> @@ -29,7 +29,7 @@ if "--server" in sys.argv:
>>  else:
>>      req_file = "requirements.client.txt"
>> 
>> -install_reqs = parse_requirements(req_file, session=False)
>> +install_reqs = parse_requirements(req_file)
>> 
>>  reqs = [str(ir.req) for ir in install_reqs]
>> 
>> 
>> 
>> _______________________________________________
>> llvm-commits mailing list
>> llvm-commits at lists.llvm.org
>> http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-commits
>> 
> 
> 
> -- 
> 
> -Bill Seurer
> 



More information about the llvm-commits mailing list