text1
stringlengths
0
536k
text2
stringlengths
0
536k
label
int64
0
1
<h2 dir="auto">Steps to Reproduce</h2> <ul dir="auto"> <li>Create a Flutter app on Webstorm</li> <li>Make some modifications to main.dart.</li> <li>Run the app.<br> Expected: new changes take effect<br> Actual: The app goes back to the sample template that was provided on creation</li> </ul> <p dir="auto">I've attached a video showcasing the bug<br> <a href="https://github.com/flutter/flutter/files/1036402/bug.mp4.zip">bug.mp4.zip</a></p>
<p dir="auto">Add infrastructure to check for program elements changed in the last reload and not executed. Use this facility in flutter tools to figure out situations where the user makes changes that will not be reflected after a hot reload and warn users about the need to do a hot restart for the changes to take effect.</p>
1
<h3 dir="auto">Is there an existing issue for this?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li> </ul> <h3 dir="auto">This issue exists in the latest npm version</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I am using the latest npm</li> </ul> <h3 dir="auto">Current Behavior</h3> <p dir="auto">package-lock.json does not contain an os-independent string for local dependencies, therefore package-lock.json is always changing when it was committed from windows and then building on linux.</p> <p dir="auto">I think the issue might be that the lock file contains an OS-normalized string, while it should actually contain some string that is independent of the OS and only gets translated when the package-lock.json is parsed.</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Expected behaviour would be that the same package-lock.json is generated no matter the OS.</p> <h3 dir="auto">Steps To Reproduce</h3> <ol dir="auto"> <li>In Windows 10, node --version v16.13.2, npm --version = 8.5.4</li> <li>Have a package json dependency like this:</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&quot;dependencies&quot;: { &quot;some-local-dependency&quot;: &quot;file:../myproject/module&quot; }"><pre class="notranslate"><code class="notranslate">"dependencies": { "some-local-dependency": "file:../myproject/module" } </code></pre></div> <p dir="auto">On windows, this produces a package-lock.json on windows that has this relevant section generated:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&quot;dependencies&quot;: { &quot;some-local-dependency&quot;: { &quot;version&quot;: &quot;file:\\myproject\\module&quot; } }"><pre class="notranslate"><code class="notranslate">"dependencies": { "some-local-dependency": { "version": "file:\\myproject\\module" } } </code></pre></div> <p dir="auto">On linux, the same package json results in the following package-lock.json (and therefore makes the committed package-lock.json dirty in git):</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&quot;dependencies&quot;: { &quot;some-local-dependency&quot;: { &quot;version&quot;: &quot;file:../myproject/module&quot; } }"><pre class="notranslate"><code class="notranslate">"dependencies": { "some-local-dependency": { "version": "file:../myproject/module" } } </code></pre></div> <p dir="auto">Both package-lock.json files shoud have the same path separator.</p> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>npm: 8.5.4</li> <li>Node.js: 16.13.2</li> <li>OS Name: Windows 10</li> <li>System Model Name: Dell</li> <li>npm config:</li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="; &quot;builtin&quot; config from C:\Users\soura\AppData\Roaming\npm\node_modules\npm\npmrc prefix = &quot;C:\\Users\\soura\\AppData\\Roaming\\npm&quot; ; &quot;user&quot; config from C:\Users\soura\.npmrc msvs_version = &quot;2019&quot; ; node bin location = C:\Program Files\nodejs\node.exe ; cwd = ; HOME = C:\Users\soura ; Run `npm config ls -l` to show all defaults. "><pre class="notranslate"><code class="notranslate">; "builtin" config from C:\Users\soura\AppData\Roaming\npm\node_modules\npm\npmrc prefix = "C:\\Users\\soura\\AppData\\Roaming\\npm" ; "user" config from C:\Users\soura\.npmrc msvs_version = "2019" ; node bin location = C:\Program Files\nodejs\node.exe ; cwd = ; HOME = C:\Users\soura ; Run `npm config ls -l` to show all defaults. </code></pre></div>
<h3 dir="auto">Is there an existing issue for this?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the existing issues</li> </ul> <h3 dir="auto">Current Behavior</h3> <p dir="auto">When installing a local dependency in Windows, the posix paths under "package-lock.dependencies" are converted to Windows style paths, with double backslashes. The paths in "package.json" and under "package-lock.packages" are kept unix style.</p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">package-lock is kept as is when installing dependencies.</p> <h3 dir="auto">Steps To Reproduce</h3> <p dir="auto">Clone and follow the instructions on <a href="/guilhermetod/npm-7-package-lock-issue">sample repository</a>.</p> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>OS: Windows 10 20h2</li> <li>Node: 16.2.0</li> <li>npm: 7.13.0</li> </ul>
1
<p dir="auto">I am not sure if its just me but when I run <code class="notranslate">npm config get prefix</code> it hangs around 1-2 seconds.</p> <p dir="auto">I am using this <a href="url">https://github.com/nvm-sh/nvm</a> to manage my Node versions which uses that npm command internally when new bash shell opens.</p>
<h1 dir="auto">What / Why</h1> <p dir="auto">This is an attempt to resurrect this unresolved bug: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="185990332" data-permission-text="Title is private" data-url="https://github.com/npm/npm/issues/14458" data-hovercard-type="issue" data-hovercard-url="/npm/npm/issues/14458/hovercard" href="https://github.com/npm/npm/issues/14458">npm/npm#14458</a></p> <p dir="auto">For some reason, the command <code class="notranslate">npm config get prefix</code> is multi-seconds slow. This normally wouldn't bother me, but for users of <code class="notranslate">nvm</code> like me, this is really impacting since it uses this command internally, and nvm is used in shell startup scripts. See <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="94112977" data-permission-text="Title is private" data-url="https://github.com/nvm-sh/nvm/issues/782" data-hovercard-type="issue" data-hovercard-url="/nvm-sh/nvm/issues/782/hovercard" href="https://github.com/nvm-sh/nvm/issues/782">nvm-sh/nvm#782</a> for more details. Therefore, shell startup is super slow, especially for those using WSL.</p> <h2 dir="auto">When</h2> <p dir="auto">Always</p> <h2 dir="auto">Where</h2> <p dir="auto">NPM CLI</p> <h2 dir="auto">How</h2> <h3 dir="auto">Current Behavior</h3> <p dir="auto">Run <code class="notranslate">time npm config get prefix</code>, see multi-second response timing.</p> <h3 dir="auto">Steps to Reproduce</h3> <p dir="auto">Run <code class="notranslate">npm config get prefix</code></p> <h3 dir="auto">Expected Behavior</h3> <p dir="auto">Result should come back quicker.</p> <h2 dir="auto">Who</h2> <p dir="auto">?</p> <h2 dir="auto">References</h2> <ul dir="auto"> <li>Related to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="185990332" data-permission-text="Title is private" data-url="https://github.com/npm/npm/issues/14458" data-hovercard-type="issue" data-hovercard-url="/npm/npm/issues/14458/hovercard" href="https://github.com/npm/npm/issues/14458">npm/npm#14458</a>, <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="178931441" data-permission-text="Title is private" data-url="https://github.com/nvm-sh/nvm/issues/1242" data-hovercard-type="issue" data-hovercard-url="/nvm-sh/nvm/issues/1242/hovercard" href="https://github.com/nvm-sh/nvm/issues/1242">nvm-sh/nvm#1242</a></li> </ul>
1
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=mharhen" rel="nofollow">Michael Harhen</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-321?redirect=false" rel="nofollow">SPR-321</a></strong> and commented</p> <p dir="auto">I have written code to enable initialization of a bean using initialization parameters from a database table. I would be happy to submit the code to the Spring project.</p> <p dir="auto">In summary, a FactoryBean is specified in an ApplicationContext xml file creates the bean. The bean's properties values are read from a database table. Properties can be reinitialized at any time, using the current values in the database table.</p> <p dir="auto">The preliminary code can be downloaded from:</p> <p dir="auto"><a href="http://members.cox.net/jwebutil/InitParameters.zip" rel="nofollow">http://members.cox.net/jwebutil/InitParameters.zip</a></p> <p dir="auto">I have posted information on how to use it is available on the Spring forum at:<br> <a href="http://forum.springframework.org/viewtopic.php?t=87" rel="nofollow">http://forum.springframework.org/viewtopic.php?t=87</a></p> <hr> <p dir="auto"><strong>Attachments:</strong></p> <ul dir="auto"> <li><a href="https://jira.spring.io/secure/attachment/10212/InitParameters.zip" rel="nofollow">InitParameters.zip</a> (<em>145.76 kB</em>)</li> <li><a href="https://jira.spring.io/secure/attachment/10211/InitParameters.zip" rel="nofollow">InitParameters.zip</a> (<em>129.53 kB</em>)</li> </ul> <p dir="auto">0 votes, 5 watchers</p>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=jkuipers" rel="nofollow">Joris Kuipers</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-7820?redirect=false" rel="nofollow">SPR-7820</a></strong> and commented</p> <p dir="auto">During a consultancy gig this came up: customer wants to be able to throw a custom exception from <code class="notranslate">@Controller</code> methods where the exception will contain an object that needs to be marshalled back to the client as JSON, since these methods respond to AJAX requests and thus the response will not be rendered directly by the browser.<br> I tried to do this by adding a method to an abstract parent class of the relevant controllers that looked like this:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="@ExceptionHandler(MyCustomValidationErrorsException.class) @ResponseBody public MyCustomValidationErrors handleValidationErrors(MyCustomValidationErrorsException e) { return e.getValidationErrors(); }"><pre class="notranslate"><code class="notranslate">@ExceptionHandler(MyCustomValidationErrorsException.class) @ResponseBody public MyCustomValidationErrors handleValidationErrors(MyCustomValidationErrorsException e) { return e.getValidationErrors(); } </code></pre></div> <p dir="auto">This prevents regular methods from having to specify <code class="notranslate">Object</code> as the return type, since they would otherwise need to return either a regular domain object or a <code class="notranslate">MyCustomValidationErrors</code> instance in the case of validation errors.</p> <p dir="auto">However, at the moment <code class="notranslate">@ResponseBody</code> is not supported for <code class="notranslate">@ExceptionHandler</code> methods, so this will simply ignore the annotation and render a view using the default view name resolution algorithm. I think this would be a very useful addition for the sketched use case, so I was wondering if this support could be added to the framework.<br> I understand that there are other ways to achieve the desired functionality, but AFAICT it would require a relatively large amount of custom code that would duplicate much of the Spring MVC-provided functionality.</p> <hr> <p dir="auto"><strong>Affects:</strong> 3.0.5</p> <p dir="auto"><strong>Issue Links:</strong></p> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="398103314" data-permission-text="Title is private" data-url="https://github.com/spring-projects/spring-framework/issues/11567" data-hovercard-type="issue" data-hovercard-url="/spring-projects/spring-framework/issues/11567/hovercard" href="https://github.com/spring-projects/spring-framework/issues/11567">#11567</a> <code class="notranslate">@ResponseBody</code> does not work with <code class="notranslate">@ExceptionHandler</code> (<em><strong>"duplicates"</strong></em>)</li> </ul>
0
<p dir="auto"><code class="notranslate">Generator</code> inherits from <code class="notranslate">Iterator</code>, <code class="notranslate">Iterator</code> inherits from <code class="notranslate">Iterable</code>. And <code class="notranslate">list([iterable])</code> takes an <code class="notranslate">Iterable</code> as argument.</p> <p dir="auto">So, why <code class="notranslate">data</code> in <code class="notranslate">DataFrame(data)</code> can't be an <code class="notranslate">Iterable</code>?</p> <p dir="auto"></p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/pandas-dev/pandas/blob/620abc403d371446afe38fc1e63f0d90ea27b80a/pandas/core/frame.py#L381-L383">pandas/pandas/core/frame.py</a> </p> <p class="mb-0 color-fg-muted"> Lines 381 to 383 in <a data-pjax="true" class="commit-tease-sha" href="/pandas-dev/pandas/commit/620abc403d371446afe38fc1e63f0d90ea27b80a">620abc4</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L381" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="381"></td> <td id="LC381" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">elif</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">data</span>, (<span class="pl-s1">list</span>, <span class="pl-s1">types</span>.<span class="pl-v">GeneratorType</span>)): </td> </tr> <tr class="border-0"> <td id="L382" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="382"></td> <td id="LC382" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">if</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">data</span>, <span class="pl-s1">types</span>.<span class="pl-v">GeneratorType</span>): </td> </tr> <tr class="border-0"> <td id="L383" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="383"></td> <td id="LC383" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-s1">data</span> <span class="pl-c1">=</span> <span class="pl-en">list</span>(<span class="pl-s1">data</span>) </td> </tr> </tbody></table> </div> </div> <br> <div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/pandas-dev/pandas/blob/620abc403d371446afe38fc1e63f0d90ea27b80a/pandas/core/frame.py#L407-L408">pandas/pandas/core/frame.py</a> </p> <p class="mb-0 color-fg-muted"> Lines 407 to 408 in <a data-pjax="true" class="commit-tease-sha" href="/pandas-dev/pandas/commit/620abc403d371446afe38fc1e63f0d90ea27b80a">620abc4</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L407" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="407"></td> <td id="LC407" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">elif</span> <span class="pl-en">isinstance</span>(<span class="pl-s1">data</span>, <span class="pl-s1">collections</span>.<span class="pl-v">Iterator</span>): </td> </tr> <tr class="border-0"> <td id="L408" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="408"></td> <td id="LC408" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-k">raise</span> <span class="pl-v">TypeError</span>(<span class="pl-s">"data argument can't be an iterator"</span>) </td> </tr> </tbody></table> </div> </div> <p></p>
<p dir="auto">Hi there,</p> <p dir="auto">I have a codebase that (so far) consumes data series in the form of dict-yielding iterators, similar in form to how DataFrame's constructor accepts a list of such. Unfortunately it seems from current implementation of that constructor, there is no straightforward way to consume from an iterator straight into a DataFrame.</p> <p dir="auto">For example, I have a row factory for sqlite3 written in C that produces dicts. If pandas would accept an iterator, it should be possible to consume a series directly from speedy storage code into speedy data structure code. :)</p> <p dir="auto">Is there an inherent limitation preventing this? Otherwise with a few pointers I would be willing to try contribute the patch myself.</p> <p dir="auto">Thanks,</p> <p dir="auto">David</p>
1
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">If a user happens to request an old bundle resource with an old hash, the response should 404, not 500.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">I'm currently running a Next.js app at <a href="https://www.tenable.com/plugins" rel="nofollow">https://www.tenable.com/plugins</a> and I'm getting quite a few 500 errors in my logs after I deploy a new version that has a new hash from the build (I'm using sticky sessions to minimize the disruption, but still see some errors long after the deploy).</p> <h2 dir="auto">Steps to Reproduce (for bugs)</h2> <p dir="auto"><strong>200</strong> -&gt; <a href="https://custom-server-koa-wxksegmzhf.now.sh/_next/7c048a193f99703d6180e88866b6e06b/app.js" rel="nofollow">https://custom-server-koa-wxksegmzhf.now.sh/_next/7c048a193f99703d6180e88866b6e06b/app.js</a></p> <p dir="auto"><strong>500 Internal server error</strong> -&gt; <a href="https://custom-server-koa-wxksegmzhf.now.sh/_next/OLD_HASH_VALUE/app.js" rel="nofollow">https://custom-server-koa-wxksegmzhf.now.sh/_next/OLD_HASH_VALUE/app.js</a></p> <p dir="auto">Source code area of interest: <a href="https://github.com/zeit/next.js/blob/1aade36f13e03db13d23f86dc52a459f9a29e03d/server/index.js#L467">https://github.com/zeit/next.js/blob/1aade36f13e03db13d23f86dc52a459f9a29e03d/server/index.js#L467</a></p> <h2 dir="auto">Context</h2> <p dir="auto">Just trying to minimize the number of unneeded 500 errors <g-emoji class="g-emoji" alias="smile" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f604.png">πŸ˜„</g-emoji></p> <p dir="auto">Appreciate all your work and effort!</p> <h2 dir="auto">Your Environment</h2> <table role="table"> <thead> <tr> <th>Tech</th> <th>Version</th> </tr> </thead> <tbody> <tr> <td>next</td> <td>canary</td> </tr> <tr> <td>node</td> <td>8.9</td> </tr> <tr> <td>OS</td> <td>macOS, node docker</td> </tr> <tr> <td>browser</td> <td></td> </tr> <tr> <td>etc</td> <td></td> </tr> </tbody> </table>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/zeit/next.js/issues">issues</a> of this repository and believe that this is not a duplicate.</li> </ul> <h2 dir="auto">Expected Behavior</h2> <p dir="auto">It would be great if you could access "previousProps" when rendering page client-side.</p> <h2 dir="auto">Current Behavior</h2> <p dir="auto">Currently getInitialProps passes "req" to function when the page is rendered server-side. In the req I'm receiving some site-specific data. Then, when navigation occurs (via router), getInitialProps is runned on client-side without req object and application has to make special ajax request just to download those site data again.</p> <h2 dir="auto">Context</h2> <p dir="auto">Obviously it feels very redundant to make this kind of request for some site data (I need to pass to graphql queries for instance) every-single-time when user navigates from one page to another. That's why it would be very useful to recall them when rendering page in browser. Or to store them someplace when rendering page first time on server (but I guess that's technologically not possible).</p> <p dir="auto">If there's already way to achieve that, I would appreciate link, but I wasn't been able to find a solution or related issues at all.</p> <p dir="auto">Thank you,<br> David</p>
0
<table role="table"> <thead> <tr> <th>Q</th> <th>A</th> </tr> </thead> <tbody> <tr> <td>Bug report?</td> <td>yes</td> </tr> <tr> <td>Feature request?</td> <td>no</td> </tr> <tr> <td>BC Break report?</td> <td>no</td> </tr> <tr> <td>RFC?</td> <td>yes</td> </tr> <tr> <td>Symfony version</td> <td>3.1</td> </tr> </tbody> </table> <p dir="auto">While testing disabling a user, I decided to try to impersonate the disabled user and found that you are able to impersonate the user as normal (as if they were never disabled). I expected the user should be disabled. Is this expected behavior?</p> <p dir="auto">When I log out, then try to log in as the disabled user, I am properly alerted that the account is disabled and am not logged in.</p>
<table role="table"> <thead> <tr> <th>Q</th> <th>A</th> </tr> </thead> <tbody> <tr> <td>Bug report?</td> <td>no</td> </tr> <tr> <td>Feature request?</td> <td>yes</td> </tr> <tr> <td>BC Break report?</td> <td>no</td> </tr> <tr> <td>RFC?</td> <td>yes</td> </tr> <tr> <td>Symfony version</td> <td>4.1</td> </tr> </tbody> </table> <p dir="auto">Currently, we have 2 separate annotation loaders for the routing: one in SensioFrameworkExtraBundle (SFEB) and one in FrameworkBundle (FB) which was added more recently. The component only has an abstract class (used by both).</p> <p dir="auto">The FB loader was added more recently (in 3.4), as we encouraged using annotation more and more and people wanting to have support in core. But it is missing a few features:</p> <ul dir="auto"> <li>generated controller name is not as clean as the SFEB one when using <code class="notranslate">__invoke</code> (probably added in SFEB after the port to core, and not backported)</li> <li>missing support for service id AFAIK (the core annotation does not have the <code class="notranslate">service</code> property)</li> <li>SFEB supports extra <code class="notranslate">@Method</code> annotations (and its subclasses for <code class="notranslate">@GET</code> and <code class="notranslate">@POST</code>). I'm not sure how common they are. An option could be to deprecate them.</li> </ul> <p dir="auto">Having 2 diverging implementations makes maintenance harder (and enabling SFEB changes the loader being used, so adding a new feature in the FB loader is dangerous as installing SFEB would replace it, and the <code class="notranslate">annotation</code> Flex alias installs SFEB).</p> <p dir="auto">Here are my suggestions:</p> <ul dir="auto"> <li>fix the support for <code class="notranslate">__invoke</code> in FB so that both loaders are in sync in 3.4 (I would consider it a bug that the implementation is different here)</li> <li>evaluate the possibility for SFEB to extend the FB implementation so that it does not have to duplicate the logic (especially for future core features). Requires bumping min version to Symfony 3.4 in SFEB.</li> <li>consider moving the AnnotatedRouteControllerLoader to the component rather than FB (there is nothing really specific to the bundle in it)</li> <li>consider deprecating the SFEB routing layer (depends on the usage of <code class="notranslate">@Route(service="...")</code> and <code class="notranslate">@Method()</code></li> </ul>
0
<p dir="auto">This was the underlying cause of a problem reported on stackoverflow: <a href="http://stackoverflow.com/questions/43659827/numpy-error-when-specifying-axis-in-nanmax-while-nansum-works-an-the-same-case" rel="nofollow">http://stackoverflow.com/questions/43659827/numpy-error-when-specifying-axis-in-nanmax-while-nansum-works-an-the-same-case</a></p> <p dir="auto">The error is raised when applying <code class="notranslate">nanmax()</code> or <code class="notranslate">nanmin()</code> to an array with object data type and specifying an axis.</p> <p dir="auto">Here's the example from my answer:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [2]: import numpy as np In [3]: np.__version__ Out[3]: '1.13.0.dev0+bca7922' In [4]: a = np.array([[1.0, 2.0], [3.0, 4.0]], dtype=object) In [5]: np.nanmax(a, axis=0) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) &lt;ipython-input-5-a020f98a2536&gt; in &lt;module&gt;() ----&gt; 1 np.nanmax(a, axis=0) /Users/warren/miniconda3numpy/lib/python3.5/site-packages/numpy-1.13.0.dev0+bca7922-py3.5-macosx-10.6-x86_64.egg/numpy/lib/nanfunctions.py in nanmax(a, axis, out, keepdims) 343 # Fast, but not safe for subclasses of ndarray 344 res = np.fmax.reduce(a, axis=axis, out=out, **kwargs) --&gt; 345 if np.isnan(res).any(): 346 warnings.warn(&quot;All-NaN slice encountered&quot;, RuntimeWarning, stacklevel=2) 347 else: TypeError: ufunc 'isnan' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe''"><pre class="notranslate"><code class="notranslate">In [2]: import numpy as np In [3]: np.__version__ Out[3]: '1.13.0.dev0+bca7922' In [4]: a = np.array([[1.0, 2.0], [3.0, 4.0]], dtype=object) In [5]: np.nanmax(a, axis=0) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) &lt;ipython-input-5-a020f98a2536&gt; in &lt;module&gt;() ----&gt; 1 np.nanmax(a, axis=0) /Users/warren/miniconda3numpy/lib/python3.5/site-packages/numpy-1.13.0.dev0+bca7922-py3.5-macosx-10.6-x86_64.egg/numpy/lib/nanfunctions.py in nanmax(a, axis, out, keepdims) 343 # Fast, but not safe for subclasses of ndarray 344 res = np.fmax.reduce(a, axis=axis, out=out, **kwargs) --&gt; 345 if np.isnan(res).any(): 346 warnings.warn("All-NaN slice encountered", RuntimeWarning, stacklevel=2) 347 else: TypeError: ufunc 'isnan' not supported for the input types, and the inputs could not be safely coerced to any supported types according to the casting rule ''safe'' </code></pre></div> <p dir="auto">There is no error when the axis is not given:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [6]: np.nanmax(a) Out[6]: 4.0"><pre class="notranslate"><code class="notranslate">In [6]: np.nanmax(a) Out[6]: 4.0 </code></pre></div> <p dir="auto"><code class="notranslate">nansum()</code> handles the axis without an error:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="In [7]: np.nansum(a, axis=0) Out[7]: array([4.0, 6.0], dtype=object)"><pre class="notranslate"><code class="notranslate">In [7]: np.nansum(a, axis=0) Out[7]: array([4.0, 6.0], dtype=object) </code></pre></div> <p dir="auto">There are several other issues involving the nan-functions and object arrays, but I couldn't tell if this issue is a duplicate. Sorry for the noise if it is.</p>
<p dir="auto">The documentation for numpy.dual states "Aliases for functions which may be accelerated by Scipy." One of the functions supported is cholesky. One would assume (I did) that the results will be the same regardless of whether scipy is installed or not; only the execution time might vary.</p> <p dir="auto">However, the implementation in numpy and scipy for cholesky are different. The numpy version returns a lower triangular matrix, and the scipy version returns an upper triangular matrix. Hence you get different behavior depending on whether you have scipy installed or not.</p> <p dir="auto">Below is a script that duplicates this behavior (without forcing you to uninstall scipy to test).</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import numpy as np import numpy.linalg as la import numpy.dual as dual P = np.cov(np.diag([1., 2., 3.])) c1 = la.cholesky(P) c2 = dual.cholesky(P) assert c1[1,2] == c2[2,1] assert c1[1,2] != c2[1,2]"><pre class="notranslate"><code class="notranslate">import numpy as np import numpy.linalg as la import numpy.dual as dual P = np.cov(np.diag([1., 2., 3.])) c1 = la.cholesky(P) c2 = dual.cholesky(P) assert c1[1,2] == c2[2,1] assert c1[1,2] != c2[1,2] </code></pre></div> <p dir="auto">Suggested fix: I dunno. Some choices that come to mind</p> <ul dir="auto"> <li>Add a <em>lower</em> parameter to numpy, defaulted to true, and add a non-optional parameter <em>lower</em> to dual.cholesky. This will break all code using dual.cholesky, but I am not a fan of silent failures.</li> <li>Remove cholesky from dual</li> <li>scipy's cholesky has an optional <em>lower</em> param that can be set to true. If dual.py could be modified to set that to be true than numpy.linalg.cholesky and dual.cholesky will behave the same, which is presumably the behavior that the programmer wants. I say 'presumably' because the programmer may be used to using the scipy version and expecting the upper-triangular behavior; they will be surprised by this choice.</li> <li>Add a warning in the documentation that the behavior is inconsistent. I dislike this because I found out about this problem the hard way - my output 'looked' wrong. Sure, documentation would have helped me find it faster, but either consistent behavior or an exception would have been preferred by me.</li> <li>Make cholesky in both scipy and numpy return upper-triangular. This is a terrible option IMO because it would break so much code.</li> </ul> <p dir="auto">The top two are the most "painful" to the users of the library, but they have the advantage of forcing them to think about and deal with the problem. The others allow silent failures.</p>
0
<p dir="auto">I worked around <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="148424102" data-permission-text="Title is private" data-url="https://github.com/microsoft/TypeScript/issues/8091" data-hovercard-type="issue" data-hovercard-url="/microsoft/TypeScript/issues/8091/hovercard" href="https://github.com/microsoft/TypeScript/issues/8091">#8091</a> by adding to the top of <code class="notranslate">lib.webworker.d.ts</code></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="interface IDBIndexParameters { multiEntry?: boolean; unique?: boolean; } type IDBKeyPath = string; interface IDBObjectStoreParameters { autoIncrement?: boolean; keyPath?: IDBKeyPath; }"><pre class="notranslate"><code class="notranslate">interface IDBIndexParameters { multiEntry?: boolean; unique?: boolean; } type IDBKeyPath = string; interface IDBObjectStoreParameters { autoIncrement?: boolean; keyPath?: IDBKeyPath; } </code></pre></div> <p dir="auto">now I get another error:</p> <p dir="auto"><strong>TypeScript Version:</strong></p> <p dir="auto">nightly (1.9.0-dev.20160409)</p> <p dir="auto"><strong>Code</strong></p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ npm install rxjs $ cat tsconfig.json { &quot;compilerOptions&quot;: { &quot;module&quot;: &quot;commonjs&quot;, &quot;target&quot;: &quot;es5&quot;, &quot;lib&quot;: [&quot;webworker&quot;, &quot;es6&quot;], &quot;noImplicitAny&quot;: false, &quot;sourceMap&quot;: false }, &quot;exclude&quot;: [ &quot;node_modules&quot; ], &quot;files&quot;: [&quot;repro.ts&quot;] } $ cat repro.ts import * as o from 'rxjs/observable/FromEventObservable';"><pre class="notranslate">$ npm install rxjs $ cat tsconfig.json { <span class="pl-s"><span class="pl-pds">"</span>compilerOptions<span class="pl-pds">"</span></span>: { <span class="pl-s"><span class="pl-pds">"</span>module<span class="pl-pds">"</span></span>: <span class="pl-s"><span class="pl-pds">"</span>commonjs<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>target<span class="pl-pds">"</span></span>: <span class="pl-s"><span class="pl-pds">"</span>es5<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>lib<span class="pl-pds">"</span></span>: [<span class="pl-s"><span class="pl-pds">"</span>webworker<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>es6<span class="pl-pds">"</span></span>], <span class="pl-s"><span class="pl-pds">"</span>noImplicitAny<span class="pl-pds">"</span></span>: false, <span class="pl-s"><span class="pl-pds">"</span>sourceMap<span class="pl-pds">"</span></span>: <span class="pl-c1">false</span> }, <span class="pl-s"><span class="pl-pds">"</span>exclude<span class="pl-pds">"</span></span>: [ <span class="pl-s"><span class="pl-pds">"</span>node_modules<span class="pl-pds">"</span></span> ], <span class="pl-s"><span class="pl-pds">"</span>files<span class="pl-pds">"</span></span>: [<span class="pl-s"><span class="pl-pds">"</span>repro.ts<span class="pl-pds">"</span></span>] } $ cat repro.ts import <span class="pl-k">*</span> as o from <span class="pl-s"><span class="pl-pds">'</span>rxjs/observable/FromEventObservable<span class="pl-pds">'</span></span><span class="pl-k">;</span></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="node_modules/rxjs/observable/FromEventObservable.d.ts(11,104): error TS2304: Cannot find name 'NodeList'. node_modules/rxjs/observable/FromEventObservable.d.ts(11,115): error TS2304: Cannot find name 'HTMLCollection'."><pre class="notranslate"><code class="notranslate">node_modules/rxjs/observable/FromEventObservable.d.ts(11,104): error TS2304: Cannot find name 'NodeList'. node_modules/rxjs/observable/FromEventObservable.d.ts(11,115): error TS2304: Cannot find name 'HTMLCollection'. </code></pre></div>
<p dir="auto">I want a type similar to 'any' but can be initialized only with Object compatible type.<br> Is it possible to do this ?</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var a : {any}; a.x = 1; // OK a[&quot;x&quot;] = 1; // OK a = {}; // OK a = 1; // Error !"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">a</span> : <span class="pl-kos">{</span><span class="pl-c1">any</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-s1">a</span><span class="pl-kos">.</span><span class="pl-c1">x</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span><span class="pl-kos">;</span> <span class="pl-c">// OK</span> <span class="pl-s1">a</span><span class="pl-kos">[</span><span class="pl-s">"x"</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span><span class="pl-kos">;</span> <span class="pl-c">// OK</span> <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-c">// OK</span> <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span><span class="pl-kos">;</span> <span class="pl-c">// Error !</span></pre></div> <p dir="auto">The workaround is to use indexer, but then syntax 'a.x' doesn't work.</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var a: {[key: string]: any;}; a = 1; // Error"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">a</span>: <span class="pl-kos">{</span><span class="pl-kos">[</span><span class="pl-s1">key</span>: <span class="pl-smi">string</span><span class="pl-kos">]</span>: <span class="pl-smi">any</span><span class="pl-kos">;</span><span class="pl-kos">}</span><span class="pl-kos">;</span> <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span><span class="pl-kos">;</span> <span class="pl-c">// Error</span></pre></div>
0
<h3 dir="auto">Describe the issue:</h3> <p dir="auto">When importing Numpy or Pandas in a Python 3.11.3 Conda environment, I see (two, duplicates of the warning message listed below in "Error message" inputbox:</p> <p dir="auto">I can't find MKL documentation explaining this warning.</p> <p dir="auto">The messages are not suppressible with warnings.filterwarnings('ignore')</p> <p dir="auto">Expected Behavior is that Deprecation warning messages can be suppressed and that messages explain possible remediation actions by user (e.g. install a different version of package xyz etc.)</p> <h3 dir="auto">Reproduce the code example:</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import numpy as np"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">numpy</span> <span class="pl-k">as</span> <span class="pl-s1">np</span></pre></div> <h3 dir="auto">Error message:</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Intel MKL WARNING: Support of Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) enabled only processors has been deprecated. Intel oneAPI Math Kernel Library 2025.0 will require Intel(R) Advanced Vector Extensions (Intel(R) AVX) instructions."><pre class="notranslate">Intel MKL WARNING: Support of Intel(R) Streaming SIMD Extensions 4.2 (Intel(R) SSE4.2) enabled only processors has been deprecated. Intel oneAPI Math Kernel Library 2025.0 will require Intel(R) Advanced Vector Extensions (Intel(R) AVX) instructions.</pre></div> <h3 dir="auto">Runtime information:</h3> <p dir="auto">Output of:<br> print(np.<strong>version</strong>)<br> print(sys.version)<br> print(np.show_runtime())</p> <p dir="auto">1.24.3<br> 3.11.3 (main, Apr 19 2023, 18:51:09) [Clang 14.0.6 ]<br> WARNING: <code class="notranslate">threadpoolctl</code> not found in system! Install it by <code class="notranslate">pip install threadpoolctl</code>. Once installed, try <code class="notranslate">np.show_runtime</code> again for more detailed build information<br> [{'simd_extensions': {'baseline': ['SSE', 'SSE2', 'SSE3'],<br> 'found': ['SSSE3', 'SSE41', 'POPCNT', 'SSE42'],<br> 'not_found': ['AVX',<br> 'F16C',<br> 'FMA3',<br> 'AVX2',<br> 'AVX512F',<br> 'AVX512CD',<br> 'AVX512_KNL',<br> 'AVX512_SKX',<br> 'AVX512_CLX',<br> 'AVX512_CNL',<br> 'AVX512_ICL']}}]<br> None</p> <h3 dir="auto">Context for the issue:</h3> <p dir="auto">This creates a poor UI when working with both Numpy and Pandas.</p>
<p dir="auto"><code class="notranslate">dask.array.Array</code> implements <code class="notranslate">__array_ufunc__</code> to make calls of ufuncs with dask arguments lazy. However current implementation of <code class="notranslate">numpy.vectorize</code> triggers computation of dask inputs during broadcasting stage.</p> <p dir="auto">Example:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="a = da.ones((10,), chunks=2) def pyfunc(x): return x ufunc = np.vectorize(pyfunc) b = ufunc(a) # Out: array([ 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.]) # Expected: another dask array, which is not yet computed"><pre class="notranslate"><span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">da</span>.<span class="pl-en">ones</span>((<span class="pl-c1">10</span>,), <span class="pl-s1">chunks</span><span class="pl-c1">=</span><span class="pl-c1">2</span>) <span class="pl-k">def</span> <span class="pl-en">pyfunc</span>(<span class="pl-s1">x</span>): <span class="pl-k">return</span> <span class="pl-s1">x</span> <span class="pl-s1">ufunc</span> <span class="pl-c1">=</span> <span class="pl-s1">np</span>.<span class="pl-en">vectorize</span>(<span class="pl-s1">pyfunc</span>) <span class="pl-s1">b</span> <span class="pl-c1">=</span> <span class="pl-en">ufunc</span>(<span class="pl-s1">a</span>) <span class="pl-c"># Out: array([ 1., 1., 1., 1., 1., 1., 1., 1., 1., 1.])</span> <span class="pl-c"># Expected: another dask array, which is not yet computed</span></pre></div>
0
<p dir="auto">Running Glide 3.3.1 on a pre-11 device will throw</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="E/dalvikvmοΉ• Could not find class 'android.app.FragmentManager', referenced from method com.bumptech.glide.manager.RequestManagerRetriever.handleMessage"><pre class="notranslate"><code class="notranslate">E/dalvikvmοΉ• Could not find class 'android.app.FragmentManager', referenced from method com.bumptech.glide.manager.RequestManagerRetriever.handleMessage </code></pre></div> <p dir="auto">As README.md states: Glide requires a minimum sdk version of 10, I think Glide should handle this gracefully.</p> <p dir="auto">Thanks</p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="java.lang.NoSuchMethodError: android.app.Activity.getFragmentManager at com.bumptech.glide.manager.RequestManagerRetriever.get(RequestManagerRetriever.java:132) at com.bumptech.glide.Glide.with(Glide.java:550) at net.twisterrob.glidecrash.MainActivity.glide(MainActivity.java:36)"><pre class="notranslate"><code class="notranslate">java.lang.NoSuchMethodError: android.app.Activity.getFragmentManager at com.bumptech.glide.manager.RequestManagerRetriever.get(RequestManagerRetriever.java:132) at com.bumptech.glide.Glide.with(Glide.java:550) at net.twisterrob.glidecrash.MainActivity.glide(MainActivity.java:36) </code></pre></div> <p dir="auto">A workaround is:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Glide.with(this.getApplicationContext())"><pre class="notranslate"><code class="notranslate">Glide.with(this.getApplicationContext()) </code></pre></div> <p dir="auto">but this should be hidden from me.</p> <p dir="auto">I think <code class="notranslate">public RequestManager get(Activity activity)</code> is missing a <code class="notranslate">HONEYCOMB</code> check.</p>
1
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; f(x, _, y = nothing) = f(x,y) WARNING: deprecated syntax &quot;_ as an rvalue around REPL[1]:1&quot;. f (generic function with 2 methods)"><pre class="notranslate"><code class="notranslate">julia&gt; f(x, _, y = nothing) = f(x,y) WARNING: deprecated syntax "_ as an rvalue around REPL[1]:1". f (generic function with 2 methods) </code></pre></div> <p dir="auto"><code class="notranslate">_</code> is a lvalue here or?</p>
<p dir="auto">The warnings appear only inside closures.</p> <div class="highlight highlight-source-julia notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="julia&gt; for _ in 1:10 function f(x) _ = 10 end end WARNING: deprecated syntax &quot;_ as an rvalue&quot;. WARNING: deprecated syntax &quot;_ as an rvalue&quot;."><pre class="notranslate">julia<span class="pl-k">&gt;</span> <span class="pl-k">for</span> _ <span class="pl-k">in</span> <span class="pl-c1">1</span><span class="pl-k">:</span><span class="pl-c1">10</span> <span class="pl-k">function</span> <span class="pl-en">f</span>(x) _ <span class="pl-k">=</span> <span class="pl-c1">10</span> <span class="pl-k">end</span> <span class="pl-k">end</span> WARNING<span class="pl-k">:</span> deprecated syntax <span class="pl-s"><span class="pl-pds">"</span>_ as an rvalue<span class="pl-pds">"</span></span>. WARNING<span class="pl-k">:</span> deprecated syntax <span class="pl-s"><span class="pl-pds">"</span>_ as an rvalue<span class="pl-pds">"</span></span>.</pre></div>
1
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/13930091/89759379-a14d8200-db1c-11ea-8656-b4e2d3c322d3.png"><img src="https://user-images.githubusercontent.com/13930091/89759379-a14d8200-db1c-11ea-8656-b4e2d3c322d3.png" alt="image" style="max-width: 100%;"></a></p>
<h3 dir="auto">First check</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I added a very descriptive title to this issue.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I used the GitHub search to find a similar issue and didn't find it.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I searched the FastAPI documentation, with the integrated search.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already searched in Google "How to X in FastAPI" and didn't find any information.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already read and followed all the tutorial in the docs and didn't find an answer.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/samuelcolvin/pydantic">Pydantic</a>.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/swagger-api/swagger-ui">Swagger UI</a>.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I already checked if it is not related to FastAPI but to <a href="https://github.com/Redocly/redoc">ReDoc</a>.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> After submitting this, I commit to one of: <ul dir="auto"> <li>Read open issues with questions until I find 2 issues where I can help someone and add a comment to help there.</li> <li>I already hit the "watch" button in this repository to receive notifications and I commit to help at least 2 people that ask questions in the future.</li> <li>Implement a Pull Request for a confirmed bug.</li> </ul> </li> </ul> <h3 dir="auto">Description</h3> <p dir="auto">When including a <code class="notranslate">List</code> in <code class="notranslate">response_model</code>, pycharm show this alert:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/7843637/89673435-b9bf6180-d8bc-11ea-8b40-00f99b5c346a.png"><img src="https://user-images.githubusercontent.com/7843637/89673435-b9bf6180-d8bc-11ea-8b40-00f99b5c346a.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Is this expected?</p> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>OS: Linux</li> <li>FastAPI Version: 0.58.0</li> <li>Python version: 3.8.5</li> </ul>
1
<table role="table"> <thead> <tr> <th>Q</th> <th>A</th> </tr> </thead> <tbody> <tr> <td>Bug report?</td> <td>no</td> </tr> <tr> <td>Feature request?</td> <td>yes</td> </tr> <tr> <td>BC Break report?</td> <td>no</td> </tr> <tr> <td>RFC?</td> <td>yes</td> </tr> <tr> <td>Symfony version</td> <td>3.4 (?)</td> </tr> </tbody> </table> <p dir="auto"><em>I'm sorry if this was discussed before, but I couldn't find anything with search.</em></p> <p dir="auto">Today I have accidentally deployed a controller with <code class="notranslate">dump()</code> in it to an environment that finally had <code class="notranslate">debug</code> flag set to <code class="notranslate">false</code> only to see a 500 error page (it was used in an action called asynchronously so I couldn't see that there are some variables dumped in the toolbar before). While I agree it's my fault for not catching this before, I also think that penalty doesn't fit the crime. To make situation like mine a little bit better I'd like to propose registering all "development" utilities (<code class="notranslate">dump()</code> et al) to be available in prod-like environments, but instead of any heavy lifting, make them do nothing. I don't have any numbers to back this up, but I believe that registering a NOP functions/twig methods will not affect overall Symfony performance. Also any overlooked calls (or even ones left on purpose) should not compromise applications' loading time. Also for those who want to fine-tune Symfony, it could be possible to not register dev utils (so get back to current situation) with a config flag.</p> <p dir="auto">What do you think?</p>
<table role="table"> <thead> <tr> <th>Q</th> <th>A</th> </tr> </thead> <tbody> <tr> <td>Bug report?</td> <td>no</td> </tr> <tr> <td>Feature request?</td> <td>yes</td> </tr> <tr> <td>BC Break report?</td> <td>no</td> </tr> <tr> <td>RFC?</td> <td>no</td> </tr> <tr> <td>Symfony version</td> <td>3.2</td> </tr> </tbody> </table> <p dir="auto">I'm very addicted to dump() to debug my code and i find it a invaluable tool, so thank you very much!<br> Unfortunately some time i forget to rid off of a dump or two in the code and if the code bump into production i got an exception because dump() does not exists.</p> <p dir="auto">I understand this should not happen and i should get more controls in place, but it happens; so my proposal: why not create a fake dump() function for production environment that does absolutely nothing?</p> <p dir="auto">Regards,<br> Matteo</p>
1
<p dir="auto">Currently, if a program is already running when I ask Run for it, it'll do nothing. I wish it'd bring it to the front and focus it so I can find it.</p> <p dir="auto">That way, I can use Run as a way to "goto" any program, whether it's open or not.</p>
<h1 dir="auto">Summary of the new feature/enhancement</h1> <p dir="auto">It would be more useful if already running programs are shown first in the results list in the quick launcher (like the old WindowWalker). <strong><em>Or maybe an option to change the priority.</em></strong></p> <h1 dir="auto">Proposed technical implementation details (optional)</h1> <p dir="auto">In the results list, the running programs should be first in the list.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/49621788/82359297-b4e1c480-99d5-11ea-9f35-8cdf32108868.png"><img src="https://user-images.githubusercontent.com/49621788/82359297-b4e1c480-99d5-11ea-9f35-8cdf32108868.png" alt="1" style="max-width: 100%;"></a><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/49621788/82359300-b57a5b00-99d5-11ea-964c-1b39bb99600d.png"><img src="https://user-images.githubusercontent.com/49621788/82359300-b57a5b00-99d5-11ea-964c-1b39bb99600d.png" alt="2" style="max-width: 100%;"></a></p>
1
<p dir="auto">In a TS file type "for" and auto-complete. You will find a 100% match "for" on the top, but the other 100% match from snippets is not there but rather at the end. If we do not sort unified across the various providers, then maybe we should take out snippets from the list and provide another way of completing snippets.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/900690/11789940/8b11967c-a299-11e5-9807-978e36586b09.png"><img width="513" alt="screen shot 2015-12-14 at 19 32 43" src="https://cloud.githubusercontent.com/assets/900690/11789940/8b11967c-a299-11e5-9807-978e36586b09.png" style="max-width: 100%;"></a></p>
<p dir="auto">Going for the for loop snippet:</p> <h2 dir="auto">JavaScript (snippet is close by):</h2> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5047891/11741172/7d04981c-9ff7-11e5-81c8-e99c45a0723c.gif"><img src="https://cloud.githubusercontent.com/assets/5047891/11741172/7d04981c-9ff7-11e5-81c8-e99c45a0723c.gif" alt="forjs" data-animated-image="" style="max-width: 100%;"></a></p> <h2 dir="auto">TypeScript (snippet is after many non relevant suggestions):</h2> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/5047891/11741199/9802b338-9ff7-11e5-80d0-3bd0512679aa.gif"><img src="https://cloud.githubusercontent.com/assets/5047891/11741199/9802b338-9ff7-11e5-80d0-3bd0512679aa.gif" alt="forts" data-animated-image="" style="max-width: 100%;"></a></p>
1
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ERROR: Command errored out with exit status 1: command: 'C:\Users\fidatoh\AppData\Local\Programs\Python\Python38-32\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '&quot;'&quot;'C:\\Users\\fidatoh\\AppData\\Local\\Temp\\pip-install-k7njkfl8\\matplotlib\\setup.py'&quot;'&quot;'; __file__='&quot;'&quot;'C:\\Users\\fidatoh\\AppData\\Local\\Temp\\pip-install-k7njkfl8\\matplotlib\\setup.py'&quot;'&quot;';f=getattr(tokenize, '&quot;'&quot;'open'&quot;'&quot;', open)(__file__);code=f.read().replace('&quot;'&quot;'\r\n'&quot;'&quot;', '&quot;'&quot;'\n'&quot;'&quot;');f.close();exec(compile(code, __file__, '&quot;'&quot;'exec'&quot;'&quot;'))' install --record 'C:\Users\fidatoh\AppData\Local\Temp\pip-record-hxnuzd2t\install-record.txt' --single-version-externally-managed --compile cwd: C:\Users\fidatoh\AppData\Local\Temp\pip-install-k7njkfl8\matplotlib\ Complete output (505 lines): ================================================================================ Edit setup.cfg to change the build options BUILDING MATPLOTLIB matplotlib: yes [3.1.1] python: yes [3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:21:23) [MSC v.1916 32 bit (Intel)]] platform: yes [win32] OPTIONAL SUBPACKAGES sample_data: yes [installing] tests: no [skipping due to configuration] OPTIONAL BACKEND EXTENSIONS agg: yes [installing] tkagg: yes [installing; run-time loading from Python Tcl/Tk] macosx: no [Mac OS-X only] OPTIONAL PACKAGE DATA dlls: no [skipping due to configuration] running install running build running build_py creating build creating build\lib.win32-3.8 copying lib\pylab.py -&gt; build\lib.win32-3.8 creating build\lib.win32-3.8\matplotlib copying lib\matplotlib\afm.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\animation.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\artist.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\axis.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\backend_bases.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\backend_managers.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\backend_tools.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\bezier.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\blocking_input.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\category.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\cm.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\collections.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\colorbar.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\colors.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\container.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\contour.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\dates.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\docstring.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\dviread.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\figure.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\fontconfig_pattern.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\font_manager.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\gridspec.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\hatch.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\image.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\legend.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\legend_handler.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\lines.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\markers.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\mathtext.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\mlab.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\offsetbox.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\patches.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\path.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\patheffects.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\pylab.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\pyplot.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\quiver.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\rcsetup.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\sankey.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\scale.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\spines.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\stackplot.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\streamplot.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\table.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\texmanager.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\text.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\textpath.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\ticker.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\tight_bbox.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\tight_layout.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\transforms.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\type1font.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\units.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\widgets.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_animation_data.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_cm.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_cm_listed.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_color_data.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_constrained_layout.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_layoutbox.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_mathtext_data.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_pylab_helpers.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_version.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\__init__.py -&gt; build\lib.win32-3.8\matplotlib creating build\lib.win32-3.8\mpl_toolkits copying lib\mpl_toolkits\__init__.py -&gt; build\lib.win32-3.8\mpl_toolkits creating build\lib.win32-3.8\matplotlib\axes copying lib\matplotlib\axes\_axes.py -&gt; build\lib.win32-3.8\matplotlib\axes copying lib\matplotlib\axes\_base.py -&gt; build\lib.win32-3.8\matplotlib\axes copying lib\matplotlib\axes\_secondary_axes.py -&gt; build\lib.win32-3.8\matplotlib\axes copying lib\matplotlib\axes\_subplots.py -&gt; build\lib.win32-3.8\matplotlib\axes copying lib\matplotlib\axes\__init__.py -&gt; build\lib.win32-3.8\matplotlib\axes creating build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_agg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_cairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3agg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3cairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_macosx.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_mixed.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_nbagg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_pdf.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_pgf.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_ps.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt4.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt4agg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt4cairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt5.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt5agg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt5cairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_svg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_template.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_tkagg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_tkcairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_webagg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_webagg_core.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_wx.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_wxagg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_wxcairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\qt_compat.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\tkagg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\windowing.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\wx_compat.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\_backend_pdf_ps.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\_backend_tk.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\__init__.py -&gt; build\lib.win32-3.8\matplotlib\backends creating build\lib.win32-3.8\matplotlib\cbook copying lib\matplotlib\cbook\deprecation.py -&gt; build\lib.win32-3.8\matplotlib\cbook copying lib\matplotlib\cbook\__init__.py -&gt; build\lib.win32-3.8\matplotlib\cbook creating build\lib.win32-3.8\matplotlib\compat copying lib\matplotlib\compat\subprocess.py -&gt; build\lib.win32-3.8\matplotlib\compat copying lib\matplotlib\compat\__init__.py -&gt; build\lib.win32-3.8\matplotlib\compat creating build\lib.win32-3.8\matplotlib\projections copying lib\matplotlib\projections\geo.py -&gt; build\lib.win32-3.8\matplotlib\projections copying lib\matplotlib\projections\polar.py -&gt; build\lib.win32-3.8\matplotlib\projections copying lib\matplotlib\projections\__init__.py -&gt; build\lib.win32-3.8\matplotlib\projections creating build\lib.win32-3.8\matplotlib\sphinxext copying lib\matplotlib\sphinxext\mathmpl.py -&gt; build\lib.win32-3.8\matplotlib\sphinxext copying lib\matplotlib\sphinxext\plot_directive.py -&gt; build\lib.win32-3.8\matplotlib\sphinxext copying lib\matplotlib\sphinxext\__init__.py -&gt; build\lib.win32-3.8\matplotlib\sphinxext creating build\lib.win32-3.8\matplotlib\style copying lib\matplotlib\style\core.py -&gt; build\lib.win32-3.8\matplotlib\style copying lib\matplotlib\style\__init__.py -&gt; build\lib.win32-3.8\matplotlib\style creating build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\compare.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\conftest.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\decorators.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\determinism.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\disable_internet.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\exceptions.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\__init__.py -&gt; build\lib.win32-3.8\matplotlib\testing creating build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\triangulation.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\tricontour.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\trifinder.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\triinterpolate.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\tripcolor.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\triplot.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\trirefine.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\tritools.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\__init__.py -&gt; build\lib.win32-3.8\matplotlib\tri creating build\lib.win32-3.8\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\figureoptions.py -&gt; build\lib.win32-3.8\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\formlayout.py -&gt; build\lib.win32-3.8\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\formsubplottool.py -&gt; build\lib.win32-3.8\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\_formlayout.py -&gt; build\lib.win32-3.8\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\__init__.py -&gt; build\lib.win32-3.8\matplotlib\backends\qt_editor creating build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\Duration.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\Epoch.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\EpochConverter.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\StrConverter.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDbl.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDblConverter.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDblFormatter.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\__init__.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units creating build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\anchored_artists.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\angle_helper.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_divider.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_grid.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_rgb.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_size.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axislines.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axisline_style.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axis_artist.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\clip_path.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\colorbar.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\floating_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\grid_finder.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\grid_helper_curvelinear.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\inset_locator.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\parasite_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\__init__.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid creating build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\anchored_artists.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_divider.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_grid.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_rgb.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_size.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\colorbar.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\inset_locator.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\mpl_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\parasite_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\__init__.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 creating build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\angle_helper.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_divider.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_grid.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_rgb.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axislines.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axisline_style.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axis_artist.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\clip_path.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\floating_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\grid_finder.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\grid_helper_curvelinear.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\parasite_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\__init__.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist creating build\lib.win32-3.8\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\art3d.py -&gt; build\lib.win32-3.8\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\axes3d.py -&gt; build\lib.win32-3.8\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\axis3d.py -&gt; build\lib.win32-3.8\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\proj3d.py -&gt; build\lib.win32-3.8\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\__init__.py -&gt; build\lib.win32-3.8\mpl_toolkits\mplot3d creating build\lib.win32-3.8\matplotlib\mpl-data creating build\lib.win32-3.8\matplotlib\mpl-data\fonts creating build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pncbi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm creating build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images creating build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Oblique.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmb10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\putbi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm creating build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\Solarize_Light2.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\putb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\subplots.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\putr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\hand.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\seaborn-colorblind.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\pncb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\seaborn-whitegrid.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\filesave.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\pzdr.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm creating build\lib.win32-3.8\matplotlib\backends\web_backend creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_555555_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_444444_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\LICENSE.txt -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\afm\pcrr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\seaborn-notebook.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib creating build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\topobathy.npz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\images\subplots_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_777620_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\mpl-data\images\subplots.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\external creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery\jquery.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery copying lib\matplotlib\mpl-data\stylelib\dark_background.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\matplotlibrc -&gt; build\lib.win32-3.8\matplotlib\mpl-data copying lib\matplotlib\mpl-data\fonts\afm\pplri8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\help_large.ppm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\nbagg_uat.ipynb -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.theme.min.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFiveSymReg.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\ptmb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralItalic.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\ptmri8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\help.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images creating build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Symbol.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts creating build\lib.win32-3.8\matplotlib\mpl-data\sample_data\axes_grid copying lib\matplotlib\mpl-data\sample_data\axes_grid\bivariate_normal.npy -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data\axes_grid copying lib\matplotlib\mpl-data\fonts\afm\pagdo8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\move_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\pplr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvl8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\LICENSE_DEJAVU -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymReg.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\matplotlib.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-Bold.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-Oblique.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Italic.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\afm\pncri8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\package.json -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\afm\pagd8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmex10.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery\js copying lib\matplotlib\backends\web_backend\jquery\js\jquery.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery\js copying lib\matplotlib\mpl-data\images\matplotlib.ppm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\None_vs_nearest-pdf.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\afm\pplbi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\sample_data\ada.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-BoldOblique.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\images\matplotlib.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymReg.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\phvbo8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmr10.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\back.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\cmex10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\stylelib\seaborn-poster.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib creating build\lib.win32-3.8\matplotlib\backends\web_backend\js copying lib\matplotlib\backends\web_backend\js\mpl.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\js copying lib\matplotlib\mpl-data\images\back_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\seaborn-dark.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniIta.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansDisplay.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\pagko8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\sample_data\ct.raw.gz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\images\zoom_to_rect.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\js\nbagg_mpl.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\js copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_cc0000_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\mpl-data\sample_data\grace_hopper.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-BoldOblique.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\zoom_to_rect.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymReg.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\stylelib\seaborn-muted.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-bright.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\home.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUni.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\cmsy10.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\qt4_editor_options_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\seaborn.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\move.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\js\mpl_tornado.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\js copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerifDisplay.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\home.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-BoldItalic.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\stylelib\seaborn-white.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\backends\web_backend\ipython_inline_figure.html -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend copying lib\matplotlib\mpl-data\fonts\afm\pbkl8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniBolIta.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\forward_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\afm\phvb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Bold.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\stylelib\fivethirtyeight.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-pastel.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.theme.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\stylelib\seaborn-dark-palette.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Italic.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\ttf\cmsy10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\help.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\grace_hopper.jpg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\afm\cmmi10.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\seaborn-paper.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\sample_data\jacksboro_fault_dem.npz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-Bold.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\afm\phvr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\back_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-Oblique.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\images\move.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\logo2.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\afm\ptmbi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymReg.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\sample_data\eeg.dat -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\stylelib\ggplot.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\home_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\bmh.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\phvr8an.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\seaborn-deep.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\pplb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_ffffff_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\mpl-data\stylelib\fast.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\filesave.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\embedding_in_wx3.xrc -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\ZapfDingbats.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\ttf\LICENSE_STIX -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\matplotlib_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\single_figure.html -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend copying lib\matplotlib\mpl-data\images\qt4_editor_options.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images creating build\lib.win32-3.8\matplotlib\backends\web_backend\css copying lib\matplotlib\backends\web_backend\css\page.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\css copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\index.html -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.min.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\stylelib\seaborn-talk.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\pagk8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\forward_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\psyr.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvbo8an.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\sample_data\data_x_x2_x3.csv -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.structure.min.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\afm\pcrro8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\sample_data\aapl.npz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralBolIta.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\pbkdi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\classic.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\sample_data\README.txt -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\images\move_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\grayscale.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\forward.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\pzcmi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\subplots.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.ppm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Bold.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\backends\web_backend\jquery\js\jquery.min.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery\js copying lib\matplotlib\mpl-data\images\move.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\phvb8an.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\back.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\Minduka_Present_Blue_Pack.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Bold.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\sample_data\s1045.ima.gz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\images\move.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\seaborn-ticks.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\pncr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvro8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\cmtt10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\filesave_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\cmtt10.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\tableau-colorblind10.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\home_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\goog.npz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\afm\phvro8an.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\backends\web_backend\all_figures.html -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\css\fbm.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\css copying lib\matplotlib\mpl-data\fonts\afm\pcrbo8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pcrb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\putri8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\images\filesave.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\css\boilerplate.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\css copying lib\matplotlib\mpl-data\images\forward.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\stylelib\seaborn-darkgrid.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\phvlo8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\sample_data\demodata.csv -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\msft.csv -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\afm\pbkd8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-BoldItalic.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\sample_data\percent_bachelors_degrees_women_usa.csv -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_777777_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\mpl-data\sample_data\membrane.dat -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\hand_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\AUTHORS.txt -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\images\zoom_to_rect.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.structure.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\ttf\cmmi10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\pbkli8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\back.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\ptmr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\cmss10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-BoldOblique.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneral.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\readme.txt -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\ttf\cmr10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\hand.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Roman.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\stylelib\_classic_test.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Bold.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Oblique.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-BoldOblique.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\images\filesave.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.min.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 UPDATING build\lib.win32-3.8\matplotlib\_version.py set build\lib.win32-3.8\matplotlib\_version.py to '3.1.1' running build_ext building 'matplotlib.ft2font' extension creating build\temp.win32-3.8 creating build\temp.win32-3.8\Release creating build\temp.win32-3.8\Release\src C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -IC:\Users\fidatoh\AppData\Local\Programs\Python\Python38-32\lib\site-packages\numpy\core\include -IC:\Users\fidatoh\AppData\Local\Programs\Python\Python38-32\include -IC:\Users\fidatoh\AppData\Local\Programs\Python\Python38-32\include &quot;-IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE&quot; &quot;-IC:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt&quot; /Tcsrc/checkdep_freetype2.c /Fobuild\temp.win32-3.8\Release\src/checkdep_freetype2.obj checkdep_freetype2.c src/checkdep_freetype2.c(1): fatal error C1083: Cannot open include file: 'ft2build.h': No such file or directory error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\cl.exe' failed with exit status 2 ---------------------------------------- ERROR: Command errored out with exit status 1: 'C:\Users\fidatoh\AppData\Local\Programs\Python\Python38-32\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '&quot;'&quot;'C:\\Users\\fidatoh\\AppData\\Local\\Temp\\pip-install-k7njkfl8\\matplotlib\\setup.py'&quot;'&quot;'; __file__='&quot;'&quot;'C:\\Users\\fidatoh\\AppData\\Local\\Temp\\pip-install-k7njkfl8\\matplotlib\\setup.py'&quot;'&quot;';f=getattr(tokenize, '&quot;'&quot;'open'&quot;'&quot;', open)(__file__);code=f.read().replace('&quot;'&quot;'\r\n'&quot;'&quot;', '&quot;'&quot;'\n'&quot;'&quot;');f.close();exec(compile(code, __file__, '&quot;'&quot;'exec'&quot;'&quot;'))' install --record 'C:\Users\fidatoh\AppData\Local\Temp\pip-record-hxnuzd2t\install-record.txt' --single-version-externally-managed --compile Check the logs for full command output."><pre class="notranslate"><code class="notranslate">ERROR: Command errored out with exit status 1: command: 'C:\Users\fidatoh\AppData\Local\Programs\Python\Python38-32\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\fidatoh\\AppData\\Local\\Temp\\pip-install-k7njkfl8\\matplotlib\\setup.py'"'"'; __file__='"'"'C:\\Users\\fidatoh\\AppData\\Local\\Temp\\pip-install-k7njkfl8\\matplotlib\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\fidatoh\AppData\Local\Temp\pip-record-hxnuzd2t\install-record.txt' --single-version-externally-managed --compile cwd: C:\Users\fidatoh\AppData\Local\Temp\pip-install-k7njkfl8\matplotlib\ Complete output (505 lines): ================================================================================ Edit setup.cfg to change the build options BUILDING MATPLOTLIB matplotlib: yes [3.1.1] python: yes [3.8.0 (tags/v3.8.0:fa919fd, Oct 14 2019, 19:21:23) [MSC v.1916 32 bit (Intel)]] platform: yes [win32] OPTIONAL SUBPACKAGES sample_data: yes [installing] tests: no [skipping due to configuration] OPTIONAL BACKEND EXTENSIONS agg: yes [installing] tkagg: yes [installing; run-time loading from Python Tcl/Tk] macosx: no [Mac OS-X only] OPTIONAL PACKAGE DATA dlls: no [skipping due to configuration] running install running build running build_py creating build creating build\lib.win32-3.8 copying lib\pylab.py -&gt; build\lib.win32-3.8 creating build\lib.win32-3.8\matplotlib copying lib\matplotlib\afm.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\animation.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\artist.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\axis.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\backend_bases.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\backend_managers.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\backend_tools.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\bezier.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\blocking_input.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\category.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\cm.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\collections.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\colorbar.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\colors.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\container.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\contour.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\dates.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\docstring.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\dviread.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\figure.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\fontconfig_pattern.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\font_manager.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\gridspec.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\hatch.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\image.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\legend.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\legend_handler.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\lines.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\markers.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\mathtext.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\mlab.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\offsetbox.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\patches.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\path.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\patheffects.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\pylab.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\pyplot.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\quiver.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\rcsetup.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\sankey.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\scale.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\spines.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\stackplot.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\streamplot.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\table.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\texmanager.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\text.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\textpath.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\ticker.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\tight_bbox.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\tight_layout.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\transforms.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\type1font.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\units.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\widgets.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_animation_data.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_cm.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_cm_listed.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_color_data.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_constrained_layout.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_layoutbox.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_mathtext_data.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_pylab_helpers.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\_version.py -&gt; build\lib.win32-3.8\matplotlib copying lib\matplotlib\__init__.py -&gt; build\lib.win32-3.8\matplotlib creating build\lib.win32-3.8\mpl_toolkits copying lib\mpl_toolkits\__init__.py -&gt; build\lib.win32-3.8\mpl_toolkits creating build\lib.win32-3.8\matplotlib\axes copying lib\matplotlib\axes\_axes.py -&gt; build\lib.win32-3.8\matplotlib\axes copying lib\matplotlib\axes\_base.py -&gt; build\lib.win32-3.8\matplotlib\axes copying lib\matplotlib\axes\_secondary_axes.py -&gt; build\lib.win32-3.8\matplotlib\axes copying lib\matplotlib\axes\_subplots.py -&gt; build\lib.win32-3.8\matplotlib\axes copying lib\matplotlib\axes\__init__.py -&gt; build\lib.win32-3.8\matplotlib\axes creating build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_agg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_cairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3agg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3cairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_macosx.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_mixed.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_nbagg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_pdf.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_pgf.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_ps.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt4.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt4agg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt4cairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt5.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt5agg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_qt5cairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_svg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_template.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_tkagg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_tkcairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_webagg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_webagg_core.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_wx.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_wxagg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\backend_wxcairo.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\qt_compat.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\tkagg.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\windowing.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\wx_compat.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\_backend_pdf_ps.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\_backend_tk.py -&gt; build\lib.win32-3.8\matplotlib\backends copying lib\matplotlib\backends\__init__.py -&gt; build\lib.win32-3.8\matplotlib\backends creating build\lib.win32-3.8\matplotlib\cbook copying lib\matplotlib\cbook\deprecation.py -&gt; build\lib.win32-3.8\matplotlib\cbook copying lib\matplotlib\cbook\__init__.py -&gt; build\lib.win32-3.8\matplotlib\cbook creating build\lib.win32-3.8\matplotlib\compat copying lib\matplotlib\compat\subprocess.py -&gt; build\lib.win32-3.8\matplotlib\compat copying lib\matplotlib\compat\__init__.py -&gt; build\lib.win32-3.8\matplotlib\compat creating build\lib.win32-3.8\matplotlib\projections copying lib\matplotlib\projections\geo.py -&gt; build\lib.win32-3.8\matplotlib\projections copying lib\matplotlib\projections\polar.py -&gt; build\lib.win32-3.8\matplotlib\projections copying lib\matplotlib\projections\__init__.py -&gt; build\lib.win32-3.8\matplotlib\projections creating build\lib.win32-3.8\matplotlib\sphinxext copying lib\matplotlib\sphinxext\mathmpl.py -&gt; build\lib.win32-3.8\matplotlib\sphinxext copying lib\matplotlib\sphinxext\plot_directive.py -&gt; build\lib.win32-3.8\matplotlib\sphinxext copying lib\matplotlib\sphinxext\__init__.py -&gt; build\lib.win32-3.8\matplotlib\sphinxext creating build\lib.win32-3.8\matplotlib\style copying lib\matplotlib\style\core.py -&gt; build\lib.win32-3.8\matplotlib\style copying lib\matplotlib\style\__init__.py -&gt; build\lib.win32-3.8\matplotlib\style creating build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\compare.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\conftest.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\decorators.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\determinism.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\disable_internet.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\exceptions.py -&gt; build\lib.win32-3.8\matplotlib\testing copying lib\matplotlib\testing\__init__.py -&gt; build\lib.win32-3.8\matplotlib\testing creating build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\triangulation.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\tricontour.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\trifinder.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\triinterpolate.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\tripcolor.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\triplot.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\trirefine.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\tritools.py -&gt; build\lib.win32-3.8\matplotlib\tri copying lib\matplotlib\tri\__init__.py -&gt; build\lib.win32-3.8\matplotlib\tri creating build\lib.win32-3.8\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\figureoptions.py -&gt; build\lib.win32-3.8\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\formlayout.py -&gt; build\lib.win32-3.8\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\formsubplottool.py -&gt; build\lib.win32-3.8\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\_formlayout.py -&gt; build\lib.win32-3.8\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\__init__.py -&gt; build\lib.win32-3.8\matplotlib\backends\qt_editor creating build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\Duration.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\Epoch.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\EpochConverter.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\StrConverter.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDbl.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDblConverter.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDblFormatter.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\__init__.py -&gt; build\lib.win32-3.8\matplotlib\testing\jpl_units creating build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\anchored_artists.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\angle_helper.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_divider.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_grid.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_rgb.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_size.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axislines.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axisline_style.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axis_artist.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\clip_path.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\colorbar.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\floating_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\grid_finder.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\grid_helper_curvelinear.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\inset_locator.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\parasite_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\__init__.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid creating build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\anchored_artists.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_divider.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_grid.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_rgb.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_size.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\colorbar.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\inset_locator.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\mpl_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\parasite_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\__init__.py -&gt; build\lib.win32-3.8\mpl_toolkits\axes_grid1 creating build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\angle_helper.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_divider.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_grid.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_rgb.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axislines.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axisline_style.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axis_artist.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\clip_path.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\floating_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\grid_finder.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\grid_helper_curvelinear.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\parasite_axes.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\__init__.py -&gt; build\lib.win32-3.8\mpl_toolkits\axisartist creating build\lib.win32-3.8\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\art3d.py -&gt; build\lib.win32-3.8\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\axes3d.py -&gt; build\lib.win32-3.8\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\axis3d.py -&gt; build\lib.win32-3.8\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\proj3d.py -&gt; build\lib.win32-3.8\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\__init__.py -&gt; build\lib.win32-3.8\mpl_toolkits\mplot3d creating build\lib.win32-3.8\matplotlib\mpl-data creating build\lib.win32-3.8\matplotlib\mpl-data\fonts creating build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pncbi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm creating build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images creating build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Oblique.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmb10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\putbi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm creating build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\Solarize_Light2.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\putb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\subplots.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\putr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\hand.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\seaborn-colorblind.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\pncb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\seaborn-whitegrid.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\filesave.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\pzdr.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm creating build\lib.win32-3.8\matplotlib\backends\web_backend creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_555555_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_444444_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\LICENSE.txt -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\afm\pcrr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\seaborn-notebook.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib creating build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\topobathy.npz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\images\subplots_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_777620_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\mpl-data\images\subplots.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\external creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery\jquery.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery copying lib\matplotlib\mpl-data\stylelib\dark_background.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\matplotlibrc -&gt; build\lib.win32-3.8\matplotlib\mpl-data copying lib\matplotlib\mpl-data\fonts\afm\pplri8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\help_large.ppm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\nbagg_uat.ipynb -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.theme.min.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFiveSymReg.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\ptmb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralItalic.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\ptmri8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\help.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images creating build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Symbol.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts creating build\lib.win32-3.8\matplotlib\mpl-data\sample_data\axes_grid copying lib\matplotlib\mpl-data\sample_data\axes_grid\bivariate_normal.npy -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data\axes_grid copying lib\matplotlib\mpl-data\fonts\afm\pagdo8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\move_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\pplr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvl8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\LICENSE_DEJAVU -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymReg.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\matplotlib.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-Bold.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-Oblique.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Italic.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\afm\pncri8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\package.json -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\afm\pagd8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmex10.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery creating build\lib.win32-3.8\matplotlib\backends\web_backend\jquery\js copying lib\matplotlib\backends\web_backend\jquery\js\jquery.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery\js copying lib\matplotlib\mpl-data\images\matplotlib.ppm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\None_vs_nearest-pdf.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\afm\pplbi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\sample_data\ada.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-BoldOblique.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\images\matplotlib.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymReg.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\phvbo8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmr10.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\back.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\cmex10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\stylelib\seaborn-poster.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib creating build\lib.win32-3.8\matplotlib\backends\web_backend\js copying lib\matplotlib\backends\web_backend\js\mpl.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\js copying lib\matplotlib\mpl-data\images\back_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\seaborn-dark.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniIta.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansDisplay.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\pagko8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\sample_data\ct.raw.gz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\images\zoom_to_rect.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\js\nbagg_mpl.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\js copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_cc0000_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\mpl-data\sample_data\grace_hopper.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-BoldOblique.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\zoom_to_rect.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymReg.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\stylelib\seaborn-muted.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-bright.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\home.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUni.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\cmsy10.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\qt4_editor_options_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\seaborn.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\move.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\js\mpl_tornado.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\js copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerifDisplay.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\home.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-BoldItalic.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\stylelib\seaborn-white.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\backends\web_backend\ipython_inline_figure.html -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend copying lib\matplotlib\mpl-data\fonts\afm\pbkl8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniBolIta.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\forward_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\afm\phvb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Bold.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\stylelib\fivethirtyeight.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-pastel.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.theme.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\stylelib\seaborn-dark-palette.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Italic.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\ttf\cmsy10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\help.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\grace_hopper.jpg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\afm\cmmi10.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\seaborn-paper.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\sample_data\jacksboro_fault_dem.npz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-Bold.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\afm\phvr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\back_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-Oblique.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\images\move.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\logo2.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\afm\ptmbi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymReg.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\sample_data\eeg.dat -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\stylelib\ggplot.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\home_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\bmh.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\phvr8an.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\seaborn-deep.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\pplb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_ffffff_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\mpl-data\stylelib\fast.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\filesave.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\embedding_in_wx3.xrc -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\ZapfDingbats.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\ttf\LICENSE_STIX -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\matplotlib_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\single_figure.html -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend copying lib\matplotlib\mpl-data\images\qt4_editor_options.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images creating build\lib.win32-3.8\matplotlib\backends\web_backend\css copying lib\matplotlib\backends\web_backend\css\page.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\css copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\index.html -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.min.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\stylelib\seaborn-talk.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\pagk8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\forward_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\psyr.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvbo8an.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\sample_data\data_x_x2_x3.csv -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.structure.min.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\afm\pcrro8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\sample_data\aapl.npz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralBolIta.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\pbkdi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\classic.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\sample_data\README.txt -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\images\move_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\grayscale.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\forward.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\pzcmi8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\subplots.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.ppm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Bold.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\backends\web_backend\jquery\js\jquery.min.js -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery\js copying lib\matplotlib\mpl-data\images\move.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\phvb8an.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\back.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\Minduka_Present_Blue_Pack.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Bold.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\sample_data\s1045.ima.gz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\images\move.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\stylelib\seaborn-ticks.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\pncr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvro8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\cmtt10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\filesave_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\afm\cmtt10.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\stylelib\tableau-colorblind10.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\images\home_large.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\sample_data\goog.npz -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\afm\phvro8an.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\backends\web_backend\all_figures.html -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\css\fbm.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\css copying lib\matplotlib\mpl-data\fonts\afm\pcrbo8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pcrb8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\putri8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\images\filesave.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib.pdf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\css\boilerplate.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\css copying lib\matplotlib\mpl-data\images\forward.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\stylelib\seaborn-darkgrid.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\afm\phvlo8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\sample_data\demodata.csv -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\msft.csv -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\afm\pbkd8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-BoldItalic.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\sample_data\percent_bachelors_degrees_women_usa.csv -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_777777_256x240.png -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\mpl-data\sample_data\membrane.dat -&gt; build\lib.win32-3.8\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\hand_large.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\AUTHORS.txt -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\images\zoom_to_rect.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.structure.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\mpl-data\fonts\ttf\cmmi10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\pbkli8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\images\back.svg -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralBol.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\afm\ptmr8a.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\ttf\cmss10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-BoldOblique.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneral.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\readme.txt -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\ttf\cmr10.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\images\hand.gif -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Roman.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\stylelib\_classic_test.mplstyle -&gt; build\lib.win32-3.8\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Bold.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Oblique.ttf -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-BoldOblique.afm -&gt; build\lib.win32-3.8\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\images\filesave.png -&gt; build\lib.win32-3.8\matplotlib\mpl-data\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.min.css -&gt; build\lib.win32-3.8\matplotlib\backends\web_backend\jquery-ui-1.12.1 UPDATING build\lib.win32-3.8\matplotlib\_version.py set build\lib.win32-3.8\matplotlib\_version.py to '3.1.1' running build_ext building 'matplotlib.ft2font' extension creating build\temp.win32-3.8 creating build\temp.win32-3.8\Release creating build\temp.win32-3.8\Release\src C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\cl.exe /c /nologo /Ox /W3 /GL /DNDEBUG /MD -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -IC:\Users\fidatoh\AppData\Local\Programs\Python\Python38-32\lib\site-packages\numpy\core\include -IC:\Users\fidatoh\AppData\Local\Programs\Python\Python38-32\include -IC:\Users\fidatoh\AppData\Local\Programs\Python\Python38-32\include "-IC:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\INCLUDE" "-IC:\Program Files (x86)\Windows Kits\10\include\10.0.10240.0\ucrt" /Tcsrc/checkdep_freetype2.c /Fobuild\temp.win32-3.8\Release\src/checkdep_freetype2.obj checkdep_freetype2.c src/checkdep_freetype2.c(1): fatal error C1083: Cannot open include file: 'ft2build.h': No such file or directory error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\cl.exe' failed with exit status 2 ---------------------------------------- ERROR: Command errored out with exit status 1: 'C:\Users\fidatoh\AppData\Local\Programs\Python\Python38-32\python.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\fidatoh\\AppData\\Local\\Temp\\pip-install-k7njkfl8\\matplotlib\\setup.py'"'"'; __file__='"'"'C:\\Users\\fidatoh\\AppData\\Local\\Temp\\pip-install-k7njkfl8\\matplotlib\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' install --record 'C:\Users\fidatoh\AppData\Local\Temp\pip-record-hxnuzd2t\install-record.txt' --single-version-externally-managed --compile Check the logs for full command output. </code></pre></div>
<p dir="auto">looks like issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="415950521" data-permission-text="Title is private" data-url="https://github.com/matplotlib/matplotlib/issues/13555" data-hovercard-type="issue" data-hovercard-url="/matplotlib/matplotlib/issues/13555/hovercard" href="https://github.com/matplotlib/matplotlib/issues/13555">#13555</a></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\pypy3.6-v7.1.1-win32&gt;pypy3.exe -m pip wheel matplotlib Collecting matplotlib Using cached https://files.pythonhosted.org/packages/12/d1/7b12cd79c791348cb0c78ce6e7d16bd72992f13c9f1e8e43d2725a6d8adf/matplotlib-3.1.1.tar.gz Collecting cycler&gt;=0.10 (from matplotlib) Using cached https://files.pythonhosted.org/packages/f7/d2/e07d3ebb2bd7af696440ce7e754c59dd546ffe1bbe732c8ab68b9c834e61/cycler-0.10.0-py2.py3-none-any.whl Saved c:\pypy3.6-v7.1.1-win32\cycler-0.10.0-py2.py3-none-any.whl Collecting kiwisolver&gt;=1.0.1 (from matplotlib) Saved c:\pypy3.6-v7.1.1-win32\kiwisolver-1.1.0-pp371-pp371-win32.whl Collecting pyparsing!=2.0.4,!=2.1.2,!=2.1.6,&gt;=2.0.1 (from matplotlib) Using cached https://files.pythonhosted.org/packages/11/fa/0160cd525c62d7abd076a070ff02b2b94de589f1a9789774f17d7c54058e/pyparsing-2.4.2-py2.py3-none-any.whl Saved c:\pypy3.6-v7.1.1-win32\pyparsing-2.4.2-py2.py3-none-any.whl Collecting python-dateutil&gt;=2.1 (from matplotlib) Using cached https://files.pythonhosted.org/packages/41/17/c62faccbfbd163c7f57f3844689e3a78bae1f403648a6afb1d0866d87fbb/python_dateutil-2.8.0-py2.py3-none-any.whl Saved c:\pypy3.6-v7.1.1-win32\python_dateutil-2.8.0-py2.py3-none-any.whl Collecting numpy&gt;=1.11 (from matplotlib) Saved c:\pypy3.6-v7.1.1-win32\numpy-1.17.1-pp371-pp371-win32.whl Collecting six (from cycler&gt;=0.10-&gt;matplotlib) Using cached https://files.pythonhosted.org/packages/73/fb/00a976f728d0d1fecfe898238ce23f502a721c0ac0ecfedb80e0d88c64e9/six-1.12.0-py2.py3-none-any.whl Saved c:\pypy3.6-v7.1.1-win32\six-1.12.0-py2.py3-none-any.whl Collecting setuptools (from kiwisolver&gt;=1.0.1-&gt;matplotlib) Using cached https://files.pythonhosted.org/packages/b2/86/095d2f7829badc207c893dd4ac767e871f6cd547145df797ea26baea4e2e/setuptools-41.2.0-py2.py3-none-any.whl Saved c:\pypy3.6-v7.1.1-win32\setuptools-41.2.0-py2.py3-none-any.whl Skipping cycler, due to already being wheel. Skipping kiwisolver, due to already being wheel. Skipping pyparsing, due to already being wheel. Skipping python-dateutil, due to already being wheel. Skipping numpy, due to already being wheel. Skipping six, due to already being wheel. Skipping setuptools, due to already being wheel. Building wheels for collected packages: matplotlib Building wheel for matplotlib (setup.py) ... error ERROR: Command errored out with exit status 1: command: 'C:\pypy3.6-v7.1.1-win32\pypy3.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '&quot;'&quot;'C:\\Users\\JANWIL~1\\AppData\\Local\\Temp\\pip-wheel-8vslqx0b\\matplotlib\\setup.py'&quot;'&quot;'; __file__='&quot;'&quot;'C:\\Users\\JANWIL~1\\AppData\\Local\\Temp\\pip-wheel-8vslqx0b\\matplotlib\\setup.py'&quot;'&quot;';f=getattr(tokenize, '&quot;'&quot;'open'&quot;'&quot;', open)(__file__);code=f.read().replace('&quot;'&quot;'\r\n'&quot;'&quot;', '&quot;'&quot;'\n'&quot;'&quot;');f.close();exec(compile(code, __file__, '&quot;'&quot;'exec'&quot;'&quot;'))' bdist_wheel -d 'C:\Users\JANWIL~1\AppData\Local\Temp\pip-wheel-3fqmb2q4' cwd: C:\Users\JANWIL~1\AppData\Local\Temp\pip-wheel-8vslqx0b\matplotlib\ Complete output (505 lines): ================================================================================ Edit setup.cfg to change the build options BUILDING MATPLOTLIB matplotlib: yes [3.1.1] python: yes [3.6.1 (784b254d6699, Apr 16 2019, 12:10:48) [PyPy 7.1.1-beta0 with MSC v.1910 32 bit]] platform: yes [win32] OPTIONAL SUBPACKAGES sample_data: yes [installing] tests: no [skipping due to configuration] OPTIONAL BACKEND EXTENSIONS agg: yes [installing] tkagg: yes [installing; run-time loading from Python Tcl/Tk] macosx: no [Mac OS-X only] OPTIONAL PACKAGE DATA dlls: no [skipping due to configuration] running bdist_wheel running build running build_py creating build creating build\lib.win32-3.6 copying lib\pylab.py -&gt; build\lib.win32-3.6 creating build\lib.win32-3.6\matplotlib copying lib\matplotlib\afm.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\animation.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\artist.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\axis.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\backend_bases.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\backend_managers.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\backend_tools.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\bezier.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\blocking_input.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\category.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\cm.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\collections.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\colorbar.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\colors.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\container.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\contour.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\dates.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\docstring.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\dviread.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\figure.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\fontconfig_pattern.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\font_manager.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\gridspec.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\hatch.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\image.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\legend.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\legend_handler.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\lines.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\markers.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\mathtext.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\mlab.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\offsetbox.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\patches.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\path.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\patheffects.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\pylab.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\pyplot.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\quiver.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\rcsetup.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\sankey.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\scale.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\spines.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\stackplot.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\streamplot.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\table.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\texmanager.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\text.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\textpath.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\ticker.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\tight_bbox.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\tight_layout.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\transforms.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\type1font.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\units.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\widgets.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_animation_data.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_cm.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_cm_listed.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_color_data.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_constrained_layout.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_layoutbox.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_mathtext_data.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_pylab_helpers.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_version.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\__init__.py -&gt; build\lib.win32-3.6\matplotlib creating build\lib.win32-3.6\mpl_toolkits copying lib\mpl_toolkits\__init__.py -&gt; build\lib.win32-3.6\mpl_toolkits creating build\lib.win32-3.6\matplotlib\axes copying lib\matplotlib\axes\_axes.py -&gt; build\lib.win32-3.6\matplotlib\axes copying lib\matplotlib\axes\_base.py -&gt; build\lib.win32-3.6\matplotlib\axes copying lib\matplotlib\axes\_secondary_axes.py -&gt; build\lib.win32-3.6\matplotlib\axes copying lib\matplotlib\axes\_subplots.py -&gt; build\lib.win32-3.6\matplotlib\axes copying lib\matplotlib\axes\__init__.py -&gt; build\lib.win32-3.6\matplotlib\axes creating build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_agg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_cairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3agg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3cairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_macosx.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_mixed.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_nbagg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_pdf.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_pgf.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_ps.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt4.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt4agg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt4cairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt5.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt5agg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt5cairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_svg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_template.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_tkagg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_tkcairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_webagg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_webagg_core.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_wx.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_wxagg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_wxcairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\qt_compat.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\tkagg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\windowing.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\wx_compat.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\_backend_pdf_ps.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\_backend_tk.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\__init__.py -&gt; build\lib.win32-3.6\matplotlib\backends creating build\lib.win32-3.6\matplotlib\cbook copying lib\matplotlib\cbook\deprecation.py -&gt; build\lib.win32-3.6\matplotlib\cbook copying lib\matplotlib\cbook\__init__.py -&gt; build\lib.win32-3.6\matplotlib\cbook creating build\lib.win32-3.6\matplotlib\compat copying lib\matplotlib\compat\subprocess.py -&gt; build\lib.win32-3.6\matplotlib\compat copying lib\matplotlib\compat\__init__.py -&gt; build\lib.win32-3.6\matplotlib\compat creating build\lib.win32-3.6\matplotlib\projections copying lib\matplotlib\projections\geo.py -&gt; build\lib.win32-3.6\matplotlib\projections copying lib\matplotlib\projections\polar.py -&gt; build\lib.win32-3.6\matplotlib\projections copying lib\matplotlib\projections\__init__.py -&gt; build\lib.win32-3.6\matplotlib\projections creating build\lib.win32-3.6\matplotlib\sphinxext copying lib\matplotlib\sphinxext\mathmpl.py -&gt; build\lib.win32-3.6\matplotlib\sphinxext copying lib\matplotlib\sphinxext\plot_directive.py -&gt; build\lib.win32-3.6\matplotlib\sphinxext copying lib\matplotlib\sphinxext\__init__.py -&gt; build\lib.win32-3.6\matplotlib\sphinxext creating build\lib.win32-3.6\matplotlib\style copying lib\matplotlib\style\core.py -&gt; build\lib.win32-3.6\matplotlib\style copying lib\matplotlib\style\__init__.py -&gt; build\lib.win32-3.6\matplotlib\style creating build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\compare.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\conftest.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\decorators.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\determinism.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\disable_internet.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\exceptions.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\__init__.py -&gt; build\lib.win32-3.6\matplotlib\testing creating build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\triangulation.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\tricontour.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\trifinder.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\triinterpolate.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\tripcolor.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\triplot.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\trirefine.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\tritools.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\__init__.py -&gt; build\lib.win32-3.6\matplotlib\tri creating build\lib.win32-3.6\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\figureoptions.py -&gt; build\lib.win32-3.6\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\formlayout.py -&gt; build\lib.win32-3.6\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\formsubplottool.py -&gt; build\lib.win32-3.6\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\_formlayout.py -&gt; build\lib.win32-3.6\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\__init__.py -&gt; build\lib.win32-3.6\matplotlib\backends\qt_editor creating build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\Duration.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\Epoch.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\EpochConverter.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\StrConverter.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDbl.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDblConverter.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDblFormatter.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\__init__.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units creating build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\anchored_artists.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\angle_helper.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_divider.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_grid.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_rgb.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_size.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axislines.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axisline_style.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axis_artist.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\clip_path.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\colorbar.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\floating_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\grid_finder.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\grid_helper_curvelinear.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\inset_locator.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\parasite_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\__init__.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid creating build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\anchored_artists.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_divider.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_grid.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_rgb.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_size.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\colorbar.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\inset_locator.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\mpl_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\parasite_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\__init__.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 creating build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\angle_helper.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_divider.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_grid.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_rgb.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axislines.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axisline_style.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axis_artist.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\clip_path.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\floating_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\grid_finder.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\grid_helper_curvelinear.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\parasite_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\__init__.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist creating build\lib.win32-3.6\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\art3d.py -&gt; build\lib.win32-3.6\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\axes3d.py -&gt; build\lib.win32-3.6\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\axis3d.py -&gt; build\lib.win32-3.6\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\proj3d.py -&gt; build\lib.win32-3.6\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\__init__.py -&gt; build\lib.win32-3.6\mpl_toolkits\mplot3d creating build\lib.win32-3.6\matplotlib\mpl-data creating build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\aapl.npz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\ada.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\ct.raw.gz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\data_x_x2_x3.csv -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\demodata.csv -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\eeg.dat -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\embedding_in_wx3.xrc -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\goog.npz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\grace_hopper.jpg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\grace_hopper.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\jacksboro_fault_dem.npz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\logo2.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\membrane.dat -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\Minduka_Present_Blue_Pack.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\msft.csv -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\None_vs_nearest-pdf.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\percent_bachelors_degrees_women_usa.csv -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\README.txt -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\s1045.ima.gz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\topobathy.npz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data creating build\lib.win32-3.6\matplotlib\mpl-data\sample_data\axes_grid copying lib\matplotlib\mpl-data\sample_data\axes_grid\bivariate_normal.npy -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data\axes_grid copying lib\matplotlib\mpl-data\matplotlibrc -&gt; build\lib.win32-3.6\matplotlib\mpl-data creating build\lib.win32-3.6\matplotlib\mpl-data\fonts creating build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmex10.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmmi10.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmr10.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmsy10.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmtt10.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pagd8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pagdo8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pagk8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pagko8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pbkd8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pbkdi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pbkl8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pbkli8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pcrb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pcrbo8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pcrr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pcrro8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvb8an.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvbo8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvbo8an.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvl8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvlo8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvr8an.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvro8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvro8an.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pncb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pncbi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pncr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pncri8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pplb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pplbi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pplr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pplri8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\psyr.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\ptmb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\ptmbi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\ptmr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\ptmri8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\putb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\putbi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\putr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\putri8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pzcmi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pzdr.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm creating build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-Bold.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-BoldOblique.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-Oblique.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-Bold.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-BoldOblique.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-Oblique.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\readme.txt -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Symbol.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Bold.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-BoldItalic.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Italic.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Roman.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\ZapfDingbats.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts creating build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmb10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmex10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmmi10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmr10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmss10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmsy10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmtt10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Bold.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-BoldOblique.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Oblique.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansDisplay.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Bold.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-BoldOblique.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Oblique.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Bold.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-BoldItalic.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Italic.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerifDisplay.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\LICENSE_DEJAVU -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\LICENSE_STIX -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneral.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralBolIta.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralItalic.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUni.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniBolIta.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniIta.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFiveSymReg.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymReg.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymReg.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymReg.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymReg.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf creating build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.ppm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help_large.ppm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib.ppm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images creating build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\bmh.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\classic.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\dark_background.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\fast.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\fivethirtyeight.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\ggplot.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\grayscale.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-bright.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-colorblind.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-dark-palette.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-dark.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-darkgrid.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-deep.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-muted.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-notebook.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-paper.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-pastel.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-poster.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-talk.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-ticks.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-white.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-whitegrid.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\Solarize_Light2.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\tableau-colorblind10.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\_classic_test.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib creating build\lib.win32-3.6\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\all_figures.html -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\ipython_inline_figure.html -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\nbagg_uat.ipynb -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\single_figure.html -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend creating build\lib.win32-3.6\matplotlib\backends\web_backend\css copying lib\matplotlib\backends\web_backend\css\boilerplate.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\css copying lib\matplotlib\backends\web_backend\css\fbm.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\css copying lib\matplotlib\backends\web_backend\css\page.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\css creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery\js copying lib\matplotlib\backends\web_backend\jquery\js\jquery.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery\js copying lib\matplotlib\backends\web_backend\jquery\js\jquery.min.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery\js creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\AUTHORS.txt -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\index.html -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.min.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.min.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.structure.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.structure.min.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.theme.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.theme.min.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\LICENSE.txt -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\package.json -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\external creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery\jquery.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_444444_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_555555_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_777620_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_777777_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_cc0000_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_ffffff_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images creating build\lib.win32-3.6\matplotlib\backends\web_backend\js copying lib\matplotlib\backends\web_backend\js\mpl.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\js copying lib\matplotlib\backends\web_backend\js\mpl_tornado.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\js copying lib\matplotlib\backends\web_backend\js\nbagg_mpl.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\js UPDATING build\lib.win32-3.6\matplotlib\_version.py set build\lib.win32-3.6\matplotlib\_version.py to '3.1.1' running build_ext building 'matplotlib.ft2font' extension creating build\temp.win32-3.6 creating build\temp.win32-3.6\Release creating build\temp.win32-3.6\Release\src C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -IC:\pypy3.6-v7.1.1-win32\site-packages\numpy\core\include -IC:\pypy3.6-v7.1.1-win32\include /Tcsrc/checkdep_freetype2.c /Fobuild\temp.win32-3.6\Release\src/checkdep_freetype2.obj checkdep_freetype2.c src/checkdep_freetype2.c(1): fatal error C1083: Cannot open include file: 'ft2build.h': No such file or directory error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\cl.exe' failed with exit status 2 ---------------------------------------- ERROR: Failed building wheel for matplotlib Running setup.py clean for matplotlib Failed to build matplotlib ERROR: Failed to build one or more wheels "><pre class="notranslate"><code class="notranslate">C:\pypy3.6-v7.1.1-win32&gt;pypy3.exe -m pip wheel matplotlib Collecting matplotlib Using cached https://files.pythonhosted.org/packages/12/d1/7b12cd79c791348cb0c78ce6e7d16bd72992f13c9f1e8e43d2725a6d8adf/matplotlib-3.1.1.tar.gz Collecting cycler&gt;=0.10 (from matplotlib) Using cached https://files.pythonhosted.org/packages/f7/d2/e07d3ebb2bd7af696440ce7e754c59dd546ffe1bbe732c8ab68b9c834e61/cycler-0.10.0-py2.py3-none-any.whl Saved c:\pypy3.6-v7.1.1-win32\cycler-0.10.0-py2.py3-none-any.whl Collecting kiwisolver&gt;=1.0.1 (from matplotlib) Saved c:\pypy3.6-v7.1.1-win32\kiwisolver-1.1.0-pp371-pp371-win32.whl Collecting pyparsing!=2.0.4,!=2.1.2,!=2.1.6,&gt;=2.0.1 (from matplotlib) Using cached https://files.pythonhosted.org/packages/11/fa/0160cd525c62d7abd076a070ff02b2b94de589f1a9789774f17d7c54058e/pyparsing-2.4.2-py2.py3-none-any.whl Saved c:\pypy3.6-v7.1.1-win32\pyparsing-2.4.2-py2.py3-none-any.whl Collecting python-dateutil&gt;=2.1 (from matplotlib) Using cached https://files.pythonhosted.org/packages/41/17/c62faccbfbd163c7f57f3844689e3a78bae1f403648a6afb1d0866d87fbb/python_dateutil-2.8.0-py2.py3-none-any.whl Saved c:\pypy3.6-v7.1.1-win32\python_dateutil-2.8.0-py2.py3-none-any.whl Collecting numpy&gt;=1.11 (from matplotlib) Saved c:\pypy3.6-v7.1.1-win32\numpy-1.17.1-pp371-pp371-win32.whl Collecting six (from cycler&gt;=0.10-&gt;matplotlib) Using cached https://files.pythonhosted.org/packages/73/fb/00a976f728d0d1fecfe898238ce23f502a721c0ac0ecfedb80e0d88c64e9/six-1.12.0-py2.py3-none-any.whl Saved c:\pypy3.6-v7.1.1-win32\six-1.12.0-py2.py3-none-any.whl Collecting setuptools (from kiwisolver&gt;=1.0.1-&gt;matplotlib) Using cached https://files.pythonhosted.org/packages/b2/86/095d2f7829badc207c893dd4ac767e871f6cd547145df797ea26baea4e2e/setuptools-41.2.0-py2.py3-none-any.whl Saved c:\pypy3.6-v7.1.1-win32\setuptools-41.2.0-py2.py3-none-any.whl Skipping cycler, due to already being wheel. Skipping kiwisolver, due to already being wheel. Skipping pyparsing, due to already being wheel. Skipping python-dateutil, due to already being wheel. Skipping numpy, due to already being wheel. Skipping six, due to already being wheel. Skipping setuptools, due to already being wheel. Building wheels for collected packages: matplotlib Building wheel for matplotlib (setup.py) ... error ERROR: Command errored out with exit status 1: command: 'C:\pypy3.6-v7.1.1-win32\pypy3.exe' -u -c 'import sys, setuptools, tokenize; sys.argv[0] = '"'"'C:\\Users\\JANWIL~1\\AppData\\Local\\Temp\\pip-wheel-8vslqx0b\\matplotlib\\setup.py'"'"'; __file__='"'"'C:\\Users\\JANWIL~1\\AppData\\Local\\Temp\\pip-wheel-8vslqx0b\\matplotlib\\setup.py'"'"';f=getattr(tokenize, '"'"'open'"'"', open)(__file__);code=f.read().replace('"'"'\r\n'"'"', '"'"'\n'"'"');f.close();exec(compile(code, __file__, '"'"'exec'"'"'))' bdist_wheel -d 'C:\Users\JANWIL~1\AppData\Local\Temp\pip-wheel-3fqmb2q4' cwd: C:\Users\JANWIL~1\AppData\Local\Temp\pip-wheel-8vslqx0b\matplotlib\ Complete output (505 lines): ================================================================================ Edit setup.cfg to change the build options BUILDING MATPLOTLIB matplotlib: yes [3.1.1] python: yes [3.6.1 (784b254d6699, Apr 16 2019, 12:10:48) [PyPy 7.1.1-beta0 with MSC v.1910 32 bit]] platform: yes [win32] OPTIONAL SUBPACKAGES sample_data: yes [installing] tests: no [skipping due to configuration] OPTIONAL BACKEND EXTENSIONS agg: yes [installing] tkagg: yes [installing; run-time loading from Python Tcl/Tk] macosx: no [Mac OS-X only] OPTIONAL PACKAGE DATA dlls: no [skipping due to configuration] running bdist_wheel running build running build_py creating build creating build\lib.win32-3.6 copying lib\pylab.py -&gt; build\lib.win32-3.6 creating build\lib.win32-3.6\matplotlib copying lib\matplotlib\afm.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\animation.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\artist.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\axis.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\backend_bases.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\backend_managers.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\backend_tools.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\bezier.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\blocking_input.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\category.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\cm.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\collections.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\colorbar.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\colors.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\container.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\contour.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\dates.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\docstring.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\dviread.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\figure.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\fontconfig_pattern.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\font_manager.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\gridspec.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\hatch.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\image.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\legend.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\legend_handler.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\lines.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\markers.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\mathtext.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\mlab.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\offsetbox.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\patches.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\path.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\patheffects.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\pylab.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\pyplot.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\quiver.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\rcsetup.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\sankey.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\scale.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\spines.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\stackplot.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\streamplot.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\table.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\texmanager.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\text.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\textpath.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\ticker.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\tight_bbox.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\tight_layout.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\transforms.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\type1font.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\units.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\widgets.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_animation_data.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_cm.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_cm_listed.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_color_data.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_constrained_layout.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_layoutbox.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_mathtext_data.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_pylab_helpers.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\_version.py -&gt; build\lib.win32-3.6\matplotlib copying lib\matplotlib\__init__.py -&gt; build\lib.win32-3.6\matplotlib creating build\lib.win32-3.6\mpl_toolkits copying lib\mpl_toolkits\__init__.py -&gt; build\lib.win32-3.6\mpl_toolkits creating build\lib.win32-3.6\matplotlib\axes copying lib\matplotlib\axes\_axes.py -&gt; build\lib.win32-3.6\matplotlib\axes copying lib\matplotlib\axes\_base.py -&gt; build\lib.win32-3.6\matplotlib\axes copying lib\matplotlib\axes\_secondary_axes.py -&gt; build\lib.win32-3.6\matplotlib\axes copying lib\matplotlib\axes\_subplots.py -&gt; build\lib.win32-3.6\matplotlib\axes copying lib\matplotlib\axes\__init__.py -&gt; build\lib.win32-3.6\matplotlib\axes creating build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_agg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_cairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3agg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_gtk3cairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_macosx.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_mixed.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_nbagg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_pdf.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_pgf.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_ps.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt4.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt4agg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt4cairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt5.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt5agg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_qt5cairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_svg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_template.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_tkagg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_tkcairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_webagg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_webagg_core.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_wx.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_wxagg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\backend_wxcairo.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\qt_compat.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\tkagg.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\windowing.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\wx_compat.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\_backend_pdf_ps.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\_backend_tk.py -&gt; build\lib.win32-3.6\matplotlib\backends copying lib\matplotlib\backends\__init__.py -&gt; build\lib.win32-3.6\matplotlib\backends creating build\lib.win32-3.6\matplotlib\cbook copying lib\matplotlib\cbook\deprecation.py -&gt; build\lib.win32-3.6\matplotlib\cbook copying lib\matplotlib\cbook\__init__.py -&gt; build\lib.win32-3.6\matplotlib\cbook creating build\lib.win32-3.6\matplotlib\compat copying lib\matplotlib\compat\subprocess.py -&gt; build\lib.win32-3.6\matplotlib\compat copying lib\matplotlib\compat\__init__.py -&gt; build\lib.win32-3.6\matplotlib\compat creating build\lib.win32-3.6\matplotlib\projections copying lib\matplotlib\projections\geo.py -&gt; build\lib.win32-3.6\matplotlib\projections copying lib\matplotlib\projections\polar.py -&gt; build\lib.win32-3.6\matplotlib\projections copying lib\matplotlib\projections\__init__.py -&gt; build\lib.win32-3.6\matplotlib\projections creating build\lib.win32-3.6\matplotlib\sphinxext copying lib\matplotlib\sphinxext\mathmpl.py -&gt; build\lib.win32-3.6\matplotlib\sphinxext copying lib\matplotlib\sphinxext\plot_directive.py -&gt; build\lib.win32-3.6\matplotlib\sphinxext copying lib\matplotlib\sphinxext\__init__.py -&gt; build\lib.win32-3.6\matplotlib\sphinxext creating build\lib.win32-3.6\matplotlib\style copying lib\matplotlib\style\core.py -&gt; build\lib.win32-3.6\matplotlib\style copying lib\matplotlib\style\__init__.py -&gt; build\lib.win32-3.6\matplotlib\style creating build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\compare.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\conftest.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\decorators.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\determinism.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\disable_internet.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\exceptions.py -&gt; build\lib.win32-3.6\matplotlib\testing copying lib\matplotlib\testing\__init__.py -&gt; build\lib.win32-3.6\matplotlib\testing creating build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\triangulation.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\tricontour.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\trifinder.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\triinterpolate.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\tripcolor.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\triplot.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\trirefine.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\tritools.py -&gt; build\lib.win32-3.6\matplotlib\tri copying lib\matplotlib\tri\__init__.py -&gt; build\lib.win32-3.6\matplotlib\tri creating build\lib.win32-3.6\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\figureoptions.py -&gt; build\lib.win32-3.6\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\formlayout.py -&gt; build\lib.win32-3.6\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\formsubplottool.py -&gt; build\lib.win32-3.6\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\_formlayout.py -&gt; build\lib.win32-3.6\matplotlib\backends\qt_editor copying lib\matplotlib\backends\qt_editor\__init__.py -&gt; build\lib.win32-3.6\matplotlib\backends\qt_editor creating build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\Duration.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\Epoch.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\EpochConverter.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\StrConverter.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDbl.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDblConverter.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\UnitDblFormatter.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units copying lib\matplotlib\testing\jpl_units\__init__.py -&gt; build\lib.win32-3.6\matplotlib\testing\jpl_units creating build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\anchored_artists.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\angle_helper.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_divider.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_grid.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_rgb.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axes_size.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axislines.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axisline_style.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\axis_artist.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\clip_path.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\colorbar.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\floating_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\grid_finder.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\grid_helper_curvelinear.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\inset_locator.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\parasite_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid copying lib\mpl_toolkits\axes_grid\__init__.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid creating build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\anchored_artists.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_divider.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_grid.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_rgb.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\axes_size.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\colorbar.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\inset_locator.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\mpl_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\parasite_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 copying lib\mpl_toolkits\axes_grid1\__init__.py -&gt; build\lib.win32-3.6\mpl_toolkits\axes_grid1 creating build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\angle_helper.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_divider.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_grid.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axes_rgb.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axislines.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axisline_style.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\axis_artist.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\clip_path.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\floating_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\grid_finder.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\grid_helper_curvelinear.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\parasite_axes.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist copying lib\mpl_toolkits\axisartist\__init__.py -&gt; build\lib.win32-3.6\mpl_toolkits\axisartist creating build\lib.win32-3.6\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\art3d.py -&gt; build\lib.win32-3.6\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\axes3d.py -&gt; build\lib.win32-3.6\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\axis3d.py -&gt; build\lib.win32-3.6\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\proj3d.py -&gt; build\lib.win32-3.6\mpl_toolkits\mplot3d copying lib\mpl_toolkits\mplot3d\__init__.py -&gt; build\lib.win32-3.6\mpl_toolkits\mplot3d creating build\lib.win32-3.6\matplotlib\mpl-data creating build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\aapl.npz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\ada.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\ct.raw.gz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\data_x_x2_x3.csv -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\demodata.csv -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\eeg.dat -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\embedding_in_wx3.xrc -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\goog.npz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\grace_hopper.jpg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\grace_hopper.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\jacksboro_fault_dem.npz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\logo2.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\membrane.dat -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\Minduka_Present_Blue_Pack.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\msft.csv -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\None_vs_nearest-pdf.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\percent_bachelors_degrees_women_usa.csv -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\README.txt -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\s1045.ima.gz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data copying lib\matplotlib\mpl-data\sample_data\topobathy.npz -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data creating build\lib.win32-3.6\matplotlib\mpl-data\sample_data\axes_grid copying lib\matplotlib\mpl-data\sample_data\axes_grid\bivariate_normal.npy -&gt; build\lib.win32-3.6\matplotlib\mpl-data\sample_data\axes_grid copying lib\matplotlib\mpl-data\matplotlibrc -&gt; build\lib.win32-3.6\matplotlib\mpl-data creating build\lib.win32-3.6\matplotlib\mpl-data\fonts creating build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmex10.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmmi10.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmr10.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmsy10.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\cmtt10.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pagd8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pagdo8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pagk8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pagko8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pbkd8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pbkdi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pbkl8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pbkli8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pcrb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pcrbo8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pcrr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pcrro8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvb8an.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvbo8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvbo8an.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvl8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvlo8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvr8an.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvro8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\phvro8an.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pncb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pncbi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pncr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pncri8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pplb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pplbi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pplr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pplri8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\psyr.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\ptmb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\ptmbi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\ptmr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\ptmri8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\putb8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\putbi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\putr8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\putri8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pzcmi8a.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm copying lib\matplotlib\mpl-data\fonts\afm\pzdr.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\afm creating build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-Bold.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-BoldOblique.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier-Oblique.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Courier.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-Bold.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-BoldOblique.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica-Oblique.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Helvetica.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\readme.txt -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Symbol.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Bold.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-BoldItalic.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Italic.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\Times-Roman.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts copying lib\matplotlib\mpl-data\fonts\pdfcorefonts\ZapfDingbats.afm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\pdfcorefonts creating build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmb10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmex10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmmi10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmr10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmss10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmsy10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\cmtt10.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Bold.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-BoldOblique.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans-Oblique.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSans.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansDisplay.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Bold.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-BoldOblique.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono-Oblique.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSansMono.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Bold.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-BoldItalic.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif-Italic.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerif.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\DejaVuSerifDisplay.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\LICENSE_DEJAVU -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\LICENSE_STIX -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneral.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralBolIta.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXGeneralItalic.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUni.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniBolIta.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXNonUniIta.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFiveSymReg.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizFourSymReg.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizOneSymReg.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizThreeSymReg.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymBol.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf copying lib\matplotlib\mpl-data\fonts\ttf\STIXSizTwoSymReg.ttf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\fonts\ttf creating build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\back_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\filesave_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\forward_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\hand_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.ppm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\help_large.ppm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\home_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib.ppm -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\matplotlib_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\move_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\qt4_editor_options_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\subplots_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect.pdf -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect.svg -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect_large.gif -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images copying lib\matplotlib\mpl-data\images\zoom_to_rect_large.png -&gt; build\lib.win32-3.6\matplotlib\mpl-data\images creating build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\bmh.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\classic.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\dark_background.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\fast.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\fivethirtyeight.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\ggplot.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\grayscale.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-bright.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-colorblind.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-dark-palette.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-dark.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-darkgrid.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-deep.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-muted.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-notebook.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-paper.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-pastel.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-poster.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-talk.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-ticks.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-white.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn-whitegrid.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\seaborn.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\Solarize_Light2.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\tableau-colorblind10.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib copying lib\matplotlib\mpl-data\stylelib\_classic_test.mplstyle -&gt; build\lib.win32-3.6\matplotlib\mpl-data\stylelib creating build\lib.win32-3.6\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\all_figures.html -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\ipython_inline_figure.html -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\nbagg_uat.ipynb -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend copying lib\matplotlib\backends\web_backend\single_figure.html -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend creating build\lib.win32-3.6\matplotlib\backends\web_backend\css copying lib\matplotlib\backends\web_backend\css\boilerplate.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\css copying lib\matplotlib\backends\web_backend\css\fbm.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\css copying lib\matplotlib\backends\web_backend\css\page.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\css creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery\js copying lib\matplotlib\backends\web_backend\jquery\js\jquery.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery\js copying lib\matplotlib\backends\web_backend\jquery\js\jquery.min.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery\js creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\AUTHORS.txt -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\index.html -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.min.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.min.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.structure.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.structure.min.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.theme.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\jquery-ui.theme.min.css -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\LICENSE.txt -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\package.json -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1 creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\external creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery\jquery.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\external\jquery creating build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_444444_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_555555_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_777620_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_777777_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_cc0000_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images copying lib\matplotlib\backends\web_backend\jquery-ui-1.12.1\images\ui-icons_ffffff_256x240.png -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\jquery-ui-1.12.1\images creating build\lib.win32-3.6\matplotlib\backends\web_backend\js copying lib\matplotlib\backends\web_backend\js\mpl.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\js copying lib\matplotlib\backends\web_backend\js\mpl_tornado.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\js copying lib\matplotlib\backends\web_backend\js\nbagg_mpl.js -&gt; build\lib.win32-3.6\matplotlib\backends\web_backend\js UPDATING build\lib.win32-3.6\matplotlib\_version.py set build\lib.win32-3.6\matplotlib\_version.py to '3.1.1' running build_ext building 'matplotlib.ft2font' extension creating build\temp.win32-3.6 creating build\temp.win32-3.6\Release creating build\temp.win32-3.6\Release\src C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\cl.exe /c /nologo /Ox /MD /W3 /GS- /DNDEBUG -DFREETYPE_BUILD_TYPE=system -DPY_ARRAY_UNIQUE_SYMBOL=MPL_matplotlib_ft2font_ARRAY_API -DNPY_NO_DEPRECATED_API=NPY_1_7_API_VERSION -D__STDC_FORMAT_MACROS=1 -Iextern/agg24-svn/include -IC:\pypy3.6-v7.1.1-win32\site-packages\numpy\core\include -IC:\pypy3.6-v7.1.1-win32\include /Tcsrc/checkdep_freetype2.c /Fobuild\temp.win32-3.6\Release\src/checkdep_freetype2.obj checkdep_freetype2.c src/checkdep_freetype2.c(1): fatal error C1083: Cannot open include file: 'ft2build.h': No such file or directory error: command 'C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC\\BIN\\cl.exe' failed with exit status 2 ---------------------------------------- ERROR: Failed building wheel for matplotlib Running setup.py clean for matplotlib Failed to build matplotlib ERROR: Failed to build one or more wheels </code></pre></div>
1
<h2 dir="auto">Problem summery</h2> <p dir="auto">I cannot install deno in a docker container. Here is what I've tried:</p> <h3 dir="auto">install script</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ curl -fsSL https://deno.land/x/install/install.sh | sh Deno was installed successfully to /root/.deno/bin/deno $ deno zsh: exec format error: deno"><pre class="notranslate"><code class="notranslate">$ curl -fsSL https://deno.land/x/install/install.sh | sh Deno was installed successfully to /root/.deno/bin/deno $ deno zsh: exec format error: deno </code></pre></div> <h3 dir="auto">cargo install</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ cargo --version cargo 1.58.0 (7f08ace4f 2021-11-24) $ cargo install deno --locked ... error: failed to compile `deno v1.17.3`, intermediate artifacts can be found at `/tmp/cargo-install03hoSN` Caused by: could not compile `deno` Caused by: process didn't exit successfully: `rustc --crate-name deno --edition=2021 /root/.cargo/registry/src/github.com-1ecc6299db9ec823/deno-1.17.3/main.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no -C metadata=1f1c0990b85e63cd -C extra-filename=-1f1c0990b85e63cd --out-dir /tmp/cargo-install03hoSN/release/deps -L dependency=/tmp/cargo-install03hoSN/release/deps --extern atty=/tmp/cargo-install03hoSN/release/deps/libatty-4ca99d75fc4afeac.rlib --extern base64=/tmp/cargo-install03hoSN/release/deps/libbase64-d28f00246089566e.rlib --extern cache_control=/tmp/cargo-install03hoSN/release/deps/libcache_control-5c083f7e46a3a267.rlib --extern chrono=/tmp/cargo-install03hoSN/release/deps/libchrono-d7c1e1b14e054cb5.rlib --extern clap=/tmp/cargo-install03hoSN/release/deps/libclap-ee1e636161eec735.rlib --extern data_url=/tmp/cargo-install03hoSN/release/deps/libdata_url-ffd1e3b6c59321c3.rlib --extern deno_ast=/tmp/cargo-install03hoSN/release/deps/libdeno_ast-e78d45bf92a6010c.rlib --extern deno_core=/tmp/cargo-install03hoSN/release/deps/libdeno_core-d3d6c286afc0159f.rlib --extern deno_doc=/tmp/cargo-install03hoSN/release/deps/libdeno_doc-60198b2d52405ce2.rlib --extern deno_graph=/tmp/cargo-install03hoSN/release/deps/libdeno_graph-4db7a5e99d0f5d9d.rlib --extern deno_lint=/tmp/cargo-install03hoSN/release/deps/libdeno_lint-0acc40d0782ff7b8.rlib --extern deno_runtime=/tmp/cargo-install03hoSN/release/deps/libdeno_runtime-e8b49a87f7f0fa28.rlib --extern dissimilar=/tmp/cargo-install03hoSN/release/deps/libdissimilar-e63dd43ec4866c59.rlib --extern dprint_plugin_json=/tmp/cargo-install03hoSN/release/deps/libdprint_plugin_json-e2d714280fad4f6c.rlib --extern dprint_plugin_markdown=/tmp/cargo-install03hoSN/release/deps/libdprint_plugin_markdown-a1f87a9a7a7ecd89.rlib --extern dprint_plugin_typescript=/tmp/cargo-install03hoSN/release/deps/libdprint_plugin_typescript-a6879a335c708e5f.rlib --extern encoding_rs=/tmp/cargo-install03hoSN/release/deps/libencoding_rs-2417e5640c704bcb.rlib --extern env_logger=/tmp/cargo-install03hoSN/release/deps/libenv_logger-da753f5c37b1b392.rlib --extern fancy_regex=/tmp/cargo-install03hoSN/release/deps/libfancy_regex-14dd253db9d191e3.rlib --extern http=/tmp/cargo-install03hoSN/release/deps/libhttp-261d3f1761718ac6.rlib --extern import_map=/tmp/cargo-install03hoSN/release/deps/libimport_map-4a5386a1e3b6770b.rlib --extern jsonc_parser=/tmp/cargo-install03hoSN/release/deps/libjsonc_parser-41580e29a8b7d38b.rlib --extern libc=/tmp/cargo-install03hoSN/release/deps/liblibc-91d06b1bde96cecd.rlib --extern log=/tmp/cargo-install03hoSN/release/deps/liblog-bafb27118f6409cf.rlib --extern lspower=/tmp/cargo-install03hoSN/release/deps/liblspower-de9f6a790a1ca491.rlib --extern notify=/tmp/cargo-install03hoSN/release/deps/libnotify-af73e75fddd9deb7.rlib --extern num_cpus=/tmp/cargo-install03hoSN/release/deps/libnum_cpus-920ee78dfd09d8ec.rlib --extern once_cell=/tmp/cargo-install03hoSN/release/deps/libonce_cell-b05ef1fb694171f8.rlib --extern percent_encoding=/tmp/cargo-install03hoSN/release/deps/libpercent_encoding-3963a5f7b0bc64ba.rlib --extern pin_project=/tmp/cargo-install03hoSN/release/deps/libpin_project-328f24a44d4d3da3.rlib --extern rand=/tmp/cargo-install03hoSN/release/deps/librand-b4c52f196298cd52.rlib --extern regex=/tmp/cargo-install03hoSN/release/deps/libregex-3fd935d06ccdb69b.rlib --extern ring=/tmp/cargo-install03hoSN/release/deps/libring-39b3a0e1b24dc8c4.rlib --extern rustyline=/tmp/cargo-install03hoSN/release/deps/librustyline-4f64ab9daf82002e.rlib --extern rustyline_derive=/tmp/cargo-install03hoSN/release/deps/librustyline_derive-da5d770779d15e90.so --extern semver_parser=/tmp/cargo-install03hoSN/release/deps/libsemver_parser-4bf4dd4b8f720e1c.rlib --extern serde=/tmp/cargo-install03hoSN/release/deps/libserde-a4afd6832cbb73de.rlib --extern shell_escape=/tmp/cargo-install03hoSN/release/deps/libshell_escape-a7268498298d47d9.rlib --extern sourcemap=/tmp/cargo-install03hoSN/release/deps/libsourcemap-3620a1cfdeeb5de2.rlib --extern tempfile=/tmp/cargo-install03hoSN/release/deps/libtempfile-e17a77263d6f4a0a.rlib --extern text_size=/tmp/cargo-install03hoSN/release/deps/libtext_size-82d43970e9c9065a.rlib --extern text_lines=/tmp/cargo-install03hoSN/release/deps/libtext_lines-363e440556091276.rlib --extern tokio=/tmp/cargo-install03hoSN/release/deps/libtokio-3e0a45ac81bdfe4f.rlib --extern typed_arena=/tmp/cargo-install03hoSN/release/deps/libtyped_arena-7facb343436693cd.rlib --extern uuid=/tmp/cargo-install03hoSN/release/deps/libuuid-eed30c67f4c9eb8d.rlib --extern walkdir=/tmp/cargo-install03hoSN/release/deps/libwalkdir-f62f207390a87e39.rlib --cap-lints allow -L /tmp/cargo-install03hoSN/release/gn_out/obj -L native=/tmp/cargo-install03hoSN/release/build/ring-fb737f9aa437b798/out -L /tmp/cargo-install03hoSN/release/build/libffi-sys-71ef03a069068459/out/libffi-root/lib -L /tmp/cargo-install03hoSN/release/build/libffi-sys-71ef03a069068459/out/libffi-root/lib64 -L native=/tmp/cargo-install03hoSN/release/build/libsqlite3-sys-60762d2c6263e170/out -L native=/tmp/cargo-install03hoSN/release/build/sys-info-5764e84cf674759b/out` (signal: 9, SIGKILL: kill)"><pre class="notranslate"><code class="notranslate">$ cargo --version cargo 1.58.0 (7f08ace4f 2021-11-24) $ cargo install deno --locked ... error: failed to compile `deno v1.17.3`, intermediate artifacts can be found at `/tmp/cargo-install03hoSN` Caused by: could not compile `deno` Caused by: process didn't exit successfully: `rustc --crate-name deno --edition=2021 /root/.cargo/registry/src/github.com-1ecc6299db9ec823/deno-1.17.3/main.rs --error-format=json --json=diagnostic-rendered-ansi --crate-type bin --emit=dep-info,link -C opt-level=3 -C embed-bitcode=no -C metadata=1f1c0990b85e63cd -C extra-filename=-1f1c0990b85e63cd --out-dir /tmp/cargo-install03hoSN/release/deps -L dependency=/tmp/cargo-install03hoSN/release/deps --extern atty=/tmp/cargo-install03hoSN/release/deps/libatty-4ca99d75fc4afeac.rlib --extern base64=/tmp/cargo-install03hoSN/release/deps/libbase64-d28f00246089566e.rlib --extern cache_control=/tmp/cargo-install03hoSN/release/deps/libcache_control-5c083f7e46a3a267.rlib --extern chrono=/tmp/cargo-install03hoSN/release/deps/libchrono-d7c1e1b14e054cb5.rlib --extern clap=/tmp/cargo-install03hoSN/release/deps/libclap-ee1e636161eec735.rlib --extern data_url=/tmp/cargo-install03hoSN/release/deps/libdata_url-ffd1e3b6c59321c3.rlib --extern deno_ast=/tmp/cargo-install03hoSN/release/deps/libdeno_ast-e78d45bf92a6010c.rlib --extern deno_core=/tmp/cargo-install03hoSN/release/deps/libdeno_core-d3d6c286afc0159f.rlib --extern deno_doc=/tmp/cargo-install03hoSN/release/deps/libdeno_doc-60198b2d52405ce2.rlib --extern deno_graph=/tmp/cargo-install03hoSN/release/deps/libdeno_graph-4db7a5e99d0f5d9d.rlib --extern deno_lint=/tmp/cargo-install03hoSN/release/deps/libdeno_lint-0acc40d0782ff7b8.rlib --extern deno_runtime=/tmp/cargo-install03hoSN/release/deps/libdeno_runtime-e8b49a87f7f0fa28.rlib --extern dissimilar=/tmp/cargo-install03hoSN/release/deps/libdissimilar-e63dd43ec4866c59.rlib --extern dprint_plugin_json=/tmp/cargo-install03hoSN/release/deps/libdprint_plugin_json-e2d714280fad4f6c.rlib --extern dprint_plugin_markdown=/tmp/cargo-install03hoSN/release/deps/libdprint_plugin_markdown-a1f87a9a7a7ecd89.rlib --extern dprint_plugin_typescript=/tmp/cargo-install03hoSN/release/deps/libdprint_plugin_typescript-a6879a335c708e5f.rlib --extern encoding_rs=/tmp/cargo-install03hoSN/release/deps/libencoding_rs-2417e5640c704bcb.rlib --extern env_logger=/tmp/cargo-install03hoSN/release/deps/libenv_logger-da753f5c37b1b392.rlib --extern fancy_regex=/tmp/cargo-install03hoSN/release/deps/libfancy_regex-14dd253db9d191e3.rlib --extern http=/tmp/cargo-install03hoSN/release/deps/libhttp-261d3f1761718ac6.rlib --extern import_map=/tmp/cargo-install03hoSN/release/deps/libimport_map-4a5386a1e3b6770b.rlib --extern jsonc_parser=/tmp/cargo-install03hoSN/release/deps/libjsonc_parser-41580e29a8b7d38b.rlib --extern libc=/tmp/cargo-install03hoSN/release/deps/liblibc-91d06b1bde96cecd.rlib --extern log=/tmp/cargo-install03hoSN/release/deps/liblog-bafb27118f6409cf.rlib --extern lspower=/tmp/cargo-install03hoSN/release/deps/liblspower-de9f6a790a1ca491.rlib --extern notify=/tmp/cargo-install03hoSN/release/deps/libnotify-af73e75fddd9deb7.rlib --extern num_cpus=/tmp/cargo-install03hoSN/release/deps/libnum_cpus-920ee78dfd09d8ec.rlib --extern once_cell=/tmp/cargo-install03hoSN/release/deps/libonce_cell-b05ef1fb694171f8.rlib --extern percent_encoding=/tmp/cargo-install03hoSN/release/deps/libpercent_encoding-3963a5f7b0bc64ba.rlib --extern pin_project=/tmp/cargo-install03hoSN/release/deps/libpin_project-328f24a44d4d3da3.rlib --extern rand=/tmp/cargo-install03hoSN/release/deps/librand-b4c52f196298cd52.rlib --extern regex=/tmp/cargo-install03hoSN/release/deps/libregex-3fd935d06ccdb69b.rlib --extern ring=/tmp/cargo-install03hoSN/release/deps/libring-39b3a0e1b24dc8c4.rlib --extern rustyline=/tmp/cargo-install03hoSN/release/deps/librustyline-4f64ab9daf82002e.rlib --extern rustyline_derive=/tmp/cargo-install03hoSN/release/deps/librustyline_derive-da5d770779d15e90.so --extern semver_parser=/tmp/cargo-install03hoSN/release/deps/libsemver_parser-4bf4dd4b8f720e1c.rlib --extern serde=/tmp/cargo-install03hoSN/release/deps/libserde-a4afd6832cbb73de.rlib --extern shell_escape=/tmp/cargo-install03hoSN/release/deps/libshell_escape-a7268498298d47d9.rlib --extern sourcemap=/tmp/cargo-install03hoSN/release/deps/libsourcemap-3620a1cfdeeb5de2.rlib --extern tempfile=/tmp/cargo-install03hoSN/release/deps/libtempfile-e17a77263d6f4a0a.rlib --extern text_size=/tmp/cargo-install03hoSN/release/deps/libtext_size-82d43970e9c9065a.rlib --extern text_lines=/tmp/cargo-install03hoSN/release/deps/libtext_lines-363e440556091276.rlib --extern tokio=/tmp/cargo-install03hoSN/release/deps/libtokio-3e0a45ac81bdfe4f.rlib --extern typed_arena=/tmp/cargo-install03hoSN/release/deps/libtyped_arena-7facb343436693cd.rlib --extern uuid=/tmp/cargo-install03hoSN/release/deps/libuuid-eed30c67f4c9eb8d.rlib --extern walkdir=/tmp/cargo-install03hoSN/release/deps/libwalkdir-f62f207390a87e39.rlib --cap-lints allow -L /tmp/cargo-install03hoSN/release/gn_out/obj -L native=/tmp/cargo-install03hoSN/release/build/ring-fb737f9aa437b798/out -L /tmp/cargo-install03hoSN/release/build/libffi-sys-71ef03a069068459/out/libffi-root/lib -L /tmp/cargo-install03hoSN/release/build/libffi-sys-71ef03a069068459/out/libffi-root/lib64 -L native=/tmp/cargo-install03hoSN/release/build/libsqlite3-sys-60762d2c6263e170/out -L native=/tmp/cargo-install03hoSN/release/build/sys-info-5764e84cf674759b/out` (signal: 9, SIGKILL: kill) </code></pre></div> <h3 dir="auto">(copy the binary installed in host)</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ deno zsh: exec format error: deno"><pre class="notranslate"><code class="notranslate">$ deno zsh: exec format error: deno </code></pre></div> <h2 dir="auto">Environment</h2> <h3 dir="auto">Host</h3> <ul dir="auto"> <li>macOS 12.1</li> <li>Apple M1 Chip</li> <li>docker 20.10</li> </ul> <h3 dir="auto">Container</h3> <ul dir="auto"> <li>Ubuntu 20.04</li> <li>aarch64</li> </ul>
<p dir="auto">Builds for arm64 are now in CI, but are not ready for release. We still need to make some changes to make the tests work with this build.<br> <strike>I managed to get deno to build for arm64 using the <code class="notranslate">aarch64-unknown-linux-gnu</code> target. Currently It doesn't execute successfully on a raspberry pi 3b+ running <a href="https://wiki.debian.org/RaspberryPi3" rel="nofollow">a preview image of debian buster arm64/aarch64</a>. It gives me the following print out:</strike></p><strike> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="root@rpi3:~/deno-build# ./deno https://deno.land/welcome.ts # # Fatal error in , line 0 # unreachable code # # # #FailureMessage Object: 0xfffff58d4d10 ==== C stack trace =============================== ./deno(+0x8ad5fc) [0xaaaaafc445fc] ./deno(+0x9dd72c) [0xaaaaafd7472c] ./deno(+0x8a9f10) [0xaaaaafc40f10] ./deno(+0x83aa08) [0xaaaaafbd1a08] ./deno(+0x69c070) [0xaaaaafa33070] ./deno(+0x7bdbb4) [0xaaaaafb54bb4] ./deno(+0x7bdb00) [0xaaaaafb54b00] ./deno(+0x7bc6bc) [0xaaaaafb536bc] ./deno(+0x7bd9f8) [0xaaaaafb549f8] ./deno(+0x7bbbb8) [0xaaaaafb52bb8] ./deno(+0x2165dc) [0xaaaaaf5ad5dc] ./deno(+0x7c0be4) [0xaaaaafb57be4] ./deno(+0x663f68) [0xaaaaaf9faf68] ./deno(+0x7c0124) [0xaaaaafb57124] ./deno(+0x1c8e80) [0xaaaaaf55fe80] ./deno(+0x1c8f68) [0xaaaaaf55ff68] ./deno(+0x1b3dec) [0xaaaaaf54adec] ./deno(+0xce2f0) [0xaaaaaf4652f0] ./deno(+0x112b78) [0xaaaaaf4a9b78] ./deno(+0x11ef74) [0xaaaaaf4b5f74] ./deno(+0xb80c38) [0xaaaaaff17c38] ./deno(+0xb8fcf4) [0xaaaaaff26cf4] ./deno(+0xb814ec) [0xaaaaaff184ec] ./deno(+0x112d50) [0xaaaaaf4a9d50] /lib/aarch64-linux-gnu/libc.so.6(__libc_start_main+0xe4) [0xffff8644ed24] ./deno(+0xbae4c) [0xaaaaaf451e4c] "><pre class="notranslate"><code class="notranslate">root@rpi3:~/deno-build# ./deno https://deno.land/welcome.ts # # Fatal error in , line 0 # unreachable code # # # #FailureMessage Object: 0xfffff58d4d10 ==== C stack trace =============================== ./deno(+0x8ad5fc) [0xaaaaafc445fc] ./deno(+0x9dd72c) [0xaaaaafd7472c] ./deno(+0x8a9f10) [0xaaaaafc40f10] ./deno(+0x83aa08) [0xaaaaafbd1a08] ./deno(+0x69c070) [0xaaaaafa33070] ./deno(+0x7bdbb4) [0xaaaaafb54bb4] ./deno(+0x7bdb00) [0xaaaaafb54b00] ./deno(+0x7bc6bc) [0xaaaaafb536bc] ./deno(+0x7bd9f8) [0xaaaaafb549f8] ./deno(+0x7bbbb8) [0xaaaaafb52bb8] ./deno(+0x2165dc) [0xaaaaaf5ad5dc] ./deno(+0x7c0be4) [0xaaaaafb57be4] ./deno(+0x663f68) [0xaaaaaf9faf68] ./deno(+0x7c0124) [0xaaaaafb57124] ./deno(+0x1c8e80) [0xaaaaaf55fe80] ./deno(+0x1c8f68) [0xaaaaaf55ff68] ./deno(+0x1b3dec) [0xaaaaaf54adec] ./deno(+0xce2f0) [0xaaaaaf4652f0] ./deno(+0x112b78) [0xaaaaaf4a9b78] ./deno(+0x11ef74) [0xaaaaaf4b5f74] ./deno(+0xb80c38) [0xaaaaaff17c38] ./deno(+0xb8fcf4) [0xaaaaaff26cf4] ./deno(+0xb814ec) [0xaaaaaff184ec] ./deno(+0x112d50) [0xaaaaaf4a9d50] /lib/aarch64-linux-gnu/libc.so.6(__libc_start_main+0xe4) [0xffff8644ed24] ./deno(+0xbae4c) [0xaaaaaf451e4c] </code></pre></div> </strike><p dir="auto"><strike>I opened up the executable with a <a href="https://github.com/radareorg/cutter">arm compatible disassembler</a>, and located the last call from within deno before failure, <code class="notranslate">0x1b3dec</code>. It looks like this call occurs here </strike></p><div class="Box Box--condensed my-2"><strike> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/denoland/deno/blob/b8a537d020f5e4495572daa4d8a59f51fa3b20d1/libdeno/api.cc#L54">deno/libdeno/api.cc</a> </p> <p class="mb-0 color-fg-muted"> Line 54 in <a data-pjax="true" class="commit-tease-sha" href="/denoland/deno/commit/b8a537d020f5e4495572daa4d8a59f51fa3b20d1">b8a537d</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L54" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="54"></td> <td id="LC54" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> v8::Isolate* isolate = <span class="pl-c1">v8::Isolate::New</span>(params); </td> </tr> </tbody></table> </div> </strike></div><strike> This leads me to suspect an issue with loading the snapshot.</strike><p></p> <strike> I managed to get this working successfully with the changes in [my forked branch](https://github.com/afinch7/deno/tree/arm-builds). <p dir="auto">To replicate my arm64 build you will need docker installed.<br> Then it should be as simple as:</p> <ol dir="auto"> <li>Add the following options to .gn</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="target_cpu = &quot;arm64&quot; v8_target_cpu = &quot;arm64&quot;"><pre class="notranslate"><code class="notranslate">target_cpu = "arm64" v8_target_cpu = "arm64" </code></pre></div> <ol start="2" dir="auto"> <li>Add the following to <code class="notranslate">Dockerfile</code> in your deno repo root</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FROM ubuntu:bionic RUN apt update &amp;&amp; apt install -y curl RUN curl https://sh.rustup.rs -sSf | sh -s -- -y RUN /root/.cargo/bin/rustup target add aarch64-unknown-linux-gnu RUN echo &quot;[target.aarch64-unknown-linux-gnu]\nlinker = \&quot;aarch64-linux-gnu-gcc\&quot;&quot; &gt; /root/.cargo/config RUN apt install -y nodejs yarn python build-essential cmake make RUN apt -yq --no-install-suggests --no-install-recommends install g++-aarch64-linux-gnu gcc-aarch64-linux-gnu g++-7-multilib libc6-arm64-cross WORKDIR /deno RUN echo &quot;source $HOME/.cargo/env&quot; &gt; /root/.bash CMD [&quot;/bin/bash&quot;, &quot;--init-file&quot;, &quot;/root/.bash&quot;]"><pre class="notranslate"><code class="notranslate">FROM ubuntu:bionic RUN apt update &amp;&amp; apt install -y curl RUN curl https://sh.rustup.rs -sSf | sh -s -- -y RUN /root/.cargo/bin/rustup target add aarch64-unknown-linux-gnu RUN echo "[target.aarch64-unknown-linux-gnu]\nlinker = \"aarch64-linux-gnu-gcc\"" &gt; /root/.cargo/config RUN apt install -y nodejs yarn python build-essential cmake make RUN apt -yq --no-install-suggests --no-install-recommends install g++-aarch64-linux-gnu gcc-aarch64-linux-gnu g++-7-multilib libc6-arm64-cross WORKDIR /deno RUN echo "source $HOME/.cargo/env" &gt; /root/.bash CMD ["/bin/bash", "--init-file", "/root/.bash"] </code></pre></div> <ol start="3" dir="auto"> <li>Run <code class="notranslate">docker build -f Dockerfile -t deno-arm64-build . &amp;&amp; docker run -it -v "$PWD/:/deno" -u $(id -u root):$(id -g ${USER}) deno-arm64-build</code> in your deno repo root. This should build a docker image with the required tools and drop you into a bash shell on said image with your deno repo mounted at <code class="notranslate">/deno</code>.</li> <li>From this point you simply need to run <code class="notranslate">cargo build --target=aarch64-unknown-linux-gnu --release</code></li> <li>Once the build completes the executable should be located at <code class="notranslate">target/aarch64-unknown-linux-gnu/release/deno</code></li> </ol> </strike><p dir="auto"><strike>I wasn't able to get a build working with <code class="notranslate">tools/build.py</code>, since I couldn't find a way to specify a target for rust <del>it might be possible to use env vars like CC, AR, CFLAGS, etc. I might try that at some point, but I'm putting my efforts into figuring out if the snapshots are even being included in the build correctly right now.</del></strike><strike><br> I not sure what changed, but I can't get the build to work anymore with docker. I can still get this to work outside of docker though. I'm working on getting this into CI see <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="417467957" data-permission-text="Title is private" data-url="https://github.com/denoland/deno/issues/1887" data-hovercard-type="pull_request" data-hovercard-url="/denoland/deno/pull/1887/hovercard" href="https://github.com/denoland/deno/pull/1887">#1887</a>. The main problem with getting this into CI is how long it takes to build.</strike></p> <p dir="auto">Edit: fixed some issues with the <code class="notranslate">Dockerfile</code><br> Edit: added the current user group to the docker run command so this doesn't break your repo as much<br> Edit: my forked branch has modifications to make this work now</p>
1
<ul dir="auto"> <li>Electron version: 1.4.7</li> <li>Operating system: Windows 10 (x64)</li> </ul> <h3 dir="auto">Expected behavior</h3> <p dir="auto">I am typing <code class="notranslate">npm -g install electron</code>. Electron should install as a globally accessible package.</p> <h3 dir="auto">Actual behavior</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="C:\WINDOWS\system32&gt;npm -g install electron C:\Users\nakobe\AppData\Roaming\npm\electron -&gt; C:\Users\nakobe\AppData\Roaming\npm\node_modules\electron\cli.js &gt; electron@1.4.7 postinstall C:\Users\nakobe\AppData\Roaming\npm\node_modules\electron &gt; node install.js events.js:160 throw er; // Unhandled 'error' event ^ Error: write EINVAL at exports._errnoException (util.js:1022:11) at WriteStream.Socket._writeGeneric (net.js:715:26) at WriteStream.Socket._write (net.js:734:8) at doWrite (_stream_writable.js:334:12) at writeOrBuffer (_stream_writable.js:320:5) at WriteStream.Writable.write (_stream_writable.js:247:11) at WriteStream.Socket.write (net.js:661:40) at WriteStream.stream.write (C:\Users\nakobe\AppData\Roaming\npm\node_modules\electron\node_modules\single-line-log\index.js:12:16) at process.&lt;anonymous&gt; (C:\Users\nakobe\AppData\Roaming\npm\node_modules\electron\node_modules\single-line-log\index.js:17:29) at emitOne (events.js:101:20) npm ERR! Windows_NT 10.0.14393 npm ERR! argv &quot;C:\\Program Files\\nodejs\\node.exe&quot; &quot;C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js&quot; &quot;-g&quot; &quot;install&quot; &quot;electron&quot; npm ERR! node v7.1.0 npm ERR! npm v3.10.9 npm ERR! code ELIFECYCLE npm ERR! electron@1.4.7 postinstall: `node install.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the electron@1.4.7 postinstall script 'node install.js'. npm ERR! Make sure you have the latest version of node.js and npm installed. npm ERR! If you do, this is most likely a problem with the electron package, npm ERR! not with npm itself. npm ERR! Tell the author that this fails on your system: npm ERR! node install.js npm ERR! You can get information on how to open an issue for this project with: npm ERR! npm bugs electron npm ERR! Or if that isn't available, you can get their info via: npm ERR! npm owner ls electron npm ERR! There is likely additional logging output above. npm ERR! Please include the following file with any support request: npm ERR! C:\WINDOWS\system32\npm-debug.log"><pre class="notranslate"><code class="notranslate">C:\WINDOWS\system32&gt;npm -g install electron C:\Users\nakobe\AppData\Roaming\npm\electron -&gt; C:\Users\nakobe\AppData\Roaming\npm\node_modules\electron\cli.js &gt; electron@1.4.7 postinstall C:\Users\nakobe\AppData\Roaming\npm\node_modules\electron &gt; node install.js events.js:160 throw er; // Unhandled 'error' event ^ Error: write EINVAL at exports._errnoException (util.js:1022:11) at WriteStream.Socket._writeGeneric (net.js:715:26) at WriteStream.Socket._write (net.js:734:8) at doWrite (_stream_writable.js:334:12) at writeOrBuffer (_stream_writable.js:320:5) at WriteStream.Writable.write (_stream_writable.js:247:11) at WriteStream.Socket.write (net.js:661:40) at WriteStream.stream.write (C:\Users\nakobe\AppData\Roaming\npm\node_modules\electron\node_modules\single-line-log\index.js:12:16) at process.&lt;anonymous&gt; (C:\Users\nakobe\AppData\Roaming\npm\node_modules\electron\node_modules\single-line-log\index.js:17:29) at emitOne (events.js:101:20) npm ERR! Windows_NT 10.0.14393 npm ERR! argv "C:\\Program Files\\nodejs\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-cli.js" "-g" "install" "electron" npm ERR! node v7.1.0 npm ERR! npm v3.10.9 npm ERR! code ELIFECYCLE npm ERR! electron@1.4.7 postinstall: `node install.js` npm ERR! Exit status 1 npm ERR! npm ERR! Failed at the electron@1.4.7 postinstall script 'node install.js'. npm ERR! Make sure you have the latest version of node.js and npm installed. npm ERR! If you do, this is most likely a problem with the electron package, npm ERR! not with npm itself. npm ERR! Tell the author that this fails on your system: npm ERR! node install.js npm ERR! You can get information on how to open an issue for this project with: npm ERR! npm bugs electron npm ERR! Or if that isn't available, you can get their info via: npm ERR! npm owner ls electron npm ERR! There is likely additional logging output above. npm ERR! Please include the following file with any support request: npm ERR! C:\WINDOWS\system32\npm-debug.log </code></pre></div> <h3 dir="auto">How to reproduce</h3> <p dir="auto"><code class="notranslate">npm install -g electron</code></p> <h3 dir="auto">Things I've tried</h3> <p dir="auto">I've tried deleting my <code class="notranslate">~\.electron</code> directory and other node-related files in my home directory. Nothing worked.</p>
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/451903/20158526/aa257bf8-a6d2-11e6-8f9d-b32d18c2f49e.PNG"><img src="https://cloud.githubusercontent.com/assets/451903/20158526/aa257bf8-a6d2-11e6-8f9d-b32d18c2f49e.PNG" alt="electron-inst" style="max-width: 100%;"></a></p> <ul dir="auto"> <li>Electron version: 1.4.6</li> <li>Operating system: Windows 10 v1607, node 7.1.0</li> </ul> <h3 dir="auto">Expected behavior</h3> <h3 dir="auto">Actual behavior</h3> <p dir="auto"><code class="notranslate">npm install electron</code> (global <code class="notranslate">-g</code> install or local) fail. Other npm packages install successfully</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&gt; node install.js events.js:160 throw er; // Unhandled 'error' event ^ Error: write EINVAL at exports._errnoException (util.js:1022:11) at WriteStream.Socket._writeGeneric (net.js:715:26) at WriteStream.Socket._write (net.js:734:8) at doWrite (_stream_writable.js:334:12) at writeOrBuffer (_stream_writable.js:320:5) at WriteStream.Writable.write (_stream_writable.js:247:11) at WriteStream.Socket.write (net.js:661:40) at WriteStream.stream.write (C:\Users\Peter\Desktop\Workspace\node_modules\single-line-log\index.js:12:16) at process.&lt;anonymous&gt; (C:\Users\Peter\Desktop\Workspace\node_modules\single-line-log\index.js:17:29) at emitOne (events.js:101:20)"><pre class="notranslate"><code class="notranslate">&gt; node install.js events.js:160 throw er; // Unhandled 'error' event ^ Error: write EINVAL at exports._errnoException (util.js:1022:11) at WriteStream.Socket._writeGeneric (net.js:715:26) at WriteStream.Socket._write (net.js:734:8) at doWrite (_stream_writable.js:334:12) at writeOrBuffer (_stream_writable.js:320:5) at WriteStream.Writable.write (_stream_writable.js:247:11) at WriteStream.Socket.write (net.js:661:40) at WriteStream.stream.write (C:\Users\Peter\Desktop\Workspace\node_modules\single-line-log\index.js:12:16) at process.&lt;anonymous&gt; (C:\Users\Peter\Desktop\Workspace\node_modules\single-line-log\index.js:17:29) at emitOne (events.js:101:20) </code></pre></div> <h3 dir="auto">How to reproduce</h3> <p dir="auto"><code class="notranslate">npm install electron</code></p>
1
<p dir="auto">Here's the model. Mixamo only provides binary FBX unfortunately.</p> <p dir="auto"><a href="https://github.com/mrdoob/three.js/files/1256550/stand_1.zip">stand_1.zip</a></p> <p dir="auto">It does load, however some of the textures fail and the whole data url gets logged to the console, which crashes the console in Chrome. Here's a truncated version of the error (it repeats for 3 seperate textures).</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="data:;base64,S2F5ZGFyYSBGQlggQmluYXJ5ICAAGgDoHAAAMAkAAAAAAAAAAAAAEkZCWEh... ../../../../home/app/mixamo-mini/tmp/skins_fccbf8f8-f65d-4324-915e-699da0390df8.fbm/WAFP_clothes_SP.jpg Image (async) load @ loader.js:30336 load @ loader.js:30449 parseTexture @ loader.js:46312 parseTextures @ loader.js:46251"><pre class="notranslate"><code class="notranslate">data:;base64,S2F5ZGFyYSBGQlggQmluYXJ5ICAAGgDoHAAAMAkAAAAAAAAAAAAAEkZCWEh... ../../../../home/app/mixamo-mini/tmp/skins_fccbf8f8-f65d-4324-915e-699da0390df8.fbm/WAFP_clothes_SP.jpg Image (async) load @ loader.js:30336 load @ loader.js:30449 parseTexture @ loader.js:46312 parseTextures @ loader.js:46251 </code></pre></div> <p dir="auto">If I log the filename in the parseTexture function like so</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="/** * @type {THREE.Texture} */ const texture = loader.load( fileName ); console.log( fileName );"><pre class="notranslate"><span class="pl-c">/**</span> <span class="pl-c">* <span class="pl-k">@type</span> {THREE.Texture}</span> <span class="pl-c">*/</span> <span class="pl-k">const</span> <span class="pl-s1">texture</span> <span class="pl-c1">=</span> <span class="pl-s1">loader</span><span class="pl-kos">.</span><span class="pl-en">load</span><span class="pl-kos">(</span> <span class="pl-s1">fileName</span> <span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span> <span class="pl-s1">fileName</span> <span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Then I can see which files are working and which fail:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="blob:http://localhost:8008/6558a86f-4023-4b55-a122-7ab0007810f2 loader.js:46344 blob:http://localhost:8008/5dc334b8-10c4-424f-a500-b43fc051c8f0 2loader.js:46344 ../../../../home/app/mixamo-mini/tmp/skins_be3e30ed-c513-4790-a63c-4503ed6a5f49.fbm/WAFP_helmet_SP.jpg loader.js:46344 blob:http://localhost:8008/7b0cc7f8-ce46-4a4f-aee1-254b936023a3 loader.js:46344 blob:http://localhost:8008/d586390c-5188-4fd8-bd06-b517bab17e44 2loader.js:46344 ../../../../home/app/mixamo-mini/tmp/skins_be3e30ed-c513-4790-a63c-4503ed6a5f49.fbm/WAFP_skin_SP.jpg loader.js:46344 blob:http://localhost:8008/8822cd1e-d80f-421f-b3d9-399e463a3dab loader.js:46344 blob:http://localhost:8008/6823d6e5-f804-4238-8628-89cdf25bcef8 loader.js:46344 blob:http://localhost:8008/a0e65b19-6bf0-452e-a77d-cf179473d7a6 2loader.js:46344 ../../../../home/app/mixamo-mini/tmp/skins_be3e30ed-c513-4790-a63c-4503ed6a5f49.fbm/WAFP_clothes_SP.jpg loader.js:46344 blob:http://localhost:8008/d640f468-3800-4bf3-82ce-6226806f2903"><pre class="notranslate"><code class="notranslate">blob:http://localhost:8008/6558a86f-4023-4b55-a122-7ab0007810f2 loader.js:46344 blob:http://localhost:8008/5dc334b8-10c4-424f-a500-b43fc051c8f0 2loader.js:46344 ../../../../home/app/mixamo-mini/tmp/skins_be3e30ed-c513-4790-a63c-4503ed6a5f49.fbm/WAFP_helmet_SP.jpg loader.js:46344 blob:http://localhost:8008/7b0cc7f8-ce46-4a4f-aee1-254b936023a3 loader.js:46344 blob:http://localhost:8008/d586390c-5188-4fd8-bd06-b517bab17e44 2loader.js:46344 ../../../../home/app/mixamo-mini/tmp/skins_be3e30ed-c513-4790-a63c-4503ed6a5f49.fbm/WAFP_skin_SP.jpg loader.js:46344 blob:http://localhost:8008/8822cd1e-d80f-421f-b3d9-399e463a3dab loader.js:46344 blob:http://localhost:8008/6823d6e5-f804-4238-8628-89cdf25bcef8 loader.js:46344 blob:http://localhost:8008/a0e65b19-6bf0-452e-a77d-cf179473d7a6 2loader.js:46344 ../../../../home/app/mixamo-mini/tmp/skins_be3e30ed-c513-4790-a63c-4503ed6a5f49.fbm/WAFP_clothes_SP.jpg loader.js:46344 blob:http://localhost:8008/d640f468-3800-4bf3-82ce-6226806f2903 </code></pre></div> <p dir="auto">So most of the texture are correctly loading as blobs, however some get the<br> '../../../../home/app/mixamo-mini/tmp/skins_be3e30ed-c513-4790-a63c-4503ed6a5f49.fbm/` url appended for some reason.</p> <p dir="auto">I get similar errors when attempting to load the Dentist's office model from issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="251004647" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/11973" data-hovercard-type="issue" data-hovercard-url="/mrdoob/three.js/issues/11973/hovercard" href="https://github.com/mrdoob/three.js/issues/11973">#11973</a><br> (and I still get the same errors even after applying the fix from <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="251837686" data-permission-text="Title is private" data-url="https://github.com/mrdoob/three.js/issues/12004" data-hovercard-type="pull_request" data-hovercard-url="/mrdoob/three.js/pull/12004/hovercard" href="https://github.com/mrdoob/three.js/pull/12004">#12004</a> ).</p>
<p dir="auto">Sometimes? Most of the times? In fact, it could be done even in case with face normals - if the model has enough neighbour faces with the same normal, it could even make sense :) File it under suggestions.</p>
0
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: Microsoft Windows [Version 10.0.17763.437] PowerToys version: Version v0.18.1 PowerToy module for which you are reporting the bug (if applicable): PowerLaunch (initial startup of PowerToys after Windows signon"><pre class="notranslate"><code class="notranslate">Windows build number: Microsoft Windows [Version 10.0.17763.437] PowerToys version: Version v0.18.1 PowerToy module for which you are reporting the bug (if applicable): PowerLaunch (initial startup of PowerToys after Windows signon </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">Launch PowerToys</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">clean launch, no error messages</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">error message shown in attached screenshot<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/65789207/83335255-60a1d480-a260-11ea-82a5-8960b5ea88ea.JPG"><img src="https://user-images.githubusercontent.com/65789207/83335255-60a1d480-a260-11ea-82a5-8960b5ea88ea.JPG" alt="PowerToys_18 1_error" style="max-width: 100%;"></a></p> <h1 dir="auto">Screenshots</h1>
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: [run &quot;ver&quot; at a command prompt] Microsoft Windows [Version 10.0.17763.1039] PowerToys version: 0.18.1 PowerToy module for which you are reporting the bug (if applicable):"><pre class="notranslate"><code class="notranslate">Windows build number: [run "ver" at a command prompt] Microsoft Windows [Version 10.0.17763.1039] PowerToys version: 0.18.1 PowerToy module for which you are reporting the bug (if applicable): </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">Launching the app triggers the following error:</p> <p dir="auto">The exception unknown software exception (0xe0434352) occurred in the application at location 0x00007FFEB81D9159</p> <p dir="auto">The error happens during application launches via the PowerLaunch shortcut in the Windows menu. The error occurs after an update to Version v0.18.1.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">Expect the app to startup normally.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">Application is triggering an error message. Clicking through the application still opens though cannot be sure if the app is performing normally on all fronts.</p> <h1 dir="auto">Screenshots</h1> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/14200375/82889858-49eb3d00-9f43-11ea-8fba-8ba63475966e.png"><img src="https://user-images.githubusercontent.com/14200375/82889858-49eb3d00-9f43-11ea-8fba-8ba63475966e.png" alt="image" style="max-width: 100%;"></a></p>
1
<p dir="auto">I'm using babel to transpile ES6 code, my target browsers support generators, so I blacklist regenerator to improve performance, but webpack doesn't parse it at all it seems. Generators could just be parsed and treated as functions.</p> <p dir="auto">I'm switching from browserify, which happens to parse generators correctly.</p>
<p dir="auto">Currently webpack seems to fail parsing JavaScript code that contains ES6 syntax like generators.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Module parse failed: ..../main.js Line 20: Unexpected token * You may need an appropriate loader to handle this file type. | } | | function * ex_test() { | throw new Error(&quot;work!&quot;); | }"><pre class="notranslate"><code class="notranslate">Module parse failed: ..../main.js Line 20: Unexpected token * You may need an appropriate loader to handle this file type. | } | | function * ex_test() { | throw new Error("work!"); | } </code></pre></div> <p dir="auto">Could you please adjust the static code analysis so that it doesn't break with code that uses generators?</p> <p dir="auto">I'm trying to use generators <strong>natively</strong> in browsers that support them, so don't want to use a transpiler in this case..</p>
1
<h2 dir="auto">The Problem</h2> <p dir="auto">Currently, a newly rendered <code class="notranslate">dialog</code> element can erroneously retain the "open state" a previously rendered <code class="notranslate">dialog</code> element if React <em>thinks</em> that the same element is being re-rendered. Interestingly enough, this problem doesn't seem to happen for the element's other attributes/properties.</p> <p dir="auto">React version: <code class="notranslate">18.2.0</code></p> <h2 dir="auto">Steps To Reproduce</h2> <p dir="auto">The situation is best understood with a <a href="https://codesandbox.io/s/react-typescript-forked-nruu1q?file=/src/ModalComponent.tsx" rel="nofollow">CodeSandbox</a>. Notice that after the state change (which happens on submission of the <code class="notranslate">dialog</code>'s form), the <code class="notranslate">open</code> attribute is stale, but the <code class="notranslate">data-phase</code> attribute is fresh.</p> <p dir="auto">This is potentially a problem with the reconciler ... because if you change the "phase two version" to have a wrapping <code class="notranslate">div</code>, this problem goes away. (This is not always a viable solution, however. And it's a bit hacky.)</p> <h2 dir="auto">The current behavior</h2> <p dir="auto">When <a href="https://codesandbox.io/s/react-typescript-forked-nruu1q?file=/src/ModalComponent.tsx" rel="nofollow"><code class="notranslate">ModalComponent</code></a> re-renders, the new <code class="notranslate">dialog</code> element that it mounts retains the <code class="notranslate">open</code> value of the previous <code class="notranslate">dialog</code> element.</p> <h2 dir="auto">The expected behavior</h2> <p dir="auto">When <a href="https://codesandbox.io/s/react-typescript-forked-nruu1q?file=/src/ModalComponent.tsx" rel="nofollow"><code class="notranslate">ModalComponent</code></a> re-renders, the new <code class="notranslate">dialog</code> element that it mounts <em>should not</em> have an <code class="notranslate">open</code> attribute since none was provided for it.</p> <h2 dir="auto">Extra Notes</h2> <p dir="auto">The conversation would be unrelated to the bug, but in case it's brought up: Please note that the actual project that I'm working on does not simply have virtually-duplicated content between the 2 dialog elements. (The content between the two is distinct.) So combining the content under a single <code class="notranslate">dialog</code> element is not an option for me at the moment.</p>
<p dir="auto">I'm using static markup for unit testing <a href="https://github/insin/newforms" rel="nofollow">newforms</a> output and I'd also like to support using it to render forms as static HTML.</p> <p dir="auto">Adding a <code class="notranslate">value</code> or <code class="notranslate">defaultValue</code> to a <code class="notranslate">&lt;select&gt;</code> doesn't generate static HTML with the appropriate <code class="notranslate">selected</code> attributes. However, they do get generated if you manually add them to <code class="notranslate">&lt;option&gt;</code> components, but then you get warning messages in the console when using the development build of React.</p> <p dir="auto">Is it possible to support both use cases without manually setting <code class="notranslate">selected</code> attributes, or will I just have to live with the warnings? :)</p> <p dir="auto">JSFiddle showing <code class="notranslate">&lt;select&gt;</code> static HTML output: <a href="http://jsfiddle.net/insin/2tvb7/3/" rel="nofollow">http://jsfiddle.net/insin/2tvb7/3/</a></p>
0
<p dir="auto">Warning: React attempted to reuse markup in a container but the checksum was invalid. This generally means that you are using server rendering and the markup generated on the server was not what the client was expecting. React injected new markup to compensate which works but you have lost many of the benefits of server rendering. Instead, figure out why the markup being generated is different on the client or server:<br> (client) tyle="did-flip:true;-webkit-tap-highligh<br> (server) tyle="did-flip:true;tap-highlight-color:</p>
<p dir="auto">I have a React app, that runs on the server and in the clients browser.</p> <p dir="auto">When I upgrade to <code class="notranslate">v0.8.0</code>, React gives me the "Expected html differs from the given markup" warning, because there are differences in the inline style definitions. For example:</p> <p dir="auto">Server renders:</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="style=&quot;...; user-select: none;..&quot;"><pre class="notranslate">style="...; user-select: none;.."</pre></div> <p dir="auto">But the client (Chrome in this case) renders</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="style=&quot;...; -webkit-user-select: none;..&quot;"><pre class="notranslate">style="...; -webkit-user-select: none;.."</pre></div> <p dir="auto">While it is nice to not have to worry about vendor prefixes, the correct handling of them creates those differences. Does anyone have an idea on how to fix (or workaround) this? I dont want to send the client, perfectly good markup, and then let React rebuild half of it, because of that.</p> <p dir="auto">Maybe include all prefixes necessary? Might be tricky as well..</p> <p dir="auto">Or do I have to exclude all css that needs to be prefixed back into style sheets?</p>
1
<p dir="auto">when i set a object(which instanced Line2).scale.x &lt; 0, Line2 disappeared? is it normal?</p> <p dir="auto"><em><strong>Live example</strong></em></p> <ul dir="auto"> <li><a href="https://codesandbox.io/s/lucid-browser-36v9e" rel="nofollow">jsfiddle-latest-release</a></li> </ul>
<p dir="auto">As the title say: a <a href="https://github.com/mrdoob/three.js/blob/r98/examples/js/lines/Line2.js">Line2</a> disappears completely when the scale is set to negative on a single axis <code class="notranslate">line2.scale.set(-1, 1, 1)</code>. The line is obviously still there but it's not rendered.</p> <p dir="auto">Weirdly, if the scale is set to negative on more than one axis <code class="notranslate">line2.scale.set(-1, -1, 1)</code>, the line appears again.</p> <p dir="auto">Here's a jsfiddle that demonstrates the issue: <a href="https://jsfiddle.net/jacopocolo/5fsotdpw/16/" rel="nofollow">https://jsfiddle.net/jacopocolo/5fsotdpw/16/</a><br> Toggling <code class="notranslate">wireframeToggle</code> on line 7 to true shows two Line2 in wireframe but if <code class="notranslate">wireframeToggle</code> is set to false, only one is visible.</p> <h5 dir="auto">Three.js version</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Dev</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> r117</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> ...</li> </ul> <h5 dir="auto">Browser</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> All of them</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Chrome</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Firefox</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Internet Explorer</li> </ul> <h5 dir="auto">OS</h5> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> All of them</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Windows</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> macOS (only tested here)</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Linux</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> Android</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> iOS</li> </ul>
1
<p dir="auto">TV device does not support touch operation, users have to use Remote Control. We need move focus by press left, top, right, bottom direction key, and when the target widget get focus, we will press OK button to response kinds of event. But I cannot find any flutter interface to solve this interaction, much appreciate it if can add key event support for TV apps developed by flutter.</p>
<p dir="auto">As we know, tv apps use remote control's direction key to move focus from one widget to another. User needs to know which widget has got the current focus, so we may provider a focus animation effect, just draw a light widget floating on the focus widget. This light focus indicator widget will move from the previous focus widget to the current focus widget, we need calculate the move offset by the focused widget's coordinate minus the previous focus widget's coordinate. But I can't find any interface to get the widget's coordinate.</p>
1
<p dir="auto">Please answer these questions before submitting your issue. Thanks!</p> <ol dir="auto"> <li>What version of Go are you using (<code class="notranslate">go version</code>)?<br> go version go1.6 linux/amd64<br> go 1.5 also fails but go 1.4 compiles the code successfully</li> <li>What operating system and processor architecture are you using (<code class="notranslate">go env</code>)?</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="GOARCH=&quot;amd64&quot; GOBIN=&quot;&quot; GOEXE=&quot;&quot; GOHOSTARCH=&quot;amd64&quot; GOHOSTOS=&quot;linux&quot; GOOS=&quot;linux&quot; GOPATH=&quot;/home/user&quot; GORACE=&quot;&quot; GOROOT=&quot;/usr/lib/go&quot; GOTOOLDIR=&quot;/usr/lib/go/pkg/tool/linux_amd64&quot; GO15VENDOREXPERIMENT=&quot;1&quot; CC=&quot;gcc&quot; GOGCCFLAGS=&quot;-fPIC -m64 -pthread -fmessage-length=0&quot; CXX=&quot;g++&quot; CGO_ENABLED=&quot;1&quot;"><pre class="notranslate"><code class="notranslate">GOARCH="amd64" GOBIN="" GOEXE="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOOS="linux" GOPATH="/home/user" GORACE="" GOROOT="/usr/lib/go" GOTOOLDIR="/usr/lib/go/pkg/tool/linux_amd64" GO15VENDOREXPERIMENT="1" CC="gcc" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0" CXX="g++" CGO_ENABLED="1" </code></pre></div> <ol dir="auto"> <li>What did you do?<br> I used a shell script to generate some code, specifically a large ~200,000 line slice literal. Code is not public and I have not yet been able to reduce it.</li> <li>What did you expect to see?<br> The code to build successfully.</li> <li>What did you see instead?</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="go build file1.go file2.go # command-line-arguments panic: runtime error: slice bounds out of range goroutine 1 [running]: panic(0x802ba0, 0xc82000e170) /usr/lib/go/src/runtime/panic.go:464 +0x3e6 cmd/compile/internal/gc.newliveness(0xc8307042d0, 0xc834448120, 0xc89e58a000, 0x5d235, 0x71800, 0xc89ed48000, 0x10705, 0x12c00, 0x9be070cd77c7929b) /usr/lib/go/src/cmd/compile/internal/gc/plive.go:691 +0xc8e cmd/compile/internal/gc.liveness(0xc8307042d0, 0xc834448120, 0xc84ea6ef80, 0xc84ea6f000) /usr/lib/go/src/cmd/compile/internal/gc/plive.go:1782 +0x2cf cmd/compile/internal/gc.compile(0xc8307042d0) /usr/lib/go/src/cmd/compile/internal/gc/pgen.go:541 +0xdf2 cmd/compile/internal/gc.funccompile(0xc8307042d0) /usr/lib/go/src/cmd/compile/internal/gc/dcl.go:1450 +0x1c0 cmd/compile/internal/gc.fninit(0xc83353a520) /usr/lib/go/src/cmd/compile/internal/gc/init.go:184 +0x8a4 cmd/compile/internal/gc.Main() /usr/lib/go/src/cmd/compile/internal/gc/lex.go:477 +0x2150 cmd/compile/internal/amd64.Main() /usr/lib/go/src/cmd/compile/internal/amd64/galign.go:127 +0x58d main.main() /usr/lib/go/src/cmd/compile/main.go:32 +0x395"><pre class="notranslate"><code class="notranslate">go build file1.go file2.go # command-line-arguments panic: runtime error: slice bounds out of range goroutine 1 [running]: panic(0x802ba0, 0xc82000e170) /usr/lib/go/src/runtime/panic.go:464 +0x3e6 cmd/compile/internal/gc.newliveness(0xc8307042d0, 0xc834448120, 0xc89e58a000, 0x5d235, 0x71800, 0xc89ed48000, 0x10705, 0x12c00, 0x9be070cd77c7929b) /usr/lib/go/src/cmd/compile/internal/gc/plive.go:691 +0xc8e cmd/compile/internal/gc.liveness(0xc8307042d0, 0xc834448120, 0xc84ea6ef80, 0xc84ea6f000) /usr/lib/go/src/cmd/compile/internal/gc/plive.go:1782 +0x2cf cmd/compile/internal/gc.compile(0xc8307042d0) /usr/lib/go/src/cmd/compile/internal/gc/pgen.go:541 +0xdf2 cmd/compile/internal/gc.funccompile(0xc8307042d0) /usr/lib/go/src/cmd/compile/internal/gc/dcl.go:1450 +0x1c0 cmd/compile/internal/gc.fninit(0xc83353a520) /usr/lib/go/src/cmd/compile/internal/gc/init.go:184 +0x8a4 cmd/compile/internal/gc.Main() /usr/lib/go/src/cmd/compile/internal/gc/lex.go:477 +0x2150 cmd/compile/internal/amd64.Main() /usr/lib/go/src/cmd/compile/internal/amd64/galign.go:127 +0x58d main.main() /usr/lib/go/src/cmd/compile/main.go:32 +0x395 </code></pre></div>
<p dir="auto">The go 1.6 compiler panics on this 2.25 Mbyte source file containing a slice with 13240 elements: <a href="https://drive.google.com/file/d/0B2AF520HhpuzdzZhSVpPZGZkTUU/view" rel="nofollow">https://drive.google.com/file/d/0B2AF520HhpuzdzZhSVpPZGZkTUU/view</a></p> <p dir="auto">go1.6 linux/amd64<br> GOARCH="amd64"<br> GOOS="linux"</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ go build buildme.go # command-line-arguments panic: runtime error: makeslice: len out of range goroutine 1 [running]: panic(0x804f60, 0xc86085dd70) /usr/lib/google-golang/src/runtime/panic.go:483 +0x3ef cmd/compile/internal/gc.newliveness(0xc82018b9e0, 0xc8200a0000, 0xc865c44000, 0x2d416, 0x2e400, 0xc866950000, 0xcee1, 0xf000, 0xc9cda4b11aac74db) /usr/lib/google-golang/src/cmd/compile/internal/gc/plive.go:687 +0x161 cmd/compile/internal/gc.liveness(0xc82018b9e0, 0xc8200a0000, 0xc848dee900, 0xc848dee980) /usr/lib/google-golang/src/cmd/compile/internal/gc/plive.go:1782 +0x2cf cmd/compile/internal/gc.compile(0xc82018b9e0) /usr/lib/google-golang/src/cmd/compile/internal/gc/pgen.go:541 +0xdf2 cmd/compile/internal/gc.funccompile(0xc82018b9e0) /usr/lib/google-golang/src/cmd/compile/internal/gc/dcl.go:1450 +0x1c0 cmd/compile/internal/gc.Main() /usr/lib/google-golang/src/cmd/compile/internal/gc/lex.go:472 +0x2116 cmd/compile/internal/amd64.Main() /usr/lib/google-golang/src/cmd/compile/internal/amd64/galign.go:127 +0x58d main.main() /usr/lib/google-golang/src/cmd/compile/main.go:32 +0x395"><pre class="notranslate"><code class="notranslate">$ go build buildme.go # command-line-arguments panic: runtime error: makeslice: len out of range goroutine 1 [running]: panic(0x804f60, 0xc86085dd70) /usr/lib/google-golang/src/runtime/panic.go:483 +0x3ef cmd/compile/internal/gc.newliveness(0xc82018b9e0, 0xc8200a0000, 0xc865c44000, 0x2d416, 0x2e400, 0xc866950000, 0xcee1, 0xf000, 0xc9cda4b11aac74db) /usr/lib/google-golang/src/cmd/compile/internal/gc/plive.go:687 +0x161 cmd/compile/internal/gc.liveness(0xc82018b9e0, 0xc8200a0000, 0xc848dee900, 0xc848dee980) /usr/lib/google-golang/src/cmd/compile/internal/gc/plive.go:1782 +0x2cf cmd/compile/internal/gc.compile(0xc82018b9e0) /usr/lib/google-golang/src/cmd/compile/internal/gc/pgen.go:541 +0xdf2 cmd/compile/internal/gc.funccompile(0xc82018b9e0) /usr/lib/google-golang/src/cmd/compile/internal/gc/dcl.go:1450 +0x1c0 cmd/compile/internal/gc.Main() /usr/lib/google-golang/src/cmd/compile/internal/gc/lex.go:472 +0x2116 cmd/compile/internal/amd64.Main() /usr/lib/google-golang/src/cmd/compile/internal/amd64/galign.go:127 +0x58d main.main() /usr/lib/google-golang/src/cmd/compile/main.go:32 +0x395 </code></pre></div>
1
<p dir="auto">Output of node_modules/.bin/electron --version: 3.0.3<br> Operating System (Platform and Version): macOS Mojave 10.14</p> <p dir="auto"><strong>Description</strong><br> There were a few desktops. I put my electron app on one, and focused on another one. When the app's notification came and I clicked the action button:</p> <p dir="auto"><strong>Expected Behavior</strong><br> The app will not be activated.</p> <p dir="auto"><strong>Actual Behavior</strong><br> The app was activated automatically.</p> <p dir="auto"><strong>To Reproduce</strong></p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="$ git clone https://github.com/ervinewell/electron-quick-start.git -b bugfix/notificaion-activate-app $ npm install $ npm start"><pre class="notranslate">$ git clone https://github.com/ervinewell/electron-quick-start.git -b bugfix/notificaion-activate-app $ npm install $ npm start</pre></div> <p dir="auto"><strong>Screenshots</strong><br> <a href="https://youtu.be/YaNFgvYOYK8" rel="nofollow">https://youtu.be/YaNFgvYOYK8</a></p>
<ul dir="auto"> <li>Electron Version: 2.0.5, 2.0.6</li> <li>Operating System (Platform and Version): macOS 10.13.6</li> <li>Last known working Electron version: 2.0.5</li> </ul> <p dir="auto"><strong>Expected Behavior</strong><br> App passing submission requirements.</p> <p dir="auto"><strong>Actual behavior</strong><br> App got rejected.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Your app uses or references the following non-public APIs: Symbol: _CGDisplayUsesForceToGray From framework: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics Symbols: ___CFRunLoopSetOptionsReason, __CFIsObjC From framework: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation In binary: Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework"><pre class="notranslate"><code class="notranslate">Your app uses or references the following non-public APIs: Symbol: _CGDisplayUsesForceToGray From framework: /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics Symbols: ___CFRunLoopSetOptionsReason, __CFIsObjC From framework: /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation In binary: Contents/Frameworks/Electron Framework.framework/Versions/A/Electron Framework </code></pre></div> <p dir="auto"><strong>Additional Information</strong><br> Our app already is on the App Store using Electron version 2.0.5 (just trying to issue an update). I guess this is a new requirement.</p>
0
<h3 dir="auto">System info</h3> <ul dir="auto"> <li>Playwright Version: v1.33.0</li> <li>Operating System: Ubuntu 22.04</li> <li>Browser: Firefox</li> <li>Other info:</li> </ul> <h3 dir="auto">Source code</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I provided exact source code that allows reproducing the issue locally.</li> </ul> <p dir="auto"><strong>Link to the GitHub repository with the repro</strong></p> <p dir="auto"><a href="https://github.com/ppath/playwright-firefox-buggy-large-req-payload">https://github.com/ppath/playwright-firefox-buggy-large-req-payload</a></p> <p dir="auto"><strong>Steps</strong></p> <ul dir="auto"> <li>npm install</li> <li>npm run test</li> </ul> <p dir="auto"><strong>Expected</strong></p> <p dir="auto">For each test, the <a href="https://github.com/ppath/playwright-firefox-buggy-large-req-payload/blob/main/tests/request_interception.spec.ts#L11">route/request interception</a> should occur. Therefore, the message <code class="notranslate">REQUEST INTERCEPTED: http://localhost:3000/api/foo &lt;METHOD&gt;</code> should be printed three times:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" βœ“ 1 [firefox] β€Ί tests/request_interception.spec.ts:17:5 β€Ί should intercept POSTing of 10KB payload (1.7s) REQUEST INTERCEPTED: http://localhost:3000/api/foo POST [browser]: response payload size: 10260 βœ“ 2 [firefox] β€Ί tests/request_interception.spec.ts:23:5 β€Ί should intercept POSTing of 10MB payload (1.4s) REQUEST INTERCEPTED: http://localhost:3000/api/foo POST [browser]: response payload size: 10485780 βœ“ 3 [firefox] β€Ί tests/request_interception.spec.ts:29:5 β€Ί should intercept PUTing of 10MB payload (1.3s) REQUEST INTERCEPTED: http://localhost:3000/api/foo PUT [browser]: response payload size: 10485780"><pre class="notranslate"><code class="notranslate"> βœ“ 1 [firefox] β€Ί tests/request_interception.spec.ts:17:5 β€Ί should intercept POSTing of 10KB payload (1.7s) REQUEST INTERCEPTED: http://localhost:3000/api/foo POST [browser]: response payload size: 10260 βœ“ 2 [firefox] β€Ί tests/request_interception.spec.ts:23:5 β€Ί should intercept POSTing of 10MB payload (1.4s) REQUEST INTERCEPTED: http://localhost:3000/api/foo POST [browser]: response payload size: 10485780 βœ“ 3 [firefox] β€Ί tests/request_interception.spec.ts:29:5 β€Ί should intercept PUTing of 10MB payload (1.3s) REQUEST INTERCEPTED: http://localhost:3000/api/foo PUT [browser]: response payload size: 10485780 </code></pre></div> <p dir="auto"><strong>Actual</strong></p> <p dir="auto">When the request payload becomes equal or larger than 1MB, the request interception does not occur. Thus, the route handler is executed only once:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" βœ“ 1 [firefox] β€Ί tests/request_interception.spec.ts:17:5 β€Ί should intercept POSTing of 10KB payload (1.7s) REQUEST INTERCEPTED: http://localhost:3000/api/foo POST [browser]: response payload size: 10260 βœ“ 2 [firefox] β€Ί tests/request_interception.spec.ts:23:5 β€Ί should intercept POSTing of 10MB payload (1.4s) [browser]: response payload size: 10485780 βœ“ 3 [firefox] β€Ί tests/request_interception.spec.ts:29:5 β€Ί should intercept PUTing of 10MB payload (1.3s) [browser]: response payload size: 10485780"><pre class="notranslate"><code class="notranslate"> βœ“ 1 [firefox] β€Ί tests/request_interception.spec.ts:17:5 β€Ί should intercept POSTing of 10KB payload (1.7s) REQUEST INTERCEPTED: http://localhost:3000/api/foo POST [browser]: response payload size: 10260 βœ“ 2 [firefox] β€Ί tests/request_interception.spec.ts:23:5 β€Ί should intercept POSTing of 10MB payload (1.4s) [browser]: response payload size: 10485780 βœ“ 3 [firefox] β€Ί tests/request_interception.spec.ts:29:5 β€Ί should intercept PUTing of 10MB payload (1.3s) [browser]: response payload size: 10485780 </code></pre></div> <p dir="auto">So in conclusion, as far as I understand, the problem appears when:</p> <ul dir="auto"> <li>The request payload becomes &gt;= 1MB (I've tested it with payload of size 1023KB and it worked fine).</li> <li>Running the tests with Firefox.</li> </ul>
<p dir="auto">Your header model generally looks something like this:</p> <p dir="auto"></p><div class="Box Box--condensed my-2"> <div class="Box-header f6"> <p class="mb-0 text-bold"> <a href="https://github.com/microsoft/playwright/blob/9da26f9534adcbd855e37b1584a94ca673e7f4bf/types/types.d.ts#L13228-L13231">playwright/types/types.d.ts</a> </p> <p class="mb-0 color-fg-muted"> Lines 13228 to 13231 in <a data-pjax="true" class="commit-tease-sha" href="/microsoft/playwright/commit/9da26f9534adcbd855e37b1584a94ca673e7f4bf">9da26f9</a> </p> </div> <div itemprop="text" class="Box-body p-0 blob-wrapper blob-wrapper-embedded data"> <table class="highlight tab-size mb-0 js-file-line-container" data-tab-size="8" data-paste-markdown-skip=""> <tbody><tr class="border-0"> <td id="L13228" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="13228"></td> <td id="LC13228" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c">/**</span> </td> </tr> <tr class="border-0"> <td id="L13229" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="13229"></td> <td id="LC13229" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"> * Returns the object with HTTP headers associated with the response. All header names are lower-case.</span> </td> </tr> <tr class="border-0"> <td id="L13230" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="13230"></td> <td id="LC13230" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c"> */</span> </td> </tr> <tr class="border-0"> <td id="L13231" class="blob-num border-0 px-3 py-0 color-bg-default" data-line-number="13231"></td> <td id="LC13231" class="blob-code border-0 px-3 py-0 color-bg-default blob-code-inner js-file-line"> <span class="pl-c1">headers</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-kos">{</span> <span class="pl-kos">[</span><span class="pl-s1">key</span>: <span class="pl-smi">string</span><span class="pl-kos">]</span>: <span class="pl-smi">string</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">;</span> </td> </tr> </tbody></table> </div> </div> <p></p> <p dir="auto">Strictly speaking, headers are not a key/value map - and in practice, this causes some problems, for example with <code class="notranslate">set-cookie</code>, which frequently occurs more than once.</p> <p dir="auto">Apparently, the way you address this, is by concatenating multiple header-values with a <code class="notranslate">\n</code> (line-break) character.</p> <p dir="auto">It doesn't look like this detail is described in <a href="https://playwright.dev/docs/api/class-request#request-headers" rel="nofollow">documentation</a> - and by the time you uncover this, it makes it quite difficult and clumsy to work with the model.</p> <p dir="auto">For example, the widely-used <a href="https://www.npmjs.com/package/set-cookie-parser" rel="nofollow">set-cookie-parser</a> package has some extremely weird behavior when you pass it a multi-value header like this - and the <code class="notranslate">splitCookiesString</code> function doesn't help here either, as it expects multi-value headers to be separated by commas rather than line-breaks.</p> <p dir="auto">It's not obvious how to add a header either - doing so correctly is pretty clumsy:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="function addHeader(headers, name, value) { if (name in headers) { headers[name] = header[name] + &quot;\n&quot; + value; } else { headers[name] = value; } }"><pre class="notranslate"><span class="pl-k">function</span> <span class="pl-en">addHeader</span><span class="pl-kos">(</span><span class="pl-s1">headers</span><span class="pl-kos">,</span> <span class="pl-s1">name</span><span class="pl-kos">,</span> <span class="pl-s1">value</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">if</span> <span class="pl-kos">(</span><span class="pl-s1">name</span> <span class="pl-k">in</span> <span class="pl-s1">headers</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">headers</span><span class="pl-kos">[</span><span class="pl-s1">name</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">header</span><span class="pl-kos">[</span><span class="pl-s1">name</span><span class="pl-kos">]</span> <span class="pl-c1">+</span> <span class="pl-s">"\n"</span> <span class="pl-c1">+</span> <span class="pl-s1">value</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-k">else</span> <span class="pl-kos">{</span> <span class="pl-s1">headers</span><span class="pl-kos">[</span><span class="pl-s1">name</span><span class="pl-kos">]</span> <span class="pl-c1">=</span> <span class="pl-s1">value</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">It's not clear to me if the line-breaks detail is the only detail either, or just the one I've discovered</p> <p dir="auto">Is there anything else I need to know?</p> <p dir="auto">Either way, I would suggest a deprecation of the existing methods and a replacement with some sort of abstraction/type to properly deal with headers?</p> <p dir="auto">That or a wrapper-type for the current model, to take care of the the splitting and recombining, adding/removing headers, etc. - which I will most likely write under any circumstances to avoid these issues.</p> <p dir="auto">At the very least, these details should be documented.</p> <p dir="auto">I am happy to help with whatever course of action you prefer. πŸ™‚</p>
0
<h1 dir="auto">It would be nice to see the pixel amount for x/y dimensions of the fancy zone layout when resizing the zones in edit mode.</h1>
<p dir="auto">FancyZone does not work well on four monitor setup with three on one row and one above the main center screen. Only the center and screen above work with fancy Zone Left and right do not. The problem was seen in version 20 and 21. but was not present in the older version (I do not know which version it stopped working)</p> <h2 dir="auto"><g-emoji class="g-emoji" alias="information_source" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2139.png">β„Ή</g-emoji> Computer information</h2> <ul dir="auto"> <li>PowerToys version: 21</li> <li>PowerToy Utility: FancyZone</li> <li>Running PowerToys as Admin:</li> <li>Windows build number: [run "winver"]</li> </ul> <h2 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">πŸ“</g-emoji> Provide detailed reproduction steps (if any)</h2> <ol dir="auto"> <li>…</li> <li>…</li> <li>…</li> </ol> <h3 dir="auto"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png">βœ”οΈ</g-emoji> Expected result</h3> <p dir="auto"><em>What is the expected result of the above steps?</em></p> <h3 dir="auto"><g-emoji class="g-emoji" alias="x" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/274c.png">❌</g-emoji> Actual result</h3> <p dir="auto"><em>What is the actual result of the above steps?</em></p> <h2 dir="auto">πŸ“· Screenshots</h2> <p dir="auto"><em>Are there any useful screenshots? WinKey+Shift+S and then just paste them directly into the form</em></p>
0
<p dir="auto">I'm using Bootstrap 2.0 and am trying to use a Modal for displaying a Markdown cheat sheet. I've set up a link to display the modal but when I click it, the modal appears briefly and then immediately disappears again.</p> <p dir="auto">Here's my basic code:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;a class=&quot;btn&quot; data-toggle=&quot;modal&quot; data-target=&quot;#markdown&quot;&gt;Show Markdown Cheatsheet&lt;/a&gt; &lt;div id=&quot;markdown&quot; class=&quot;modal hide fade&quot;&gt; Foo &lt;/div&gt;"><pre class="notranslate"><code class="notranslate">&lt;a class="btn" data-toggle="modal" data-target="#markdown"&gt;Show Markdown Cheatsheet&lt;/a&gt; &lt;div id="markdown" class="modal hide fade"&gt; Foo &lt;/div&gt; </code></pre></div> <p dir="auto">I've got the following JS files loaded:</p> <ul dir="auto"> <li>jquery 1.7.1</li> <li>bootstrap</li> <li>bootstrap-alert</li> <li>bootstrap-dropdown</li> <li>bootstrap-tabs</li> <li>bootstrap-modal</li> <li>bootstrap-transition</li> <li>jquery.dataTables.min</li> </ul> <p dir="auto">I have the following document-ready blocks:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$(document).ready(function(){ $(&quot;.alert-message&quot;).alert(); $(&quot;.dropdown-toggle&quot;).dropdown(); $('#save').attr(&quot;disabled&quot;, &quot;disabled&quot;); $('#comment_message').show(); $('#comment').keyup(function() { inspectCommentTextField(); }); $('#minor_revision').change(function() { inspectMinorRevisionCheckBox(); }); }); $(document).ready(function(){ computersTable = $('#computers').dataTable({ &quot;sScrollY&quot;: &quot;200px&quot;, &quot;bPaginate&quot;: false }); applicationsTable = $('#applications').dataTable({ &quot;sScrollY&quot;: &quot;200px&quot;, &quot;bPaginate&quot;: false }); $('form').submit(function() { // Clear filters because filtered checkboxes don't get submitted for some reason computersTable.fnFilter(''); applicationsTable.fnFilter(''); }); });"><pre class="notranslate"><code class="notranslate">$(document).ready(function(){ $(".alert-message").alert(); $(".dropdown-toggle").dropdown(); $('#save').attr("disabled", "disabled"); $('#comment_message').show(); $('#comment').keyup(function() { inspectCommentTextField(); }); $('#minor_revision').change(function() { inspectMinorRevisionCheckBox(); }); }); $(document).ready(function(){ computersTable = $('#computers').dataTable({ "sScrollY": "200px", "bPaginate": false }); applicationsTable = $('#applications').dataTable({ "sScrollY": "200px", "bPaginate": false }); $('form').submit(function() { // Clear filters because filtered checkboxes don't get submitted for some reason computersTable.fnFilter(''); applicationsTable.fnFilter(''); }); }); </code></pre></div>
<p dir="auto">Code:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;form class=&quot;form-horizontal&quot; role=&quot;form&quot;&gt; &lt;div class=&quot;form-group has-success has-feedback&quot;&gt; &lt;label class=&quot;control-label col-sm-3&quot; for=&quot;inputSuccess3&quot;&gt;Input with success&lt;/label&gt; &lt;div class=&quot;col-sm-9&quot;&gt; &lt;div class=&quot;input-group&quot;&gt; &lt;span class=&quot;input-group-addon&quot;&gt;@&lt;/span&gt; &lt;input type=&quot;text&quot; class=&quot;form-control&quot; placeholder=&quot;Username&quot;&gt; &lt;/div&gt; &lt;span class=&quot;glyphicon glyphicon-ok form-control-feedback&quot;&gt;&lt;/span&gt; &lt;/div&gt; &lt;/div&gt; &lt;/form&gt;"><pre class="notranslate"><code class="notranslate">&lt;form class="form-horizontal" role="form"&gt; &lt;div class="form-group has-success has-feedback"&gt; &lt;label class="control-label col-sm-3" for="inputSuccess3"&gt;Input with success&lt;/label&gt; &lt;div class="col-sm-9"&gt; &lt;div class="input-group"&gt; &lt;span class="input-group-addon"&gt;@&lt;/span&gt; &lt;input type="text" class="form-control" placeholder="Username"&gt; &lt;/div&gt; &lt;span class="glyphicon glyphicon-ok form-control-feedback"&gt;&lt;/span&gt; &lt;/div&gt; &lt;/div&gt; &lt;/form&gt; </code></pre></div> <p dir="auto">Example: <a href="http://cssdeck.com/labs/xvebpw8t" rel="nofollow">http://cssdeck.com/labs/xvebpw8t</a></p>
0
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=cbeams" rel="nofollow">Chris Beams</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-5113?redirect=false" rel="nofollow">SPR-5113</a></strong> and commented</p> <p dir="auto">The following paragraph is repeated twice in the javadoc for AbstractMessageListenerContainer:</p> <ul dir="auto"> <li>&lt;b&gt;NOTE:&lt;/b&gt; The default behavior of this message listener container is to</li> <li>&lt;b&gt;never&lt;/b&gt; propagate an exception thrown by a message listener up to the</li> <li>JMS provider. Instead, it will log any such exception at the error level and</li> <li>rollback the active transaction if there is one. This means that from the</li> <li>perspective of the attendant JMS provider no listener will ever fail.</li> </ul> <hr> <p dir="auto"><strong>Affects:</strong> 2.0.8, 2.5.5</p> <p dir="auto"><strong>Backported to:</strong> <a href="https://github.com/spring-projects/spring-framework/milestone/46?closed=1">2.0.9</a></p>
<p dir="auto"><strong><a href="https://jira.spring.io/secure/ViewProfile.jspa?name=lacostej" rel="nofollow">Jerome Lacoste</a></strong> opened <strong><a href="https://jira.spring.io/browse/SPR-798?redirect=false" rel="nofollow">SPR-798</a></strong> and commented</p> <p dir="auto">In one of my beans, I return a Set of Longs. I use this set to populate a multiple select box on a Web.</p> <p dir="auto">I registered an Editor to the field. When doing status.value I expected to get a Set, but I am getting a String. BindStatus reuses the following code from BindException:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="public Object getFieldValue(String field) { FieldError fe = getFieldError(field); String fixedField = fixedField(field); // use rejected value in case of error, current bean property value else Object value = (fe != null) ? fe.getRejectedValue() : getBeanWrapper().getPropertyValue(fixedField); // apply custom editor, but not on binding failures like type mismatches if (fe == null || !fe.isBindingFailure()) { PropertyEditor customEditor = getCustomEditor(fixedField); if (customEditor != null) { customEditor.setValue(value); return customEditor.getAsText(); } } return value; } "><pre class="notranslate"><code class="notranslate">public Object getFieldValue(String field) { FieldError fe = getFieldError(field); String fixedField = fixedField(field); // use rejected value in case of error, current bean property value else Object value = (fe != null) ? fe.getRejectedValue() : getBeanWrapper().getPropertyValue(fixedField); // apply custom editor, but not on binding failures like type mismatches if (fe == null || !fe.isBindingFailure()) { PropertyEditor customEditor = getCustomEditor(fixedField); if (customEditor != null) { customEditor.setValue(value); return customEditor.getAsText(); } } return value; } </code></pre></div> <p dir="auto">Here one can see that the customEditor is used but the method getAsText() is used, not the getValue().</p> <p dir="auto">I don't understand this choice. It breaks symetry between displaying and submitting my form.</p> <p dir="auto">Someone else reported the same issue on the devel list back in September 2004.<br> <a href="http://news.gmane.org/find-root.php?message_id=%3c41378671.1090307%40pcedev.com%3e" rel="nofollow">http://news.gmane.org/find-root.php?message_id=%3c41378671.1090307%40pcedev.com%3e</a></p> <p dir="auto">Workaround is to respecify my field using its path. Ugly.</p> <p dir="auto">Not sure how to fix that. Fixing it would break existing code. Introducing an interface like proposed in the mail in -devel would makes things complex for what is supposed to be normal case to me.</p> <hr> <p dir="auto"><strong>Affects:</strong> 1.1.5</p>
0
<p dir="auto"><strong>Symfony version(s) affected</strong>: 4.2.6</p> <p dir="auto"><strong>Description</strong><br> Rendering form with null block prefix duplicates the form default attributes in rendered html. This is major problem if we'd like to add id attribute to it as id should be unique in whole HTML document.</p> <p dir="auto"><strong>How to reproduce</strong></p> <p dir="auto">Create form as follows</p> <div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;?php namespace App\Form; use Symfony\Component\Form\AbstractType; use Symfony\Component\OptionsResolver\OptionsResolver; class BugType extends AbstractType { public function configureOptions(OptionsResolver $resolver) { $resolver-&gt;setDefaults([ 'attr' =&gt; [ 'id' =&gt; 'duplicate', 'foo' =&gt; 'bar', ], ]); } public function getBlockPrefix() { return null; } }"><pre class="notranslate"><span class="pl-ent">&lt;?php</span> <span class="pl-k">namespace</span> <span class="pl-v">App</span>\<span class="pl-v">Form</span>; <span class="pl-k">use</span> <span class="pl-v">Symfony</span>\<span class="pl-v">Component</span>\<span class="pl-v">Form</span>\<span class="pl-v">AbstractType</span>; <span class="pl-k">use</span> <span class="pl-v">Symfony</span>\<span class="pl-v">Component</span>\<span class="pl-v">OptionsResolver</span>\<span class="pl-v">OptionsResolver</span>; <span class="pl-k">class</span> <span class="pl-v">BugType</span> <span class="pl-k">extends</span> <span class="pl-v">AbstractType</span> { <span class="pl-k">public</span> <span class="pl-k">function</span> <span class="pl-en">configureOptions</span>(<span class="pl-smi"><span class="pl-smi">OptionsResolver</span></span> <span class="pl-s1"><span class="pl-c1">$</span>resolver</span>) { <span class="pl-s1"><span class="pl-c1">$</span>resolver</span>-&gt;<span class="pl-en">setDefaults</span>([ <span class="pl-s">'attr'</span> =&gt; [ <span class="pl-s">'id'</span> =&gt; <span class="pl-s">'duplicate'</span>, <span class="pl-s">'foo'</span> =&gt; <span class="pl-s">'bar'</span>, ], ]); } <span class="pl-k">public</span> <span class="pl-k">function</span> <span class="pl-en">getBlockPrefix</span>() { <span class="pl-k">return</span> <span class="pl-c1">null</span>; } }</pre></div> <p dir="auto">Pass it to the twig as follows:</p> <div class="highlight highlight-text-html-php notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;?php namespace App\Controller; use App\Form\BugType; use Symfony\Bundle\FrameworkBundle\Controller\AbstractController; use Symfony\Component\Routing\Annotation\Route; class IndexController extends AbstractController { /** * @Route(&quot;/&quot;, name=&quot;index&quot;) */ public function index() { $form = $this-&gt;createForm(BugType::class); return $this-&gt;render('index/index.html.twig', [ 'form' =&gt; $form-&gt;createView(), ]); } }"><pre class="notranslate"><span class="pl-ent">&lt;?php</span> <span class="pl-k">namespace</span> <span class="pl-v">App</span>\<span class="pl-v">Controller</span>; <span class="pl-k">use</span> <span class="pl-v">App</span>\<span class="pl-v">Form</span>\<span class="pl-v">BugType</span>; <span class="pl-k">use</span> <span class="pl-v">Symfony</span>\<span class="pl-v">Bundle</span>\<span class="pl-v">FrameworkBundle</span>\<span class="pl-v">Controller</span>\<span class="pl-v">AbstractController</span>; <span class="pl-k">use</span> <span class="pl-v">Symfony</span>\<span class="pl-v">Component</span>\<span class="pl-v">Routing</span>\<span class="pl-v">Annotation</span>\<span class="pl-v">Route</span>; <span class="pl-k">class</span> <span class="pl-v">IndexController</span> <span class="pl-k">extends</span> <span class="pl-v">AbstractController</span> { <span class="pl-c">/**</span> <span class="pl-c"> * @Route("/", name="index")</span> <span class="pl-c"> */</span> <span class="pl-k">public</span> <span class="pl-k">function</span> <span class="pl-en">index</span>() { <span class="pl-s1"><span class="pl-c1">$</span>form</span> = <span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-&gt;<span class="pl-en">createForm</span>(<span class="pl-v">BugType</span>::class); <span class="pl-k">return</span> <span class="pl-s1"><span class="pl-c1">$</span><span class="pl-smi">this</span></span>-&gt;<span class="pl-en">render</span>(<span class="pl-s">'index/index.html.twig'</span>, [ <span class="pl-s">'form'</span> =&gt; <span class="pl-s1"><span class="pl-c1">$</span>form</span>-&gt;<span class="pl-en">createView</span>(), ]); } }</pre></div> <p dir="auto">And than render it using Twig</p> <div class="highlight highlight-text-html-twig notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{{ form(form) }}"><pre class="notranslate">{{ form(<span class="pl-smi">form</span>) }}</pre></div> <p dir="auto">The result will be:</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;form method=&quot;post&quot; id=&quot;duplicate&quot; foo=&quot;bar&quot;&gt; &lt;div id=&quot;duplicate&quot; foo=&quot;bar&quot;&gt; &lt;input type=&quot;hidden&quot; id=&quot;_token&quot; name=&quot;_token&quot; value=&quot;psSwaT9qr427m_jWqmu7qo1cgbsZ5f-lxcHEcTpeGcY&quot;/&gt; &lt;/div&gt; &lt;/form&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">form</span> <span class="pl-c1">method</span>="<span class="pl-s">post</span>" <span class="pl-c1">id</span>="<span class="pl-s">duplicate</span>" <span class="pl-c1">foo</span>="<span class="pl-s">bar</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">id</span>="<span class="pl-s">duplicate</span>" <span class="pl-c1">foo</span>="<span class="pl-s">bar</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">hidden</span>" <span class="pl-c1">id</span>="<span class="pl-s">_token</span>" <span class="pl-c1">name</span>="<span class="pl-s">_token</span>" <span class="pl-c1">value</span>="<span class="pl-s">psSwaT9qr427m_jWqmu7qo1cgbsZ5f-lxcHEcTpeGcY</span>"/&gt; <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">form</span><span class="pl-kos">&gt;</span></pre></div> <p dir="auto">as you can see form and div have the same attributes.</p>
<p dir="auto">If invalid value submitted the select choice throws an exception <code class="notranslate">TransformationFailedException</code> where radio\checkbox choices set the value to <code class="notranslate">NULL</code>.</p> <p dir="auto">This behavior cause some problems at validation stage.</p> <ul dir="auto"> <li>First one is <code class="notranslate">Choice</code> constraint. It do nothing for <code class="notranslate">NULL</code> values.</li> <li>Next problem more serious. If you dont have <code class="notranslate">NotBlank</code> constraint at the field you will pass validation with <code class="notranslate">NULL</code> value where someone would expect a value from choice set.</li> </ul> <p dir="auto">Personally I prefer <code class="notranslate">TransformationFailedException</code> for such cases.</p>
0
<h5 dir="auto">ISSUE TYPE</h5> <ul dir="auto"> <li>Bug Report</li> </ul> <h5 dir="auto">COMPONENT NAME</h5> <p dir="auto">core</p> <h5 dir="auto">ANSIBLE VERSION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ansible 2.5.0 config file = /etc/ansible/ansible.cfg configured module search path = [u'/ici/home/yves/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /usr/lib/python2.7/site-packages/ansible executable location = /usr/bin/ansible python version = 2.7.14 (default, Sep 20 2017, 01:25:59) [GCC 7.2.0]"><pre class="notranslate"><code class="notranslate">ansible 2.5.0 config file = /etc/ansible/ansible.cfg configured module search path = [u'/ici/home/yves/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules'] ansible python module location = /usr/lib/python2.7/site-packages/ansible executable location = /usr/bin/ansible python version = 2.7.14 (default, Sep 20 2017, 01:25:59) [GCC 7.2.0] </code></pre></div> <h5 dir="auto">CONFIGURATION</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="ANSIBLE_SSH_PIPELINING(/etc/ansible/ansible.cfg) = True"><pre class="notranslate"><code class="notranslate">ANSIBLE_SSH_PIPELINING(/etc/ansible/ansible.cfg) = True </code></pre></div> <h5 dir="auto">OS / ENVIRONMENT</h5> <p dir="auto">Up-to-date Archlinux</p> <h5 dir="auto">SUMMARY</h5> <p dir="auto">I have writen more than 50 Ansible roles, with the aim of installing/updating my home-server. It works nice.<br> But running the whole book takes <em><strong>very</strong></em> long! One reason it takes so long is that some roles that I include using <code class="notranslate">include_role</code> get often repeated needlessly (no change) at places where I do not expect them to run.</p> <h5 dir="auto">STEPS TO REPRODUCE</h5> <p dir="auto">I tried to minimally reproduce the problem, and I came up with this:<br> <a href="https://yalis.fr/git/yves/ansible-repeated-tasks-showcase" rel="nofollow">https://yalis.fr/git/yves/ansible-repeated-tasks-showcase</a></p> <p dir="auto">In short:</p> <ul dir="auto"> <li><code class="notranslate">nfs</code> and <code class="notranslate">postgresql</code> both depend on <code class="notranslate">cleanupdate</code>, which depends on <code class="notranslate">init</code></li> <li>each of these may have β€œupstream” actions and β€œlocal” actions</li> <li>the β€œupstream” actions are enclosed between: <ul dir="auto"> <li>an <code class="notranslate">include_role</code> of <code class="notranslate">etckeeper.inc</code> with tasks from <code class="notranslate">upstream.yml</code></li> <li>an <code class="notranslate">include_role</code> of <code class="notranslate">etckeeper.inc</code> with tasks from <code class="notranslate">merge.yml</code></li> </ul> </li> <li>the β€œlocal” actions are followed by: <ul dir="auto"> <li>an <code class="notranslate">include_role</code> of <code class="notranslate">etckeeper.inc</code> with tasks from <code class="notranslate">local.yml</code></li> </ul> </li> <li>furthermore, <code class="notranslate">init</code> starts with: <ul dir="auto"> <li>an <code class="notranslate">include_role</code> of <code class="notranslate">etckeeper.inc</code> with tasks from <code class="notranslate">init.yml</code></li> </ul> </li> </ul> <h5 dir="auto">EXPECTED RESULTS</h5> <p dir="auto">I expect the following sequence of actions:</p> <ol dir="auto"> <li>load role <code class="notranslate">nfs</code> and see its <code class="notranslate">meta/</code> dependencies, for instance <code class="notranslate">cleanupdate</code></li> <li>load role <code class="notranslate">cleanupdate</code> and see its <code class="notranslate">meta/</code> dependencies, for instance <code class="notranslate">init</code></li> <li>load role <code class="notranslate">init</code> and see its <code class="notranslate">meta/</code> dependencies, for instance none</li> <li>run <code class="notranslate">init</code>, then <code class="notranslate">cleanupdate</code>, then <code class="notranslate">nfs</code></li> <li>load role <code class="notranslate">postgresql</code> and see its <code class="notranslate">meta/</code> dependencies, for instance <code class="notranslate">cleanupdate</code></li> <li><code class="notranslate">cleanupdate</code> has already ran, so skip it</li> <li>run <code class="notranslate">postgresql</code></li> </ol> <h5 dir="auto">ACTUAL RESULTS</h5> <p dir="auto">Instead of the 6th step, I see a bunch of runs of tasks from <code class="notranslate">etckeeper.inc</code>, which is exactly what I see with my big, real, Ansible setup. And this is only a minimal example with 2 roles and simplified meta-dependencies…</p> <p dir="auto">The actual, annotated, output of <code class="notranslate">ansible-playbook -i production site.yml</code> can be seen here:<br> <a href="https://yalis.fr/git/yves/ansible-repeated-tasks-showcase/src/master/ansible-playbook.log" rel="nofollow">https://yalis.fr/git/yves/ansible-repeated-tasks-showcase/src/master/ansible-playbook.log</a></p>
<p dir="auto">I am trying to use ansible, unfortunately It does not work with my list of hosts defined in .ssh/config.</p> <p dir="auto">In paramiko mode - my hosts are throwing "Name of service not known" - my /etc/ansible/hosts file refers to aliases defined in .ssh/config.</p> <p dir="auto">In -c ssh - it tries connect to default 22 port, instead of the ones defines in .ssh/config</p>
0
<pre class="notranslate">The deadline support in lookupIPDeadline is apparently not a real deadline, in the sense that a goroutine is leaking on every lookup that does not return timely. I have a bug report for mgo where someone got to 50k+ goroutines hanging on it: <a href="https://jira.mongodb.org/browse/MGO-41" rel="nofollow">https://jira.mongodb.org/browse/MGO-41</a> I'll have to do something else as I need to support existing releases, but it'd be good to get this fixed so that deadlines are real, at some point.</pre>
<pre class="notranslate">What steps will reproduce the problem? GC=gccgo go build sg.go What is the expected output? makes it to the link step with 6g What do you see instead? compile errors with gccgo: _cgo_defun.c:36:1: error: unknown type name β€˜byte’ _cgo_defun.c:37:1: error: stray β€˜\302’ in program _cgo_defun.c:37:1: error: stray β€˜\267’ in program Which compiler are you using (5g, 6g, 8g, gccgo)? gccgo Which operating system are you using? linux Which revision are you using? (hg identify) gccgo (GCC) 4.7.0 20120302 commit f2b34014d56c08d8fa5d93a2329e92046215de6d git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@184877 138bc75d-0d04-0410-961f-82ee72b054a4 Please provide any additional information below. The problematic lines in _cgo_defun.c: extern byte *sg_lib_version_str; void *Β·_Cvar_sg_lib_version_str = &amp;sg_lib_version_str;</pre> <p dir="auto">Attachments:</p> <ol dir="auto"> <li><a href="https://storage.googleapis.com/go-attachment/3183/0/sg.go" rel="nofollow">sg.go</a> (138 bytes)</li> </ol>
0
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br> for similar or identical enhancement to an existing feature.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br> for existing proposed enhancements.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br> to find out if the if the same enhancement was already implemented in the<br> master branch.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues in this issue<br> (If there are none, check this box anyway).</li> </ul> <h2 dir="auto">Related Issues and Possible Duplicates</h2> <h4 dir="auto">Related Issues</h4> <ul dir="auto"> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="572298081" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/5974" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/5974/hovercard" href="https://github.com/celery/celery/pull/5974">#5974</a></li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li>None</li> </ul> <h1 dir="auto">Brief Summary</h1> <p dir="auto">When it's used asynchronous backend as Redis with pubsub, result of short task (0.1s length, for example) available immediate.</p> <p dir="auto">Once i add gevent, result of the same short task became available after 1s, 10 times slower!</p> <p dir="auto">I will clarify that in both cases I used identical separate worker runed in docker with standard perfork pool.<br> <code class="notranslate">celery -A tasks worker --prefetch-multiplier=1 --concurrency=10</code></p> <p dir="auto">This behavior relate with implementation features of <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="572298081" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/5974" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/5974/hovercard" href="https://github.com/celery/celery/pull/5974">GH-5974</a><br> AsyncResult.get() in a gevent context has at least 1 second latency, because</p> <blockquote> <p dir="auto">I've updated the code to have a specific implementation for gevent and eventlet that will cause wait_for to only return every "timeout" # of seconds, rather than returning immediately</p> </blockquote> <p dir="auto">I would like the task result to be available as soon as possible after the worker has submitted it. I think that <code class="notranslate">wait_for</code> have to return immediate after socket operation <code class="notranslate">result_consumer.drain_events</code> occurs, rather than every "timeout" # of seconds.</p> <p dir="auto">It won't cause overhead, because socket operation still not block event loop, so it let other greenlets executing.</p> <h1 dir="auto">Design</h1> <p dir="auto">Now in <code class="notranslate">wait_for</code> it wait (with timeout 1 second) when <code class="notranslate">greenletDrainer.run</code> will finish, of course it's never finish, so it return after 1 second timeout.<br> If in <code class="notranslate">wait_for</code> wait the end of socket operation <code class="notranslate">_pubsub.get_message</code> instead <code class="notranslate">greenletDrainer.run</code> it will less latency and still not block event loop, so it let other greenlets executing.</p> <p dir="auto">I can prepare PR with changes in backends.asynchronous greenletDrainer, eventletDrainer, geventDrainer, that every time after <code class="notranslate">result_consumer.drain_events</code> (in greenletDrainer run loop) will send notification for wakeup all greenlets waiting results in <code class="notranslate">wait_for</code>.</p> <h2 dir="auto">Architectural Considerations</h2> <p dir="auto">None</p> <h2 dir="auto">Proposed Behavior</h2> <p dir="auto">Asynchronous backends (for example Redis) will be same efficient under gevent context as without it.</p> <h2 dir="auto">Proposed UI/UX</h2> <h2 dir="auto">Diagrams</h2> <p dir="auto">N/A</p> <h2 dir="auto">Alternatives</h2> <p dir="auto">Another workaround may be to pass <code class="notranslate">interval</code> argument into <code class="notranslate">BaseResultConsumer._wait_for_pending</code> for pass it into <code class="notranslate">drain_events_until</code> and than into <code class="notranslate">wait_for</code>.<br> In this case it will be possible define own timeout for <code class="notranslate">wait_for</code> interation when execute AsyncResult.get(interval=0.05).</p> <h2 dir="auto">Howto reproduce</h2> <ol dir="auto"> <li>run docker with redis and rabbitmq</li> </ol> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="docker run -d -p 6379:6379 --name redis redis docker run -d -p 5672:5672 --name rabbit rabbitmq:3"><pre class="notranslate">docker run -d -p 6379:6379 --name redis redis docker run -d -p 5672:5672 --name rabbit rabbitmq:3</pre></div> <ol start="2" dir="auto"> <li></li> </ol> <p dir="auto">create tasks.py with your ip address for broker and backend</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="from celery import Celery import time app = Celery('tasks', broker='pyamqp://guest@192.168.1.40//', backend='redis://192.168.1.40') @app.task(bind=True) def sleep(self, timeout): print(f'task {self.request.id} sleep({timeout}) started') time.sleep(timeout) print(f'task {self.request.id} sleep({timeout}) finished') return f'task {self.request.id} sleep({timeout}) finished'"><pre class="notranslate"><span class="pl-k">from</span> <span class="pl-s1">celery</span> <span class="pl-k">import</span> <span class="pl-v">Celery</span> <span class="pl-k">import</span> <span class="pl-s1">time</span> <span class="pl-s1">app</span> <span class="pl-c1">=</span> <span class="pl-v">Celery</span>(<span class="pl-s">'tasks'</span>, <span class="pl-s1">broker</span><span class="pl-c1">=</span><span class="pl-s">'pyamqp://guest@192.168.1.40//'</span>, <span class="pl-s1">backend</span><span class="pl-c1">=</span><span class="pl-s">'redis://192.168.1.40'</span>) <span class="pl-en">@<span class="pl-s1">app</span>.<span class="pl-en">task</span>(<span class="pl-s1">bind</span><span class="pl-c1">=</span><span class="pl-c1">True</span>)</span> <span class="pl-k">def</span> <span class="pl-en">sleep</span>(<span class="pl-s1">self</span>, <span class="pl-s1">timeout</span>): <span class="pl-en">print</span>(<span class="pl-s">f'task <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">self</span>.<span class="pl-s1">request</span>.<span class="pl-s1">id</span><span class="pl-kos">}</span></span> sleep(<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">timeout</span><span class="pl-kos">}</span></span>) started'</span>) <span class="pl-s1">time</span>.<span class="pl-en">sleep</span>(<span class="pl-s1">timeout</span>) <span class="pl-en">print</span>(<span class="pl-s">f'task <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">self</span>.<span class="pl-s1">request</span>.<span class="pl-s1">id</span><span class="pl-kos">}</span></span> sleep(<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">timeout</span><span class="pl-kos">}</span></span>) finished'</span>) <span class="pl-k">return</span> <span class="pl-s">f'task <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">self</span>.<span class="pl-s1">request</span>.<span class="pl-s1">id</span><span class="pl-kos">}</span></span> sleep(<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">timeout</span><span class="pl-kos">}</span></span>) finished'</span></pre></div> <p dir="auto">create Dockerfile</p> <div class="highlight highlight-source-dockerfile notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="FROM python:3.8 RUN pip install celery redis WORKDIR /root CMD bash"><pre class="notranslate"><span class="pl-k">FROM</span> python:3.8 <span class="pl-k">RUN</span> pip install celery redis <span class="pl-k">WORKDIR</span> /root <span class="pl-k">CMD</span> bash</pre></div> <p dir="auto">build and run worker</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="docker build . -t worker docker run -it --entrypoint celery -v $(pwd):/root worker -A tasks worker --prefetch-multiplier=1 --concurrency=10 --loglevel DEBUG"><pre class="notranslate">docker build <span class="pl-c1">.</span> -t worker docker run -it --entrypoint celery -v <span class="pl-s"><span class="pl-pds">$(</span>pwd<span class="pl-pds">)</span></span>:/root worker -A tasks worker --prefetch-multiplier=1 --concurrency=10 --loglevel DEBUG</pre></div> <p dir="auto">create gevent_example.py</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import gevent from gevent import monkey; monkey.patch_all() from datetime import datetime from tasks import sleep st = datetime.now() def test(timeout): print(f'{datetime.now() - st} sleep.delay({timeout})') a = sleep.delay(timeout) gevent.sleep(0) res = a.get() print(f'{datetime.now()-st} {res}') return str(res) jobs = [gevent.spawn(test, timeout) for timeout in [0.1, 0.1, 0.1, 0.1, 0.1, 0.1]] gevent.sleep(0) gevent.joinall(jobs) print(f'{datetime.now()-st} finish')"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">gevent</span> <span class="pl-k">from</span> <span class="pl-s1">gevent</span> <span class="pl-k">import</span> <span class="pl-s1">monkey</span>; <span class="pl-s1">monkey</span>.<span class="pl-en">patch_all</span>() <span class="pl-k">from</span> <span class="pl-s1">datetime</span> <span class="pl-k">import</span> <span class="pl-s1">datetime</span> <span class="pl-k">from</span> <span class="pl-s1">tasks</span> <span class="pl-k">import</span> <span class="pl-s1">sleep</span> <span class="pl-s1">st</span> <span class="pl-c1">=</span> <span class="pl-s1">datetime</span>.<span class="pl-en">now</span>() <span class="pl-k">def</span> <span class="pl-en">test</span>(<span class="pl-s1">timeout</span>): <span class="pl-en">print</span>(<span class="pl-s">f'<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">datetime</span>.<span class="pl-en">now</span>() <span class="pl-c1">-</span> <span class="pl-s1">st</span><span class="pl-kos">}</span></span> sleep.delay(<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">timeout</span><span class="pl-kos">}</span></span>)'</span>) <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-s1">sleep</span>.<span class="pl-en">delay</span>(<span class="pl-s1">timeout</span>) <span class="pl-s1">gevent</span>.<span class="pl-en">sleep</span>(<span class="pl-c1">0</span>) <span class="pl-s1">res</span> <span class="pl-c1">=</span> <span class="pl-s1">a</span>.<span class="pl-en">get</span>() <span class="pl-en">print</span>(<span class="pl-s">f'<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">datetime</span>.<span class="pl-en">now</span>()<span class="pl-c1">-</span><span class="pl-s1">st</span><span class="pl-kos">}</span></span> <span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">res</span><span class="pl-kos">}</span></span>'</span>) <span class="pl-k">return</span> <span class="pl-en">str</span>(<span class="pl-s1">res</span>) <span class="pl-s1">jobs</span> <span class="pl-c1">=</span> [<span class="pl-s1">gevent</span>.<span class="pl-en">spawn</span>(<span class="pl-s1">test</span>, <span class="pl-s1">timeout</span>) <span class="pl-k">for</span> <span class="pl-s1">timeout</span> <span class="pl-c1">in</span> [<span class="pl-c1">0.1</span>, <span class="pl-c1">0.1</span>, <span class="pl-c1">0.1</span>, <span class="pl-c1">0.1</span>, <span class="pl-c1">0.1</span>, <span class="pl-c1">0.1</span>]] <span class="pl-s1">gevent</span>.<span class="pl-en">sleep</span>(<span class="pl-c1">0</span>) <span class="pl-s1">gevent</span>.<span class="pl-en">joinall</span>(<span class="pl-s1">jobs</span>) <span class="pl-en">print</span>(<span class="pl-s">f'<span class="pl-s1"><span class="pl-kos">{</span><span class="pl-s1">datetime</span>.<span class="pl-en">now</span>()<span class="pl-c1">-</span><span class="pl-s1">st</span><span class="pl-kos">}</span></span> finish'</span>)</pre></div> <p dir="auto">now run gevent_example.py</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="0:00:00.015999 sleep.delay(0.1) 0:00:00.055000 sleep.delay(0.1) 0:00:00.055000 sleep.delay(0.1) 0:00:00.055999 sleep.delay(0.1) 0:00:00.055999 sleep.delay(0.1) 0:00:00.056997 sleep.delay(0.1) 0:00:01.226389 task 3a4074c3-294b-4bfc-9139-8ed8724ef564 sleep(0.1) finished 0:00:01.226389 task e69e3232-f925-4a9e-afbc-13add65e5806 sleep(0.1) finished 0:00:01.226389 task 23c40dd4-6083-4d04-aac9-3c23e8508912 sleep(0.1) finished 0:00:01.241475 task df35ca20-8e7d-47b0-9fe8-13fe6b1a7a65 sleep(0.1) finished 0:00:01.241475 task 76bf5b84-fe4b-4791-9686-2dd3018221b0 sleep(0.1) finished 0:00:01.241475 task 2fc0ae38-2521-4371-8caf-88d36ea53eff sleep(0.1) finished 0:00:01.241475 finish"><pre class="notranslate"><code class="notranslate">0:00:00.015999 sleep.delay(0.1) 0:00:00.055000 sleep.delay(0.1) 0:00:00.055000 sleep.delay(0.1) 0:00:00.055999 sleep.delay(0.1) 0:00:00.055999 sleep.delay(0.1) 0:00:00.056997 sleep.delay(0.1) 0:00:01.226389 task 3a4074c3-294b-4bfc-9139-8ed8724ef564 sleep(0.1) finished 0:00:01.226389 task e69e3232-f925-4a9e-afbc-13add65e5806 sleep(0.1) finished 0:00:01.226389 task 23c40dd4-6083-4d04-aac9-3c23e8508912 sleep(0.1) finished 0:00:01.241475 task df35ca20-8e7d-47b0-9fe8-13fe6b1a7a65 sleep(0.1) finished 0:00:01.241475 task 76bf5b84-fe4b-4791-9686-2dd3018221b0 sleep(0.1) finished 0:00:01.241475 task 2fc0ae38-2521-4371-8caf-88d36ea53eff sleep(0.1) finished 0:00:01.241475 finish </code></pre></div> <p dir="auto">It is seen that first task with length 0.1s has completed only after ~1.23s (0:00:01.226389)<br> But if comment line with monkey patching:</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# from gevent import monkey; monkey.patch_all()"><pre class="notranslate"><span class="pl-c"># from gevent import monkey; monkey.patch_all()</span></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="0:00:00.015999 sleep.delay(0.1) 0:00:00.226367 sleep.delay(0.1) 0:00:00.228763 sleep.delay(0.1) 0:00:00.231746 sleep.delay(0.1) 0:00:00.233513 sleep.delay(0.1) 0:00:00.234733 sleep.delay(0.1) 0:00:00.338647 task 38f76488-d956-4671-be14-e43df9a593aa sleep(0.1) finished 0:00:00.349064 task 5222feed-6a49-4a55-8a47-f516c3642c30 sleep(0.1) finished 0:00:00.354673 task 87529c14-50a2-4ab3-8e3f-b1f9d7241c42 sleep(0.1) finished 0:00:00.361298 task af68327d-6c37-44e4-9ffa-388ef7c8a8e7 sleep(0.1) finished 0:00:00.363136 task 390980d6-e99d-40b4-afa5-241080ade7a4 sleep(0.1) finished 0:00:00.364271 task f9115418-3175-4caa-98d2-2b39be4ace41 sleep(0.1) finished 0:00:00.364271 finish"><pre class="notranslate"><code class="notranslate">0:00:00.015999 sleep.delay(0.1) 0:00:00.226367 sleep.delay(0.1) 0:00:00.228763 sleep.delay(0.1) 0:00:00.231746 sleep.delay(0.1) 0:00:00.233513 sleep.delay(0.1) 0:00:00.234733 sleep.delay(0.1) 0:00:00.338647 task 38f76488-d956-4671-be14-e43df9a593aa sleep(0.1) finished 0:00:00.349064 task 5222feed-6a49-4a55-8a47-f516c3642c30 sleep(0.1) finished 0:00:00.354673 task 87529c14-50a2-4ab3-8e3f-b1f9d7241c42 sleep(0.1) finished 0:00:00.361298 task af68327d-6c37-44e4-9ffa-388ef7c8a8e7 sleep(0.1) finished 0:00:00.363136 task 390980d6-e99d-40b4-afa5-241080ade7a4 sleep(0.1) finished 0:00:00.364271 task f9115418-3175-4caa-98d2-2b39be4ace41 sleep(0.1) finished 0:00:00.364271 finish </code></pre></div> <p dir="auto">It is seen that first task with length 0.1s has completed just after ~0.34s (0:00:00.338647)</p> <p dir="auto">with proposed changes in backends.asynchronous become:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="0:00:00.016001 sleep.delay(0.1) 0:00:00.054004 sleep.delay(0.1) 0:00:00.055003 sleep.delay(0.1) 0:00:00.055003 sleep.delay(0.1) 0:00:00.056002 sleep.delay(0.1) 0:00:00.056002 sleep.delay(0.1) 0:00:00.322748 task 00a71b72-c12d-40fe-b7e1-7526120c25ad sleep(0.1) finished 0:00:00.325041 task fa31d127-35c9-42f8-a5a4-0d1e29172b59 sleep(0.1) finished 0:00:00.346190 task 3ecb8a4e-78e2-471d-b6ac-e84f9b2c44ac sleep(0.1) finished 0:00:00.349314 task eaa27232-37b1-42ed-87f5-e92c19e87aed sleep(0.1) finished 0:00:00.351648 task 48ed06c8-3683-4353-88e1-f35aeb870332 sleep(0.1) finished 0:00:00.353663 task 8e95e4b7-6988-4b00-b93d-d4240eb38645 sleep(0.1) finished 0:00:00.353663 finish"><pre class="notranslate"><code class="notranslate">0:00:00.016001 sleep.delay(0.1) 0:00:00.054004 sleep.delay(0.1) 0:00:00.055003 sleep.delay(0.1) 0:00:00.055003 sleep.delay(0.1) 0:00:00.056002 sleep.delay(0.1) 0:00:00.056002 sleep.delay(0.1) 0:00:00.322748 task 00a71b72-c12d-40fe-b7e1-7526120c25ad sleep(0.1) finished 0:00:00.325041 task fa31d127-35c9-42f8-a5a4-0d1e29172b59 sleep(0.1) finished 0:00:00.346190 task 3ecb8a4e-78e2-471d-b6ac-e84f9b2c44ac sleep(0.1) finished 0:00:00.349314 task eaa27232-37b1-42ed-87f5-e92c19e87aed sleep(0.1) finished 0:00:00.351648 task 48ed06c8-3683-4353-88e1-f35aeb870332 sleep(0.1) finished 0:00:00.353663 task 8e95e4b7-6988-4b00-b93d-d4240eb38645 sleep(0.1) finished 0:00:00.353663 finish </code></pre></div> <p dir="auto">It is seen that first task with length 0.1s has completed just after ~0.32s (0:00:00.322748)</p>
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?utf8=%E2%9C%93&amp;q=is%3Aissue+label%3A%22Category%3A+Documentation%22+">issues list</a><br> for similar or identical bug reports.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Category%3A+Documentation%22">pull requests list</a><br> for existing proposed fixes.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/master">commit log</a><br> to find out if the bug was already fixed in the master branch.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues in this issue<br> (If there are none, check this box anyway).</li> </ul> <h2 dir="auto">Related Issues and Possible Duplicates</h2> <h4 dir="auto">Related Issues</h4> <ul dir="auto"> <li>None</li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li>None</li> </ul> <h1 dir="auto">Description</h1> <p dir="auto">The <a href="https://docs.celeryq.dev/en/stable/userguide/calling.html#serializers" rel="nofollow">serialization docs</a> include a section on msgpack:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/25310870/198069515-4379228e-b743-453f-b1e3-0c4ae4b60da3.png"><img src="https://user-images.githubusercontent.com/25310870/198069515-4379228e-b743-453f-b1e3-0c4ae4b60da3.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Specifically I'm referring to</p> <blockquote> <p dir="auto">It’s very young however, and support should be considered experimental at this point.</p> </blockquote> <p dir="auto">It seems this sentence was added 12 years back in <a href="https://github.com/celery/celery/commit/c9a0fe455593da228d80ebedb3273656408b66f9">this commit</a>, which seems to have been around version 2.2.0.</p> <h1 dir="auto">Suggestions</h1> <p dir="auto">I think it'd be good to revise the docs. I don't think this is accurate any longer. Do you agree? <g-emoji class="g-emoji" alias="slightly_smiling_face" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f642.png">πŸ™‚</g-emoji></p>
0
<h2 dir="auto">Environment info</h2> <ul dir="auto"> <li><code class="notranslate">transformers</code> version: Installed from git</li> </ul> <h2 dir="auto">Issue</h2> <p dir="auto">The <code class="notranslate">len(AutoTokenizer.from_pretrained("t5-base"))</code> is <code class="notranslate">32100</code> but the <code class="notranslate">T5ForConditionalGeneration.from_pretrained("t5-base").config.vocab_size</code> is <code class="notranslate">32128</code>. Seems to be a similar issue to that of : <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="531034498" data-permission-text="Title is private" data-url="https://github.com/huggingface/transformers/issues/2020" data-hovercard-type="issue" data-hovercard-url="/huggingface/transformers/issues/2020/hovercard" href="https://github.com/huggingface/transformers/issues/2020">#2020</a></p>
<h1 dir="auto"><g-emoji class="g-emoji" alias="question" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2753.png">❓</g-emoji> Questions &amp; Help</h1> <p dir="auto">Pretrained <code class="notranslate">T5Tokenizer </code> has vocab size of 32100 (32000 tokens plus 100 extra_ids) but the shared embedding layer of <code class="notranslate">T5ForConditionalGeneration</code> has size of (32128, 768). I checked the google-research implementation of T5 and also found that they have vocab size of 32100 also.</p> <p dir="auto">Where did the extra 28 embeddings come from and how can we map it to the tokenizer?</p> <h2 dir="auto">To reproduce</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="from transformers import ( T5Tokenizer, T5ForConditionalGeneration, ) tokenizer_pretrained = T5Tokenizer.from_pretrained('t5-base') model_pretrained = T5ForConditionalGeneration.from_pretrained('t5-base') len(tokenizer_pretrained.get_vocab()), model_pretrained.state_dict()['shared.weight'].shape"><pre class="notranslate"><code class="notranslate">from transformers import ( T5Tokenizer, T5ForConditionalGeneration, ) tokenizer_pretrained = T5Tokenizer.from_pretrained('t5-base') model_pretrained = T5ForConditionalGeneration.from_pretrained('t5-base') len(tokenizer_pretrained.get_vocab()), model_pretrained.state_dict()['shared.weight'].shape </code></pre></div> <p dir="auto">Output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="(32100, torch.Size([32128, 768]))"><pre class="notranslate"><code class="notranslate">(32100, torch.Size([32128, 768])) </code></pre></div>
1
<p dir="auto">Is there any way to prohibit transpilation of "async" and "await" to the "_awaiter"? The transpiled code breaks the functionality of graphql. Seems like only babel transpiles this correctly.</p> <p dir="auto">I would like to maintain the async and await keywords.</p> <p dir="auto">Can it be done? Thanks.</p>
<p dir="auto">I'm using babel for transpiling like:<br> <code class="notranslate">TSX -&gt; ES6 -&gt; Babel + webpack -&gt; ES5</code><br> and I set <code class="notranslate">noEmitHelpers</code> to <code class="notranslate">true</code> in <code class="notranslate">tsconfig.json</code>, because babel handle it with single global helper instead of multiple helpers in each file but it doesn't work with Acyncs and Decorators and after compile i'm getting<br> <code class="notranslate">__decorate(...)</code><br> and</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="__awaiter(this, void 0, Promise, function* () { ... });"><pre class="notranslate"><code class="notranslate">__awaiter(this, void 0, Promise, function* () { ... }); </code></pre></div> <p dir="auto">How can I prevent tsc to compile Asyncs and Decorators and let babel handle them?</p>
1
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 1909 PowerToys version: 19.0 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run's shortcuts canβ€˜t wake up "><pre class="notranslate"><code class="notranslate">Windows build number: 1909 PowerToys version: 19.0 PowerToy module for which you are reporting the bug (if applicable): PowerToys Run's shortcuts canβ€˜t wake up </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">When I use this feature, it doesn't respond at all. Even if you change the shortcut key, it doesn't work.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">it could be used as on otherβ€˜s pc</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">it doesn't respond</p> <h1 dir="auto">Screenshots</h1>
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18363.900 PowerToys version: 0.19.1 PowerToy module: PowerToys Run"><pre class="notranslate"><code class="notranslate">Windows build number: 10.0.18363.900 PowerToys version: 0.19.1 PowerToy module: PowerToys Run </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <ul dir="auto"> <li>Run PowerToys as administrator.</li> <li>Focus on non-elevated application</li> <li>Press the shortcut keys for PowerToys Run</li> <li>Nothing will happen except opening a window menu (screenshot below).</li> </ul> <h1 dir="auto">Expected behavior</h1> <ul dir="auto"> <li>When running PowerToys normally, PowerToys Run shortcut should work only for applications that run normally too.</li> <li>PowerToys Run shortcut should work over all applications (that running either as administrator or not) when running PowerToys as administrator.</li> </ul> <h1 dir="auto">Actual behavior</h1> <ul dir="auto"> <li>When running PowerToys as administrator, the shortcut works only for application that runs as administrator.</li> </ul> <h1 dir="auto">Screenshots</h1> <p dir="auto">Screenshot from VoIP application "Mumble". I launched it normally (and PowerToys as administrator), tried to use the shortcut, it showed this menu (default shortcut of Windows).</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9256823/87327834-46d0fe00-c53d-11ea-9a16-b8b4f64c95b3.png"><img src="https://user-images.githubusercontent.com/9256823/87327834-46d0fe00-c53d-11ea-9a16-b8b4f64c95b3.png" alt="image" style="max-width: 100%;"></a></p>
0
<h3 dir="auto">How are you using Babel?</h3> <p dir="auto">@babel/eslint-parser</p> <h3 dir="auto">Input code</h3> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import * as t from '@babel/types'; import { parse } from '@babel/parser'; import generator from '@babel/generator'; const code = ` import React from &quot;react&quot;; // 1111 class App extends React.Component {} `; describe('babel', () =&gt; { it('clone and generate', () =&gt; { expect( generator( t.cloneNode( parse(code, { sourceType: 'module', }), true, false, ), { retainLines: true, }, ).code, ).toEqual(code); }); });"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-c1">*</span> <span class="pl-k">as</span> <span class="pl-s1">t</span> <span class="pl-k">from</span> <span class="pl-s">'@babel/types'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-kos">{</span> <span class="pl-s1">parse</span> <span class="pl-kos">}</span> <span class="pl-k">from</span> <span class="pl-s">'@babel/parser'</span><span class="pl-kos">;</span> <span class="pl-k">import</span> <span class="pl-s1">generator</span> <span class="pl-k">from</span> <span class="pl-s">'@babel/generator'</span><span class="pl-kos">;</span> <span class="pl-k">const</span> <span class="pl-s1">code</span> <span class="pl-c1">=</span> <span class="pl-s">`</span> <span class="pl-s">import React from "react";</span> <span class="pl-s">// 1111</span> <span class="pl-s">class App extends React.Component {}</span> <span class="pl-s">`</span><span class="pl-kos">;</span> <span class="pl-en">describe</span><span class="pl-kos">(</span><span class="pl-s">'babel'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-en">it</span><span class="pl-kos">(</span><span class="pl-s">'clone and generate'</span><span class="pl-kos">,</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-c1">=&gt;</span> <span class="pl-kos">{</span> <span class="pl-en">expect</span><span class="pl-kos">(</span> <span class="pl-en">generator</span><span class="pl-kos">(</span> <span class="pl-s1">t</span><span class="pl-kos">.</span><span class="pl-en">cloneNode</span><span class="pl-kos">(</span> <span class="pl-en">parse</span><span class="pl-kos">(</span><span class="pl-s1">code</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">sourceType</span>: <span class="pl-s">'module'</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-c1">false</span><span class="pl-kos">,</span> <span class="pl-kos">)</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">retainLines</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-c1">code</span><span class="pl-kos">,</span> <span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">toEqual</span><span class="pl-kos">(</span><span class="pl-s1">code</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <h3 dir="auto">Current and expected behavior</h3> <p dir="auto">current code: with duplicate comments</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import React from &quot;react&quot;; // 1111 // 1111 class App extends React.Component {}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-v">React</span> <span class="pl-k">from</span> <span class="pl-s">"react"</span><span class="pl-kos">;</span> <span class="pl-c">// 1111</span> <span class="pl-c">// 1111</span> <span class="pl-k">class</span> <span class="pl-v">App</span> <span class="pl-k">extends</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-c1">Component</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div> <p dir="auto">expected code</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import React from &quot;react&quot;; // 1111 class App extends React.Component {}"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-v">React</span> <span class="pl-k">from</span> <span class="pl-s">"react"</span><span class="pl-kos">;</span> <span class="pl-c">// 1111</span> <span class="pl-k">class</span> <span class="pl-v">App</span> <span class="pl-k">extends</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-c1">Component</span> <span class="pl-kos">{</span><span class="pl-kos">}</span></pre></div> <h3 dir="auto">Environment</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" &quot;dependencies&quot;: { &quot;@babel/generator&quot;: &quot;^7.17.10&quot;, &quot;@babel/parser&quot;: &quot;^7.17.10&quot;, &quot;@babel/traverse&quot;: &quot;^7.17.10&quot;, &quot;@babel/types&quot;: &quot;^7.17.10&quot;, &quot;@types/babel__generator&quot;: &quot;^7.6.4&quot;, &quot;@types/babel__traverse&quot;: &quot;^7.17.1&quot;, },"><pre class="notranslate"> <span class="pl-ent">"dependencies"</span>: { <span class="pl-ent">"@babel/generator"</span>: <span class="pl-s"><span class="pl-pds">"</span>^7.17.10<span class="pl-pds">"</span></span>, <span class="pl-ent">"@babel/parser"</span>: <span class="pl-s"><span class="pl-pds">"</span>^7.17.10<span class="pl-pds">"</span></span>, <span class="pl-ent">"@babel/traverse"</span>: <span class="pl-s"><span class="pl-pds">"</span>^7.17.10<span class="pl-pds">"</span></span>, <span class="pl-ent">"@babel/types"</span>: <span class="pl-s"><span class="pl-pds">"</span>^7.17.10<span class="pl-pds">"</span></span>, <span class="pl-ent">"@types/babel__generator"</span>: <span class="pl-s"><span class="pl-pds">"</span>^7.6.4<span class="pl-pds">"</span></span>, <span class="pl-ent">"@types/babel__traverse"</span>: <span class="pl-s"><span class="pl-pds">"</span>^7.17.1<span class="pl-pds">"</span></span>, },</pre></div> <ul dir="auto"> <li>node: v16.14.2</li> <li>os: macos</li> </ul> <h3 dir="auto">Possible solution</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Additional context</h3> <p dir="auto"><em>No response</em></p>
<blockquote> <p dir="auto">Issue originally made by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/welefen/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/welefen">@welefen</a></p> </blockquote> <h3 dir="auto">Options</h3> <p dir="auto">Babel 5:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var data = babel.transform(content, { filename: 'file', //retainLines: retainLines === undefined ? true : retainLines, stage: 0, modules: 'common', loose: true, optional: 'runtime' });"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">data</span> <span class="pl-c1">=</span> <span class="pl-s1">babel</span><span class="pl-kos">.</span><span class="pl-en">transform</span><span class="pl-kos">(</span><span class="pl-s1">content</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">filename</span>: <span class="pl-s">'file'</span><span class="pl-kos">,</span> <span class="pl-c">//retainLines: retainLines === undefined ? true : retainLines,</span> <span class="pl-c1">stage</span>: <span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c1">modules</span>: <span class="pl-s">'common'</span><span class="pl-kos">,</span> <span class="pl-c1">loose</span>: <span class="pl-c1">true</span><span class="pl-kos">,</span> <span class="pl-c1">optional</span>: <span class="pl-s">'runtime'</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">Babel 6:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var data = require(&quot;babel-core&quot;).transform(content, { presets: [&quot;es2015-loose&quot;, &quot;stage-1&quot;], plugins: ['transform-runtime'], });"><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">data</span> <span class="pl-c1">=</span> <span class="pl-en">require</span><span class="pl-kos">(</span><span class="pl-s">"babel-core"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">transform</span><span class="pl-kos">(</span><span class="pl-s1">content</span><span class="pl-kos">,</span> <span class="pl-kos">{</span> <span class="pl-c1">presets</span>: <span class="pl-kos">[</span><span class="pl-s">"es2015-loose"</span><span class="pl-kos">,</span> <span class="pl-s">"stage-1"</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-c1">plugins</span>: <span class="pl-kos">[</span><span class="pl-s">'transform-runtime'</span><span class="pl-kos">]</span><span class="pl-kos">,</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <h3 dir="auto">Input code</h3> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="var a = class { async test(){ await Promise.resolve(1); } } "><pre class="notranslate"><span class="pl-k">var</span> <span class="pl-s1">a</span> <span class="pl-c1">=</span> <span class="pl-k">class</span> <span class="pl-kos">{</span> <span class="pl-k">async</span> <span class="pl-en">test</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">{</span> <span class="pl-k">await</span> <span class="pl-v">Promise</span><span class="pl-kos">.</span><span class="pl-en">resolve</span><span class="pl-kos">(</span><span class="pl-c1">1</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <h3 dir="auto">Description</h3> <p dir="auto">use Babel 5 Compiled: 171ms<br> use Babel 6 Compiled: 6245ms</p>
0
<h2 dir="auto"><g-emoji class="g-emoji" alias="information_source" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2139.png">β„Ή</g-emoji> Computer information</h2> <ul dir="auto"> <li>PowerToys version: 0.21.1</li> <li>PowerToy Utility: FancyZones</li> <li>Running PowerToys as Admin: No</li> <li>Windows build number: [run "winver"] 18363.1082; 19041.548</li> </ul> <h2 dir="auto"><g-emoji class="g-emoji" alias="memo" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4dd.png">πŸ“</g-emoji> Provide detailed reproduction steps (if any)</h2> <ol dir="auto"> <li>Enable TaskView, and make several Virtual Desktops (--);<br> Move Windows' TaskBar to vertical left (Right-click on Taskbar; clear "Lock taskbar"; drag taskbar to the left edge);</li> <li>Define two equal, non-overlapping areas, occupying the whole bottom half of the screen, next to each other;</li> <li>Switch to eg second virtual desktop (--); open eg File Explorer, snap it into position - snaps OK;</li> <li>Move to first virttial desktop; open eg File Explorer. When snapping, the two snap areas are moved all the way to tle left, ignoring vertical taskbar, and leaving empty area on the right edge.</li> </ol> <h3 dir="auto"><g-emoji class="g-emoji" alias="heavy_check_mark" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/2714.png">βœ”οΈ</g-emoji> Expected result</h3> <p dir="auto">First virtual desktop' snapping should be no different than others;</p> <h3 dir="auto"><g-emoji class="g-emoji" alias="x" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/274c.png">❌</g-emoji> Actual result</h3> <p dir="auto">First virtual desktop' snap areas are shifted under the taskbar.</p> <h2 dir="auto"><g-emoji class="g-emoji" alias="camera" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f4f7.png">πŸ“·</g-emoji> Screenshots</h2> <p dir="auto"><em>Are there any useful screenshots? WinKey+Shift+S and then just paste them directly into the form</em><br> Not too easy to provide screenshots with this feature, might try with a virtual machine setup.</p>
<p dir="auto">If I have vertical taskbar setup, fancy zones sometimes gets the edge of the screen wrong so that my zones don't take up the full screen. Even if I edit the zone after changing taskbar status.</p> <p dir="auto">Thanks folks. Chris</p>
1
<h3 dir="auto">Apache Airflow version</h3> <p dir="auto">2.3.2 (latest released)</p> <h3 dir="auto">What happened</h3> <p dir="auto">The scheduler crashes with the following exception. Once the scheduler crashes restarts will cause it to immediately crash again. To get scheduler back working. All dags must be paused and all tasks that are running need to have it's state changed to up for retry. This is something we just started noticing after switching to the CeleryKubernetesExecutor.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[2022-06-16 20:12:04,535] {scheduler_job.py:1350} WARNING - Failing (3) jobs without heartbeat after 2022-06-16 20:07:04.512590+00:00 [2022-06-16 20:12:04,535] {scheduler_job.py:1358} ERROR - Detected zombie job: {'full_filepath': '/airflow-efs/dags/Scanner.py', 'msg': 'Detected &lt;TaskInstance: lmnop-domain-scanner.Macadocious manual__2022-06-16T02:27:36.281445+00:00 [running]&gt; as zombie', 'simple_task_instance': &lt;airflow.models.taskinstance.SimpleTaskInstance object at 0x7f96de2fc890&gt;, 'is_failure_callback': True} [2022-06-16 20:12:04,537] {scheduler_job.py:756} ERROR - Exception when executing SchedulerJob._run_scheduler_loop Traceback (most recent call last): File &quot;/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py&quot;, line 739, in _execute self._run_scheduler_loop() File &quot;/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py&quot;, line 839, in _run_scheduler_loop next_event = timers.run(blocking=False) File &quot;/usr/local/lib/python3.7/sched.py&quot;, line 151, in run action(*argument, **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/utils/event_scheduler.py&quot;, line 36, in repeat action(*args, **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/utils/session.py&quot;, line 71, in wrapper return func(*args, session=session, **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py&quot;, line 1359, in _find_zombies self.executor.send_callback(request) File &quot;/pyroot/lib/python3.7/site-packages/airflow/executors/celery_kubernetes_executor.py&quot;, line 218, in send_callback self.callback_sink.send(request) File &quot;/pyroot/lib/python3.7/site-packages/airflow/utils/session.py&quot;, line 71, in wrapper return func(*args, session=session, **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/callbacks/database_callback_sink.py&quot;, line 34, in send db_callback = DbCallbackRequest(callback=callback, priority_weight=10) File &quot;&lt;string&gt;&quot;, line 4, in __init__ File &quot;/pyroot/lib/python3.7/site-packages/sqlalchemy/orm/state.py&quot;, line 437, in _initialize_instance manager.dispatch.init_failure(self, args, kwargs) File &quot;/pyroot/lib/python3.7/site-packages/sqlalchemy/util/langhelpers.py&quot;, line 72, in __exit__ with_traceback=exc_tb, File &quot;/pyroot/lib/python3.7/site-packages/sqlalchemy/util/compat.py&quot;, line 211, in raise_ raise exception File &quot;/pyroot/lib/python3.7/site-packages/sqlalchemy/orm/state.py&quot;, line 434, in _initialize_instance return manager.original_init(*mixed[1:], **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/models/db_callback_request.py&quot;, line 44, in __init__ self.callback_data = callback.to_json() File &quot;/pyroot/lib/python3.7/site-packages/airflow/callbacks/callback_requests.py&quot;, line 79, in to_json return json.dumps(dict_obj) File &quot;/usr/local/lib/python3.7/json/__init__.py&quot;, line 231, in dumps return _default_encoder.encode(obj) File &quot;/usr/local/lib/python3.7/json/encoder.py&quot;, line 199, in encode chunks = self.iterencode(o, _one_shot=True) File &quot;/usr/local/lib/python3.7/json/encoder.py&quot;, line 257, in iterencode return _iterencode(o, 0) File &quot;/usr/local/lib/python3.7/json/encoder.py&quot;, line 179, in default raise TypeError(f'Object of type {o.__class__.__name__} ' TypeError: Object of type datetime is not JSON serializable [2022-06-16 20:12:04,573] {kubernetes_executor.py:813} INFO - Shutting down Kubernetes executor [2022-06-16 20:12:04,574] {kubernetes_executor.py:773} WARNING - Executor shutting down, will NOT run task=(TaskInstanceKey(dag_id='lmnop-processor', task_id='launch-xyz-pod', run_id='manual__2022-06-16T19:53:04.707461+00:00', try_number=1, map_index=-1), ['airflow', 'tasks', 'run', 'lmnop-processor', 'launch-xyz-pod', 'manual__2022-06-16T19:53:04.707461+00:00', '--local', '--subdir', 'DAGS_FOLDER/lmnop.py'], None, None) [2022-06-16 20:12:04,574] {kubernetes_executor.py:773} WARNING - Executor shutting down, will NOT run task=(TaskInstanceKey(dag_id='lmnop-processor', task_id='launch-xyz-pod', run_id='manual__2022-06-16T19:53:04.831929+00:00', try_number=1, map_index=-1), ['airflow', 'tasks', 'run', 'lmnop-processor', 'launch-xyz-pod', 'manual__2022-06-16T19:53:04.831929+00:00', '--local', '--subdir', 'DAGS_FOLDER/lmnop.py'], None, None) [2022-06-16 20:12:04,601] {scheduler_job.py:768} INFO - Exited execute loop Traceback (most recent call last): File &quot;/pyroot/bin/airflow&quot;, line 8, in &lt;module&gt; sys.exit(main()) File &quot;/pyroot/lib/python3.7/site-packages/airflow/__main__.py&quot;, line 38, in main args.func(args) File &quot;/pyroot/lib/python3.7/site-packages/airflow/cli/cli_parser.py&quot;, line 51, in command return func(*args, **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/utils/cli.py&quot;, line 99, in wrapper return f(*args, **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/cli/commands/scheduler_command.py&quot;, line 75, in scheduler _run_scheduler_job(args=args) File &quot;/pyroot/lib/python3.7/site-packages/airflow/cli/commands/scheduler_command.py&quot;, line 46, in _run_scheduler_job job.run() File &quot;/pyroot/lib/python3.7/site-packages/airflow/jobs/base_job.py&quot;, line 244, in run self._execute() File &quot;/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py&quot;, line 739, in _execute self._run_scheduler_loop() File &quot;/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py&quot;, line 839, in _run_scheduler_loop next_event = timers.run(blocking=False) File &quot;/usr/local/lib/python3.7/sched.py&quot;, line 151, in run action(*argument, **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/utils/event_scheduler.py&quot;, line 36, in repeat action(*args, **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/utils/session.py&quot;, line 71, in wrapper return func(*args, session=session, **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py&quot;, line 1359, in _find_zombies self.executor.send_callback(request) File &quot;/pyroot/lib/python3.7/site-packages/airflow/executors/celery_kubernetes_executor.py&quot;, line 218, in send_callback self.callback_sink.send(request) File &quot;/pyroot/lib/python3.7/site-packages/airflow/utils/session.py&quot;, line 71, in wrapper return func(*args, session=session, **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/callbacks/database_callback_sink.py&quot;, line 34, in send db_callback = DbCallbackRequest(callback=callback, priority_weight=10) File &quot;&lt;string&gt;&quot;, line 4, in __init__ File &quot;/pyroot/lib/python3.7/site-packages/sqlalchemy/orm/state.py&quot;, line 437, in _initialize_instance manager.dispatch.init_failure(self, args, kwargs) File &quot;/pyroot/lib/python3.7/site-packages/sqlalchemy/util/langhelpers.py&quot;, line 72, in __exit__ with_traceback=exc_tb, File &quot;/pyroot/lib/python3.7/site-packages/sqlalchemy/util/compat.py&quot;, line 211, in raise_ raise exception File &quot;/pyroot/lib/python3.7/site-packages/sqlalchemy/orm/state.py&quot;, line 434, in _initialize_instance return manager.original_init(*mixed[1:], **kwargs) File &quot;/pyroot/lib/python3.7/site-packages/airflow/models/db_callback_request.py&quot;, line 44, in __init__ self.callback_data = callback.to_json() File &quot;/pyroot/lib/python3.7/site-packages/airflow/callbacks/callback_requests.py&quot;, line 79, in to_json return json.dumps(dict_obj) File &quot;/usr/local/lib/python3.7/json/__init__.py&quot;, line 231, in dumps return _default_encoder.encode(obj) File &quot;/usr/local/lib/python3.7/json/encoder.py&quot;, line 199, in encode chunks = self.iterencode(o, _one_shot=True) File &quot;/usr/local/lib/python3.7/json/encoder.py&quot;, line 257, in iterencode return _iterencode(o, 0) File &quot;/usr/local/lib/python3.7/json/encoder.py&quot;, line 179, in default raise TypeError(f'Object of type {o.__class__.__name__} ' TypeError: Object of type datetime is not JSON serializable"><pre class="notranslate"><code class="notranslate">[2022-06-16 20:12:04,535] {scheduler_job.py:1350} WARNING - Failing (3) jobs without heartbeat after 2022-06-16 20:07:04.512590+00:00 [2022-06-16 20:12:04,535] {scheduler_job.py:1358} ERROR - Detected zombie job: {'full_filepath': '/airflow-efs/dags/Scanner.py', 'msg': 'Detected &lt;TaskInstance: lmnop-domain-scanner.Macadocious manual__2022-06-16T02:27:36.281445+00:00 [running]&gt; as zombie', 'simple_task_instance': &lt;airflow.models.taskinstance.SimpleTaskInstance object at 0x7f96de2fc890&gt;, 'is_failure_callback': True} [2022-06-16 20:12:04,537] {scheduler_job.py:756} ERROR - Exception when executing SchedulerJob._run_scheduler_loop Traceback (most recent call last): File "/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py", line 739, in _execute self._run_scheduler_loop() File "/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py", line 839, in _run_scheduler_loop next_event = timers.run(blocking=False) File "/usr/local/lib/python3.7/sched.py", line 151, in run action(*argument, **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/utils/event_scheduler.py", line 36, in repeat action(*args, **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/utils/session.py", line 71, in wrapper return func(*args, session=session, **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py", line 1359, in _find_zombies self.executor.send_callback(request) File "/pyroot/lib/python3.7/site-packages/airflow/executors/celery_kubernetes_executor.py", line 218, in send_callback self.callback_sink.send(request) File "/pyroot/lib/python3.7/site-packages/airflow/utils/session.py", line 71, in wrapper return func(*args, session=session, **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/callbacks/database_callback_sink.py", line 34, in send db_callback = DbCallbackRequest(callback=callback, priority_weight=10) File "&lt;string&gt;", line 4, in __init__ File "/pyroot/lib/python3.7/site-packages/sqlalchemy/orm/state.py", line 437, in _initialize_instance manager.dispatch.init_failure(self, args, kwargs) File "/pyroot/lib/python3.7/site-packages/sqlalchemy/util/langhelpers.py", line 72, in __exit__ with_traceback=exc_tb, File "/pyroot/lib/python3.7/site-packages/sqlalchemy/util/compat.py", line 211, in raise_ raise exception File "/pyroot/lib/python3.7/site-packages/sqlalchemy/orm/state.py", line 434, in _initialize_instance return manager.original_init(*mixed[1:], **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/models/db_callback_request.py", line 44, in __init__ self.callback_data = callback.to_json() File "/pyroot/lib/python3.7/site-packages/airflow/callbacks/callback_requests.py", line 79, in to_json return json.dumps(dict_obj) File "/usr/local/lib/python3.7/json/__init__.py", line 231, in dumps return _default_encoder.encode(obj) File "/usr/local/lib/python3.7/json/encoder.py", line 199, in encode chunks = self.iterencode(o, _one_shot=True) File "/usr/local/lib/python3.7/json/encoder.py", line 257, in iterencode return _iterencode(o, 0) File "/usr/local/lib/python3.7/json/encoder.py", line 179, in default raise TypeError(f'Object of type {o.__class__.__name__} ' TypeError: Object of type datetime is not JSON serializable [2022-06-16 20:12:04,573] {kubernetes_executor.py:813} INFO - Shutting down Kubernetes executor [2022-06-16 20:12:04,574] {kubernetes_executor.py:773} WARNING - Executor shutting down, will NOT run task=(TaskInstanceKey(dag_id='lmnop-processor', task_id='launch-xyz-pod', run_id='manual__2022-06-16T19:53:04.707461+00:00', try_number=1, map_index=-1), ['airflow', 'tasks', 'run', 'lmnop-processor', 'launch-xyz-pod', 'manual__2022-06-16T19:53:04.707461+00:00', '--local', '--subdir', 'DAGS_FOLDER/lmnop.py'], None, None) [2022-06-16 20:12:04,574] {kubernetes_executor.py:773} WARNING - Executor shutting down, will NOT run task=(TaskInstanceKey(dag_id='lmnop-processor', task_id='launch-xyz-pod', run_id='manual__2022-06-16T19:53:04.831929+00:00', try_number=1, map_index=-1), ['airflow', 'tasks', 'run', 'lmnop-processor', 'launch-xyz-pod', 'manual__2022-06-16T19:53:04.831929+00:00', '--local', '--subdir', 'DAGS_FOLDER/lmnop.py'], None, None) [2022-06-16 20:12:04,601] {scheduler_job.py:768} INFO - Exited execute loop Traceback (most recent call last): File "/pyroot/bin/airflow", line 8, in &lt;module&gt; sys.exit(main()) File "/pyroot/lib/python3.7/site-packages/airflow/__main__.py", line 38, in main args.func(args) File "/pyroot/lib/python3.7/site-packages/airflow/cli/cli_parser.py", line 51, in command return func(*args, **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/utils/cli.py", line 99, in wrapper return f(*args, **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/cli/commands/scheduler_command.py", line 75, in scheduler _run_scheduler_job(args=args) File "/pyroot/lib/python3.7/site-packages/airflow/cli/commands/scheduler_command.py", line 46, in _run_scheduler_job job.run() File "/pyroot/lib/python3.7/site-packages/airflow/jobs/base_job.py", line 244, in run self._execute() File "/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py", line 739, in _execute self._run_scheduler_loop() File "/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py", line 839, in _run_scheduler_loop next_event = timers.run(blocking=False) File "/usr/local/lib/python3.7/sched.py", line 151, in run action(*argument, **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/utils/event_scheduler.py", line 36, in repeat action(*args, **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/utils/session.py", line 71, in wrapper return func(*args, session=session, **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/jobs/scheduler_job.py", line 1359, in _find_zombies self.executor.send_callback(request) File "/pyroot/lib/python3.7/site-packages/airflow/executors/celery_kubernetes_executor.py", line 218, in send_callback self.callback_sink.send(request) File "/pyroot/lib/python3.7/site-packages/airflow/utils/session.py", line 71, in wrapper return func(*args, session=session, **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/callbacks/database_callback_sink.py", line 34, in send db_callback = DbCallbackRequest(callback=callback, priority_weight=10) File "&lt;string&gt;", line 4, in __init__ File "/pyroot/lib/python3.7/site-packages/sqlalchemy/orm/state.py", line 437, in _initialize_instance manager.dispatch.init_failure(self, args, kwargs) File "/pyroot/lib/python3.7/site-packages/sqlalchemy/util/langhelpers.py", line 72, in __exit__ with_traceback=exc_tb, File "/pyroot/lib/python3.7/site-packages/sqlalchemy/util/compat.py", line 211, in raise_ raise exception File "/pyroot/lib/python3.7/site-packages/sqlalchemy/orm/state.py", line 434, in _initialize_instance return manager.original_init(*mixed[1:], **kwargs) File "/pyroot/lib/python3.7/site-packages/airflow/models/db_callback_request.py", line 44, in __init__ self.callback_data = callback.to_json() File "/pyroot/lib/python3.7/site-packages/airflow/callbacks/callback_requests.py", line 79, in to_json return json.dumps(dict_obj) File "/usr/local/lib/python3.7/json/__init__.py", line 231, in dumps return _default_encoder.encode(obj) File "/usr/local/lib/python3.7/json/encoder.py", line 199, in encode chunks = self.iterencode(o, _one_shot=True) File "/usr/local/lib/python3.7/json/encoder.py", line 257, in iterencode return _iterencode(o, 0) File "/usr/local/lib/python3.7/json/encoder.py", line 179, in default raise TypeError(f'Object of type {o.__class__.__name__} ' TypeError: Object of type datetime is not JSON serializable </code></pre></div> <h3 dir="auto">What you think should happen instead</h3> <p dir="auto">The error itself seems like a minor issue and should not happen and easy to fix. But what seems like a bigger issue is how the scheduler was not able to recover on it's own and was stuck in an endless restart loop.</p> <h3 dir="auto">How to reproduce</h3> <p dir="auto">I'm not sure of the most simple step by step way to reproduce. But the conditions of my airflow workflow was about 4 active dags chugging through with about 50 max active runs and 50 concurrent each, with one dag set with 150 max active runs and 50 concurrent. ( not really that much )</p> <p dir="auto">The dag with the 150 max active runs is running the kubernetesExecutor create a pod in the local kubernetes environment. this I think is the reason we're seeing this issue all of a sudden.</p> <p dir="auto">Hopefully this helps in potentially reproducing it.</p> <h3 dir="auto">Operating System</h3> <p dir="auto">Debian GNU/Linux 10 (buster)</p> <h3 dir="auto">Versions of Apache Airflow Providers</h3> <p dir="auto">apache-airflow-providers-amazon==3.4.0<br> apache-airflow-providers-celery==2.1.4<br> apache-airflow-providers-cncf-kubernetes==4.0.2<br> apache-airflow-providers-ftp==2.1.2<br> apache-airflow-providers-http==2.1.2<br> apache-airflow-providers-imap==2.2.3<br> apache-airflow-providers-postgres==4.1.0<br> apache-airflow-providers-redis==2.0.4<br> apache-airflow-providers-sqlite==2.1.3</p> <h3 dir="auto">Deployment</h3> <p dir="auto">Other Docker-based deployment</p> <h3 dir="auto">Deployment details</h3> <p dir="auto">we create our own airflow base images using the instructions provided on your site, here is a snippet of the code we use to install</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="RUN pip3 install &quot;apache-airflow[statsd,aws,kubernetes,celery,redis,postgres,sentry]==${AIRFLOW_VERSION}&quot; --constraint &quot;https://raw.githubusercontent.com/apache/airflow/constraints-$AIRFLOW_VERSION/constraints-$PYTHON_VERSION.txt&quot; "><pre class="notranslate"><code class="notranslate">RUN pip3 install "apache-airflow[statsd,aws,kubernetes,celery,redis,postgres,sentry]==${AIRFLOW_VERSION}" --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-$AIRFLOW_VERSION/constraints-$PYTHON_VERSION.txt" </code></pre></div> <p dir="auto">We then use this docker image for all of our airflow workers, scheduler, dagprocessor and airflow web<br> This is managed through a custom helm script. Also we have incorporated the use of pgbouncer to manage db connections similar to the publicly available helm charts</p> <h3 dir="auto">Anything else</h3> <p dir="auto">The problem seems to occur quite frequently. It makes the system completely unusable.</p> <h3 dir="auto">Are you willing to submit PR?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Yes I am willing to submit a PR!</li> </ul> <h3 dir="auto">Code of Conduct</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li> </ul>
<p dir="auto">There is a new design of system tests that was introduced by the <a href="https://cwiki.apache.org/confluence/display/AIRFLOW/AIP-47+New+design+of+Airflow+System+Tests" rel="nofollow">AIP-47</a>.</p> <p dir="auto">All current example dags need to be migrated and converted into system tests, so they can be run in the CI process automatically before releases.</p> <p dir="auto">This is an aggregated issue for all example DAGs related to <code class="notranslate">Amazon</code> provider. It is created to track progress of their migration.</p> <p dir="auto">List of paths to example DAGs:</p> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_s3_bucket_tagging.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_emr_eks.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_athena.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_sqs.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_eks_with_nodegroups.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_dms_full_load_task.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_emr.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_sagemaker.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_eks_with_nodegroup_in_one_step.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_dynamodb_to_s3.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_s3_to_sftp.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_local_to_s3.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_s3_bucket.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_google_api_to_s3_transfer_basic.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_redshift_cluster.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_lambda.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_s3_to_redshift.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_imap_attachment_to_s3.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_ecs_fargate.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_rds.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_eks_with_fargate_in_one_step.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_batch.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_datasync_2.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_dynamodb_to_s3_segmented.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_ecs_ec2.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_eks_with_fargate_profile.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_redshift_to_s3.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_redshift_sql.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_sns.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_google_api_to_s3_transfer_advanced.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_datasync_1.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_glacier_to_gcs.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_redshift_data_execute_sql.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_eks_templated.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_sftp_to_s3.py</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> airflow/providers/amazon/aws/example_dags/example_salesforce_to_s3.py</li> </ul>
0
<p dir="auto">i use tensoflow model to predict with java api,why it is more slowly than python or c++ api?</p>
<p dir="auto"><em>Please make sure that this is a bug. As per our <a href="https://github.com/tensorflow/tensorflow/blob/master/ISSUES.md">GitHub Policy</a>, we only address code/doc bugs, performance issues, feature requests and build/installation issues on GitHub. tag:bug_template</em></p> <p dir="auto"><strong>System information</strong></p> <ul dir="auto"> <li>Have I written custom code (as opposed to using a stock example script provided in TensorFlow):</li> </ul> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="//create session, this pb come from python ConfigProto config=ConfigProto.newBuilder() .setAllowSoftPlacement(true) .setLogDevicePlacement(false) .clearLogDevicePlacement() //.setGpuOptions(GPUOptions.newBuilder().setAllowGrowth(true)) //.setInterOpParallelismThreads(1) .build(); sess=new Session( graph, config.toByteArray() );"><pre class="notranslate"><span class="pl-c">//create session, this pb come from python</span> <span class="pl-smi">ConfigProto</span> <span class="pl-s1">config</span>=<span class="pl-smi">ConfigProto</span>.<span class="pl-en">newBuilder</span>() .<span class="pl-en">setAllowSoftPlacement</span>(<span class="pl-c1">true</span>) .<span class="pl-en">setLogDevicePlacement</span>(<span class="pl-c1">false</span>) .<span class="pl-en">clearLogDevicePlacement</span>() <span class="pl-c">//.setGpuOptions(GPUOptions.newBuilder().setAllowGrowth(true))</span> <span class="pl-c">//.setInterOpParallelismThreads(1)</span> .<span class="pl-en">build</span>(); <span class="pl-s1">sess</span>=<span class="pl-k">new</span> <span class="pl-smi">Session</span>( <span class="pl-s1">graph</span>, <span class="pl-s1">config</span>.<span class="pl-en">toByteArray</span>() );</pre></div> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" AnjosLog log=new AnjosLog(); log.begin(); log.begin2Series(&quot;create data&quot;); float[][][] X=new float[1][this.audio_len][this.audio_feat_len]; X[0]=data; log.stop2Series(); log.begin2Series(&quot;create tensor&quot;); Tensor x= Tensor.create(X); log.stop2Series(); log.begin2Series(&quot;use model&quot;); Tensor y = sess.runner().feed(input_var, x).fetch(label_var).run().get(0); log.stop2Series(); log.begin2Series(&quot;take result&quot;); float[][][] result = new float[ (int)y.shape()[0] ][ (int)y.shape()[1] ][ (int)y.shape()[2] ]; y.copyTo(result); log.stop2Series(); log.stop();"><pre class="notranslate"> <span class="pl-smi">AnjosLog</span> <span class="pl-s1">log</span>=<span class="pl-k">new</span> <span class="pl-smi">AnjosLog</span>(); <span class="pl-s1">log</span>.<span class="pl-en">begin</span>(); <span class="pl-s1">log</span>.<span class="pl-en">begin2Series</span>(<span class="pl-s">"create data"</span>); <span class="pl-smi">float</span>[][][] <span class="pl-s1">X</span>=<span class="pl-k">new</span> <span class="pl-smi">float</span>[<span class="pl-c1">1</span>][<span class="pl-smi">this</span>.<span class="pl-s1">audio_len</span>][<span class="pl-smi">this</span>.<span class="pl-s1">audio_feat_len</span>]; <span class="pl-s1">X</span>[<span class="pl-c1">0</span>]=<span class="pl-s1">data</span>; <span class="pl-s1">log</span>.<span class="pl-en">stop2Series</span>(); <span class="pl-s1">log</span>.<span class="pl-en">begin2Series</span>(<span class="pl-s">"create tensor"</span>); <span class="pl-smi">Tensor</span> <span class="pl-s1">x</span>= <span class="pl-smi">Tensor</span>.<span class="pl-en">create</span>(<span class="pl-s1">X</span>); <span class="pl-s1">log</span>.<span class="pl-en">stop2Series</span>(); <span class="pl-s1">log</span>.<span class="pl-en">begin2Series</span>(<span class="pl-s">"use model"</span>); <span class="pl-smi">Tensor</span> <span class="pl-s1">y</span> = <span class="pl-s1">sess</span>.<span class="pl-en">runner</span>().<span class="pl-en">feed</span>(<span class="pl-s1">input_var</span>, <span class="pl-s1">x</span>).<span class="pl-en">fetch</span>(<span class="pl-s1">label_var</span>).<span class="pl-en">run</span>().<span class="pl-en">get</span>(<span class="pl-c1">0</span>); <span class="pl-s1">log</span>.<span class="pl-en">stop2Series</span>(); <span class="pl-s1">log</span>.<span class="pl-en">begin2Series</span>(<span class="pl-s">"take result"</span>); <span class="pl-smi">float</span>[][][] <span class="pl-s1">result</span> = <span class="pl-k">new</span> <span class="pl-smi">float</span>[ (<span class="pl-smi">int</span>)<span class="pl-s1">y</span>.<span class="pl-en">shape</span>()[<span class="pl-c1">0</span>] ][ (<span class="pl-smi">int</span>)<span class="pl-s1">y</span>.<span class="pl-en">shape</span>()[<span class="pl-c1">1</span>] ][ (<span class="pl-smi">int</span>)<span class="pl-s1">y</span>.<span class="pl-en">shape</span>()[<span class="pl-c1">2</span>] ]; <span class="pl-s1">y</span>.<span class="pl-en">copyTo</span>(<span class="pl-s1">result</span>); <span class="pl-s1">log</span>.<span class="pl-en">stop2Series</span>(); <span class="pl-s1">log</span>.<span class="pl-en">stop</span>();</pre></div> <ul dir="auto"> <li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): win7 CPU</li> <li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device:</li> <li>TensorFlow installed from (source or binary):</li> <li>TensorFlow version (use command below):1.8.0 java</li> <li>Python version: 3.5.6</li> <li>Bazel version (if compiling from source): none</li> <li>GCC/Compiler version (if compiling from source): none</li> <li>CUDA/cuDNN version: none</li> <li>GPU model and memory: none</li> </ul> <p dir="auto">You can collect some of this information using our environment capture <a href="https://github.com/tensorflow/tensorflow/tree/master/tools/tf_env_collect.sh">script</a><br> You can also obtain the TensorFlow version with<br> python -c "import tensorflow as tf; print(tf.GIT_VERSION, tf.VERSION)"</p> <p dir="auto"><strong>Describe the current behavior</strong></p> <p dir="auto">I use python3.5 predict the same one sample speed:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="series startγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 2019-04-20 13:06:18 series endγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 2019-04-20 13:06:18 total timeγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.24s 0.00min 2019-04-20 13:06:18"><pre class="notranslate"><code class="notranslate">series startγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 2019-04-20 13:06:18 series endγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 2019-04-20 13:06:18 total timeγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.24s 0.00min 2019-04-20 13:06:18 </code></pre></div> <p dir="auto">I use java1.8 predict the same one sample speed:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="start timeγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€2019-04-20 12:57:43 924 series startγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ create data 2019-04-20 12:57:43 925 series endγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.00s 0.00min series startγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ create tensor 2019-04-20 12:57:43 927 series endγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.09s 0.00min series startγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ use model 2019-04-20 12:57:44 015 series endγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.69s 0.01min series startγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ take result 2019-04-20 12:57:44 710 series endγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.03s 0.00min end timeγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 2019-04-20 12:57:44 738 total timeγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.81s 0.01min"><pre class="notranslate"><code class="notranslate">start timeγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€2019-04-20 12:57:43 924 series startγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ create data 2019-04-20 12:57:43 925 series endγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.00s 0.00min series startγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ create tensor 2019-04-20 12:57:43 927 series endγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.09s 0.00min series startγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ use model 2019-04-20 12:57:44 015 series endγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.69s 0.01min series startγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ take result 2019-04-20 12:57:44 710 series endγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.03s 0.00min end timeγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 2019-04-20 12:57:44 738 total timeγ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€γ€€ 0.81s 0.01min </code></pre></div> <p dir="auto"><strong>Describe the expected behavior</strong><br> <strong>I understand that java should be faster than Python. But not like this.</strong></p> <p dir="auto"><strong>Code to reproduce the issue</strong><br> Provide a reproducible test case that is the bare minimum necessary to generate the problem.</p> <p dir="auto"><strong>Other info / logs</strong><br> Include any logs or source code that would be helpful to diagnose the problem. If including tracebacks, please include the full traceback. Large logs and files should be attached.</p>
1
<h2 dir="auto">Guidelines</h2> <p dir="auto">Please note that GitHub issues are only meant for bug reports/feature requests.<br> If you have questions on how to use Neo4j, please ask on <a href="https://stackoverflow.com/questions/tagged/neo4j" rel="nofollow">StackOverflow</a> instead of creating an issue here.</p> <p dir="auto">Before creating a new issue, please check whether someone else has raised the same issue. You may be able to add context to that issue instead of duplicating the report. However, each issue should also only be focussed on a <em>single</em> problem, so do not describe new problems within an existing thread - these are very hard to track and manage, and your problem may be ignored. Finally, do not append comments to closed issues; if the same problem re-occurs, open a new issue, and include a link to the old one.</p> <p dir="auto">To help us understand your issue, please specify important details, primarily:</p> <ul dir="auto"> <li>Neo4j version: X.Y.Z</li> <li>Operating system: (for example Windows 95/Ubuntu 16.04)</li> <li>API/Driver: (for example Cypher/Java API/Python driver vX.Y.Z)</li> <li><strong>Steps to reproduce</strong></li> <li>Expected behavior</li> <li>Actual behavior</li> </ul> <p dir="auto">Additionally, include (as appropriate) log-files, stacktraces, and other debug output.</p> <h2 dir="auto">Example bug report</h2> <p dir="auto">I discovered that when I mount <code class="notranslate">data/</code> to a volume on my host, and then stop the container, the <code class="notranslate">write.lock</code> is not removed as well as a number of other files not being cleaned up properly.</p> <p dir="auto"><strong>Neo4j Version:</strong> 3.0M03<br> <strong>Operating System:</strong> Ubuntu 15.10<br> <strong>API:</strong> Docker</p> <h3 dir="auto">Steps to reproduce</h3> <ol dir="auto"> <li>Pull the image: <code class="notranslate">docker pull neo4j/neo4j:3.0.0-M03</code></li> <li>Create a directory on the host that will be a mount for the data: <code class="notranslate">mkdir /home/neo4j-data</code></li> <li>Start a new container that mounts to this directory: <code class="notranslate">docker run -d --name neo4j-test -p 7474:7474 -v /home/neo4j-data:/data neo4j/neo4j:3.0.0-M03</code></li> <li>Navigate to the <code class="notranslate">write.lock</code> file located in the directory: <code class="notranslate">/data/databases/graph.db/schema/label/lucene/labelStore/1/</code></li> <li>Stop the container: <code class="notranslate">docker stop neo4j-test</code></li> </ol> <h3 dir="auto">Expected behavior</h3> <p dir="auto"><code class="notranslate">write.lock</code> should be removed now.</p> <h3 dir="auto">Actual behavior</h3> <p dir="auto"><code class="notranslate">write.lock</code> is still present and preventing access by other programs.</p>
<p dir="auto">Creating unique constraint and getting the following result:</p> <p dir="auto">No element found in org.neo4j.helpers.collection.Iterables$FilterIterable$FilterIterator@450b0e07</p> <p dir="auto">Occurred while creating a typical constraint:<br> CREATE CONSTRAINT ON (n:Movie) ASSERT n.id IS UNIQUE;</p> <p dir="auto">Database has been upgraded from 1.9--&gt;2.0--&gt;2.1.3--&gt;2.1.4</p>
0
<p dir="auto">I try to compile this program in rustc but an internal compile error occurred that:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="task &lt;unnamed&gt; failed at 'assertion failed: is_utf8(v)', C:\bot\slave\dist2-win\build\src\libstd\str.rs:1032 error: internal compiler error: unexpected failure note: the compiler hit an unexpected failure path. this is a bug note: try running with RUST_LOG=rustc=1 to get further details and report the results to github.com/mozilla/rust/issues task &lt;unnamed&gt; failed at 'explicit failure', c:\bot\slave\dist2-win\build\src\librustc\rustc.rs:391"><pre class="notranslate"><code class="notranslate">task &lt;unnamed&gt; failed at 'assertion failed: is_utf8(v)', C:\bot\slave\dist2-win\build\src\libstd\str.rs:1032 error: internal compiler error: unexpected failure note: the compiler hit an unexpected failure path. this is a bug note: try running with RUST_LOG=rustc=1 to get further details and report the results to github.com/mozilla/rust/issues task &lt;unnamed&gt; failed at 'explicit failure', c:\bot\slave\dist2-win\build\src\librustc\rustc.rs:391 </code></pre></div> <p dir="auto">this is my program:</p> <div class="highlight highlight-source-rust notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="extern mod extra; use extra::json::ToJson; fn main () { let l = ~[1, 2, 3, 4]; println(l.iter().filter(|&amp;x| *x &gt; 2).map(|&amp;x| x).to_owned_vec().to_json().to_str()); }"><pre class="notranslate"><span class="pl-k">extern</span> <span class="pl-k">mod</span> extra<span class="pl-kos">;</span> <span class="pl-k">use</span> extra<span class="pl-kos">::</span>json<span class="pl-kos">::</span><span class="pl-v">ToJson</span><span class="pl-kos">;</span> <span class="pl-k">fn</span> <span class="pl-en">main</span> <span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">let</span> l = ~<span class="pl-kos">[</span><span class="pl-c1">1</span><span class="pl-kos">,</span> <span class="pl-c1">2</span><span class="pl-kos">,</span> <span class="pl-c1">3</span><span class="pl-kos">,</span> <span class="pl-c1">4</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-en">println</span><span class="pl-kos">(</span>l<span class="pl-kos">.</span><span class="pl-en">iter</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">filter</span><span class="pl-kos">(</span>|<span class="pl-c1">&amp;</span>x| <span class="pl-c1">*</span>x &gt; <span class="pl-c1">2</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">map</span><span class="pl-kos">(</span>|<span class="pl-c1">&amp;</span>x| x<span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">to_owned_vec</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">to_json</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">to_str</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">This error occurred both in Windows 8.1 64bit and windows XP 32bit.</p>
<p dir="auto">In many of the core and std libraries, the iface usage is flaky and ends up duplicating a lot of code.<br> Many ifaces only implement some small arbitrary subset of the full set of functions, for example in str and vec. It makes code look awkward when you have something like <code class="notranslate">str::replace(foo, "x", "y").split_char('z')</code>.</p> <p dir="auto">Additionally, all of the docs are duplicated for the iface functions and most of them are just inlines of calling something on self.</p> <p dir="auto">Can all of the code be moved to just use iface impls instead of regular functions? Or something else?</p>
0
<p dir="auto"><strong>Migrated issue, originally created by nyov (<a href="https://github.com/nyov">@nyov</a>)</strong></p> <p dir="auto">Would it be possible to have a parameter to <code class="notranslate">sqlalchemy.sql.expression.select()</code> to avoid the "Ambiguous column name" exception for simple joins?<br> I don't care for the <code class="notranslate">use_labels</code> here as I then have to rewrite all the keys again after.</p> <p dir="auto">If possible, I'd like a parameter to select that would then simply drop the column name on the right side of the join (where the value is the same for such a join) from the select column list. As in "select all but joined_on_column duplicate".</p> <p dir="auto">This'd be a nicer, quicker way than writing out all the many column names manually or working with an alias for a column I still don't need as it's just a duplicate.</p>
<p dir="auto"><strong>Migrated issue, originally created by Marcin Lulek (<a href="https://github.com/ergo">@ergo</a>)</strong></p> <p dir="auto">adding this code to create_connect_args() corrects this issue</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" opts['raise_on_warnings']('raise_on_warnings') = opts.get('raise_on_warnings', True) util.coerce_kw_type(opts, 'raise_on_warnings', bool)"><pre class="notranslate"><code class="notranslate"> opts['raise_on_warnings']('raise_on_warnings') = opts.get('raise_on_warnings', True) util.coerce_kw_type(opts, 'raise_on_warnings', bool) </code></pre></div>
0
<p dir="auto">[Enter steps to reproduce below:]</p> <ol dir="auto"> <li>...</li> <li>...</li> </ol> <p dir="auto"><strong>Atom Version</strong>: 0.198.0<br> <strong>System</strong>: Unknown Windows Version<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: Cannot find module './context-menu'<br> Error: Cannot find module './context-menu'<br> at Function.Module._resolveFilename (module.js:328:15)<br> at Function.Module._load (module.js:270:25)<br> at Module.require (module.js:357:17)<br> at require (module.js:376:17)<br> at BrowserWindow. (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\src\browser\atom-window.js:152:27)<br> at emitOne (events.js:77:13)<br> at BrowserWindow.emit (events.js:166:7)<br> at callFunction (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br> at EventEmitter. (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br> at emitMany (events.js:108:13)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\src\window-event-handler.js:149:33) at HTMLDocument.handler (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) "><pre class="notranslate"><code class="notranslate">At C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\src\window-event-handler.js:149:33) at HTMLDocument.handler (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\Pierre\AppData\Local\atom\app-0.198.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) </code></pre></div> <h3 dir="auto">Commands</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -1:42.1.0 pane:split-right (atom-text-editor.editor.is-focused) -0:54.5.0 find-and-replace:show (atom-text-editor.editor.is-focused) 3x -0:52.2.0 core:confirm (atom-text-editor.editor.mini.is-focused) 9x -0:46.9.0 core:backspace (atom-text-editor.editor.mini.is-focused) -0:44.9.0 core:confirm (atom-text-editor.editor.mini.is-focused) -0:42.7.0 find-and-replace:show-previous (atom-text-editor.editor.mini.is-focused) -0:42.2.0 core:confirm (atom-text-editor.editor.mini.is-focused) -0:34.2.0 core:copy (atom-text-editor.editor.is-focused) -0:30.6.0 core:paste (atom-text-editor.editor.is-focused) -0:28.1.0 core:backspace (atom-text-editor.editor.is-focused) -0:27.9.0 core:save (atom-text-editor.editor.is-focused) -0:23.7.0 core:select-left (atom-text-editor.editor.is-focused) -0:22.9.0 core:save (atom-text-editor.editor.is-focused) -0:12 emmet:insert-formatted-line-break-only (atom-text-editor.editor.is-focused) -0:12 editor:newline (atom-text-editor.editor.is-focused) -0:08.6.0 core:save (atom-text-editor.editor.is-focused)"><pre class="notranslate"><code class="notranslate"> -1:42.1.0 pane:split-right (atom-text-editor.editor.is-focused) -0:54.5.0 find-and-replace:show (atom-text-editor.editor.is-focused) 3x -0:52.2.0 core:confirm (atom-text-editor.editor.mini.is-focused) 9x -0:46.9.0 core:backspace (atom-text-editor.editor.mini.is-focused) -0:44.9.0 core:confirm (atom-text-editor.editor.mini.is-focused) -0:42.7.0 find-and-replace:show-previous (atom-text-editor.editor.mini.is-focused) -0:42.2.0 core:confirm (atom-text-editor.editor.mini.is-focused) -0:34.2.0 core:copy (atom-text-editor.editor.is-focused) -0:30.6.0 core:paste (atom-text-editor.editor.is-focused) -0:28.1.0 core:backspace (atom-text-editor.editor.is-focused) -0:27.9.0 core:save (atom-text-editor.editor.is-focused) -0:23.7.0 core:select-left (atom-text-editor.editor.is-focused) -0:22.9.0 core:save (atom-text-editor.editor.is-focused) -0:12 emmet:insert-formatted-line-break-only (atom-text-editor.editor.is-focused) -0:12 editor:newline (atom-text-editor.editor.is-focused) -0:08.6.0 core:save (atom-text-editor.editor.is-focused) </code></pre></div> <h3 dir="auto">Config</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;core&quot;: { &quot;themes&quot;: [ &quot;seti-ui&quot;, &quot;twilight-syntax&quot; ], &quot;autoHideMenuBar&quot;: true }, &quot;editor&quot;: { &quot;invisibles&quot;: {}, &quot;fontSize&quot;: 13, &quot;showIndentGuide&quot;: true, &quot;softWrap&quot;: true, &quot;tabLength&quot;: 3, &quot;scrollPastEnd&quot;: true } }"><pre class="notranslate">{ <span class="pl-ent">"core"</span>: { <span class="pl-ent">"themes"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>seti-ui<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>twilight-syntax<span class="pl-pds">"</span></span> ], <span class="pl-ent">"autoHideMenuBar"</span>: <span class="pl-c1">true</span> }, <span class="pl-ent">"editor"</span>: { <span class="pl-ent">"invisibles"</span>: {}, <span class="pl-ent">"fontSize"</span>: <span class="pl-c1">13</span>, <span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"softWrap"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"tabLength"</span>: <span class="pl-c1">3</span>, <span class="pl-ent">"scrollPastEnd"</span>: <span class="pl-c1">true</span> } }</pre></div> <h3 dir="auto">Installed Packages</h3> <div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User atom-alignment, v0.12.1 atom-color-highlight, v3.0.9 autocomplete-plus, v2.15.2 emmet, v2.3.9 file-icons, v1.5.5 linter, v0.12.2 minimap, v4.8.0 seti-ui, v0.7.1 Sublime-Style-Column-Selection, v1.2.3 twilight-syntax, v0.7.0 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> atom<span class="pl-k">-</span>alignment, v0.<span class="pl-ii">12</span>.<span class="pl-ii">1</span> atom<span class="pl-k">-</span>color<span class="pl-k">-</span>highlight, v3.<span class="pl-ii">0</span>.<span class="pl-ii">9</span> autocomplete<span class="pl-k">-</span>plus, v2.<span class="pl-ii">15</span>.<span class="pl-ii">2</span> emmet, v2.<span class="pl-ii">3</span>.<span class="pl-ii">9</span> file<span class="pl-k">-</span>icons, v1.<span class="pl-ii">5</span>.<span class="pl-ii">5</span> linter, v0.<span class="pl-ii">12</span>.<span class="pl-ii">2</span> minimap, v4.<span class="pl-ii">8</span>.<span class="pl-ii">0</span> seti<span class="pl-k">-</span>ui, v0.<span class="pl-ii">7</span>.<span class="pl-ii">1</span> Sublime<span class="pl-k">-</span>Style<span class="pl-k">-</span>Column<span class="pl-k">-</span>Selection, v1.<span class="pl-ii">2</span>.<span class="pl-ii">3</span> twilight<span class="pl-k">-</span>syntax, v0.<span class="pl-ii">7</span>.<span class="pl-ii">0</span> <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
<p dir="auto">I right-clicked on a folder in the tree view</p> <p dir="auto"><strong>Atom Version</strong>: 0.194.0<br> <strong>System</strong>: Windows 7 Entreprise<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: Cannot find module './context-menu'<br> Error: Cannot find module './context-menu'<br> at Function.Module._resolveFilename (module.js:328:15)<br> at Function.Module._load (module.js:270:25)<br> at Module.require (module.js:357:17)<br> at require (module.js:376:17)<br> at BrowserWindow. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)<br> at emitOne (events.js:77:13)<br> at BrowserWindow.emit (events.js:166:7)<br> at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br> at EventEmitter. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br> at emitMany (events.js:108:13)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33) at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) "><pre class="notranslate"><code class="notranslate">At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33) at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) </code></pre></div> <h3 dir="auto">Commands</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused) 2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor) -3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -2:47.4.0 editor:newline (atom-text-editor.editor.is-focused) -2:38.2.0 core:cut (atom-text-editor.editor) -2:36.5.0 core:paste (atom-text-editor.editor.is-focused) -2:26.6.0 core:save (atom-text-editor.editor.is-focused) -2:20.6.0 core:move-down (atom-text-editor.editor) -2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor) -2:15.8.0 core:save (atom-text-editor.editor) -2:08.7.0 core:copy (atom-text-editor.editor.is-focused) -2:01.2.0 core:paste (atom-text-editor.editor.is-focused) -1:59.7.0 core:save (atom-text-editor.editor.is-focused) -1:52.2.0 core:paste (atom-text-editor.editor.is-focused) -1:51.6.0 core:save (atom-text-editor.editor.is-focused) -1:30.6.0 core:backspace (atom-text-editor.editor)"><pre class="notranslate"><code class="notranslate"> -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused) 2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor) -3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -2:47.4.0 editor:newline (atom-text-editor.editor.is-focused) -2:38.2.0 core:cut (atom-text-editor.editor) -2:36.5.0 core:paste (atom-text-editor.editor.is-focused) -2:26.6.0 core:save (atom-text-editor.editor.is-focused) -2:20.6.0 core:move-down (atom-text-editor.editor) -2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor) -2:15.8.0 core:save (atom-text-editor.editor) -2:08.7.0 core:copy (atom-text-editor.editor.is-focused) -2:01.2.0 core:paste (atom-text-editor.editor.is-focused) -1:59.7.0 core:save (atom-text-editor.editor.is-focused) -1:52.2.0 core:paste (atom-text-editor.editor.is-focused) -1:51.6.0 core:save (atom-text-editor.editor.is-focused) -1:30.6.0 core:backspace (atom-text-editor.editor) </code></pre></div> <h3 dir="auto">Config</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;core&quot;: { &quot;ignoredNames&quot;: [ &quot;node_modules&quot; ], &quot;themes&quot;: [ &quot;atom-dark-ui&quot;, &quot;seti-syntax&quot; ], &quot;disabledPackages&quot;: [ &quot;Tern&quot; ], &quot;projectHome&quot;: &quot;Y:\\app-tfoumax&quot; }, &quot;editor&quot;: { &quot;invisibles&quot;: {}, &quot;softWrap&quot;: true, &quot;showIndentGuide&quot;: true } }"><pre class="notranslate">{ <span class="pl-ent">"core"</span>: { <span class="pl-ent">"ignoredNames"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>node_modules<span class="pl-pds">"</span></span> ], <span class="pl-ent">"themes"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>atom-dark-ui<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>seti-syntax<span class="pl-pds">"</span></span> ], <span class="pl-ent">"disabledPackages"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>Tern<span class="pl-pds">"</span></span> ], <span class="pl-ent">"projectHome"</span>: <span class="pl-s"><span class="pl-pds">"</span>Y:<span class="pl-cce">\\</span>app-tfoumax<span class="pl-pds">"</span></span> }, <span class="pl-ent">"editor"</span>: { <span class="pl-ent">"invisibles"</span>: {}, <span class="pl-ent">"softWrap"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span> } }</pre></div> <h3 dir="auto">Installed Packages</h3> <div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User autocomplete-plus, v2.12.0 autocomplete-snippets, v1.2.0 javascript-snippets, v1.0.0 jshint, v1.3.5 language-ejs, v0.1.0 linter, v0.12.1 pretty-json, v0.3.3 save-session, v0.14.0 Search, v0.4.0 seti-syntax, v0.4.0 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> autocomplete<span class="pl-k">-</span>plus, v2.<span class="pl-ii">12</span>.<span class="pl-ii">0</span> autocomplete<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">2</span>.<span class="pl-ii">0</span> javascript<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">0</span>.<span class="pl-ii">0</span> jshint, v1.<span class="pl-ii">3</span>.<span class="pl-ii">5</span> language<span class="pl-k">-</span>ejs, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span> linter, v0.<span class="pl-ii">12</span>.<span class="pl-ii">1</span> pretty<span class="pl-k">-</span>json, v0.<span class="pl-ii">3</span>.<span class="pl-ii">3</span> save<span class="pl-k">-</span>session, v0.<span class="pl-ii">14</span>.<span class="pl-ii">0</span> Search, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span> seti<span class="pl-k">-</span>syntax, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span> <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
1
<p dir="auto">I realize that <a href="https://scikit-learn.org/stable/modules/generated/sklearn.inspection.permutation_importance.html" rel="nofollow">permutation_importance</a> is a better and less biased measure than Impurity-based feature importance but it still has it uses. As illustrated <a href="https://scikit-learn.org/stable/auto_examples/inspection/plot_permutation_importance_multicollinear.html" rel="nofollow">here </a> multi-collinearity can be an issue. Comparing permutation and impurity based importances is a good way to understand multicollinear issues and your true feature importance.</p> <p dir="auto">Can a method like in GradientBoostingRegressor be added? This <a href="https://scikit-learn.org/stable/modules/generated/sklearn.ensemble.GradientBoostingRegressor.html#sklearn.ensemble.GradientBoostingRegressor.feature_importances_" rel="nofollow">method</a>.</p>
<h4 dir="auto">Description</h4> <p dir="auto">numpydoc appends a randomized number at the end of references link tags.<br> Related to issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="244170163" data-permission-text="Title is private" data-url="https://github.com/scikit-learn/scikit-learn/issues/9417" data-hovercard-type="issue" data-hovercard-url="/scikit-learn/scikit-learn/issues/9417/hovercard" href="https://github.com/scikit-learn/scikit-learn/issues/9417">#9417</a> and pull request <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="244242847" data-permission-text="Title is private" data-url="https://github.com/scikit-learn/scikit-learn/issues/9420" data-hovercard-type="pull_request" data-hovercard-url="/scikit-learn/scikit-learn/pull/9420/hovercard" href="https://github.com/scikit-learn/scikit-learn/pull/9420">#9420</a>.</p> <p dir="auto">The issue is, a random number is generated even after making all duplicate tags unique.</p> <p dir="auto">Check out this <a href="https://12484-843222-gh.circle-artifacts.com/0/home/ubuntu/scikit-learn/doc/_build/html/stable/modules/generated/sklearn.covariance.MinCovDet.html" rel="nofollow">link</a> for Rouseeuw tags.</p>
0
<p dir="auto">This is a library-wide problem. When the following is used:</p> <div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="try { something(); } catch (e) { throw new SomethingError(e); }"><pre class="notranslate"><span class="pl-k">try</span> { <span class="pl-en">something</span>(); } <span class="pl-k">catch</span> (e) { <span class="pl-k">throw</span> <span class="pl-k">new</span> <span class="pl-c1">SomethingError</span>(e); }</pre></div> <p dir="auto">The stack trace loses all context of what in <code class="notranslate">something()</code> caused the original exception. It makes debugging a lot more difficult.</p> <p dir="auto">++ <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/yjbanov/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/yjbanov">@yjbanov</a>, <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/mhevery/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/mhevery">@mhevery</a></p>
<div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="try { ... } catch (e) { console.log(e, e.stack); throw e; }"><pre class="notranslate"><span class="pl-k">try</span> <span class="pl-kos">{</span> ... <span class="pl-kos">}</span> <span class="pl-k">catch</span> <span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s1">e</span><span class="pl-kos">,</span> <span class="pl-s1">e</span><span class="pl-kos">.</span><span class="pl-c1">stack</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-k">throw</span> <span class="pl-s1">e</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">should transpile to</p> <div class="highlight highlight-source-dart notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="try { ... } catch (e, e_stack) { console.log(e, e_stack); rethrow; }"><pre class="notranslate"><span class="pl-k">try</span> { ... } <span class="pl-k">catch</span> (e, e_stack) { console.<span class="pl-en">log</span>(e, e_stack); <span class="pl-k">rethrow</span>; }</pre></div> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> detect <code class="notranslate">e.stack</code> replace with <code class="notranslate">e_stack</code> + add <code class="notranslate">e_stack</code> to <code class="notranslate">catch</code></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> detect rethrow <code class="notranslate">throw e</code> replace with <code class="notranslate">rethrow</code>;</li> </ul>
1
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">I tried to run the flutter app from cmd using <code class="notranslate">flutter create repo</code><br> and then <code class="notranslate">cd repo</code><br> <code class="notranslate">flutter run</code></p> <p dir="auto">After running this command the following errors are shown:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" * Error running Gradle: Exit code 1 from: D:\projectFlutter\repo\android\gradlew.bat app:properties: Project evaluation failed including an error in afterEvaluate {}. Run with --stacktrace for details of the afterEvaluate {} error. FAILURE: Build failed with an exception. * Where: Build file 'D:\projectFlutter\repo\android\app\build.gradle' line: 25 * What went wrong: A problem occurred evaluating project ':app'. &gt; Could not resolve all files for configuration 'classpath'. &gt; Could not find lint-gradle-api.jar (com.android.tools.lint:lint-gradle-api:26.1.2). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/lint/lint-gradle-api/26.1.2/lint-gradle-api-26.1.2.jar * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 1s"><pre class="notranslate"><code class="notranslate"> * Error running Gradle: Exit code 1 from: D:\projectFlutter\repo\android\gradlew.bat app:properties: Project evaluation failed including an error in afterEvaluate {}. Run with --stacktrace for details of the afterEvaluate {} error. FAILURE: Build failed with an exception. * Where: Build file 'D:\projectFlutter\repo\android\app\build.gradle' line: 25 * What went wrong: A problem occurred evaluating project ':app'. &gt; Could not resolve all files for configuration 'classpath'. &gt; Could not find lint-gradle-api.jar (com.android.tools.lint:lint-gradle-api:26.1.2). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/lint/lint-gradle-api/26.1.2/lint-gradle-api-26.1.2.jar * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 1s </code></pre></div> <h2 dir="auto">Logs</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="D:\projectFlutter\repo&gt;flutter run --verbose [ +56 ms] executing: [C:\Users\Processing\Desktop\flutter\] git rev-parse --abbrev-ref --symbolic @{u} [ +318 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ +5 ms] origin/beta [ +5 ms] executing: [C:\Users\Processing\Desktop\flutter\] git rev-parse --abbrev-ref HEAD [ +289 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ +2 ms] beta [ +5 ms] executing: [C:\Users\Processing\Desktop\flutter\] git ls-remote --get-url origin [ +218 ms] Exit code 0 from: git ls-remote --get-url origin [ +2 ms] https://github.com/flutter/flutter.git [ +5 ms] executing: [C:\Users\Processing\Desktop\flutter\] git log -n 1 --pretty=format:%H [ +280 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ +2 ms] f37c235c32fc15babe6dc7b7bc2ee4387e5ecf92 [ +5 ms] executing: [C:\Users\Processing\Desktop\flutter\] git log -n 1 --pretty=format:%ar [ +302 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ +2 ms] 5 weeks ago [ +6 ms] executing: [C:\Users\Processing\Desktop\flutter\] git describe --match v*.*.* --first-parent --long --tags [ +282 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ +2 ms] v0.9.4-0-gf37c235c3 [ +363 ms] executing: C:\Users\Processing\AppData\Local\Android\sdk\platform-tools\adb devices -l [ +27 ms] Exit code 0 from: C:\Users\Processing\AppData\Local\Android\sdk\platform-tools\adb devices -l [ ] List of devices attached ZL33B28246 device product:nicklaus_f model:Moto_E__4__Plus device:nicklaus_f transport_id:1 [ +400 ms] C:\Users\Processing\AppData\Local\Android\sdk\platform-tools\adb -s ZL33B28246 shell getprop [ +143 ms] ro.hardware = mt6735 [ +2 ms] ro.build.characteristics = default [ +728 ms] Launching lib/main.dart on Moto E 4 Plus in debug mode... [ +38 ms] Initializing gradle... [ +2 ms] Using gradle from D:\projectFlutter\repo\android\gradlew.bat. [ +106 ms] executing: D:\projectFlutter\repo\android\gradlew.bat -v [ +757 ms] ------------------------------------------------------------ Gradle 4.4 ------------------------------------------------------------ Build time: 2017-12-06 09:05:06 UTC Revision: cf7821a6f79f8e2a598df21780e3ff7ce8db2b82 Groovy: 2.4.12 Ant: Apache Ant(TM) version 1.9.9 compiled on February 2 2017 JVM: 1.8.0_152-release (JetBrains s.r.o 25.152-b06) OS: Windows 10 10.0 amd64 [ +3 ms] Initializing gradle... (completed) [ +1 ms] Resolving dependencies... [ +3 ms] executing: [D:\projectFlutter\repo\android\] D:\projectFlutter\repo\android\gradlew.bat app:properties [+1307 ms] Project evaluation failed including an error in afterEvaluate {}. Run with --stacktrace for details of the afterEvaluate {} error. FAILURE: Build failed with an exception. * Where: Build file 'D:\projectFlutter\repo\android\app\build.gradle' line: 25 * What went wrong: A problem occurred evaluating project ':app'. &gt; Could not resolve all files for configuration 'classpath'. &gt; Could not find lint-gradle-api.jar (com.android.tools.lint:lint-gradle-api:26.1.2). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/lint/lint-gradle-api/26.1.2/lint-gradle-api-26.1.2.jar * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 1s [ +15 ms] Resolving dependencies... (completed) [ +6 ms] * Error running Gradle: Exit code 1 from: D:\projectFlutter\repo\android\gradlew.bat app:properties: Project evaluation failed including an error in afterEvaluate {}. Run with --stacktrace for details of the afterEvaluate {} error. FAILURE: Build failed with an exception. * Where: Build file 'D:\projectFlutter\repo\android\app\build.gradle' line: 25 * What went wrong: A problem occurred evaluating project ':app'. &gt; Could not resolve all files for configuration 'classpath'. &gt; Could not find lint-gradle-api.jar (com.android.tools.lint:lint-gradle-api:26.1.2). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/lint/lint-gradle-api/26.1.2/lint-gradle-api-26.1.2.jar * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 1s [ +51 ms] &quot;flutter run&quot; took 3,628ms. Please review your Gradle project setup in the android/ folder. #0 throwToolExit (package:flutter_tools/src/base/common.dart:26:3) #1 _readGradleProject (package:flutter_tools/src/android/gradle.dart:115:7) &lt;asynchronous suspension&gt; #2 _gradleProject (package:flutter_tools/src/android/gradle.dart:87:34) &lt;asynchronous suspension&gt; #3 getGradleAppOut (package:flutter_tools/src/android/gradle.dart:81:29) &lt;asynchronous suspension&gt; #4 AndroidApk.fromAndroidProject (package:flutter_tools/src/application_package.dart:96:23) &lt;asynchronous suspension&gt; #5 getApplicationPackageForPlatform (package:flutter_tools/src/application_package.dart:283:30) &lt;asynchronous suspension&gt; #6 FlutterDevice.runHot (package:flutter_tools/src/resident_runner.dart:267:21) &lt;asynchronous suspension&gt; #7 HotRunner.run (package:flutter_tools/src/run_hot.dart:262:39) &lt;asynchronous suspension&gt; #8 RunCommand.runCommand (package:flutter_tools/src/commands/run.dart:391:37) &lt;asynchronous suspension&gt; #9 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:372:18) #10 _asyncThenWrapperHelper.&lt;anonymous closure&gt; (dart:async/runtime/libasync_patch.dart:77:64) #11 _rootRunUnary (dart:async/zone.dart:1132:38) #12 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #13 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #14 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #15 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #16 Future._complete (dart:async/future_impl.dart:476:7) #17 _SyncCompleter.complete (dart:async/future_impl.dart:51:12) #18 _AsyncAwaitCompleter.complete (dart:async/runtime/libasync_patch.dart:28:18) #19 _completeOnAsyncReturn (dart:async/runtime/libasync_patch.dart:295:13) #20 RunCommand.usageValues (package:flutter_tools/src/commands/run.dart) #21 _asyncThenWrapperHelper.&lt;anonymous closure&gt; (dart:async/runtime/libasync_patch.dart:77:64) #22 _rootRunUnary (dart:async/zone.dart:1132:38) #23 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #24 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #25 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #26 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #27 Future._complete (dart:async/future_impl.dart:476:7) #28 _SyncCompleter.complete (dart:async/future_impl.dart:51:12) #29 _AsyncAwaitCompleter.complete.&lt;anonymous closure&gt; (dart:async/runtime/libasync_patch.dart:33:20) #30 _rootRun (dart:async/zone.dart:1124:13) #31 _CustomZone.run (dart:async/zone.dart:1021:19) #32 _CustomZone.bindCallback.&lt;anonymous closure&gt; (dart:async/zone.dart:947:23) #33 _microtaskLoop (dart:async/schedule_microtask.dart:41:21) #34 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5) #35 _runPendingImmediateCallback (dart:isolate/runtime/libisolate_patch.dart:115:13) #36 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:172:5)` --&gt; "><pre class="notranslate"><code class="notranslate">D:\projectFlutter\repo&gt;flutter run --verbose [ +56 ms] executing: [C:\Users\Processing\Desktop\flutter\] git rev-parse --abbrev-ref --symbolic @{u} [ +318 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u} [ +5 ms] origin/beta [ +5 ms] executing: [C:\Users\Processing\Desktop\flutter\] git rev-parse --abbrev-ref HEAD [ +289 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD [ +2 ms] beta [ +5 ms] executing: [C:\Users\Processing\Desktop\flutter\] git ls-remote --get-url origin [ +218 ms] Exit code 0 from: git ls-remote --get-url origin [ +2 ms] https://github.com/flutter/flutter.git [ +5 ms] executing: [C:\Users\Processing\Desktop\flutter\] git log -n 1 --pretty=format:%H [ +280 ms] Exit code 0 from: git log -n 1 --pretty=format:%H [ +2 ms] f37c235c32fc15babe6dc7b7bc2ee4387e5ecf92 [ +5 ms] executing: [C:\Users\Processing\Desktop\flutter\] git log -n 1 --pretty=format:%ar [ +302 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar [ +2 ms] 5 weeks ago [ +6 ms] executing: [C:\Users\Processing\Desktop\flutter\] git describe --match v*.*.* --first-parent --long --tags [ +282 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags [ +2 ms] v0.9.4-0-gf37c235c3 [ +363 ms] executing: C:\Users\Processing\AppData\Local\Android\sdk\platform-tools\adb devices -l [ +27 ms] Exit code 0 from: C:\Users\Processing\AppData\Local\Android\sdk\platform-tools\adb devices -l [ ] List of devices attached ZL33B28246 device product:nicklaus_f model:Moto_E__4__Plus device:nicklaus_f transport_id:1 [ +400 ms] C:\Users\Processing\AppData\Local\Android\sdk\platform-tools\adb -s ZL33B28246 shell getprop [ +143 ms] ro.hardware = mt6735 [ +2 ms] ro.build.characteristics = default [ +728 ms] Launching lib/main.dart on Moto E 4 Plus in debug mode... [ +38 ms] Initializing gradle... [ +2 ms] Using gradle from D:\projectFlutter\repo\android\gradlew.bat. [ +106 ms] executing: D:\projectFlutter\repo\android\gradlew.bat -v [ +757 ms] ------------------------------------------------------------ Gradle 4.4 ------------------------------------------------------------ Build time: 2017-12-06 09:05:06 UTC Revision: cf7821a6f79f8e2a598df21780e3ff7ce8db2b82 Groovy: 2.4.12 Ant: Apache Ant(TM) version 1.9.9 compiled on February 2 2017 JVM: 1.8.0_152-release (JetBrains s.r.o 25.152-b06) OS: Windows 10 10.0 amd64 [ +3 ms] Initializing gradle... (completed) [ +1 ms] Resolving dependencies... [ +3 ms] executing: [D:\projectFlutter\repo\android\] D:\projectFlutter\repo\android\gradlew.bat app:properties [+1307 ms] Project evaluation failed including an error in afterEvaluate {}. Run with --stacktrace for details of the afterEvaluate {} error. FAILURE: Build failed with an exception. * Where: Build file 'D:\projectFlutter\repo\android\app\build.gradle' line: 25 * What went wrong: A problem occurred evaluating project ':app'. &gt; Could not resolve all files for configuration 'classpath'. &gt; Could not find lint-gradle-api.jar (com.android.tools.lint:lint-gradle-api:26.1.2). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/lint/lint-gradle-api/26.1.2/lint-gradle-api-26.1.2.jar * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 1s [ +15 ms] Resolving dependencies... (completed) [ +6 ms] * Error running Gradle: Exit code 1 from: D:\projectFlutter\repo\android\gradlew.bat app:properties: Project evaluation failed including an error in afterEvaluate {}. Run with --stacktrace for details of the afterEvaluate {} error. FAILURE: Build failed with an exception. * Where: Build file 'D:\projectFlutter\repo\android\app\build.gradle' line: 25 * What went wrong: A problem occurred evaluating project ':app'. &gt; Could not resolve all files for configuration 'classpath'. &gt; Could not find lint-gradle-api.jar (com.android.tools.lint:lint-gradle-api:26.1.2). Searched in the following locations: https://jcenter.bintray.com/com/android/tools/lint/lint-gradle-api/26.1.2/lint-gradle-api-26.1.2.jar * Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. * Get more help at https://help.gradle.org BUILD FAILED in 1s [ +51 ms] "flutter run" took 3,628ms. Please review your Gradle project setup in the android/ folder. #0 throwToolExit (package:flutter_tools/src/base/common.dart:26:3) #1 _readGradleProject (package:flutter_tools/src/android/gradle.dart:115:7) &lt;asynchronous suspension&gt; #2 _gradleProject (package:flutter_tools/src/android/gradle.dart:87:34) &lt;asynchronous suspension&gt; #3 getGradleAppOut (package:flutter_tools/src/android/gradle.dart:81:29) &lt;asynchronous suspension&gt; #4 AndroidApk.fromAndroidProject (package:flutter_tools/src/application_package.dart:96:23) &lt;asynchronous suspension&gt; #5 getApplicationPackageForPlatform (package:flutter_tools/src/application_package.dart:283:30) &lt;asynchronous suspension&gt; #6 FlutterDevice.runHot (package:flutter_tools/src/resident_runner.dart:267:21) &lt;asynchronous suspension&gt; #7 HotRunner.run (package:flutter_tools/src/run_hot.dart:262:39) &lt;asynchronous suspension&gt; #8 RunCommand.runCommand (package:flutter_tools/src/commands/run.dart:391:37) &lt;asynchronous suspension&gt; #9 FlutterCommand.verifyThenRunCommand (package:flutter_tools/src/runner/flutter_command.dart:372:18) #10 _asyncThenWrapperHelper.&lt;anonymous closure&gt; (dart:async/runtime/libasync_patch.dart:77:64) #11 _rootRunUnary (dart:async/zone.dart:1132:38) #12 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #13 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #14 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #15 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #16 Future._complete (dart:async/future_impl.dart:476:7) #17 _SyncCompleter.complete (dart:async/future_impl.dart:51:12) #18 _AsyncAwaitCompleter.complete (dart:async/runtime/libasync_patch.dart:28:18) #19 _completeOnAsyncReturn (dart:async/runtime/libasync_patch.dart:295:13) #20 RunCommand.usageValues (package:flutter_tools/src/commands/run.dart) #21 _asyncThenWrapperHelper.&lt;anonymous closure&gt; (dart:async/runtime/libasync_patch.dart:77:64) #22 _rootRunUnary (dart:async/zone.dart:1132:38) #23 _CustomZone.runUnary (dart:async/zone.dart:1029:19) #24 _FutureListener.handleValue (dart:async/future_impl.dart:129:18) #25 Future._propagateToListeners.handleValueCallback (dart:async/future_impl.dart:642:45) #26 Future._propagateToListeners (dart:async/future_impl.dart:671:32) #27 Future._complete (dart:async/future_impl.dart:476:7) #28 _SyncCompleter.complete (dart:async/future_impl.dart:51:12) #29 _AsyncAwaitCompleter.complete.&lt;anonymous closure&gt; (dart:async/runtime/libasync_patch.dart:33:20) #30 _rootRun (dart:async/zone.dart:1124:13) #31 _CustomZone.run (dart:async/zone.dart:1021:19) #32 _CustomZone.bindCallback.&lt;anonymous closure&gt; (dart:async/zone.dart:947:23) #33 _microtaskLoop (dart:async/schedule_microtask.dart:41:21) #34 _startMicrotaskLoop (dart:async/schedule_microtask.dart:50:5) #35 _runPendingImmediateCallback (dart:isolate/runtime/libisolate_patch.dart:115:13) #36 _RawReceivePortImpl._handleMessage (dart:isolate/runtime/libisolate_patch.dart:172:5)` --&gt; </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" `D:\projectFlutter\repo&gt;flutter analyze Analyzing repo... No issues found! (ran in 1.9s)`"><pre class="notranslate"><code class="notranslate"> `D:\projectFlutter\repo&gt;flutter analyze Analyzing repo... No issues found! (ran in 1.9s)` </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="D:\projectFlutter\repo&gt;flutter doctor -v [√] Flutter (Channel beta, v0.9.4, on Microsoft Windows [Version 10.0.17134.345], locale en-IN) β€’ Flutter version 0.9.4 at C:\Users\Processing\Desktop\flutter β€’ Framework revision f37c235c32 (5 weeks ago), 2018-09-25 17:45:40 -0400 β€’ Engine revision 74625aed32 β€’ Dart version 2.1.0-dev.5.0.flutter-a2eb050044 [√] Android toolchain - develop for Android devices (Android SDK 28.0.3) β€’ Android SDK at C:\Users\Processing\AppData\Local\Android\sdk β€’ Android NDK location not configured (optional; useful for native profiling support) β€’ Platform android-28, build-tools 28.0.3 β€’ Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) β€’ All Android licenses accepted. [√] Android Studio (version 3.2) β€’ Android Studio at C:\Program Files\Android\Android Studio X Flutter plugin not installed; this adds Flutter specific functionality. X Dart plugin not installed; this adds Dart specific functionality. β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) [√] VS Code (version 1.28.2) β€’ VS Code at C:\Users\Processing\AppData\Local\Programs\Microsoft VS Code β€’ Flutter extension version 2.20.0 [√] Connected devices (1 available) β€’ Moto E 4 Plus β€’ ZL33B28246 β€’ android-arm β€’ Android 7.1.1 (API 25) β€’ No issues found!"><pre class="notranslate"><code class="notranslate">D:\projectFlutter\repo&gt;flutter doctor -v [√] Flutter (Channel beta, v0.9.4, on Microsoft Windows [Version 10.0.17134.345], locale en-IN) β€’ Flutter version 0.9.4 at C:\Users\Processing\Desktop\flutter β€’ Framework revision f37c235c32 (5 weeks ago), 2018-09-25 17:45:40 -0400 β€’ Engine revision 74625aed32 β€’ Dart version 2.1.0-dev.5.0.flutter-a2eb050044 [√] Android toolchain - develop for Android devices (Android SDK 28.0.3) β€’ Android SDK at C:\Users\Processing\AppData\Local\Android\sdk β€’ Android NDK location not configured (optional; useful for native profiling support) β€’ Platform android-28, build-tools 28.0.3 β€’ Java binary at: C:\Program Files\Android\Android Studio\jre\bin\java β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) β€’ All Android licenses accepted. [√] Android Studio (version 3.2) β€’ Android Studio at C:\Program Files\Android\Android Studio X Flutter plugin not installed; this adds Flutter specific functionality. X Dart plugin not installed; this adds Dart specific functionality. β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06) [√] VS Code (version 1.28.2) β€’ VS Code at C:\Users\Processing\AppData\Local\Programs\Microsoft VS Code β€’ Flutter extension version 2.20.0 [√] Connected devices (1 available) β€’ Moto E 4 Plus β€’ ZL33B28246 β€’ android-arm β€’ Android 7.1.1 (API 25) β€’ No issues found! </code></pre></div>
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">Run the gallery app, and try to show the date picker component</p> <h2 dir="auto">Logs and Crash Reports</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="══║ EXCEPTION CAUGHT BY RENDERING LIBRARY β•žβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β• The following assertion was thrown during performLayout(): RenderVirtualViewport does not support returning intrinsic dimensions. Calculating the intrinsic dimensions would require walking the entire child list, which cannot reliably and efficiently be done for render objects that potentially generate their child list during layout. When the exception was thrown, this was the stack: #0 RenderVirtualViewport.debugThrowIfNotCheckingIntrinsics.&lt;anonymous closure&gt; (package:flutter/src/rendering/viewport.dart:398:9) #1 RenderVirtualViewport.debugThrowIfNotCheckingIntrinsics (package:flutter/src/rendering/viewport.dart:396:12) #2 RenderList._computeIntrinsicHeight (package:flutter/src/rendering/list.dart:132:16) #3 RenderList.computeMaxIntrinsicHeight (package:flutter/src/rendering/list.dart:144:12) #4 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #5 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #6 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #7 RenderBox.getMaxIntrinsicHeight (package:flutter/src/rendering/box.dart:762:12) #8 RenderProxyBox.computeMaxIntrinsicHeight (package:flutter/src/rendering/proxy_box.dart:68:20) #9 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #10 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #11 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #12 RenderBox.getMaxIntrinsicHeight (package:flutter/src/rendering/box.dart:762:12) #13 RenderProxyBox.computeMaxIntrinsicHeight (package:flutter/src/rendering/proxy_box.dart:68:20) #14 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #15 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #16 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #17 RenderBox.getMaxIntrinsicHeight (package:flutter/src/rendering/box.dart:762:12) #18 RenderStack.computeMaxIntrinsicHeight.&lt;anonymous closure&gt; (package:flutter/src/rendering/stack.dart:305:62) #19 RenderStack._getIntrinsicDimension (package:flutter/src/rendering/stack.dart:281:54) #20 RenderStack.computeMaxIntrinsicHeight (package:flutter/src/rendering/stack.dart:305:12) #21 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #22 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #23 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #24 RenderBox.getMaxIntrinsicHeight (package:flutter/src/rendering/box.dart:762:12) #25 RenderProxyBox.computeMaxIntrinsicHeight (package:flutter/src/rendering/proxy_box.dart:68:20) #26 RenderConstrainedBox.computeMaxIntrinsicHeight (package:flutter/src/rendering/proxy_box.dart:223:58) #27 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #28 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #29 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #30 RenderBox.getMaxIntrinsicHeight (package:flutter/src/rendering/box.dart:762:12) #31 RenderFlex._getIntrinsicSize (package:flutter/src/rendering/flex.dart:210:34) #32 RenderFlex.computeMaxIntrinsicWidth (package:flutter/src/rendering/flex.dart:251:12) #33 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #34 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #35 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #36 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #37 RenderPadding.computeMaxIntrinsicWidth (package:flutter/src/rendering/shifted_box.dart:127:20) #38 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #39 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #40 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #41 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #42 RenderBlock.computeMaxIntrinsicWidth.&lt;anonymous closure&gt; (package:flutter/src/rendering/block.dart:198:66) #43 RenderBlock._getIntrinsicCrossAxis (package:flutter/src/rendering/block.dart:164:42) #44 RenderBlock.computeMaxIntrinsicWidth (package:flutter/src/rendering/block.dart:198:16) #45 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #46 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #47 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #48 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #49 RenderViewport.computeMaxIntrinsicWidth (package:flutter/src/rendering/viewport.dart:248:20) #50 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #51 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #52 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #53 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #54 RenderProxyBox.computeMaxIntrinsicWidth (package:flutter/src/rendering/proxy_box.dart:54:20) #55 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #56 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #57 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #58 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #59 RenderProxyBox.computeMaxIntrinsicWidth (package:flutter/src/rendering/proxy_box.dart:54:20) #60 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #61 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #62 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #63 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #64 RenderIntrinsicWidth.performLayout (package:flutter/src/rendering/proxy_box.dart:579:36) #65 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #66 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #67 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #68 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #69 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #70 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #71 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #72 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #73 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #74 RenderConstrainedBox.performLayout (package:flutter/src/rendering/proxy_box.dart:232:13) #75 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #76 RenderPadding.performLayout (package:flutter/src/rendering/shifted_box.dart:160:11) #77 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #78 RenderPositionedBox.performLayout (package:flutter/src/rendering/shifted_box.dart:336:13) #79 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #80 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #81 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #82 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #83 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #84 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #85 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #86 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #87 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #88 RenderStack.performLayout (package:flutter/src/rendering/stack.dart:328:15) #89 RenderObject._layoutWithoutResize (package:flutter/src/rendering/object.dart:1337:21) #90 PipelineOwner.flushLayout (package:flutter/src/rendering/object.dart:822:18) #91 BindingBase&amp;SchedulerBinding&amp;GestureBinding&amp;ServicesBinding&amp;RendererBinding.beginFrame (package:flutter/src/rendering/binding.dart:152:19) #92 BindingBase&amp;SchedulerBinding&amp;GestureBinding&amp;ServicesBinding&amp;RendererBinding&amp;WidgetsBinding.beginFrame (package:flutter/src/widgets/binding.dart:205:21) #93 BindingBase&amp;SchedulerBinding&amp;GestureBinding&amp;ServicesBinding&amp;RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:144:5) #94 BindingBase&amp;SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:428:15) #95 BindingBase&amp;SchedulerBinding.handleBeginFrame (package:flutter/src/scheduler/binding.dart:388:7) #96 _beginFrame (file:///Users/tvolkert/project/flutter/engine/src/out/ios_debug_sim_unopt/gen/sky/bindings/dart_ui/hooks.dart:48) The following RenderObject was being processed when the exception was fired: RenderIntrinsicWidth relayoutBoundary=up7 NEEDS-LAYOUT This RenderObject had the following creator information: IntrinsicWidth ← DefaultTextStyle ← AnimatedDefaultTextStyle ← _InkFeatures-[GlobalKey ink renderer] ← NotificationListener&lt;LayoutChangedNotification&gt; ← ClipRRect ← DecoratedBox ← Container ← DecoratedBox ← Container ← β‹― This RenderObject had the following descendants (showing up to depth 5): RenderSemanticsGestureHandler NEEDS-LAYOUT RenderPointerListener NEEDS-LAYOUT RenderViewport NEEDS-LAYOUT RenderBlock NEEDS-LAYOUT RenderPadding NEEDS-LAYOUT ════════════════════════════════════════════════════════════════════════════════════════════════════ Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/shifted_box.dart': Failed assertion: line 267 pos 12: 'child.hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true."><pre class="notranslate"><code class="notranslate">══║ EXCEPTION CAUGHT BY RENDERING LIBRARY β•žβ•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β•β• The following assertion was thrown during performLayout(): RenderVirtualViewport does not support returning intrinsic dimensions. Calculating the intrinsic dimensions would require walking the entire child list, which cannot reliably and efficiently be done for render objects that potentially generate their child list during layout. When the exception was thrown, this was the stack: #0 RenderVirtualViewport.debugThrowIfNotCheckingIntrinsics.&lt;anonymous closure&gt; (package:flutter/src/rendering/viewport.dart:398:9) #1 RenderVirtualViewport.debugThrowIfNotCheckingIntrinsics (package:flutter/src/rendering/viewport.dart:396:12) #2 RenderList._computeIntrinsicHeight (package:flutter/src/rendering/list.dart:132:16) #3 RenderList.computeMaxIntrinsicHeight (package:flutter/src/rendering/list.dart:144:12) #4 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #5 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #6 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #7 RenderBox.getMaxIntrinsicHeight (package:flutter/src/rendering/box.dart:762:12) #8 RenderProxyBox.computeMaxIntrinsicHeight (package:flutter/src/rendering/proxy_box.dart:68:20) #9 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #10 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #11 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #12 RenderBox.getMaxIntrinsicHeight (package:flutter/src/rendering/box.dart:762:12) #13 RenderProxyBox.computeMaxIntrinsicHeight (package:flutter/src/rendering/proxy_box.dart:68:20) #14 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #15 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #16 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #17 RenderBox.getMaxIntrinsicHeight (package:flutter/src/rendering/box.dart:762:12) #18 RenderStack.computeMaxIntrinsicHeight.&lt;anonymous closure&gt; (package:flutter/src/rendering/stack.dart:305:62) #19 RenderStack._getIntrinsicDimension (package:flutter/src/rendering/stack.dart:281:54) #20 RenderStack.computeMaxIntrinsicHeight (package:flutter/src/rendering/stack.dart:305:12) #21 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #22 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #23 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #24 RenderBox.getMaxIntrinsicHeight (package:flutter/src/rendering/box.dart:762:12) #25 RenderProxyBox.computeMaxIntrinsicHeight (package:flutter/src/rendering/proxy_box.dart:68:20) #26 RenderConstrainedBox.computeMaxIntrinsicHeight (package:flutter/src/rendering/proxy_box.dart:223:58) #27 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #28 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #29 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #30 RenderBox.getMaxIntrinsicHeight (package:flutter/src/rendering/box.dart:762:12) #31 RenderFlex._getIntrinsicSize (package:flutter/src/rendering/flex.dart:210:34) #32 RenderFlex.computeMaxIntrinsicWidth (package:flutter/src/rendering/flex.dart:251:12) #33 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #34 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #35 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #36 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #37 RenderPadding.computeMaxIntrinsicWidth (package:flutter/src/rendering/shifted_box.dart:127:20) #38 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #39 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #40 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #41 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #42 RenderBlock.computeMaxIntrinsicWidth.&lt;anonymous closure&gt; (package:flutter/src/rendering/block.dart:198:66) #43 RenderBlock._getIntrinsicCrossAxis (package:flutter/src/rendering/block.dart:164:42) #44 RenderBlock.computeMaxIntrinsicWidth (package:flutter/src/rendering/block.dart:198:16) #45 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #46 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #47 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #48 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #49 RenderViewport.computeMaxIntrinsicWidth (package:flutter/src/rendering/viewport.dart:248:20) #50 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #51 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #52 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #53 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #54 RenderProxyBox.computeMaxIntrinsicWidth (package:flutter/src/rendering/proxy_box.dart:54:20) #55 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #56 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #57 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #58 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #59 RenderProxyBox.computeMaxIntrinsicWidth (package:flutter/src/rendering/proxy_box.dart:54:20) #60 RenderBox._computeIntrinsicDimension.&lt;anonymous closure&gt; (package:flutter/src/rendering/box.dart:535:23) #61 _HashVMBase&amp;MapMixin&amp;&amp;_LinkedHashMapMixin.putIfAbsent (dart:collection-patch/compact_hash.dart:259) #62 RenderBox._computeIntrinsicDimension (package:flutter/src/rendering/box.dart:533:41) #63 RenderBox.getMaxIntrinsicWidth (package:flutter/src/rendering/box.dart:660:12) #64 RenderIntrinsicWidth.performLayout (package:flutter/src/rendering/proxy_box.dart:579:36) #65 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #66 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #67 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #68 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #69 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #70 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #71 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #72 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #73 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #74 RenderConstrainedBox.performLayout (package:flutter/src/rendering/proxy_box.dart:232:13) #75 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #76 RenderPadding.performLayout (package:flutter/src/rendering/shifted_box.dart:160:11) #77 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #78 RenderPositionedBox.performLayout (package:flutter/src/rendering/shifted_box.dart:336:13) #79 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #80 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #81 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #82 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #83 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #84 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #85 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #86 RenderProxyBox.performLayout (package:flutter/src/rendering/proxy_box.dart:82:13) #87 RenderObject.layout (package:flutter/src/rendering/object.dart:1459:21) #88 RenderStack.performLayout (package:flutter/src/rendering/stack.dart:328:15) #89 RenderObject._layoutWithoutResize (package:flutter/src/rendering/object.dart:1337:21) #90 PipelineOwner.flushLayout (package:flutter/src/rendering/object.dart:822:18) #91 BindingBase&amp;SchedulerBinding&amp;GestureBinding&amp;ServicesBinding&amp;RendererBinding.beginFrame (package:flutter/src/rendering/binding.dart:152:19) #92 BindingBase&amp;SchedulerBinding&amp;GestureBinding&amp;ServicesBinding&amp;RendererBinding&amp;WidgetsBinding.beginFrame (package:flutter/src/widgets/binding.dart:205:21) #93 BindingBase&amp;SchedulerBinding&amp;GestureBinding&amp;ServicesBinding&amp;RendererBinding._handlePersistentFrameCallback (package:flutter/src/rendering/binding.dart:144:5) #94 BindingBase&amp;SchedulerBinding._invokeFrameCallback (package:flutter/src/scheduler/binding.dart:428:15) #95 BindingBase&amp;SchedulerBinding.handleBeginFrame (package:flutter/src/scheduler/binding.dart:388:7) #96 _beginFrame (file:///Users/tvolkert/project/flutter/engine/src/out/ios_debug_sim_unopt/gen/sky/bindings/dart_ui/hooks.dart:48) The following RenderObject was being processed when the exception was fired: RenderIntrinsicWidth relayoutBoundary=up7 NEEDS-LAYOUT This RenderObject had the following creator information: IntrinsicWidth ← DefaultTextStyle ← AnimatedDefaultTextStyle ← _InkFeatures-[GlobalKey ink renderer] ← NotificationListener&lt;LayoutChangedNotification&gt; ← ClipRRect ← DecoratedBox ← Container ← DecoratedBox ← Container ← β‹― This RenderObject had the following descendants (showing up to depth 5): RenderSemanticsGestureHandler NEEDS-LAYOUT RenderPointerListener NEEDS-LAYOUT RenderViewport NEEDS-LAYOUT RenderBlock NEEDS-LAYOUT RenderPadding NEEDS-LAYOUT ════════════════════════════════════════════════════════════════════════════════════════════════════ Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/shifted_box.dart': Failed assertion: line 267 pos 12: 'child.hasSize' is not true. Another exception was thrown: 'package:flutter/src/rendering/box.dart': Failed assertion: line 812 pos 12: 'hasSize' is not true. </code></pre></div>
0
<p dir="auto"><strong>I'm submitting a ...</strong> (check one with "x")</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ x ] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question"><pre class="notranslate"><code class="notranslate">[ x ] bug report =&gt; search github for a similar issue or PR before submitting [ ] feature request [ ] support request =&gt; Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question </code></pre></div> <p dir="auto"><strong>Current behavior</strong><br> After upgrading to 4.0, the trigger state name evaluation has changed. For example, a boolean value <code class="notranslate">true</code> doesn't match to a state named "true", which used to work on <code class="notranslate">v2.4</code>. I'm not sure whether the previous or the current behavior is the planned/desired one, but in any case, my guess would be that this is a regression issue or an undocumented change happened. Additionally, truthy and falsy values such as <code class="notranslate">0</code> and <code class="notranslate">1</code> behave unexpectedly (see repro examples 3 and 4).</p> <p dir="auto"><strong>Expected behavior</strong><br> Both string and truthy/falsy values should behave predictably when used as state trigger names. Particularly boolean values are often used for state, as shown on the first rest in the repro below; truthy and falsy valuesβ€”on the other hand, perhapsβ€”sit more subjectively in that equation.</p> <p dir="auto"><strong>Minimal reproduction of the problem with instructions</strong><br> I've setup a few test cases of scenarios I felt were worth exploring to exemplify the issue. Strings behave reliably to maintain state, whereas booleans or otherwise truthy/falsy values behave unreliably.<br> <a href="http://plnkr.co/edit/12iB5WLvRxl3MkoxOpkk?p=preview" rel="nofollow">http://plnkr.co/edit/12iB5WLvRxl3MkoxOpkk?p=preview</a></p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong><br> Although ensuring strings to match state is not a difficult thing to achieve, I think people might expect booleans particularly to match "true" and "false" state names.</p> <p dir="auto"><strong>Please tell us about your environment:</strong><br> OX X 10.11, VScode, Yarn, Webpack Dev Server</p> <ul dir="auto"> <li> <p dir="auto"><strong>Angular version:</strong> <code class="notranslate">4.0.0</code>, resolving to <code class="notranslate">es2015</code> modules</p> </li> <li> <p dir="auto"><strong>Browser:</strong> All</p> </li> <li> <p dir="auto"><strong>Language:</strong> TypeScript 2.2.1</p> </li> <li> <p dir="auto"><strong>Node (for AoT issues):</strong> <code class="notranslate">node --version</code> = <code class="notranslate">v6.9.5</code></p> </li> </ul>
<p dir="auto">In <a href="https://angular.io/docs/ts/latest/guide/ngmodule.html" rel="nofollow">the section on NgModules</a>, after introducing the shared module, the core module does not import the shared module and instead imports the CommonModule directly. The document provides no explanation and it seems some kind of anti-pattern. Is there any reason not to import the shared module into the core module?</p>
0
<p dir="auto">Would it be possible to enhance the Stepper component so that it can have only 1 step?</p> <p dir="auto">Currently, <code class="notranslate">&lt;Stepper&gt;</code> needs to have an array of children of <code class="notranslate">&lt;Step&gt;</code>. I have a use case where sometimes, only 1 step is needed.</p> <p dir="auto">So, i built a primitive workflow generator where the user can generate a custom workflow. While quite primitive, it is visual, so users like it. More importantly, this means no new budget needs to be spent on simple forms etc. this means the business likes it even more. A new form of any kind means budget someone has to pay for.</p> <p dir="auto">They basically want the exact same behaviour as the currently, but with only 1 step, because of this workflow generator. I have tried to explain to them this is not the use case it is build for. But they like the interface.</p> <p dir="auto">Unfortunately i did not realise that people would use it like they are. Clearly i'm the first tech person bitten in the arse by this. /sarc</p> <p dir="auto">Would be most appreciated.</p>
<h3 dir="auto">Description</h3> <p dir="auto">React warns about a single child for Stepper, even though a single child works without issues.<br> Now, it may seem strange for a Stepper to only have one step, but I can explain this use-case.</p> <h3 dir="auto">Versions</h3> <ul dir="auto"> <li>Material-UI: 0.17.4</li> <li>React: 15.5.4</li> <li>Browser: Any, but Opera 57 is what I'm using</li> </ul> <h3 dir="auto">Images &amp; references</h3> <p dir="auto">The default view when a user visits the login page:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1649903/25405340/4da08a6c-2a03-11e7-9b66-a68153f752e1.png"><img src="https://cloud.githubusercontent.com/assets/1649903/25405340/4da08a6c-2a03-11e7-9b66-a68153f752e1.png" alt="screen shot 2017-04-25 at 22 04 54" style="max-width: 100%;"></a></p> <p dir="auto">The view changes when they click the "Register" button:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/1649903/25405344/4fbbd6a8-2a03-11e7-8f19-4d27d578d536.png"><img src="https://cloud.githubusercontent.com/assets/1649903/25405344/4fbbd6a8-2a03-11e7-8f19-4d27d578d536.png" alt="screen shot 2017-04-25 at 22 05 13" style="max-width: 100%;"></a></p> <p dir="auto">I use a Stepper for the login view to keep consistency. Without it, the content would jump when the user switches to the registration view. It works, but it yields a warning in the console, which is simply not needed.</p> <blockquote> <p dir="auto">Warning: Failed prop type: Invalid prop <code class="notranslate">children</code> of type <code class="notranslate">object</code> supplied to <code class="notranslate">Stepper</code>, expected an array.</p> </blockquote>
1
<p dir="auto">E.g. if I want to de-duplicate tweets your friends are retweeting:</p> <div class="highlight highlight-source-cypher notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="MATCH (friend) -[:retweeted]-&gt; (tweet) RETURN DISTINCT tweet"><pre class="notranslate"><span class="pl-k">MATCH</span> (<span class="pl-smi">friend</span>) <span class="pl-c1">-</span><span class="pl-k">[</span><span class="pl-en"><span class="pl-k">:</span><span class="pl-en">retweeted</span></span><span class="pl-k">]</span><span class="pl-c1">-&gt;</span> (<span class="pl-smi">tweet</span>) <span class="pl-k">RETURN</span> <span class="pl-k">DISTINCT</span> <span class="pl-smi">tweet</span></pre></div> <p dir="auto">But still return who the first friend was to retweet that tweet (just like Twitter does).</p> <p dir="auto">This won't work:</p> <div class="highlight highlight-source-cypher notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="MATCH (friend) -[retweet:retweeted]-&gt; (tweet) RETURN DISTINCT tweet, friend, retweet.time AS time ORDER BY time"><pre class="notranslate"><span class="pl-k">MATCH</span> (<span class="pl-smi">friend</span>) <span class="pl-c1">-</span><span class="pl-k">[</span><span class="pl-smi">retweet</span><span class="pl-en"><span class="pl-k">:</span><span class="pl-en">retweeted</span></span><span class="pl-k">]</span><span class="pl-c1">-&gt;</span> (<span class="pl-smi">tweet</span>) <span class="pl-k">RETURN</span> <span class="pl-k">DISTINCT</span> <span class="pl-smi">tweet</span>, <span class="pl-smi">friend</span>, <span class="pl-smi">retweet</span>.<span class="pl-smi">time</span> <span class="pl-k">AS</span> <span class="pl-smi">time</span> <span class="pl-k">ORDER BY</span> <span class="pl-smi">time</span></pre></div> <p dir="auto">Because <code class="notranslate">DISTINCT</code> looks at the entire row, and every row will have a different <code class="notranslate">tweet</code> + <code class="notranslate">friend</code> combination. The result: you get duplicated tweets.</p> <p dir="auto">I can achieve today with this workaround involving aggregating and slicing:</p> <div class="highlight highlight-source-cypher notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="MATCH (friend) -[retweet:retweeted]-&gt; (tweet) WITH tweet, friend, retweet.time AS time ORDER BY time RETURN tweet, HEAD(COLLECT(friend)) AS friend"><pre class="notranslate"><span class="pl-k">MATCH</span> (<span class="pl-smi">friend</span>) <span class="pl-c1">-</span><span class="pl-k">[</span><span class="pl-smi">retweet</span><span class="pl-en"><span class="pl-k">:</span><span class="pl-en">retweeted</span></span><span class="pl-k">]</span><span class="pl-c1">-&gt;</span> (<span class="pl-smi">tweet</span>) <span class="pl-k">WITH</span> <span class="pl-smi">tweet</span>, <span class="pl-smi">friend</span>, <span class="pl-smi">retweet</span>.<span class="pl-smi">time</span> <span class="pl-k">AS</span> <span class="pl-smi">time</span> <span class="pl-k">ORDER BY</span> <span class="pl-smi">time</span> <span class="pl-k">RETURN</span> <span class="pl-smi">tweet</span>, <span class="pl-c1">HEAD</span>(<span class="pl-c1">COLLECT</span>(<span class="pl-smi">friend</span>)) <span class="pl-k">AS</span> <span class="pl-smi">friend</span></pre></div> <p dir="auto">That's pretty tedious and non-obvious. It'd be nice if I could simply specify which variables (columns) should be looked at for the <code class="notranslate">DISTINCT</code> instead of going through those hoops.</p> <p dir="auto">Strawman proposal: simply specify <code class="notranslate">DISTINCT</code> <em>after</em> variable names, to mean that only those variables should be de-duplicated.</p> <div class="highlight highlight-source-cypher notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="MATCH (friend) -[retweet:retweeted]-&gt; (tweet) RETURN tweet DISTINCT, friend ORDER BY retweet.time"><pre class="notranslate"><span class="pl-k">MATCH</span> (<span class="pl-smi">friend</span>) <span class="pl-c1">-</span><span class="pl-k">[</span><span class="pl-smi">retweet</span><span class="pl-en"><span class="pl-k">:</span><span class="pl-en">retweeted</span></span><span class="pl-k">]</span><span class="pl-c1">-&gt;</span> (<span class="pl-smi">tweet</span>) <span class="pl-k">RETURN</span> <span class="pl-smi">tweet</span> <span class="pl-k">DISTINCT</span>, <span class="pl-smi">friend</span> <span class="pl-k">ORDER BY</span> <span class="pl-smi">retweet</span>.<span class="pl-smi">time</span></pre></div> <p dir="auto">Related: issue <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="21141272" data-permission-text="Title is private" data-url="https://github.com/neo4j/neo4j/issues/1322" data-hovercard-type="issue" data-hovercard-url="/neo4j/neo4j/issues/1322/hovercard" href="https://github.com/neo4j/neo4j/issues/1322">#1322</a>. This is a great example: the suggested answer in that SO post actually won't work. Adding the <code class="notranslate">time</code> to the <code class="notranslate">RETURN DISTINCT</code> (so that you can <code class="notranslate">ORDER BY</code> it) will mean de-duplication no longer happens. Hopefully a fix here will fix that case too.</p>
<p dir="auto">In Cypher, there is currently no way to set an existing Node's labels to an explicit set of labels. The SET statement can be used to add labels to the set of labels for a Node, but there is no way to update all of the labels for an exiting Node. This is in contrast to Node properties where you can do SET n = {map_of_props} to set or update all properties of the Node. This makes it difficult to set the entire state of an existing Node (I consider both the properties and labels of the Node to be part of the state) in a single Cypher query.</p> <p dir="auto">In our application, all Nodes have a unique id property (a GUID) and we use MERGE queries with ON CREATE/ON MATCH to implement "in place" create-or-update logic on Nodes using a query similar to:</p> <p dir="auto"><code class="notranslate">MERGE (n:Node {guid:theguid}) ON CREATE SET n:label1:label2:label3, n = {props_for_create} ON MATCH SET n:label4:label5, n = {props_for_update} RETURN n</code></p> <p dir="auto">This allows us to implement save logic without having to know whether the Node with the specified GUID exists (i.e., whether the operation is a create or update). The intent is that an existing Node would have its properties set to the properties in the props_for_upate map and the labels set to "label4", label5. However, this doesn't quite work because <code class="notranslate">ON MATCH SET n:label4:label5</code> adds "label4" and "label5" to the Node rather than replacing the existing labels. For us to be able to implement the "update" part of the create-or-update logic efficiently, we need to be able to replace the entire state of the node including properties and labels.</p>
0
<p dir="auto">Consider:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="let connection = await Deno.connectTls({hostname: &quot;google.com&quot;, port: 443}) // No β€˜await’. connection.read(new Uint8Array(2048)) await connection.write(new Uint8Array([0x0D, 0x0A])) console.log(&quot;yo&quot;)"><pre class="notranslate"><span class="pl-k">let</span> <span class="pl-s1">connection</span> <span class="pl-c1">=</span> <span class="pl-k">await</span> <span class="pl-v">Deno</span><span class="pl-kos">.</span><span class="pl-en">connectTls</span><span class="pl-kos">(</span><span class="pl-kos">{</span><span class="pl-c1">hostname</span>: <span class="pl-s">"google.com"</span><span class="pl-kos">,</span> <span class="pl-c1">port</span>: <span class="pl-c1">443</span><span class="pl-kos">}</span><span class="pl-kos">)</span> <span class="pl-c">// No β€˜await’.</span> <span class="pl-s1">connection</span><span class="pl-kos">.</span><span class="pl-en">read</span><span class="pl-kos">(</span><span class="pl-k">new</span> <span class="pl-v">Uint8Array</span><span class="pl-kos">(</span><span class="pl-c1">2048</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-k">await</span> <span class="pl-s1">connection</span><span class="pl-kos">.</span><span class="pl-en">write</span><span class="pl-kos">(</span><span class="pl-k">new</span> <span class="pl-v">Uint8Array</span><span class="pl-kos">(</span><span class="pl-kos">[</span><span class="pl-c1">0x0D</span><span class="pl-kos">,</span> <span class="pl-c1">0x0A</span><span class="pl-kos">]</span><span class="pl-kos">)</span><span class="pl-kos">)</span> <span class="pl-smi">console</span><span class="pl-kos">.</span><span class="pl-en">log</span><span class="pl-kos">(</span><span class="pl-s">"yo"</span><span class="pl-kos">)</span></pre></div> <p dir="auto">I’d expect the <code class="notranslate">connection.write(...)</code> promise to resolve eventually, but instead it does not (and the process blocks without ever logging <code class="notranslate">"yo"</code>).</p>
<p dir="auto">The issue seems to be that <code class="notranslate">Deno.startTls()</code> resolves before the connection is fully setup - any writer created on the resulting tlsConnection will fail - here's a test:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="import { fail } from &quot;https://deno.land/std@0.83.0/testing/asserts.ts&quot;; import { BufWriter } from &quot;https://deno.land/std@0.83.0/io/mod.ts&quot;; Deno.test(&quot;tls - raw tls upgrade&quot;, async () =&gt; { interface Deferred&lt;T&gt; extends Promise&lt;T&gt; { resolve: (value?: T | PromiseLike&lt;T&gt;) =&gt; void; reject: (reason?: any) =&gt; void; } function deferred&lt;T&gt;(): Deferred&lt;T&gt; { let methods = {}; const p = new Promise&lt;T&gt;((resolve, reject): void =&gt; { methods = { resolve, reject }; }); return Object.assign(p, methods) as Deferred&lt;T&gt;; } const te = new TextEncoder(); const td = new TextDecoder(); function render(frame: Uint8Array): string { const cr = &quot;␍&quot;; const lf = &quot;␊&quot;; return td.decode(frame) .replace(/\n/g, lf) .replace(/\r/g, cr); } async function write(writer: BufWriter, pm: string) { try { const buf = te.encode(pm); const c = await writer.write(buf); await writer.flush(); console.info(`&lt; ${c}/${buf.length}:`, render(buf)); } catch (err) { console.error(`error writing pm: ${pm}: ${err}`); throw err; } } const pong = deferred&lt;void&gt;(); const hostname = &quot;demo.nats.io&quot;; let conn = await Deno.connect({ hostname, port: 4443 }); const buf = new Uint8Array(64 * 1023); let c = await conn.read(buf); if (c === null) { fail(&quot;connection closed&quot;); } //@ts-ignore - this has to be a number const frame = buf.subarray(0, c); console.info(&quot;&gt;&quot;, render(frame)); // attempt the tls upgrade console.info(&quot;upgrading connection&quot;); const tlsConn = await Deno.startTls(conn, { hostname }); console.info(&quot;connection upgraded&quot;); // start a reader to print server responses let _ = (async function () { while (true) { try { const c = await tlsConn.read(buf); if (c === null) { break; } if (c) { const frame = buf.subarray(0, c); console.info(&quot;&gt;&quot;, render(frame)); const re = /^PONG\r\n/mi; if (re.test(td.decode(frame))) { pong.resolve(); } } } catch (err) { // closed break; } } })(); const writer = new BufWriter(tlsConn); await write( writer, `CONNECT {&quot;protocol&quot;:1,&quot;version&quot;:&quot;1.0.0-13&quot;,&quot;lang&quot;:&quot;nats.deno&quot;,&quot;verbose&quot;:false,&quot;pedantic&quot;:true, &quot;verbose&quot;:true}\r\n`, ); await write(writer, `PING\r\n`); await pong; tlsConn.close(); });"><pre class="notranslate"><code class="notranslate">import { fail } from "https://deno.land/std@0.83.0/testing/asserts.ts"; import { BufWriter } from "https://deno.land/std@0.83.0/io/mod.ts"; Deno.test("tls - raw tls upgrade", async () =&gt; { interface Deferred&lt;T&gt; extends Promise&lt;T&gt; { resolve: (value?: T | PromiseLike&lt;T&gt;) =&gt; void; reject: (reason?: any) =&gt; void; } function deferred&lt;T&gt;(): Deferred&lt;T&gt; { let methods = {}; const p = new Promise&lt;T&gt;((resolve, reject): void =&gt; { methods = { resolve, reject }; }); return Object.assign(p, methods) as Deferred&lt;T&gt;; } const te = new TextEncoder(); const td = new TextDecoder(); function render(frame: Uint8Array): string { const cr = "␍"; const lf = "␊"; return td.decode(frame) .replace(/\n/g, lf) .replace(/\r/g, cr); } async function write(writer: BufWriter, pm: string) { try { const buf = te.encode(pm); const c = await writer.write(buf); await writer.flush(); console.info(`&lt; ${c}/${buf.length}:`, render(buf)); } catch (err) { console.error(`error writing pm: ${pm}: ${err}`); throw err; } } const pong = deferred&lt;void&gt;(); const hostname = "demo.nats.io"; let conn = await Deno.connect({ hostname, port: 4443 }); const buf = new Uint8Array(64 * 1023); let c = await conn.read(buf); if (c === null) { fail("connection closed"); } //@ts-ignore - this has to be a number const frame = buf.subarray(0, c); console.info("&gt;", render(frame)); // attempt the tls upgrade console.info("upgrading connection"); const tlsConn = await Deno.startTls(conn, { hostname }); console.info("connection upgraded"); // start a reader to print server responses let _ = (async function () { while (true) { try { const c = await tlsConn.read(buf); if (c === null) { break; } if (c) { const frame = buf.subarray(0, c); console.info("&gt;", render(frame)); const re = /^PONG\r\n/mi; if (re.test(td.decode(frame))) { pong.resolve(); } } } catch (err) { // closed break; } } })(); const writer = new BufWriter(tlsConn); await write( writer, `CONNECT {"protocol":1,"version":"1.0.0-13","lang":"nats.deno","verbose":false,"pedantic":true, "verbose":true}\r\n`, ); await write(writer, `PING\r\n`); await pong; tlsConn.close(); }); </code></pre></div> <p dir="auto">Running with 1.4.6-&gt;1.6.1:</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="❯ deno --version deno 1.4.6 v8 8.7.220.3 typescript 4.0.3 ❯ deno test --allow-all --unstable --filter &quot;tls - raw tls upgrade&quot; Check file:///Users/xxx/Dropbox/code/src/github.com/nats-io/nats.deno/$deno$test.ts running 1 tests test tls - raw tls upgrade ... &gt; INFO {&quot;server_id&quot;:&quot;NDGMFJPAMLNEQNWVI5YRSEYMCPAU2SBIE6SCNE2I26CFRAUYBGSURRCU&quot;,&quot;server_name&quot;:&quot;NDGMFJPAMLNEQNWVI5YRSEYMCPAU2SBIE6SCNE2I26CFRAUYBGSURRCU&quot;,&quot;version&quot;:&quot;2.2.0-beta.35&quot;,&quot;proto&quot;:1,&quot;go&quot;:&quot;go1.15.6&quot;,&quot;host&quot;:&quot;0.0.0.0&quot;,&quot;port&quot;:4443,&quot;headers&quot;:true,&quot;tls_required&quot;:true,&quot;max_payload&quot;:1048576,&quot;client_id&quot;:382,&quot;client_ip&quot;:&quot;71.193.91.14&quot;} ␍␊ upgrading connection connection upgraded &lt; 112/112: CONNECT {&quot;protocol&quot;:1,&quot;version&quot;:&quot;1.0.0-13&quot;,&quot;lang&quot;:&quot;nats.deno&quot;,&quot;verbose&quot;:false,&quot;pedantic&quot;:true, &quot;verbose&quot;:true}␍␊ &lt; 6/6: PING␍␊ &gt; +OK␍␊PONG␍␊ ok (367ms)"><pre class="notranslate">❯ deno --version deno 1.4.6 v8 8.7.220.3 typescript 4.0.3 ❯ deno <span class="pl-c1">test</span> --allow-all --unstable --filter <span class="pl-s"><span class="pl-pds">"</span>tls - raw tls upgrade<span class="pl-pds">"</span></span> Check file:///Users/xxx/Dropbox/code/src/github.com/nats-io/nats.deno/<span class="pl-smi">$deno$test</span>.ts running 1 tests <span class="pl-c1">test</span> tls - raw tls upgrade ... <span class="pl-k">&gt;</span> INFO {<span class="pl-s"><span class="pl-pds">"</span>server_id<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>NDGMFJPAMLNEQNWVI5YRSEYMCPAU2SBIE6SCNE2I26CFRAUYBGSURRCU<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>server_name<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>NDGMFJPAMLNEQNWVI5YRSEYMCPAU2SBIE6SCNE2I26CFRAUYBGSURRCU<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>version<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>2.2.0-beta.35<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>proto<span class="pl-pds">"</span></span>:1,<span class="pl-s"><span class="pl-pds">"</span>go<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>go1.15.6<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>host<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>0.0.0.0<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>port<span class="pl-pds">"</span></span>:4443,<span class="pl-s"><span class="pl-pds">"</span>headers<span class="pl-pds">"</span></span>:true,<span class="pl-s"><span class="pl-pds">"</span>tls_required<span class="pl-pds">"</span></span>:true,<span class="pl-s"><span class="pl-pds">"</span>max_payload<span class="pl-pds">"</span></span>:1048576,<span class="pl-s"><span class="pl-pds">"</span>client_id<span class="pl-pds">"</span></span>:382,<span class="pl-s"><span class="pl-pds">"</span>client_ip<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>71.193.91.14<span class="pl-pds">"</span></span>} ␍␊ upgrading connection connection upgraded <span class="pl-k">&lt;</span> 112/112: CONNECT {<span class="pl-s"><span class="pl-pds">"</span>protocol<span class="pl-pds">"</span></span>:1,<span class="pl-s"><span class="pl-pds">"</span>version<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>1.0.0-13<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>lang<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>nats.deno<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>verbose<span class="pl-pds">"</span></span>:false,<span class="pl-s"><span class="pl-pds">"</span>pedantic<span class="pl-pds">"</span></span>:true, <span class="pl-s"><span class="pl-pds">"</span>verbose<span class="pl-pds">"</span></span>:true}␍␊ <span class="pl-k">&lt;</span> 6/6: PING␍␊ <span class="pl-k">&gt;</span> +OK␍␊PONG␍␊ ok (367ms)</pre></div> <p dir="auto">On 1.6.2+ the result is different - the code will block on the <code class="notranslate">writer.flush()</code>:</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="❯ deno test --allow-all --unstable --filter &quot;tls - raw tls upgrade&quot; Check file:///Users/xxx/Dropbox/code/src/github.com/nats-io/nats.deno/$deno$test.ts running 1 tests test tls - raw tls upgrade ... &gt; INFO {&quot;server_id&quot;:&quot;NDGMFJPAMLNEQNWVI5YRSEYMCPAU2SBIE6SCNE2I26CFRAUYBGSURRCU&quot;,&quot;server_name&quot;:&quot;NDGMFJPAMLNEQNWVI5YRSEYMCPAU2SBIE6SCNE2I26CFRAUYBGSURRCU&quot;,&quot;version&quot;:&quot;2.2.0-beta.35&quot;,&quot;proto&quot;:1,&quot;go&quot;:&quot;go1.15.6&quot;,&quot;host&quot;:&quot;0.0.0.0&quot;,&quot;port&quot;:4443,&quot;headers&quot;:true,&quot;tls_required&quot;:true,&quot;max_payload&quot;:1048576,&quot;client_id&quot;:383,&quot;client_ip&quot;:&quot;71.193.91.14&quot;} ␍␊ upgrading connection connection upgraded ^C"><pre class="notranslate">❯ deno <span class="pl-c1">test</span> --allow-all --unstable --filter <span class="pl-s"><span class="pl-pds">"</span>tls - raw tls upgrade<span class="pl-pds">"</span></span> Check file:///Users/xxx/Dropbox/code/src/github.com/nats-io/nats.deno/<span class="pl-smi">$deno$test</span>.ts running 1 tests <span class="pl-c1">test</span> tls - raw tls upgrade ... <span class="pl-k">&gt;</span> INFO {<span class="pl-s"><span class="pl-pds">"</span>server_id<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>NDGMFJPAMLNEQNWVI5YRSEYMCPAU2SBIE6SCNE2I26CFRAUYBGSURRCU<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>server_name<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>NDGMFJPAMLNEQNWVI5YRSEYMCPAU2SBIE6SCNE2I26CFRAUYBGSURRCU<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>version<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>2.2.0-beta.35<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>proto<span class="pl-pds">"</span></span>:1,<span class="pl-s"><span class="pl-pds">"</span>go<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>go1.15.6<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>host<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>0.0.0.0<span class="pl-pds">"</span></span>,<span class="pl-s"><span class="pl-pds">"</span>port<span class="pl-pds">"</span></span>:4443,<span class="pl-s"><span class="pl-pds">"</span>headers<span class="pl-pds">"</span></span>:true,<span class="pl-s"><span class="pl-pds">"</span>tls_required<span class="pl-pds">"</span></span>:true,<span class="pl-s"><span class="pl-pds">"</span>max_payload<span class="pl-pds">"</span></span>:1048576,<span class="pl-s"><span class="pl-pds">"</span>client_id<span class="pl-pds">"</span></span>:383,<span class="pl-s"><span class="pl-pds">"</span>client_ip<span class="pl-pds">"</span></span>:<span class="pl-s"><span class="pl-pds">"</span>71.193.91.14<span class="pl-pds">"</span></span>} ␍␊ upgrading connection connection upgraded ^C</pre></div> <p dir="auto">Removing the <code class="notranslate">flush()</code>, will make the program block as the read loop won't ever see the <code class="notranslate">PONG\r\n</code> response it is expecting.</p>
1
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">πŸ›</g-emoji> Bug</h2> <p dir="auto">It is advertised, that forward pass of JITed RNNs (e.g. GRU) is as fast as cuDNN implementation.<br> But it is not the case.</p> <h2 dir="auto">To Reproduce</h2> <p dir="auto">Steps to reproduce the behavior:</p> <p dir="auto">See here: <a href="https://gist.github.com/usamec/af21be7b83e6b1a3f38c26136af811f3">https://gist.github.com/usamec/af21be7b83e6b1a3f38c26136af811f3</a></p> <h2 dir="auto">Expected behavior</h2> <p dir="auto">Forward pass is as fast as cuDNN.</p> <h2 dir="auto">Environment</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Collecting environment information... PyTorch version: 1.4.0 Is debug build: No CUDA used to build PyTorch: 10.0 OS: Ubuntu 18.04.1 LTS GCC version: (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 CMake version: version 3.10.2 Python version: 3.6 Is CUDA available: Yes CUDA runtime version: 9.0.176 GPU models and configuration: GPU 0: TITAN Xp Nvidia driver version: 430.50 cuDNN version: Probably one of the following: /usr/lib/x86_64-linux-gnu/libcudnn.so.6.0.21 /usr/lib/x86_64-linux-gnu/libcudnn.so.7.5.0 Versions of relevant libraries: [pip3] numpy==1.15.0 [conda] _pytorch_select 0.2 gpu_0 [conda] blas 1.0 mkl [conda] cudatoolkit 10.0.130 0 [conda] mkl 2019.4 243 [conda] mkl-service 2.3.0 py36he904b0f_0 [conda] mkl_fft 1.0.15 py36ha843d7b_0 [conda] mkl_random 1.1.0 py36hd6b4f25_0 [conda] numpy 1.18.1 py36h4f9e942_0 [conda] numpy-base 1.18.1 py36hde5b4d6_1 [conda] pytorch 1.4.0 py3.6_cuda10.0.130_cudnn7.6.3_0 pytorch [conda] pytorch-qrnn 0.2.1 pypi_0 pypi [conda] torch-scatter 1.4.0 pypi_0 pypi [conda] torchvision 0.5.0 pypi_0 pypi"><pre class="notranslate"><code class="notranslate">Collecting environment information... PyTorch version: 1.4.0 Is debug build: No CUDA used to build PyTorch: 10.0 OS: Ubuntu 18.04.1 LTS GCC version: (Ubuntu 7.5.0-3ubuntu1~18.04) 7.5.0 CMake version: version 3.10.2 Python version: 3.6 Is CUDA available: Yes CUDA runtime version: 9.0.176 GPU models and configuration: GPU 0: TITAN Xp Nvidia driver version: 430.50 cuDNN version: Probably one of the following: /usr/lib/x86_64-linux-gnu/libcudnn.so.6.0.21 /usr/lib/x86_64-linux-gnu/libcudnn.so.7.5.0 Versions of relevant libraries: [pip3] numpy==1.15.0 [conda] _pytorch_select 0.2 gpu_0 [conda] blas 1.0 mkl [conda] cudatoolkit 10.0.130 0 [conda] mkl 2019.4 243 [conda] mkl-service 2.3.0 py36he904b0f_0 [conda] mkl_fft 1.0.15 py36ha843d7b_0 [conda] mkl_random 1.1.0 py36hd6b4f25_0 [conda] numpy 1.18.1 py36h4f9e942_0 [conda] numpy-base 1.18.1 py36hde5b4d6_1 [conda] pytorch 1.4.0 py3.6_cuda10.0.130_cudnn7.6.3_0 pytorch [conda] pytorch-qrnn 0.2.1 pypi_0 pypi [conda] torch-scatter 1.4.0 pypi_0 pypi [conda] torchvision 0.5.0 pypi_0 pypi </code></pre></div> <p dir="auto">I am also getting same slowdown on GeForce RTX 2080 Ti</p> <h2 dir="auto">Additional context</h2> <p dir="auto">Posted here first.<br> <a href="https://discuss.pytorch.org/t/jited-gru-too-slow/68873" rel="nofollow">https://discuss.pytorch.org/t/jited-gru-too-slow/68873</a></p> <p dir="auto">Warm starting does not change much at all.</p> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ezyang/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ezyang">@ezyang</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gchanan/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gchanan">@gchanan</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/zou3519/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/zou3519">@zou3519</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/suo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/suo">@suo</a></p>
1
<h4 dir="auto">Code Sample, a copy-pastable example if possible</h4> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# for example, index should be accepted, like so: df.to_parquet( 'my_parquet_file.parquet', compression='gzip', index=False )"><pre class="notranslate"><span class="pl-c"># for example, index should be accepted, like so:</span> <span class="pl-s1">df</span>.<span class="pl-en">to_parquet</span>( <span class="pl-s">'my_parquet_file.parquet'</span>, <span class="pl-s1">compression</span><span class="pl-c1">=</span><span class="pl-s">'gzip'</span>, <span class="pl-s1">index</span><span class="pl-c1">=</span><span class="pl-c1">False</span> )</pre></div> <h4 dir="auto">Problem description</h4> <p dir="auto">[this should explain <strong>why</strong> the current behaviour is a problem and why the expected output is a better solution.]</p> <p dir="auto"><strong>Note</strong>: We receive a lot of issues on our GitHub tracker, so it is very possible that your issue has been posted before. Please check first before submitting so that we do not have to handle and close duplicates!</p> <p dir="auto"><strong>Note</strong>: Many problems can be resolved by simply upgrading <code class="notranslate">pandas</code> to the latest version. Before submitting, please check if that solution works for you. If possible, you may want to check if <code class="notranslate">master</code> addresses this issue, but that is not necessary.</p> <p dir="auto">For documentation-related issues, you can check the latest versions of the docs on <code class="notranslate">master</code> here:</p> <p dir="auto"><a href="https://pandas-docs.github.io/pandas-docs-travis/" rel="nofollow">https://pandas-docs.github.io/pandas-docs-travis/</a></p> <p dir="auto">If the issue has not been resolved there, go ahead and file it in the issue tracker.</p> <h4 dir="auto">Expected Output</h4> <h4 dir="auto">Output of <code class="notranslate">pd.show_versions()</code></h4> <details> <h2 dir="auto">INSTALLED VERSIONS</h2> <p dir="auto">commit: None<br> python: 3.6.4.final.0<br> python-bits: 64<br> OS: Linux<br> OS-release: 3.16.0-77-generic<br> machine: x86_64<br> processor: x86_64<br> byteorder: little<br> LC_ALL: None<br> LANG: None<br> LOCALE: None.None</p> <p dir="auto">pandas: 0.22.0<br> pytest: 3.2.5<br> pip: 9.0.1<br> setuptools: 39.0.1<br> Cython: 0.28.1<br> numpy: 1.14.2<br> scipy: 0.19.1<br> pyarrow: None<br> xarray: None<br> IPython: 6.2.1<br> sphinx: 1.7.2<br> patsy: 0.5.0<br> dateutil: 2.7.2<br> pytz: 2018.3<br> blosc: None<br> bottleneck: None<br> tables: None<br> numexpr: 2.6.2<br> feather: None<br> matplotlib: 2.0.2<br> openpyxl: 2.5.1<br> xlrd: 1.0.0<br> xlwt: None<br> xlsxwriter: None<br> lxml: 4.2.1<br> bs4: 4.6.0<br> html5lib: 0.999999999<br> sqlalchemy: 1.2.5<br> pymysql: None<br> psycopg2: 2.7.4 (dt dec pq3 ext lo64)<br> jinja2: 2.10<br> s3fs: None<br> fastparquet: 0.1.4<br> pandas_gbq: None<br> pandas_datareader: None</p> </details>
<p dir="auto">I'm using pandas 0.17.1</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import pandas as pd pd.__version__"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">pandas</span> <span class="pl-k">as</span> <span class="pl-s1">pd</span> <span class="pl-s1">pd</span>.<span class="pl-s1">__version__</span></pre></div> <p dir="auto"><code class="notranslate">Out:'0.17.1'</code></p> <p dir="auto">When column names are duplicated</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="cols = ['A', 'A', 'B'] with open('pandas.csv', 'w') as f: f.write('1,2,3')"><pre class="notranslate"><span class="pl-s1">cols</span> <span class="pl-c1">=</span> [<span class="pl-s">'A'</span>, <span class="pl-s">'A'</span>, <span class="pl-s">'B'</span>] <span class="pl-k">with</span> <span class="pl-en">open</span>(<span class="pl-s">'pandas.csv'</span>, <span class="pl-s">'w'</span>) <span class="pl-k">as</span> <span class="pl-s1">f</span>: <span class="pl-s1">f</span>.<span class="pl-en">write</span>(<span class="pl-s">'1,2,3'</span>)</pre></div> <p dir="auto">we can still load dataframe</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="pd.read_csv('pandas.csv', header=None, names=cols, )"><pre class="notranslate"><span class="pl-s1">pd</span>.<span class="pl-en">read_csv</span>(<span class="pl-s">'pandas.csv'</span>, <span class="pl-s1">header</span><span class="pl-c1">=</span><span class="pl-c1">None</span>, <span class="pl-s1">names</span><span class="pl-c1">=</span><span class="pl-s1">cols</span>, )</pre></div> <p dir="auto">with explainable behaviour</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Out: A A B 0 2 2 3"><pre class="notranslate"><code class="notranslate">Out: A A B 0 2 2 3 </code></pre></div> <p dir="auto">Then we might want to load some of the columns with python engine</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="pd.read_csv('pandas.csv', engine='python', header=None, names=cols, usecols=cols )"><pre class="notranslate"><span class="pl-s1">pd</span>.<span class="pl-en">read_csv</span>(<span class="pl-s">'pandas.csv'</span>, <span class="pl-s1">engine</span><span class="pl-c1">=</span><span class="pl-s">'python'</span>, <span class="pl-s1">header</span><span class="pl-c1">=</span><span class="pl-c1">None</span>, <span class="pl-s1">names</span><span class="pl-c1">=</span><span class="pl-s1">cols</span>, <span class="pl-s1">usecols</span><span class="pl-c1">=</span><span class="pl-s1">cols</span> )</pre></div> <p dir="auto">and get different but still explainable result</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Out: A B 0 1 3"><pre class="notranslate"><code class="notranslate">Out: A B 0 1 3 </code></pre></div> <p dir="auto">But then we switch back to c-engine</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="pd.read_csv('pandas.csv', engine='c', header=None, names=cols, usecols=cols )"><pre class="notranslate"><span class="pl-s1">pd</span>.<span class="pl-en">read_csv</span>(<span class="pl-s">'pandas.csv'</span>, <span class="pl-s1">engine</span><span class="pl-c1">=</span><span class="pl-s">'c'</span>, <span class="pl-s1">header</span><span class="pl-c1">=</span><span class="pl-c1">None</span>, <span class="pl-s1">names</span><span class="pl-c1">=</span><span class="pl-s1">cols</span>, <span class="pl-s1">usecols</span><span class="pl-c1">=</span><span class="pl-s1">cols</span> )</pre></div> <p dir="auto">and get the following</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Out: A A B 0 2 2 NaN"><pre class="notranslate"><code class="notranslate">Out: A A B 0 2 2 NaN </code></pre></div> <p dir="auto">which is:<br> (a) different (which is not good in my opinion)<br> (b) looks like bug</p>
0
<p dir="auto"><strong>Migrated issue, originally created by grant-humphries (<a href="https://github.com/grant-humphries">@grant-humphries</a>)</strong></p> <p dir="auto">As I understand it <code class="notranslate">pip install sqlalchemy</code> should work on windows, but it will return a warning that the c-extensions could not be installed unless you have a c-compiler. Using Python 2.7, pip 8.1.2 on Windows 7 the install completely fails for me, see the log below. Some folks that we're helping me on IRC noted that the error that is being thrown isn't an 'expected error' and thus it's not falling back on pure python as it should.</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Collecting sqlalchemy Using cached SQLAlchemy-1.0.14.tar.gz Building wheels for collected packages: sqlalchemy Running setup.py bdist_wheel for sqlalchemy: started Running setup.py bdist_wheel for sqlalchemy: finished with status 'error' Complete output from command c:\users\humphrig\desktop\temp\py_test\scripts\python.exe -u -c &quot;import setuptools, tokenize;__file__='c:\\users\\humphrig\\appdata\\local\\temp\\pip-build-8mzqqo\\sqlalchemy\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))&quot; bdist_wheel -d c:\users\humphrig\appdata\local\temp\tmpv0u4nupip-wheel- --python-tag cp27: running bdist_wheel running build running build_py creating build creating build\lib.win-amd64-2.7 creating build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\events.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\exc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\inspection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\log.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\pool.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\processors.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\types.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy creating build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\zxJDBC.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors creating build\lib.win-amd64-2.7\sqlalchemy\databases copying lib\sqlalchemy\databases\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\databases creating build\lib.win-amd64-2.7\sqlalchemy\dialects copying lib\sqlalchemy\dialects\postgres.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects copying lib\sqlalchemy\dialects\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects creating build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\fdb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\kinterbasdb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird creating build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\adodbapi.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\information_schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\pymssql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\cymysql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\gaerdbms.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\mysqlconnector.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\mysqldb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\oursql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\pymysql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\cx_oracle.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle creating build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\constraints.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\hstore.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\json.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\pg8000.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\psycopg2.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\psycopg2cffi.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\pypostgresql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\ranges.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\pysqlcipher.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\pysqlite.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite creating build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\pysybase.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase creating build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\default.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\reflection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\result.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\strategies.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\threadlocal.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\url.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine creating build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\attr.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\legacy.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\registry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event creating build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\associationproxy.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\automap.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\baked.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\compiler.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\horizontal_shard.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\hybrid.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\instrumentation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\mutable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\orderinglist.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\serializer.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext creating build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\clsregistry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative creating build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\attributes.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\collections.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\dependency.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\deprecated_interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\descriptor_props.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\dynamic.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\evaluator.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\events.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\exc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\identity.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\instrumentation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\loading.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\mapper.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\path_registry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\persistence.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\properties.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\query.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\relationships.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\scoping.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\session.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\state.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\strategies.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\strategy_options.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\sync.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\unitofwork.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm creating build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\annotation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\compiler.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\crud.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\ddl.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\default_comparator.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\dml.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\elements.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\expression.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\functions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\naming.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\operators.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\selectable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\sqltypes.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\type_api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\visitors.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql creating build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\assertions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\assertsql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\config.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\distutils_run.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\engines.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\entities.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\exclusions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\fixtures.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\mock.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\pickleable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\profiling.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\provision.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\replay_fixture.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\requirements.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\runner.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\warnings.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing creating build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\bootstrap.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\noseplugin.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\plugin_base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\pytestplugin.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin creating build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_ddl.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_dialect.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_insert.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_reflection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_results.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_select.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_sequence.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_types.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_update_delete.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite creating build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\compat.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\deprecations.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\langhelpers.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\queue.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\topological.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\_collections.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util running build_ext building 'sqlalchemy.cprocessors' extension error: [Error 2] The system cannot find the file specified ---------------------------------------- Failed building wheel for sqlalchemy Running setup.py clean for sqlalchemy Failed to build sqlalchemy Installing collected packages: sqlalchemy Running setup.py install for sqlalchemy: started Running setup.py install for sqlalchemy: finished with status 'error' Complete output from command c:\users\humphrig\desktop\temp\py_test\scripts\python.exe -u -c &quot;import setuptools, tokenize;__file__='c:\\users\\humphrig\\appdata\\local\\temp\\pip-build-8mzqqo\\sqlalchemy\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))&quot; install --record c:\users\humphrig\appdata\local\temp\pip-cphs4n-record\install-record.txt --single-version-externally-managed --compile --install-headers c:\users\humphrig\desktop\temp\py_test\include\site\python2.7\sqlalchemy: running install running build running build_py creating build creating build\lib.win-amd64-2.7 creating build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\events.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\exc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\inspection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\log.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\pool.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\processors.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\types.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy creating build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\zxJDBC.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors creating build\lib.win-amd64-2.7\sqlalchemy\databases copying lib\sqlalchemy\databases\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\databases creating build\lib.win-amd64-2.7\sqlalchemy\dialects copying lib\sqlalchemy\dialects\postgres.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects copying lib\sqlalchemy\dialects\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects creating build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\fdb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\kinterbasdb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird creating build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\adodbapi.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\information_schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\pymssql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\cymysql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\gaerdbms.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\mysqlconnector.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\mysqldb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\oursql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\pymysql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\cx_oracle.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle creating build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\constraints.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\hstore.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\json.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\pg8000.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\psycopg2.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\psycopg2cffi.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\pypostgresql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\ranges.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\pysqlcipher.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\pysqlite.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite creating build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\pysybase.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase creating build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\default.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\reflection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\result.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\strategies.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\threadlocal.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\url.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine creating build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\attr.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\legacy.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\registry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event creating build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\associationproxy.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\automap.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\baked.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\compiler.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\horizontal_shard.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\hybrid.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\instrumentation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\mutable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\orderinglist.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\serializer.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext creating build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\clsregistry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative creating build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\attributes.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\collections.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\dependency.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\deprecated_interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\descriptor_props.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\dynamic.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\evaluator.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\events.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\exc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\identity.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\instrumentation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\loading.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\mapper.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\path_registry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\persistence.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\properties.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\query.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\relationships.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\scoping.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\session.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\state.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\strategies.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\strategy_options.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\sync.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\unitofwork.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm creating build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\annotation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\compiler.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\crud.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\ddl.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\default_comparator.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\dml.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\elements.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\expression.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\functions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\naming.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\operators.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\selectable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\sqltypes.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\type_api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\visitors.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql creating build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\assertions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\assertsql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\config.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\distutils_run.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\engines.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\entities.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\exclusions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\fixtures.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\mock.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\pickleable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\profiling.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\provision.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\replay_fixture.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\requirements.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\runner.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\warnings.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing creating build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\bootstrap.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\noseplugin.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\plugin_base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\pytestplugin.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin creating build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_ddl.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_dialect.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_insert.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_reflection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_results.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_select.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_sequence.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_types.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_update_delete.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite creating build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\compat.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\deprecations.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\langhelpers.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\queue.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\topological.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\_collections.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util running build_ext building 'sqlalchemy.cprocessors' extension error: [Error 2] The system cannot find the file specified ---------------------------------------- Command &quot;c:\users\humphrig\desktop\temp\py_test\scripts\python.exe -u -c &quot;import setuptools, tokenize;__file__='c:\\users\\humphrig\\appdata\\local\\temp\\pip-build-8mzqqo\\sqlalchemy\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))&quot; install --record c:\users\humphrig\appdata\local\temp\pip-cphs4n-record\install-record.txt --single-version-externally-managed --compile --install-headers c:\users\humphrig\desktop\temp\py_test\include\site\python2.7\sqlalchemy&quot; failed with error code 1 in c:\users\humphrig\appdata\local\temp\pip-build-8mzqqo\sqlalchemy\ "><pre class="notranslate"><code class="notranslate">Collecting sqlalchemy Using cached SQLAlchemy-1.0.14.tar.gz Building wheels for collected packages: sqlalchemy Running setup.py bdist_wheel for sqlalchemy: started Running setup.py bdist_wheel for sqlalchemy: finished with status 'error' Complete output from command c:\users\humphrig\desktop\temp\py_test\scripts\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\humphrig\\appdata\\local\\temp\\pip-build-8mzqqo\\sqlalchemy\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" bdist_wheel -d c:\users\humphrig\appdata\local\temp\tmpv0u4nupip-wheel- --python-tag cp27: running bdist_wheel running build running build_py creating build creating build\lib.win-amd64-2.7 creating build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\events.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\exc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\inspection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\log.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\pool.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\processors.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\types.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy creating build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\zxJDBC.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors creating build\lib.win-amd64-2.7\sqlalchemy\databases copying lib\sqlalchemy\databases\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\databases creating build\lib.win-amd64-2.7\sqlalchemy\dialects copying lib\sqlalchemy\dialects\postgres.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects copying lib\sqlalchemy\dialects\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects creating build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\fdb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\kinterbasdb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird creating build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\adodbapi.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\information_schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\pymssql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\cymysql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\gaerdbms.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\mysqlconnector.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\mysqldb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\oursql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\pymysql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\cx_oracle.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle creating build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\constraints.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\hstore.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\json.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\pg8000.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\psycopg2.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\psycopg2cffi.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\pypostgresql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\ranges.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\pysqlcipher.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\pysqlite.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite creating build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\pysybase.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase creating build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\default.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\reflection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\result.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\strategies.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\threadlocal.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\url.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine creating build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\attr.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\legacy.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\registry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event creating build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\associationproxy.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\automap.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\baked.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\compiler.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\horizontal_shard.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\hybrid.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\instrumentation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\mutable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\orderinglist.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\serializer.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext creating build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\clsregistry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative creating build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\attributes.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\collections.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\dependency.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\deprecated_interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\descriptor_props.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\dynamic.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\evaluator.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\events.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\exc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\identity.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\instrumentation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\loading.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\mapper.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\path_registry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\persistence.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\properties.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\query.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\relationships.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\scoping.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\session.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\state.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\strategies.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\strategy_options.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\sync.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\unitofwork.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm creating build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\annotation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\compiler.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\crud.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\ddl.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\default_comparator.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\dml.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\elements.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\expression.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\functions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\naming.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\operators.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\selectable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\sqltypes.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\type_api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\visitors.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql creating build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\assertions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\assertsql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\config.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\distutils_run.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\engines.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\entities.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\exclusions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\fixtures.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\mock.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\pickleable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\profiling.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\provision.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\replay_fixture.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\requirements.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\runner.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\warnings.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing creating build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\bootstrap.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\noseplugin.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\plugin_base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\pytestplugin.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin creating build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_ddl.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_dialect.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_insert.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_reflection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_results.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_select.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_sequence.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_types.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_update_delete.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite creating build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\compat.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\deprecations.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\langhelpers.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\queue.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\topological.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\_collections.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util running build_ext building 'sqlalchemy.cprocessors' extension error: [Error 2] The system cannot find the file specified ---------------------------------------- Failed building wheel for sqlalchemy Running setup.py clean for sqlalchemy Failed to build sqlalchemy Installing collected packages: sqlalchemy Running setup.py install for sqlalchemy: started Running setup.py install for sqlalchemy: finished with status 'error' Complete output from command c:\users\humphrig\desktop\temp\py_test\scripts\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\humphrig\\appdata\\local\\temp\\pip-build-8mzqqo\\sqlalchemy\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record c:\users\humphrig\appdata\local\temp\pip-cphs4n-record\install-record.txt --single-version-externally-managed --compile --install-headers c:\users\humphrig\desktop\temp\py_test\include\site\python2.7\sqlalchemy: running install running build running build_py creating build creating build\lib.win-amd64-2.7 creating build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\events.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\exc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\inspection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\log.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\pool.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\processors.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\types.py -&gt; build\lib.win-amd64-2.7\sqlalchemy copying lib\sqlalchemy\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy creating build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\zxJDBC.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors copying lib\sqlalchemy\connectors\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\connectors creating build\lib.win-amd64-2.7\sqlalchemy\databases copying lib\sqlalchemy\databases\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\databases creating build\lib.win-amd64-2.7\sqlalchemy\dialects copying lib\sqlalchemy\dialects\postgres.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects copying lib\sqlalchemy\dialects\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects creating build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\fdb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\kinterbasdb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird copying lib\sqlalchemy\dialects\firebird\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\firebird creating build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\adodbapi.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\information_schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\pymssql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql copying lib\sqlalchemy\dialects\mssql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mssql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\cymysql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\gaerdbms.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\mysqlconnector.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\mysqldb.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\oursql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\pymysql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql copying lib\sqlalchemy\dialects\mysql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\mysql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\cx_oracle.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle copying lib\sqlalchemy\dialects\oracle\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\oracle creating build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\constraints.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\hstore.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\json.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\pg8000.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\psycopg2.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\psycopg2cffi.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\pypostgresql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\ranges.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\zxjdbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql copying lib\sqlalchemy\dialects\postgresql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\postgresql creating build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\pysqlcipher.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\pysqlite.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite copying lib\sqlalchemy\dialects\sqlite\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sqlite creating build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\mxodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\pyodbc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\pysybase.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase copying lib\sqlalchemy\dialects\sybase\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\dialects\sybase creating build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\default.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\reflection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\result.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\strategies.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\threadlocal.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\url.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine copying lib\sqlalchemy\engine\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\engine creating build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\attr.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\legacy.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\registry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event copying lib\sqlalchemy\event\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\event creating build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\associationproxy.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\automap.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\baked.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\compiler.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\horizontal_shard.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\hybrid.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\instrumentation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\mutable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\orderinglist.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\serializer.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext copying lib\sqlalchemy\ext\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext creating build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\clsregistry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative copying lib\sqlalchemy\ext\declarative\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\ext\declarative creating build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\attributes.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\collections.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\dependency.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\deprecated_interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\descriptor_props.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\dynamic.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\evaluator.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\events.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\exc.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\identity.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\instrumentation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\interfaces.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\loading.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\mapper.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\path_registry.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\persistence.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\properties.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\query.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\relationships.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\scoping.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\session.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\state.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\strategies.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\strategy_options.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\sync.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\unitofwork.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm copying lib\sqlalchemy\orm\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\orm creating build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\annotation.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\compiler.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\crud.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\ddl.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\default_comparator.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\dml.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\elements.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\expression.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\functions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\naming.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\operators.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\selectable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\sqltypes.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\type_api.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\visitors.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql copying lib\sqlalchemy\sql\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\sql creating build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\assertions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\assertsql.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\config.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\distutils_run.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\engines.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\entities.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\exclusions.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\fixtures.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\mock.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\pickleable.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\profiling.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\provision.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\replay_fixture.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\requirements.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\runner.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\schema.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\util.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\warnings.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing copying lib\sqlalchemy\testing\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing creating build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\bootstrap.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\noseplugin.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\plugin_base.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\pytestplugin.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin copying lib\sqlalchemy\testing\plugin\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\plugin creating build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_ddl.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_dialect.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_insert.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_reflection.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_results.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_select.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_sequence.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_types.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\test_update_delete.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite copying lib\sqlalchemy\testing\suite\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\testing\suite creating build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\compat.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\deprecations.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\langhelpers.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\queue.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\topological.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\_collections.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util copying lib\sqlalchemy\util\__init__.py -&gt; build\lib.win-amd64-2.7\sqlalchemy\util running build_ext building 'sqlalchemy.cprocessors' extension error: [Error 2] The system cannot find the file specified ---------------------------------------- Command "c:\users\humphrig\desktop\temp\py_test\scripts\python.exe -u -c "import setuptools, tokenize;__file__='c:\\users\\humphrig\\appdata\\local\\temp\\pip-build-8mzqqo\\sqlalchemy\\setup.py';exec(compile(getattr(tokenize, 'open', open)(__file__).read().replace('\r\n', '\n'), __file__, 'exec'))" install --record c:\users\humphrig\appdata\local\temp\pip-cphs4n-record\install-record.txt --single-version-externally-managed --compile --install-headers c:\users\humphrig\desktop\temp\py_test\include\site\python2.7\sqlalchemy" failed with error code 1 in c:\users\humphrig\appdata\local\temp\pip-build-8mzqqo\sqlalchemy\ </code></pre></div>
<p dir="auto"><strong>Migrated issue, originally created by Frazer McLean (<a href="https://github.com/RazerM">@RazerM</a>)</strong></p> <p dir="auto">As mentioned in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="384636807" data-permission-text="Title is private" data-url="https://github.com/sqlalchemy/sqlalchemy/issues/3746" data-hovercard-type="issue" data-hovercard-url="/sqlalchemy/sqlalchemy/issues/3746/hovercard" href="https://github.com/sqlalchemy/sqlalchemy/issues/3746">#3746</a>, Windows wheels on PyPI would be useful.</p> <p dir="auto">I quickly set up wheel building on AppVeyor as a proof of concept. It's using my GitHub repository but it supports Bitbucket too.</p> <p dir="auto"><a href="https://ci.appveyor.com/project/RazerM/sqlalchemy/build/1.0.3" rel="nofollow">https://ci.appveyor.com/project/RazerM/sqlalchemy/build/1.0.3</a></p> <p dir="auto">I'd be willing to put the wheels on PyPI for new releases, but it's worth discussing user expectations. Once wheels are available, users expect them to be available. As such, it's good to have wheels on PyPI as soon as a new release goes live, and we'd have a delay if someone else is uploading.</p> <p dir="auto">AppVeyor has a REST API, so I could create a script that downloads the build artifacts (i.e. the wheels) so that whomever does the release can also upload the wheels at the same time.</p>
1
<p dir="auto"><strong>Glide Version</strong>: 4.4</p> <p dir="auto"><strong>Integration libraries</strong>:</p> <p dir="auto"><strong>Device/Android Version</strong>:</p> <p dir="auto"><strong>Issue details / Repro steps / Use case background</strong>:</p> <p dir="auto"><strong>Glide load line / <code class="notranslate">GlideModule</code> (if any) / list Adapter code (if any)</strong>:</p> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Glide.with..."><pre class="notranslate"><span class="pl-smi">Glide</span>.<span class="pl-smi">with</span>...</pre></div> <p dir="auto"><strong>Layout XML</strong>:</p> <div class="highlight highlight-text-xml notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;FrameLayout xmlns:android=&quot;..."><pre class="notranslate">&lt;<span class="pl-ent">FrameLayout</span> <span class="pl-e">xmlns</span><span class="pl-e">:</span><span class="pl-e">android</span>=<span class="pl-s"><span class="pl-pds">"</span>...</span></pre></div> <p dir="auto"><strong>Stack trace / LogCat</strong>:</p> <div class="highlight highlight-source-ruby notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="java.lang.IllegalStateException: Already released at com.bumptech.glide.util.pool.StateVerifier$DefaultStateVerifier.throwIfRecycled(StateVerifier.java:44) at com.bumptech.glide.request.SingleRequest.onResourceReady(SingleRequest.java:518) at com.bumptech.glide.load.engine.EngineJob.handleResultOnMainThread(EngineJob.java:217) at com.bumptech.glide.load.engine.EngineJob$MainThreadCallback.handleMessage(EngineJob.java:322) at android.os.Handler.dispatchMessage(Handler.java:98) at android.os.Looper.loop(Looper.java:154) at android.app.ActivityThread.main(ActivityThread.java:6247) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:872) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:762)"><pre class="notranslate"><span class="pl-en">java</span><span class="pl-kos">.</span><span class="pl-en">lang</span><span class="pl-kos">.</span><span class="pl-en">IllegalStateException</span>: <span class="pl-en">Already</span> <span class="pl-en">released</span> <span class="pl-en">at</span> <span class="pl-en">com</span><span class="pl-kos">.</span><span class="pl-en">bumptech</span><span class="pl-kos">.</span><span class="pl-en">glide</span><span class="pl-kos">.</span><span class="pl-en">util</span><span class="pl-kos">.</span><span class="pl-en">pool</span><span class="pl-kos">.</span><span class="pl-en">StateVerifier</span>$DefaultStateVerifier<span class="pl-kos">.</span><span class="pl-en">throwIfRecycled</span><span class="pl-kos">(</span><span class="pl-v">StateVerifier</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:44</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">com</span><span class="pl-kos">.</span><span class="pl-en">bumptech</span><span class="pl-kos">.</span><span class="pl-en">glide</span><span class="pl-kos">.</span><span class="pl-en">request</span><span class="pl-kos">.</span><span class="pl-en">SingleRequest</span><span class="pl-kos">.</span><span class="pl-en">onResourceReady</span><span class="pl-kos">(</span><span class="pl-v">SingleRequest</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:518</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">com</span><span class="pl-kos">.</span><span class="pl-en">bumptech</span><span class="pl-kos">.</span><span class="pl-en">glide</span><span class="pl-kos">.</span><span class="pl-en">load</span><span class="pl-kos">.</span><span class="pl-en">engine</span><span class="pl-kos">.</span><span class="pl-en">EngineJob</span><span class="pl-kos">.</span><span class="pl-en">handleResultOnMainThread</span><span class="pl-kos">(</span><span class="pl-v">EngineJob</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:217</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">com</span><span class="pl-kos">.</span><span class="pl-en">bumptech</span><span class="pl-kos">.</span><span class="pl-en">glide</span><span class="pl-kos">.</span><span class="pl-en">load</span><span class="pl-kos">.</span><span class="pl-en">engine</span><span class="pl-kos">.</span><span class="pl-en">EngineJob</span>$MainThreadCallback<span class="pl-kos">.</span><span class="pl-en">handleMessage</span><span class="pl-kos">(</span><span class="pl-v">EngineJob</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:322</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">os</span><span class="pl-kos">.</span><span class="pl-en">Handler</span><span class="pl-kos">.</span><span class="pl-en">dispatchMessage</span><span class="pl-kos">(</span><span class="pl-v">Handler</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:98</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">os</span><span class="pl-kos">.</span><span class="pl-en">Looper</span><span class="pl-kos">.</span><span class="pl-en">loop</span><span class="pl-kos">(</span><span class="pl-v">Looper</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:154</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">app</span><span class="pl-kos">.</span><span class="pl-en">ActivityThread</span><span class="pl-kos">.</span><span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-v">ActivityThread</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:6247</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">java</span><span class="pl-kos">.</span><span class="pl-en">lang</span><span class="pl-kos">.</span><span class="pl-en">reflect</span><span class="pl-kos">.</span><span class="pl-en">Method</span><span class="pl-kos">.</span><span class="pl-en">invoke</span><span class="pl-kos">(</span><span class="pl-en">Native</span> <span class="pl-v">Method</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">com</span><span class="pl-kos">.</span><span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">internal</span><span class="pl-kos">.</span><span class="pl-en">os</span><span class="pl-kos">.</span><span class="pl-en">ZygoteInit</span>$MethodAndArgsCaller<span class="pl-kos">.</span><span class="pl-en">run</span><span class="pl-kos">(</span><span class="pl-v">ZygoteInit</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:872</span><span class="pl-kos">)</span> <span class="pl-en">at</span> <span class="pl-en">com</span><span class="pl-kos">.</span><span class="pl-en">android</span><span class="pl-kos">.</span><span class="pl-en">internal</span><span class="pl-kos">.</span><span class="pl-en">os</span><span class="pl-kos">.</span><span class="pl-en">ZygoteInit</span><span class="pl-kos">.</span><span class="pl-en">main</span><span class="pl-kos">(</span><span class="pl-v">ZygoteInit</span><span class="pl-kos">.</span><span class="pl-en">java</span><span class="pl-pds">:762</span><span class="pl-kos">)</span></pre></div> <p dir="auto">How can I catch this exception instead of letting it crash my app? Thanks.</p>
<p dir="auto">Hey,</p> <p dir="auto">I use Glide to download a GIF and insert it into PhotoView. Works fine, but I want to be able to save this GIF to my local storage. I have searched through issues over here, but none was viable for me.<br> I was trying to use this part of code to get this done:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="override fun getDrawable() : Drawable? { photoView.image.drawable?.apply { return this } return null } override fun saveImage() { val drawable = getDrawable() if (drawable == null || !checkForWriteReadPermission()) { return } if (drawable is BitmapDrawable) { val bitmap = drawable.bitmap val file = File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES), &quot;wykopmobilny&quot;) if (!file.exists()) file.mkdirs() val pictureFile = File(&quot;&quot;&quot;${file.absoluteFile}/${photoView.url.substringAfterLast('/')}&quot;&quot;&quot;) val fos = FileOutputStream(pictureFile) bitmap.compress(Bitmap.CompressFormat.PNG, 90, fos) fos.close() addImageToGallery(pictureFile.absolutePath, context) showToastMessage(&quot;Zapisano obraz&quot;) } else if (drawable is GifDrawable) { val byteBuffer = drawable.buffer val file = File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES), &quot;wykopmobilny&quot;) if (!file.exists()) file.mkdirs() val gifFile = File(&quot;&quot;&quot;${file.absoluteFile}/${photoView.url.substringAfterLast('/')}&quot;&quot;&quot;) val output = FileOutputStream(gifFile) val bytes = ByteArray(byteBuffer.position()) byteBuffer.get(bytes) output.write(bytes, 0, bytes.size) output.close() //val fileChannel = FileOutputStream(gifFile).channel //fileChannel.write(byteBuffer) //fileChannel.close() showToastMessage(&quot;Zapisano GIFa&quot;) } }"><pre class="notranslate"><code class="notranslate">override fun getDrawable() : Drawable? { photoView.image.drawable?.apply { return this } return null } override fun saveImage() { val drawable = getDrawable() if (drawable == null || !checkForWriteReadPermission()) { return } if (drawable is BitmapDrawable) { val bitmap = drawable.bitmap val file = File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES), "wykopmobilny") if (!file.exists()) file.mkdirs() val pictureFile = File("""${file.absoluteFile}/${photoView.url.substringAfterLast('/')}""") val fos = FileOutputStream(pictureFile) bitmap.compress(Bitmap.CompressFormat.PNG, 90, fos) fos.close() addImageToGallery(pictureFile.absolutePath, context) showToastMessage("Zapisano obraz") } else if (drawable is GifDrawable) { val byteBuffer = drawable.buffer val file = File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES), "wykopmobilny") if (!file.exists()) file.mkdirs() val gifFile = File("""${file.absoluteFile}/${photoView.url.substringAfterLast('/')}""") val output = FileOutputStream(gifFile) val bytes = ByteArray(byteBuffer.position()) byteBuffer.get(bytes) output.write(bytes, 0, bytes.size) output.close() //val fileChannel = FileOutputStream(gifFile).channel //fileChannel.write(byteBuffer) //fileChannel.close() showToastMessage("Zapisano GIFa") } } </code></pre></div> <p dir="auto">and it actually creates a file, but it is broken and cannot be open. For example the file size is 4.19, but the GIF size when downloading was 4.59, so it looks like it is missing some part of it.</p> <p dir="auto">Glide version I use is 4.5 and the Widget is <a href="https://github.com/chrisbanes/PhotoView">https://github.com/chrisbanes/PhotoView</a></p> <p dir="auto">PS. Saving static image works fine.</p>
0
<p dir="auto"><strong>Migrated issue, originally created by Anonymous</strong></p> <p dir="auto">(original reporter: ged) Continuing my speed optimization frenzy, here is a (very) experimental patch to optimize the ORM speed by using a custom ResultProxy which only returns dicts with whatever will be used by the ORM.</p> <p dir="auto">Once again, the results are encouraging:<br> ~26% improvement on large queries<br> ~11% improvement on very small queries</p> <p dir="auto">Remember that I am timing <em>total</em> time, including the time for the actual DBAPI work.</p> <p dir="auto">A few comments about the patch:</p> <ul dir="auto"> <li>The approach needs to be able to specify a custom ResultProxy class per query (or at least from within the ORM code path). I think this can also be useful outside the ORM, if the user wants to have its results returned in a specific way (I've had a couple times where I needed that and did it on top of the standard ResultProxy but this was not very efficient, but I didn't think to this solution at the time). Within the patch, I've only made the minimum possible modification so that it would work for my test case (attached). It would of course need to be completed, but I can't do that since I am a bit lost within that part of the code (the different ways to create a connection, and the code path it goes through the dialect etc...). I am hoping for some help here.</li> <li>I know the custom ResultProxy approach is not compatible with the specific result proxies used by the various dialects, but I am sure it is possible to refactor the code to make that work (I haven't thought about it much yet).</li> <li>There are two parts of that patch which are ugly to my eyes: <ul dir="auto"> <li>the way I'm guessing what exactly will serve as a key in the dictionary. I am hoping there could be an official "contract" that for example the first element of the result_map is what is used by the ORM.</li> <li>I have duplicated the functionality of _process_row in fetchall. This is because the overhead of the function call is significant. This is ugly, I know, but worth it IMO for such a critical part.</li> </ul> </li> </ul> <hr> <p dir="auto">Attachments: <a href="../wiki/imported_issue_attachments/1592/NamedTuple_opt.patch">NamedTuple_opt.patch</a> | <a href="../wiki/imported_issue_attachments/1592/orm_uses_col_indexes.patch">orm_uses_col_indexes.patch</a> | <a href="../wiki/imported_issue_attachments/1592/querying_columns_only_opt.patch">querying_columns_only_opt.patch</a> | <a href="../wiki/imported_issue_attachments/1592/fastdict_resultproxy.patch">fastdict_resultproxy.patch</a> | <a href="../wiki/imported_issue_attachments/1592/kwargs_are_inefficient.patch">kwargs_are_inefficient.patch</a> | <a href="../wiki/imported_issue_attachments/1592/stress_orm.py">stress_orm.py</a></p>
<p dir="auto"><strong>Migrated issue, originally created by Brad Kittenbrink (<a href="https://github.com/brad">@brad</a>)</strong></p> <p dir="auto">WinPython distribution, Python 3.3, 64-bit, Windows 7 64-bit, SQLAlchemy 0.8, SQL Server 2012</p> <p dir="auto">When trying to create a table on an existing SQL Server database, the <strong>do_execute</strong> method in engine\default.py receives a bytes object in the <strong>statement</strong> argument rather than a str/unicode object.</p> <p dir="auto">Patching the method like this allows the table creation to work:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" def do_execute(self, cursor, statement, parameters, context=None): #begin addition if isinstance(statement,bytes): statement = statement.decode('utf-8') #end addition cursor.execute(statement, parameters)"><pre class="notranslate"><code class="notranslate"> def do_execute(self, cursor, statement, parameters, context=None): #begin addition if isinstance(statement,bytes): statement = statement.decode('utf-8') #end addition cursor.execute(statement, parameters) </code></pre></div> <h2 dir="auto">Code to reproduce error (requires and existing SQL Server database):</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="# -*- coding: utf-8 -*- from sqlalchemy import Column, String, Integer, create_engine from sqlalchemy.ext.declarative import declarative_base Base = declarative_base() class Table1(Base): __tablename__ = 'tblTable1' MyID = Column(Integer , primary_key = True, autoincrement = True, nullable = False) Name = Column(String(255) , nullable = False , server_default = &quot;&quot;, default=&quot;&quot;) url = 'mssql+pyodbc://{server}/{db}'.format(server='servermachine\\servername',db='testdb') eng = create_engine(url) Base.metadata.create_all(eng)"><pre class="notranslate"><code class="notranslate"># -*- coding: utf-8 -*- from sqlalchemy import Column, String, Integer, create_engine from sqlalchemy.ext.declarative import declarative_base Base = declarative_base() class Table1(Base): __tablename__ = 'tblTable1' MyID = Column(Integer , primary_key = True, autoincrement = True, nullable = False) Name = Column(String(255) , nullable = False , server_default = "", default="") url = 'mssql+pyodbc://{server}/{db}'.format(server='servermachine\\servername',db='testdb') eng = create_engine(url) Base.metadata.create_all(eng) </code></pre></div> <hr> <p dir="auto">Text of error message:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py&quot;, line 757, in _do_get return self._pool.get(wait, self._timeout) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\util\queue.py&quot;, line 166, in get raise Empty sqlalchemy.util.queue.Empty During handling of the above exception, another exception occurred: Traceback (most recent call last): File &quot;D:\src\bug_reports\sqlalchemy_bug.py&quot;, line 24, in &lt;module&gt; Base.metadata.create_all(eng) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\schema.py&quot;, line 2787, in create_all tables=tables) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py&quot;, line 1488, in _run_visitor with self._optional_conn_ctx_manager(connection) as conn: File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\contextlib.py&quot;, line 48, in __enter__ return next(self.gen) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py&quot;, line 1481, in _optional_conn_ctx_manager with self.contextual_connect() as conn: File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py&quot;, line 1671, in contextual_connect self.pool.connect(), File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py&quot;, line 272, in connect return _ConnectionFairy(self).checkout() File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py&quot;, line 425, in __init__ rec = self._connection_record = pool._do_get() File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py&quot;, line 777, in _do_get con = self._create_connection() File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py&quot;, line 225, in _create_connection return _ConnectionRecord(self) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py&quot;, line 322, in __init__ exec_once(self.connection, self) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\event.py&quot;, line 390, in exec_once self(*args, **kw) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\event.py&quot;, line 407, in __call__ fn(*args, **kw) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\strategies.py&quot;, line 168, in first_connect dialect.initialize(c) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\connectors\pyodbc.py&quot;, line 138, in initialize super(PyODBCConnector, self).initialize(connection) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\dialects\mssql\base.py&quot;, line 1125, in initialize super(MSDialect, self).initialize(connection) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\default.py&quot;, line 172, in initialize self._get_default_schema_name(connection) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\dialects\mssql\base.py&quot;, line 1141, in _get_default_schema_name user_name = connection.scalar(&quot;SELECT user_name()&quot;) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py&quot;, line 597, in scalar return self.execute(object, *multiparams, **params).scalar() File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py&quot;, line 664, in execute params) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py&quot;, line 808, in _execute_text statement, parameters File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py&quot;, line 871, in _execute_context context) File &quot;D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\default.py&quot;, line 324, in do_execute cursor.execute(statement, parameters) TypeError: The first argument to execute must be a string or unicode query."><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py", line 757, in _do_get return self._pool.get(wait, self._timeout) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\util\queue.py", line 166, in get raise Empty sqlalchemy.util.queue.Empty During handling of the above exception, another exception occurred: Traceback (most recent call last): File "D:\src\bug_reports\sqlalchemy_bug.py", line 24, in &lt;module&gt; Base.metadata.create_all(eng) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\schema.py", line 2787, in create_all tables=tables) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py", line 1488, in _run_visitor with self._optional_conn_ctx_manager(connection) as conn: File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\contextlib.py", line 48, in __enter__ return next(self.gen) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py", line 1481, in _optional_conn_ctx_manager with self.contextual_connect() as conn: File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py", line 1671, in contextual_connect self.pool.connect(), File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py", line 272, in connect return _ConnectionFairy(self).checkout() File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py", line 425, in __init__ rec = self._connection_record = pool._do_get() File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py", line 777, in _do_get con = self._create_connection() File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py", line 225, in _create_connection return _ConnectionRecord(self) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\pool.py", line 322, in __init__ exec_once(self.connection, self) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\event.py", line 390, in exec_once self(*args, **kw) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\event.py", line 407, in __call__ fn(*args, **kw) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\strategies.py", line 168, in first_connect dialect.initialize(c) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\connectors\pyodbc.py", line 138, in initialize super(PyODBCConnector, self).initialize(connection) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\dialects\mssql\base.py", line 1125, in initialize super(MSDialect, self).initialize(connection) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\default.py", line 172, in initialize self._get_default_schema_name(connection) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\dialects\mssql\base.py", line 1141, in _get_default_schema_name user_name = connection.scalar("SELECT user_name()") File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py", line 597, in scalar return self.execute(object, *multiparams, **params).scalar() File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py", line 664, in execute params) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py", line 808, in _execute_text statement, parameters File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\base.py", line 871, in _execute_context context) File "D:\WinPython\python33x64\python-3.3.0.amd64\lib\site-packages\sqlalchemy\engine\default.py", line 324, in do_execute cursor.execute(statement, parameters) TypeError: The first argument to execute must be a string or unicode query. </code></pre></div>
0
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV 4.5.4</li> <li>Python 3.7 (opencv installed using pip: "pip install opencv-python")</li> <li>Ubuntu 18.04 amd64</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">Up to version 4.5.3 findContours returned contours as a list. Starting on version 4.5.4 the contours are returned as a tuple. This will break codes that try to modify the returned tuple.</p> <h5 dir="auto">Steps to reproduce</h5> <p dir="auto">contours, hierarchy = cv2.findContours(binary_image, cv2.RETR_CCOMP, cv2.CHAIN_APPROX_SIMPLE)<br> for i in range(len(contours)):<br> contours[i] = np.round(contours[i]*[1/3, -1/3]).astype(np.int32)</p>
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 3.4, master</li> <li>Operating System / Platform =&gt; all</li> <li>Compiler =&gt; gcc-10</li> </ul> <h5 dir="auto">Detailed description</h5> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="[ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/matrix_iterator.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid for C/ObjC but not for C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid for C/ObjC but not for C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/matrix_operations.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid for C/ObjC but not for C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid for C/ObjC but not for C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/matrix_sparse.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid for C/ObjC but not for C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid for C/ObjC but not for C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/matrix_wrap.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid for C/ObjC but not for C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid for C/ObjC but not for C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/mean.dispatch.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid for C/ObjC but not for C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid for C/ObjC but not for C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/merge.dispatch.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid for C/ObjC but not for C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid for C/ObjC but not for C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/minmax.cpp.o "><pre class="notranslate">[ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/matrix_iterator.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/matrix_operations.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/matrix_sparse.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/matrix_wrap.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/mean.dispatch.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/merge.dispatch.cpp.o cc1plus: warning: command-line option β€˜-Wmissing-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid <span class="pl-k">for</span> C/ObjC but not <span class="pl-k">for</span> C++ [ 30%] Building CXX object modules/core/CMakeFiles/opencv_core.dir/src/minmax.cpp.o </pre></div> <h4 dir="auto">3rdparty warnings (C sources)</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="cc1plus: warning: command-line option β€˜-Wno-missing-prototypes’ is valid for C/ObjC but not for C++ [ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Half/half.cpp.o cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid for C/ObjC but not for C++ cc1plus: warning: command-line option β€˜-Wno-missing-prototypes’ is valid for C/ObjC but not for C++ [ 8%] Building C object 3rdparty/libtiff/CMakeFiles/libtiff.dir/tif_dirwrite.c.o [ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_enc.c.o cc1: warning: command-line option β€˜-Wsign-promo’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wsuggest-override’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wno-delete-non-virtual-dtor’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-fvisibility-inlines-hidden’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wsign-promo’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wsuggest-override’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wno-delete-non-virtual-dtor’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-fvisibility-inlines-hidden’ is valid for C++/ObjC++ but not for C [ 8%] Building C object 3rdparty/libjpeg-turbo/CMakeFiles/libjpeg-turbo.dir/src/jdatasrc.c.o cc1: warning: command-line option β€˜-Wsign-promo’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wsuggest-override’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wno-delete-non-virtual-dtor’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-fvisibility-inlines-hidden’ is valid for C++/ObjC++ but not for C [ 8%] Building C object 3rdparty/libjpeg-turbo/CMakeFiles/libjpeg-turbo.dir/src/jdcoefct.c.o cc1: warning: command-line option β€˜-Wsign-promo’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wsuggest-override’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wno-delete-non-virtual-dtor’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-fvisibility-inlines-hidden’ is valid for C++/ObjC++ but not for "><pre class="notranslate"><code class="notranslate">cc1plus: warning: command-line option β€˜-Wno-missing-prototypes’ is valid for C/ObjC but not for C++ [ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Half/half.cpp.o cc1plus: warning: command-line option β€˜-Wstrict-prototypes’ is valid for C/ObjC but not for C++ cc1plus: warning: command-line option β€˜-Wno-missing-prototypes’ is valid for C/ObjC but not for C++ [ 8%] Building C object 3rdparty/libtiff/CMakeFiles/libtiff.dir/tif_dirwrite.c.o [ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_enc.c.o cc1: warning: command-line option β€˜-Wsign-promo’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wsuggest-override’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wno-delete-non-virtual-dtor’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-fvisibility-inlines-hidden’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wsign-promo’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wsuggest-override’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wno-delete-non-virtual-dtor’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-fvisibility-inlines-hidden’ is valid for C++/ObjC++ but not for C [ 8%] Building C object 3rdparty/libjpeg-turbo/CMakeFiles/libjpeg-turbo.dir/src/jdatasrc.c.o cc1: warning: command-line option β€˜-Wsign-promo’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wsuggest-override’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wno-delete-non-virtual-dtor’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-fvisibility-inlines-hidden’ is valid for C++/ObjC++ but not for C [ 8%] Building C object 3rdparty/libjpeg-turbo/CMakeFiles/libjpeg-turbo.dir/src/jdcoefct.c.o cc1: warning: command-line option β€˜-Wsign-promo’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wsuggest-override’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-Wno-delete-non-virtual-dtor’ is valid for C++/ObjC++ but not for C cc1: warning: command-line option β€˜-fvisibility-inlines-hidden’ is valid for C++/ObjC++ but not for </code></pre></div> <h5 dir="auto">Steps to reproduce</h5> <p dir="auto">build OpenCV on GCC 10</p>
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: xxx</li> <li>Operating System version: xxx</li> <li>Java version: xxx</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>xxx</li> <li>xxx</li> <li>xxx</li> </ol> <p dir="auto">Pls. provide [GitHub address] to reproduce this issue.</p> <h3 dir="auto">Expected Result</h3> <p dir="auto">What do you expected from the above steps?</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">What actually happens?</p> <p dir="auto">If there is an exception, please attach the exception trace:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Just put your stack trace here!"><pre class="notranslate"><code class="notranslate">Just put your stack trace here! </code></pre></div>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.7.3</li> <li>Operating System version: Mac</li> <li>Java version: 1.8</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>does the dubbo 2.7.3 version not support config qos port in the properties?<br> i set the configuration as follow:<br> dubbo.protocol.port=2345<br> dubbo.qos.enable=true<br> dubbo.qos.port=33333<br> dubbo.qos.accept.foreign.ip=false</li> </ol> <p dir="auto">it is not working, and i found the QosConstants class in the package org.apache.dubbo.qos.common; the default port is 22222, can not change.</p>
0
<p dir="auto">This is feature request, really.<br> I suggest to implement independent scroll bar for the code mirror window. It's gonna be much easier to scroll down to the 100th line of code and still see what you should implement and additional information on it</p>
<p dir="auto">It might be more convenient if the instruction and coding area scrolled independently of each other so you can refer to each section without having to continuously scroll up and down.</p>
1
<p dir="auto">Challenge <a href="http://beta.freecodecamp.com/en/challenges/applied-visual-design/use-a-google-font" rel="nofollow">use-a-google-font</a> has an issue.</p> <p dir="auto">Similarly to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="208885134" data-permission-text="Title is private" data-url="https://github.com/freeCodeCamp/freeCodeCamp/issues/13463" data-hovercard-type="issue" data-hovercard-url="/freeCodeCamp/freeCodeCamp/issues/13463/hovercard" href="https://github.com/freeCodeCamp/freeCodeCamp/issues/13463">#13463</a>, there are two versions of this challenge, one in <a href="http://beta.freecodecamp.com/en/challenges/basic-css/import-a-google-font" rel="nofollow">Basic CSS</a> (the original one) and one in <a href="http://beta.freecodecamp.com/en/challenges/applied-visual-design/use-a-google-font" rel="nofollow">Applied visual design</a> (this one was added with the new curriculum).</p> <p dir="auto">Actually both have a good description, I think the best thing would be to merge the two challenges to have only one on the subject, rather than just deleting one.</p>
<p dir="auto">Challenge <a href="http://www.freecodecamp.com/challenges/waypoint-target-a-specific-child-of-an-element-using-jquery" rel="nofollow">http://www.freecodecamp.com/challenges/waypoint-target-a-specific-child-of-an-element-using-jquery</a> has an issue</p> <p dir="auto">The correct way to complete the code is:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$(&quot;.btn:nth-child(2)&quot;).addClass(&quot;animated bounce&quot;)"><pre class="notranslate"><code class="notranslate">$(".btn:nth-child(2)").addClass("animated bounce") </code></pre></div> <p dir="auto">However, writing the code like this also marks the task as completed:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$(&quot;:nth-child(2)&quot;).addClass(&quot;animated bounce&quot;)"><pre class="notranslate"><code class="notranslate">$(":nth-child(2)").addClass("animated bounce") </code></pre></div> <p dir="auto">While the 2nd version is also technically correct, it does not necessarily answers the task.</p>
0
<h5 dir="auto">Issue Type:</h5> <p dir="auto">Bug Report</p> <h5 dir="auto">Ansible Version:</h5> <p dir="auto">1.7.2</p> <h5 dir="auto">Environment:</h5> <p dir="auto">CentOS 6.4</p> <h5 dir="auto">Summary:</h5> <p dir="auto">Variable substitution occur only once when delegate_to using with serial.</p> <h5 dir="auto">Steps To Reproduce:</h5> <p dir="auto">hosts</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="host1 copy_from=host9 host2 copy_from=host8 host3 copy_from=host7"><pre class="notranslate"><code class="notranslate">host1 copy_from=host9 host2 copy_from=host8 host3 copy_from=host7 </code></pre></div> <p dir="auto">playbook.yml</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" --- - hosts: all serial: 1 tasks: - debug: msg={{ copy_from }} delegate_to: &quot;{{ copy_from }}&quot;"><pre class="notranslate"><code class="notranslate"> --- - hosts: all serial: 1 tasks: - debug: msg={{ copy_from }} delegate_to: "{{ copy_from }}" </code></pre></div> <h5 dir="auto">Expected Results:</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host3 -&gt; host7] =&gt; { &quot;msg&quot;: &quot;host7&quot; } TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host2 -&gt; host8] =&gt; { &quot;msg&quot;: &quot;host8&quot; } TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host1 -&gt; host9] =&gt; { &quot;msg&quot;: &quot;host9&quot; }"><pre class="notranslate"><code class="notranslate">TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host3 -&gt; host7] =&gt; { "msg": "host7" } TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host2 -&gt; host8] =&gt; { "msg": "host8" } TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host1 -&gt; host9] =&gt; { "msg": "host9" } </code></pre></div> <h5 dir="auto">Actual Results:</h5> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host3 -&gt; host9] =&gt; { &quot;msg&quot;: &quot;host9&quot; } TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host2 -&gt; host9] =&gt; { &quot;msg&quot;: &quot;host8&quot; } TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host1 -&gt; host9] =&gt; { &quot;msg&quot;: &quot;host7&quot; }"><pre class="notranslate"><code class="notranslate">TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host3 -&gt; host9] =&gt; { "msg": "host9" } TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host2 -&gt; host9] =&gt; { "msg": "host8" } TASK: [debug msg={{ copy_from }}] ********************************************* ok: [host1 -&gt; host9] =&gt; { "msg": "host7" } </code></pre></div> <h5 dir="auto">Workaround:</h5> <p dir="auto">playbook.yml</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" --- - hosts: all serial: 1 tasks: - debug: msg={{ copy_from }} delegate_to: &quot;{{ item }}&quot; with_items: - &quot;{{ copy_from }}&quot;"><pre class="notranslate"><code class="notranslate"> --- - hosts: all serial: 1 tasks: - debug: msg={{ copy_from }} delegate_to: "{{ item }}" with_items: - "{{ copy_from }}" </code></pre></div>
<h5 dir="auto">Issue Type:</h5> <p dir="auto">Bug Report</p> <h5 dir="auto">Ansible Version:</h5> <p dir="auto">all versions</p> <h5 dir="auto">Environment:</h5> <p dir="auto">N/A</p> <h5 dir="auto">Summary:</h5> <p dir="auto">There is a bug in the templating code of <code class="notranslate">delegate_to:</code> in that, it only happens once per runner proces fork, instead of for every host.</p> <h5 dir="auto">Steps To Reproduce:</h5> <p dir="auto">Test inventory and playbook:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ for n in `seq 0 20`; do echo host$n &gt;&gt; hosts ; done $ cat test.yml --- - hosts: all gather_facts: false connection: local tasks: - command: sleep 1 delegate_to: '{{ inventory_hostname }}'"><pre class="notranslate"><code class="notranslate">$ for n in `seq 0 20`; do echo host$n &gt;&gt; hosts ; done $ cat test.yml --- - hosts: all gather_facts: false connection: local tasks: - command: sleep 1 delegate_to: '{{ inventory_hostname }}' </code></pre></div> <h5 dir="auto">Expected Results:</h5> <p dir="auto"><code class="notranslate">ansible-playbook -i hosts test.yml -f 1</code> (or whatever value for fork)</p> <p dir="auto">TASK: [command sleep 1] *******************************************************<br> changed: [host1 -&gt; host1]<br> changed: [host0 -&gt; host0]<br> changed: [host2 -&gt; host2]<br> changed: [host4 -&gt; host4]<br> changed: [host8 -&gt; host8]<br> changed: [host3 -&gt; host3]<br> changed: [host6 -&gt; host6]<br> changed: [host9 -&gt; host9]<br> changed: [host5 -&gt; host5]<br> changed: [host14 -&gt; host14]<br> changed: [host16 -&gt; host16]<br> changed: [host15 -&gt; host15]<br> changed: [host10 -&gt; host10]<br> changed: [host13 -&gt; host13]<br> changed: [host11 -&gt; host11]<br> changed: [host18 -&gt; host18]<br> changed: [host17 -&gt; host17]<br> changed: [host20 -&gt; host20]<br> changed: [host19 -&gt; host19]<br> changed: [host7 -&gt; host7]<br> changed: [host12 -&gt; host12]</p> <h5 dir="auto">Actual Results:</h5> <p dir="auto"><code class="notranslate">ansible-playbook -i hosts test.yml -f 1</code><br> TASK: [command sleep 1] *******************************************************<br> changed: [host0 -&gt; host0]<br> changed: [host1 -&gt; host0]<br> changed: [host2 -&gt; host0]<br> changed: [host3 -&gt; host0]<br> changed: [host4 -&gt; host0]<br> changed: [host5 -&gt; host0]<br> changed: [host6 -&gt; host0]<br> changed: [host7 -&gt; host0]<br> changed: [host8 -&gt; host0]<br> ...</p> <p dir="auto"><code class="notranslate">ansible-playbook -i hosts test.yml -f 2</code><br> TASK: [command sleep 1] *******************************************************<br> changed: [host1 -&gt; host1]<br> changed: [host0 -&gt; host0]<br> changed: [host3 -&gt; host0]<br> changed: [host2 -&gt; host1]<br> changed: [host5 -&gt; host1]<br> changed: [host4 -&gt; host0]<br> changed: [host6 -&gt; host1]<br> changed: [host7 -&gt; host0]<br> changed: [host9 -&gt; host0]<br> ...</p> <p dir="auto"><code class="notranslate">ansible-playbook -i hosts test.yml -f 3</code><br> TASK: [command sleep 1] *******************************************************<br> changed: [host2 -&gt; host2]<br> changed: [host1 -&gt; host1]<br> changed: [host0 -&gt; host0]<br> changed: [host3 -&gt; host2]<br> changed: [host4 -&gt; host1]<br> changed: [host5 -&gt; host0]<br> changed: [host6 -&gt; host2]<br> changed: [host7 -&gt; host1]<br> ...</p> <p dir="auto">The same effect can also be seen by varying the <code class="notranslate">serial:</code> option in the play.</p>
1
<p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/14129554/22622882/bd9c80a0-eb15-11e6-9ee1-3269efd7e0bd.png"><img src="https://cloud.githubusercontent.com/assets/14129554/22622882/bd9c80a0-eb15-11e6-9ee1-3269efd7e0bd.png" alt="error_2_4" style="max-width: 100%;"></a></p> <p dir="auto">Hello,<br> I am tring to do install core of tensorflow on Raspberry PI 3, on Ubuntu 16.04 LTS using python 3.5.2, exactly following the instruction on <a href="https://github.com/tensorflow/tensorflow/tree/master/tensorflow/contrib/makefile">https://github.com/tensorflow/tensorflow/tree/master/tensorflow/contrib/makefile</a>, but got error messages at last step "make -f tensorflow/contrib/makefile/Makefile HOST_OS=PI TARGET=PI OPTFLAGS="-Os" CXX=g++-4.8".</p> <p dir="auto">Note that I tried the method shared on <a href="https://github.com/samjabrahams/tensorflow-on-raspberry-pi">https://github.com/samjabrahams/tensorflow-on-raspberry-pi</a>, but there are also error occured.</p> <p dir="auto">I am wondering is it due to some update of tensorflow? Looking forward to your reply. Thank you!</p>
<p dir="auto">Hello,</p> <p dir="auto">I was told to post this question here:</p> <p dir="auto">I am trying to complete a fresh install of Tensorflow on my Raspberry Pi following a failed previous install. I figured it would be easier trying to start fresh so I could more easily document my progress, and what solutions worked or failed. Additionally the new guide is easier to follow than the old guide I was using.</p> <p dir="auto">I am following the guide <a href="https://github.com/tensorflow/tensorflow/tree/master/tensorflow/contrib/makefile#raspberry-pi">here</a> and have been able to complete all of the steps up until the <code class="notranslate">make -f tensorflow/contrib/makefile/Makefile HOST_OS=PI TARGET=PI OPTFLAGS="-Os" CXX=g++-4.8 </code>command. NOTE: I did not install the example graph.</p> <p dir="auto">However when attempting to run this command I am left with several errors. The full output is rather long, but the main recurring error is similar to:</p> <p dir="auto"><code class="notranslate">test_log.pb.cc:(.text+0x784): undefined reference to </code>google::protobuf::internal::fixed_address_empty_string'<code class="notranslate">This kind of error is repeated several times throughout the output for the</code>make -f command with test_log.pb.cc:(.text+0x784): ` being replaced with different designations. The output ends with the Following error state:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="step_stats_collector.cc:(.text+0x46c): undefined reference to `google::protobuf::internal::fixed_address_empty_string' /home/pi/makevoicedemo/tf/tensorflow/tensorflow/contrib/makefile/gen/lib/libtensorflow-core.a(debug_io_utils.o):debug_io_utils.cc:(.text+0x8e8): more undefined references to `google::protobuf::internal::fixed_address_empty_string' follow collect2: error: ld returned 1 exit status tensorflow/contrib/makefile/Makefile:501: recipe for target '/home/pi/makevoicedemo/tf/tensorflow/tensorflow/contrib/makefile/gen/bin/benchmark' failed make: *** [/home/pi/makevoicedemo/tf/tensorflow/tensorflow/contrib/makefile/gen/bin/benchmark] Error 1"><pre class="notranslate"><code class="notranslate">step_stats_collector.cc:(.text+0x46c): undefined reference to `google::protobuf::internal::fixed_address_empty_string' /home/pi/makevoicedemo/tf/tensorflow/tensorflow/contrib/makefile/gen/lib/libtensorflow-core.a(debug_io_utils.o):debug_io_utils.cc:(.text+0x8e8): more undefined references to `google::protobuf::internal::fixed_address_empty_string' follow collect2: error: ld returned 1 exit status tensorflow/contrib/makefile/Makefile:501: recipe for target '/home/pi/makevoicedemo/tf/tensorflow/tensorflow/contrib/makefile/gen/bin/benchmark' failed make: *** [/home/pi/makevoicedemo/tf/tensorflow/tensorflow/contrib/makefile/gen/bin/benchmark] Error 1 </code></pre></div> <p dir="auto">I feel like the problem is likely do to an error with protobuf, however I am using the latest version and had no errors installing it. I am using the most recent version of tensorflow and followed the Before you start section in the guide to make sure all dependencies were installed and up to date.</p> <p dir="auto">What exactly might be causing this error and how would I go about fixing it?</p> <h3 dir="auto">What related GitHub issues or StackOverflow threads have you found by searching the web for your problem?</h3> <p dir="auto"><a href="http://stackoverflow.com/questions/38915709/problems-on-builiding-tensorflow-on-rpi-2" rel="nofollow">http://stackoverflow.com/questions/38915709/problems-on-builiding-tensorflow-on-rpi-2</a></p> <h3 dir="auto">Environment info</h3> <p dir="auto">Operating System:<br> Raspbian Jessie</p> <p dir="auto">Installed version of CUDA and cuDNN:<br> N/A<br> (please attach the output of <code class="notranslate">ls -l /path/to/cuda/lib/libcud*</code>):<br> <code class="notranslate">ls: cannot access /path/to/cuda/lib/libcud*: No such file or directory </code><br> If installed from source, provide</p> <ol dir="auto"> <li> <p dir="auto">The commit hash (<code class="notranslate">git rev-parse HEAD</code>)<br> <code class="notranslate">a2d96ca09e9943b4bad65b674d29d380dc6a8327</code></p> </li> <li> <p dir="auto">The output of <code class="notranslate">bazel version</code></p> </li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="........................................................................... Build label: 0.2.1-2016-09-15 (@e7a95e5) Build target: bazel-out/local_linux-fastbuild/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar Build time: Fri Sep 16 00:46:39 2016 (1473986799) Build timestamp: 1473986799 Build timestamp as int: 1473986799 "><pre class="notranslate"><code class="notranslate">........................................................................... Build label: 0.2.1-2016-09-15 (@e7a95e5) Build target: bazel-out/local_linux-fastbuild/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar Build time: Fri Sep 16 00:46:39 2016 (1473986799) Build timestamp: 1473986799 Build timestamp as int: 1473986799 </code></pre></div> <h3 dir="auto">If possible, provide a minimal reproducible example (We usually don't have time to read hundreds of lines of your code)</h3> <p dir="auto">Steps taken (in order) from pre-created directory /tf:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="git clone https://github.com/tensorflow/tensorflow.git cd tensorflow tensorflow/contrib/makefile/download_dependencies.sh sudo apt-get install -y autoconf automake libtool gcc-4.8 g++-4.8 cd tensorflow/contrib/makefile/downloads/protobuf/ ./autogen.sh ./configure make sudo make install sudo ldconfig cd ../../../../.. make -f tensorflow/contrib/makefile/Makefile HOST_OS=PI TARGET=PI OPTFLAGS=&quot;-Os&quot; CXX=g++-4.8"><pre class="notranslate"><code class="notranslate">git clone https://github.com/tensorflow/tensorflow.git cd tensorflow tensorflow/contrib/makefile/download_dependencies.sh sudo apt-get install -y autoconf automake libtool gcc-4.8 g++-4.8 cd tensorflow/contrib/makefile/downloads/protobuf/ ./autogen.sh ./configure make sudo make install sudo ldconfig cd ../../../../.. make -f tensorflow/contrib/makefile/Makefile HOST_OS=PI TARGET=PI OPTFLAGS="-Os" CXX=g++-4.8 </code></pre></div> <p dir="auto">The final command results in the error and is as far as I have been able to progress.</p> <h3 dir="auto">What other attempted solutions have you tried?</h3> <p dir="auto">I have not come across any applicable solutions to try.</p> <p dir="auto">Any help would be appreciated.</p>
1
<p dir="auto">by <strong>maparent</strong>:</p> <pre class="notranslate">Tested on MacOS 10.6.2 Reproduce: cd go/src export LC_ALL=fr ./make.bash error: .../go/bin/quietgcc -ggdb -I"/Users/maparent/OpenSource/go"/include -O2 -fno-inline -c ".../go/src/cmd/gc"/y1.tab.c .../go/src/cmd/gc/yerr.h:17: error: 'loadsys' undeclared here (not in a function) echo $GOOS $GOARCH darwin amd64 hg identify 52b6d624f245 tip The problem is simply that bison -v -y -d go.y uses locale-specific strings in y.output, which the awk script bisonerror does not expect. Solution: set the locale in the make.bash (and related) scripts.</pre>
<pre class="notranslate">go version devel +4a839bf01b58 Tue May 20 15:52:08 2014 +1000 + linux/amd64 Build the attached program and run as: export GOMAXPROCS=2 export GOGC=0 RES=`./0 2&gt;&amp;1` OK=`echo $RES | grep "slice capacity smaller than length"` if [ ! -z "$OK" -a "$OK" != " " ]; then echo $RES exit 1 fi Once in a while it crashes as: bad pointer in frame main.id9 at 0x7f369fadcbf8: 0x1 fatal error: bad pointer in scanbitvector runtime stack: runtime.throw(0x4b3d61) src/pkg/runtime/panic.c:522 +0x69 fp=0x7f369faf0b20 scanbitvector(0x488790, 0x475b01, 0x7f369fadcbf8, 0x7f369faf0bd8, 0x409301, 0x7f369faf0dc8) src/pkg/runtime/mgc0.c:1492 +0x38d fp=0x7f369faf0b88 scanframe(0x7f369faf0c48, 0x7f369faf0dc8) src/pkg/runtime/mgc0.c:1618 +0x2d1 fp=0x7f369faf0c00 runtime.gentraceback(0x40f550, 0x7f369fadcb40, 0x0, 0xc208002120, 0x400000000000, 0x0, 0x7fffffff, 0x4099f0, 0x7f369faf0dc8, 0x0) src/pkg/runtime/traceback_x86.c:206 +0x413 fp=0x7f369faf0cc8 addstackroots(0xc208002120, 0x7f369faf0dc8) src/pkg/runtime/mgc0.c:1688 +0x168 fp=0x7f369faf0d58 markroot(0xc208016900, 0x5) src/pkg/runtime/mgc0.c:1321 +0xbe fp=0x7f369faf0dd8 runtime.parfordo(0xc208016900) src/pkg/runtime/parfor.c:103 +0x128 fp=0x7f369faf0e50 gc(0x7f369faecf78) src/pkg/runtime/mgc0.c:2403 +0x1d6 fp=0x7f369faf0f80 mgc(0xc208002ea0) src/pkg/runtime/mgc0.c:2345 +0x2e fp=0x7f369faf0f90 runtime.mcall(0x429be7) src/pkg/runtime/asm_amd64.s:181 +0x4b fp=0x7f369faf0fa0</pre>
0
<p dir="auto">It would be very useful to read a components static attributes (not bindings). This is probably a prerequisite for to <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="57540327" data-permission-text="Title is private" data-url="https://github.com/angular/angular/issues/633" data-hovercard-type="issue" data-hovercard-url="/angular/angular/issues/633/hovercard" href="https://github.com/angular/angular/issues/633">#633</a>. There are many use-cases for this.</p> <h4 dir="auto">Example use case: imitating native input api</h4> <p dir="auto">Standard radio buttons are put into one single-input-can-be-checked group with the name attribute:</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="&lt;label&gt; &lt;input type=&quot;radio&quot; name=&quot;instrument&quot;&gt; Guitar &lt;/label&gt; &lt;!-- some arbitrary html --&gt; &lt;label&gt; &lt;input type=&quot;radio&quot; name=&quot;instrument&quot;&gt; Trombone &lt;/label&gt;"><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">radio</span>" <span class="pl-c1">name</span>="<span class="pl-s">instrument</span>"<span class="pl-kos">&gt;</span> Guitar <span class="pl-kos">&lt;/</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span> <span class="pl-c">&lt;!-- some arbitrary html --&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">input</span> <span class="pl-c1">type</span>="<span class="pl-s">radio</span>" <span class="pl-c1">name</span>="<span class="pl-s">instrument</span>"<span class="pl-kos">&gt;</span> Trombone <span class="pl-kos">&lt;/</span><span class="pl-ent">label</span><span class="pl-kos">&gt;</span></pre></div> <p dir="auto">If a component author wants to support the same api on a custom radio button, the author needs to be able to read the name attribute. There's usually not a need, though, to create a binding on the property.</p>
<p dir="auto">Lines 1 and 2 should read</p> <p dir="auto"><code class="notranslate">var AppComponent = ng.Component({</code></p> <p dir="auto">instead of</p> <p dir="auto"><code class="notranslate">var AppComponent = ng ng.Component({</code></p> <p dir="auto">Running the former in Chrome 46.0.2490.71 gave me a <code class="notranslate">Error during instantiation of Token Promise&lt;ComponentRef&gt;!.</code> exception, the original exception being <code class="notranslate">No Directive annotation found on [object Object]</code></p>
0
<h3 dir="auto">Version</h3> <p dir="auto">2.5.16</p> <h3 dir="auto">Reproduction link</h3> <p dir="auto"><a href="https://codepen.io/gamperl/pen/JZGMWK" rel="nofollow">https://codepen.io/gamperl/pen/JZGMWK</a></p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto">Run the provided JSFiddle</p> <h3 dir="auto">What is expected?</h3> <p dir="auto">The component in the slot should be moved from the table to the div element. Or a new one is created and the old one is destoryed.</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">If a slot is moved from a table to a div using a v-if directive, the slot ist recreated. But before the new component is mounted, vuejs picks the wrong component to destroy: it destoyes the new component instead of the old one.</p>
<h3 dir="auto">Version</h3> <p dir="auto">2.5.14+</p> <h3 dir="auto">Reproduction link</h3> <p dir="auto"><a href="https://jsfiddle.net/cLdbL2t2/22/" rel="nofollow">https://jsfiddle.net/cLdbL2t2/22/</a></p> <h3 dir="auto">Steps to reproduce</h3> <p dir="auto">Clicking "update message" button adds dots after message.<br> Once "alter" button is clicked, the message is no longer updated.</p> <h3 dir="auto">What is expected?</h3> <p dir="auto">Updating message continues working even after slot is altered.</p> <h3 dir="auto">What is actually happening?</h3> <p dir="auto">Prop value stops being reactive, without error nor warning.</p> <hr> <p dir="auto">This behavior takes place after v2.5.14 including v2.5.17-beta.0.<br> Any version 2.5.13 and lower works as expected.</p> <p dir="auto">Unit test can be found in my github <a href="https://github.com/honeroku/vue-slot-investigate">https://github.com/honeroku/vue-slot-investigate</a></p> <p dir="auto">I am understanding this is edge case and refactoring structure to avoid placing identical slot in conditional positions resolves my problem.<br> However, this behavior was not occurring in older versions and suddenly changed without error or warning,<br> so I am considering this is a bug and reporting to let you know.</p>
1
<p dir="auto">Hello,</p> <p dir="auto">I've came to notice that I have the following console log:<br> <code class="notranslate">THREE.WebGLRenderer 84</code></p> <p dir="auto">I haven't found any issues, however, it is mandatory that this specific site does not have any console logs.</p> <p dir="auto">Is it possible to hide/disable this log?</p> <p dir="auto">I've noticed other issues where people have had the same log (suggesting the log is related to Chrome or graphics cards), although I haven't seen any solutions.</p> <p dir="auto">Thank you.</p>
<p dir="auto">I mean this:<br> <a href="https://github.com/mrdoob/three.js/blob/dev/src/materials/ShaderMaterial.js#L67">https://github.com/mrdoob/three.js/blob/dev/src/materials/ShaderMaterial.js#L67</a><br> <a href="https://github.com/mrdoob/three.js/blob/dev/src/renderers/webgl/WebGLProgram.js#L221">https://github.com/mrdoob/three.js/blob/dev/src/renderers/webgl/WebGLProgram.js#L221</a></p> <p dir="auto">vs<br> <a href="https://github.com/mrdoob/three.js/blob/dev/src/renderers/shaders/ShaderChunk/lightmap_vertex.glsl">https://github.com/mrdoob/three.js/blob/dev/src/renderers/shaders/ShaderChunk/lightmap_vertex.glsl</a></p>
0
<p dir="auto">It returns an array of 1's and -1's instead of what is documented.</p>
<p dir="auto">Not sure this is what we want, but I think it is:<br> <code class="notranslate">fit</code> should not change the <code class="notranslate">random_state</code> so that fitting twice on the same data set should produce the same result.<br> There was a comment by <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/ogrisel/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/ogrisel">@ogrisel</a> in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="2453588" data-permission-text="Title is private" data-url="https://github.com/scikit-learn/scikit-learn/issues/455" data-hovercard-type="pull_request" data-hovercard-url="/scikit-learn/scikit-learn/pull/455/hovercard" href="https://github.com/scikit-learn/scikit-learn/pull/455">#455</a> along these lines, I think.</p>
0
<p dir="auto">Please allow setting custom analyzers that use the <code class="notranslate">keyword</code> tokenizer and <a href="https://github.com/elastic/elasticsearch/issues/12394#issuecomment-128102606" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/12394/hovercard">safe token filters</a> on keyword fields. This would be great so we can use <code class="notranslate">doc_values</code> for things like case-insensitive sorting and icu collation without needing to create pipelines.</p> <p dir="auto">This was originally discussed in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="96539450" data-permission-text="Title is private" data-url="https://github.com/elastic/elasticsearch/issues/12394" data-hovercard-type="issue" data-hovercard-url="/elastic/elasticsearch/issues/12394/hovercard" href="https://github.com/elastic/elasticsearch/issues/12394">#12394</a> and the last comment from <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/jpountz/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/jpountz">@jpountz</a> said this can be done in a future <code class="notranslate">5.x</code> release. This issue is to keep track of this potential enhancement.</p>
<p dir="auto">Sometimes you want to analyze text to make it consistent when running aggregations on top of it.</p> <p dir="auto">For example, let's say I have a <code class="notranslate">city</code> field mapped as a <code class="notranslate">keyword</code>.</p> <p dir="auto">This field can contain <code class="notranslate">San Francisco</code>, <code class="notranslate">SAN FRANCISCO</code>, <code class="notranslate">San francisco</code>...</p> <p dir="auto">If I build a terms aggregation on top of it, I will end up with</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="San Francisco: 1 SAN FRANCISCO: 1 San francisco: 1"><pre class="notranslate"><code class="notranslate">San Francisco: 1 SAN FRANCISCO: 1 San francisco: 1 </code></pre></div> <p dir="auto">I'd like to be able to analyze this text before it gets indexed. Of course I could use a <code class="notranslate">text</code> field instead and set <code class="notranslate">fielddata: true</code> but that would not create doc values for this field.</p> <p dir="auto">I can imagine that we allow an analyzer at index time for this field.</p> <p dir="auto">We can restrict its usage if we wish and only allows analyzers which are using tokenizers like <code class="notranslate">lowercase</code>, <code class="notranslate">keyword</code>, <code class="notranslate">path</code> but I would let the user decide.</p> <p dir="auto">If we allow setting <code class="notranslate">analyzer: simple</code> for example, my aggregation will become:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="san francisco: 3"><pre class="notranslate"><code class="notranslate">san francisco: 3 </code></pre></div> <p dir="auto">Same applies for path tokenizer.</p> <p dir="auto">Let say I'm building a dir tree like:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/tmp/dir1/file1.txt /tmp/dir1/file2.txt /tmp/dir2/file3.txt /tmp/dir2/file4.txt"><pre class="notranslate"><code class="notranslate">/tmp/dir1/file1.txt /tmp/dir1/file2.txt /tmp/dir2/file3.txt /tmp/dir2/file4.txt </code></pre></div> <p dir="auto">Applying a path tokenizer would help me to generate an aggregation like:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/tmp/dir1: 2 /tmp/dir2: 2 /tmp: 4"><pre class="notranslate"><code class="notranslate">/tmp/dir1: 2 /tmp/dir2: 2 /tmp: 4 </code></pre></div>
1
<h2 dir="auto">Steps to Reproduce</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ flutter create hello_world $ cd hello_world/ $ open ios/Runner.xcworkspace/ # Configure the Xcode project with my signing key $ flutter run -d 698b4da3275b3613ea0785a4b0718ce3ebf9bb38 # Tell it to use my phone Exception from flutter run: SocketException: OS Error: Connection refused, errno = 61, address = 127.0.0.1, port = 56985 dart:io WebSocket.connect package:flutter_tools/src/vmservice.dart 28 VMService.connect.&lt;async&gt; ===== asynchronous gap =========================== dart:async Future.Future.microtask package:flutter_tools/src/vmservice.dart VMService.connect package:flutter_tools/src/resident_runner.dart 106 ResidentRunner.connectToServiceProtocol.&lt;async&gt; ===== asynchronous gap =========================== dart:async Future.Future.microtask package:flutter_tools/src/resident_runner.dart ResidentRunner.connectToServiceProtocol package:flutter_tools/src/hot.dart 248 HotRunner._run.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/ios/devices.dart 291 IOSDevice.startApp.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/ios/devices.dart 307 IOSDevice._acquireAndForwardPort.&lt;async&gt; ===== asynchronous gap =========================== dart:async _asyncThenWrapperHelper package:flutter_tools/src/hot.dart HotRunner._run package:flutter_tools/src/hot.dart 149 HotRunner.run.&lt;fn&gt; dart:async runZoned package:flutter_tools/src/hot.dart 148 HotRunner.run package:flutter_tools/src/commands/run.dart 194 RunCommand.runCommand.&lt;async&gt; ===== asynchronous gap =========================== dart:async Future.Future.microtask package:flutter_tools/src/commands/run.dart RunCommand.runCommand package:flutter_tools/src/runner/flutter_command.dart 150 FlutterCommand.verifyThenRunCommand.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/dart/pub.dart 62 pubGet.&lt;async&gt; ===== asynchronous gap =========================== dart:async _asyncThenWrapperHelper package:flutter_tools/src/runner/flutter_command.dart FlutterCommand.verifyThenRunCommand package:flutter_tools/src/commands/run.dart 122 RunCommand.verifyThenRunCommand.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/runner/flutter_command.dart 199 FlutterCommand.findTargetDevice.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/device.dart 50 DeviceManager.getDevicesById.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/device.dart 70 DeviceManager.getAllConnectedDevices.&lt;async&gt; ===== asynchronous gap =========================== dart:async _asyncThenWrapperHelper package:flutter_tools/src/commands/run.dart RunCommand.verifyThenRunCommand package:flutter_tools/src/runner/flutter_command.dart 117 FlutterCommand.run package:args/command_runner.dart 177 CommandRunner.runCommand.&lt;fn&gt; dart:async Future.Future.sync package:args/command_runner.dart 130 CommandRunner.runCommand package:flutter_tools/src/runner/flutter_command_runner.dart 186 FlutterCommandRunner.runCommand.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/cache.dart 71 Cache.lock.&lt;async&gt; ===== asynchronous gap =========================== dart:async _asyncThenWrapperHelper package:flutter_tools/src/runner/flutter_command_runner.dart FlutterCommandRunner.runCommand package:args/command_runner.dart 104 CommandRunner.run.&lt;fn&gt; dart:async Future.Future.sync package:args/command_runner.dart 104 CommandRunner.run package:flutter_tools/src/runner/flutter_command_runner.dart 132 FlutterCommandRunner.run package:flutter_tools/executable.dart 97 main.&lt;async&gt;.&lt;fn&gt;.&lt;async&gt; ===== asynchronous gap =========================== package:stack_trace Chain.capture package:flutter_tools/executable.dart 91 main.&lt;async&gt;"><pre class="notranslate"><code class="notranslate">$ flutter create hello_world $ cd hello_world/ $ open ios/Runner.xcworkspace/ # Configure the Xcode project with my signing key $ flutter run -d 698b4da3275b3613ea0785a4b0718ce3ebf9bb38 # Tell it to use my phone Exception from flutter run: SocketException: OS Error: Connection refused, errno = 61, address = 127.0.0.1, port = 56985 dart:io WebSocket.connect package:flutter_tools/src/vmservice.dart 28 VMService.connect.&lt;async&gt; ===== asynchronous gap =========================== dart:async Future.Future.microtask package:flutter_tools/src/vmservice.dart VMService.connect package:flutter_tools/src/resident_runner.dart 106 ResidentRunner.connectToServiceProtocol.&lt;async&gt; ===== asynchronous gap =========================== dart:async Future.Future.microtask package:flutter_tools/src/resident_runner.dart ResidentRunner.connectToServiceProtocol package:flutter_tools/src/hot.dart 248 HotRunner._run.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/ios/devices.dart 291 IOSDevice.startApp.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/ios/devices.dart 307 IOSDevice._acquireAndForwardPort.&lt;async&gt; ===== asynchronous gap =========================== dart:async _asyncThenWrapperHelper package:flutter_tools/src/hot.dart HotRunner._run package:flutter_tools/src/hot.dart 149 HotRunner.run.&lt;fn&gt; dart:async runZoned package:flutter_tools/src/hot.dart 148 HotRunner.run package:flutter_tools/src/commands/run.dart 194 RunCommand.runCommand.&lt;async&gt; ===== asynchronous gap =========================== dart:async Future.Future.microtask package:flutter_tools/src/commands/run.dart RunCommand.runCommand package:flutter_tools/src/runner/flutter_command.dart 150 FlutterCommand.verifyThenRunCommand.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/dart/pub.dart 62 pubGet.&lt;async&gt; ===== asynchronous gap =========================== dart:async _asyncThenWrapperHelper package:flutter_tools/src/runner/flutter_command.dart FlutterCommand.verifyThenRunCommand package:flutter_tools/src/commands/run.dart 122 RunCommand.verifyThenRunCommand.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/runner/flutter_command.dart 199 FlutterCommand.findTargetDevice.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/device.dart 50 DeviceManager.getDevicesById.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/device.dart 70 DeviceManager.getAllConnectedDevices.&lt;async&gt; ===== asynchronous gap =========================== dart:async _asyncThenWrapperHelper package:flutter_tools/src/commands/run.dart RunCommand.verifyThenRunCommand package:flutter_tools/src/runner/flutter_command.dart 117 FlutterCommand.run package:args/command_runner.dart 177 CommandRunner.runCommand.&lt;fn&gt; dart:async Future.Future.sync package:args/command_runner.dart 130 CommandRunner.runCommand package:flutter_tools/src/runner/flutter_command_runner.dart 186 FlutterCommandRunner.runCommand.&lt;async&gt; dart:async _SyncCompleter.complete package:flutter_tools/src/cache.dart 71 Cache.lock.&lt;async&gt; ===== asynchronous gap =========================== dart:async _asyncThenWrapperHelper package:flutter_tools/src/runner/flutter_command_runner.dart FlutterCommandRunner.runCommand package:args/command_runner.dart 104 CommandRunner.run.&lt;fn&gt; dart:async Future.Future.sync package:args/command_runner.dart 104 CommandRunner.run package:flutter_tools/src/runner/flutter_command_runner.dart 132 FlutterCommandRunner.run package:flutter_tools/executable.dart 97 main.&lt;async&gt;.&lt;fn&gt;.&lt;async&gt; ===== asynchronous gap =========================== package:stack_trace Chain.capture package:flutter_tools/executable.dart 91 main.&lt;async&gt; </code></pre></div> <h2 dir="auto">Flutter Doctor</h2> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ flutter doctor [βœ“] Flutter (on Mac OS, channel master) β€’ Flutter at /Users/brett/github/flutter β€’ Framework revision a426b6b3c8 (68 minutes ago), 2016-09-27 13:01:57 β€’ Engine revision a1f81c8893 β€’ Tools Dart version 1.20.0-dev.5.0 [βœ“] Android toolchain - develop for Android devices (Android SDK 23.0.1) β€’ Android SDK at /Users/brett/Library/Android/sdk β€’ Platform android-24, build-tools 23.0.1 β€’ Java(TM) SE Runtime Environment (build 1.8.0_92-b14) [βœ“] iOS toolchain - develop for iOS devices (Xcode 8.0) β€’ XCode at /Applications/Xcode.app/Contents/Developer β€’ Xcode 8.0, Build version 8A218a [βœ“] Atom - a lightweight development environment for Flutter β€’ flutter plugin version 0.2.6 β€’ dartlang plugin version 0.6.40 [βœ“] Connected devices β€’ β€’ 698b4da3275b3613ea0785a4b0718ce3ebf9bb38 β€’ ios β€’ β€’ 54fb3ad51364cb3b5d0a443e383b32b3986a16d7 β€’ ios"><pre class="notranslate"><code class="notranslate">$ flutter doctor [βœ“] Flutter (on Mac OS, channel master) β€’ Flutter at /Users/brett/github/flutter β€’ Framework revision a426b6b3c8 (68 minutes ago), 2016-09-27 13:01:57 β€’ Engine revision a1f81c8893 β€’ Tools Dart version 1.20.0-dev.5.0 [βœ“] Android toolchain - develop for Android devices (Android SDK 23.0.1) β€’ Android SDK at /Users/brett/Library/Android/sdk β€’ Platform android-24, build-tools 23.0.1 β€’ Java(TM) SE Runtime Environment (build 1.8.0_92-b14) [βœ“] iOS toolchain - develop for iOS devices (Xcode 8.0) β€’ XCode at /Applications/Xcode.app/Contents/Developer β€’ Xcode 8.0, Build version 8A218a [βœ“] Atom - a lightweight development environment for Flutter β€’ flutter plugin version 0.2.6 β€’ dartlang plugin version 0.6.40 [βœ“] Connected devices β€’ β€’ 698b4da3275b3613ea0785a4b0718ce3ebf9bb38 β€’ ios β€’ β€’ 54fb3ad51364cb3b5d0a443e383b32b3986a16d7 β€’ ios </code></pre></div>
<h2 dir="auto">Steps to Reproduce</h2> <p dir="auto">Upgrade to Xcode 8. Observe this issue: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="170450122" data-permission-text="Title is private" data-url="https://github.com/libimobiledevice/libimobiledevice/issues/356" data-hovercard-type="issue" data-hovercard-url="/libimobiledevice/libimobiledevice/issues/356/hovercard" href="https://github.com/libimobiledevice/libimobiledevice/issues/356">libimobiledevice/libimobiledevice#356</a>.</p> <p dir="auto">Workaround is available in comment <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="170450122" data-permission-text="Title is private" data-url="https://github.com/libimobiledevice/libimobiledevice/issues/356" data-hovercard-type="issue" data-hovercard-url="/libimobiledevice/libimobiledevice/issues/356/hovercard?comment_id=242553075&amp;comment_type=issue_comment" href="https://github.com/libimobiledevice/libimobiledevice/issues/356#issuecomment-242553075">libimobiledevice/libimobiledevice#356 (comment)</a> and I verified that it works.</p> <p dir="auto">/cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/chinmaygarde/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/chinmaygarde">@chinmaygarde</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/tvolkert/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/tvolkert">@tvolkert</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/cbracken/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/cbracken">@cbracken</a></p>
1
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br> for similar or identical enhancement to an existing feature.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br> for existing proposed enhancements.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/main">commit log</a><br> to find out if the if the same enhancement was already implemented in the<br> main branch.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues in this issue<br> (If there are none, check this box anyway).</li> </ul> <h2 dir="auto">Related Issues and Possible Duplicates</h2> <h4 dir="auto">Related Issues</h4> <ul dir="auto"> <li>Somewhat related <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="109290898" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/2834" data-hovercard-type="issue" data-hovercard-url="/celery/celery/issues/2834/hovercard" href="https://github.com/celery/celery/issues/2834">#2834</a></li> </ul> <h4 dir="auto">Possible Duplicates</h4> <ul dir="auto"> <li>None</li> </ul> <h1 dir="auto">Brief Summary</h1> <p dir="auto">Adding the same periodic task twice with different schedules unexpectedly override the first one.</p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="sig = add.s(2, 2) app.add_periodic_task(10, sig) app.add_periodic_task(20, sig) assert len(app.conf.beat_schedule) == 1"><pre class="notranslate"><span class="pl-s1">sig</span> <span class="pl-c1">=</span> <span class="pl-s1">add</span>.<span class="pl-en">s</span>(<span class="pl-c1">2</span>, <span class="pl-c1">2</span>) <span class="pl-s1">app</span>.<span class="pl-en">add_periodic_task</span>(<span class="pl-c1">10</span>, <span class="pl-s1">sig</span>) <span class="pl-s1">app</span>.<span class="pl-en">add_periodic_task</span>(<span class="pl-c1">20</span>, <span class="pl-s1">sig</span>) <span class="pl-k">assert</span> <span class="pl-en">len</span>(<span class="pl-s1">app</span>.<span class="pl-s1">conf</span>.<span class="pl-s1">beat_schedule</span>) <span class="pl-c1">==</span> <span class="pl-c1">1</span></pre></div> <h1 dir="auto">Design</h1> <h2 dir="auto">Architectural Considerations</h2> <p dir="auto">None</p> <h2 dir="auto">Proposed Behavior</h2> <p dir="auto">Now I understand that I can just set a name explicitly to avoid the behavior, but it is not clear in the docs and looks like it could be warned/failed in runtime to improve developer experience. I tried it in <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="1634070086" data-permission-text="Title is private" data-url="https://github.com/celery/celery/issues/8143" data-hovercard-type="pull_request" data-hovercard-url="/celery/celery/pull/8143/hovercard" href="https://github.com/celery/celery/pull/8143">#8143</a>.</p> <h2 dir="auto">Proposed UI/UX</h2> <h2 dir="auto">Diagrams</h2> <p dir="auto">N/A</p> <h2 dir="auto">Alternatives</h2> <p dir="auto">None</p>
<h1 dir="auto">Checklist</h1> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/issues?q=is%3Aissue+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22">issues list</a><br> for similar or identical enhancement to an existing feature.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/pulls?q=is%3Apr+label%3A%22Issue+Type%3A+Enhancement%22+-label%3A%22Category%3A+Documentation%22">pull requests list</a><br> for existing proposed enhancements.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/celery/celery/commits/main">commit log</a><br> to find out if the if the same enhancement was already implemented in the<br> main branch.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have included all related issues and possible duplicate issues in this issue<br> (If there are none, check this box anyway).</li> </ul> <h1 dir="auto">Brief Summary</h1> <p dir="auto">The command <code class="notranslate">celery worker --help</code> gives</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Usage: celery worker [OPTIONS] Start worker instance. Examples -------- $ celery --app=proj worker -l INFO $ celery -A proj worker -l INFO -Q hipri,lopri $ celery -A proj worker --concurrency=4 $ celery -A proj worker --concurrency=1000 -P eventlet $ celery worker --autoscale=10,0"><pre class="notranslate">Usage: celery worker [OPTIONS] Start worker instance. Examples -------- $ celery --app=proj worker -l INFO $ celery -A proj worker -l INFO -Q hipri,lopri $ celery -A proj worker --concurrency=4 $ celery -A proj worker --concurrency=1000 -P eventlet $ celery worker --autoscale=10,0</pre></div> <p dir="auto">This is caused by the <a href="https://click.palletsprojects.com/en/8.1.x/documentation/#preventing-rewrapping" rel="nofollow">text rewrapping of <code class="notranslate">click</code></a>. The solution is to add <code class="notranslate">\b</code> before every paragraph which results in</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Usage: celery worker [OPTIONS] Start worker instance. Examples -------- $ celery --app=proj worker -l INFO $ celery -A proj worker -l INFO -Q hipri,lopri $ celery -A proj worker --concurrency=4 $ celery -A proj worker --concurrency=1000 -P eventlet $ celery worker --autoscale=10,0"><pre class="notranslate">Usage: celery worker [OPTIONS] Start worker instance. Examples -------- $ celery --app=proj worker -l INFO $ celery -A proj worker -l INFO -Q hipri,lopri $ celery -A proj worker --concurrency=4 $ celery -A proj worker --concurrency=1000 -P eventlet $ celery worker --autoscale=10,0</pre></div>
0
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 4.0.0 beta</li> <li>Operating System / Platform =&gt; Windows 7 64 Bit</li> <li>Compiler =&gt; Visual Studio 2015 build tool , cmake, nmake</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">the code in <a href="https://github.com/opencv/opencv/blob/master/modules/stitching/src/blenders.cpp">modules\stitching\src\blenders.cpp</a></p> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" #ifdef HAVE_CUDA namespace cv { namespace cuda { namespace device { namespace blend { void addSrcWeightGpu16S(const PtrStep&lt;short&gt; src, const PtrStep&lt;short&gt; src_weight, PtrStep&lt;short&gt; dst, PtrStep&lt;short&gt; dst_weight, cv::Rect &amp;rc); void addSrcWeightGpu32F(const PtrStep&lt;short&gt; src, const PtrStepf src_weight, PtrStep&lt;short&gt; dst, PtrStepf dst_weight, cv::Rect &amp;rc); void normalizeUsingWeightMapGpu16S(const PtrStep&lt;short&gt; weight, PtrStep&lt;short&gt; src, const int width, const int height); void normalizeUsingWeightMapGpu32F(const PtrStepf weight, PtrStep&lt;short&gt; src, const int width, const int height); } } } } #endif"><pre class="notranslate">#<span class="pl-k">ifdef</span> HAVE_CUDA <span class="pl-k">namespace</span> <span class="pl-en">cv</span> { <span class="pl-k">namespace</span> <span class="pl-en">cuda</span> { <span class="pl-k">namespace</span> <span class="pl-en">device</span> { <span class="pl-k">namespace</span> <span class="pl-en">blend</span> { <span class="pl-k">void</span> <span class="pl-en">addSrcWeightGpu16S</span>(<span class="pl-k">const</span> PtrStep&lt;<span class="pl-k">short</span>&gt; src, <span class="pl-k">const</span> PtrStep&lt;<span class="pl-k">short</span>&gt; src_weight, PtrStep&lt;<span class="pl-k">short</span>&gt; dst, PtrStep&lt;<span class="pl-k">short</span>&gt; dst_weight, cv::<span class="pl-c1">Rect</span> &amp;rc); <span class="pl-k">void</span> <span class="pl-en">addSrcWeightGpu32F</span>(<span class="pl-k">const</span> PtrStep&lt;<span class="pl-k">short</span>&gt; src, <span class="pl-k">const</span> PtrStepf src_weight, PtrStep&lt;<span class="pl-k">short</span>&gt; dst, PtrStepf dst_weight, cv::<span class="pl-c1">Rect</span> &amp;rc); <span class="pl-k">void</span> <span class="pl-en">normalizeUsingWeightMapGpu16S</span>(<span class="pl-k">const</span> PtrStep&lt;<span class="pl-k">short</span>&gt; weight, PtrStep&lt;<span class="pl-k">short</span>&gt; src, <span class="pl-k">const</span> <span class="pl-k">int</span> width, <span class="pl-k">const</span> <span class="pl-k">int</span> height); <span class="pl-k">void</span> <span class="pl-en">normalizeUsingWeightMapGpu32F</span>(<span class="pl-k">const</span> PtrStepf weight, PtrStep&lt;<span class="pl-k">short</span>&gt; src, <span class="pl-k">const</span> <span class="pl-k">int</span> width, <span class="pl-k">const</span> <span class="pl-k">int</span> height); } } } } #<span class="pl-k">endif</span></pre></div> <p dir="auto">arose an error c3083,<br> 'device': the symbol to the left of a '::' must be a type<br> 'blend': is not a member of 'cv::cuda'</p> <p dir="auto">guess the #ifdef was broken, HAVE_CUDA was ineffective, but in other cuda related modules no error occured</p> <p dir="auto">seems the compiler prefers the "\contrib\modules\cudafeatures2d\include\opencv2\cudafeatures2d.hpp" to be the definition; while "modules\stitching\src\cuda\multiband_blend.cu" was the definition of functions</p> <p dir="auto">the cmake.txt was simple, i did not notice anything related to the cu file</p> <p dir="auto">what should i do now?</p> <h5 dir="auto">Steps to reproduce</h5> <p dir="auto">using cmake-gui and nmake , simply chechk the cuda stuffs and extra packages<br> wait until 93% was done, and enounter the error</p> <p dir="auto">the screen was like:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Scanning dependencies of target opencv_stitching [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/blenders.cpp.obj blenders.cpp D:\download\opencv4\modules\stitching\src\blenders.cpp(473): error C3083: 'device': the symbol to the left of a '::' must be a type D:\download\opencv4\modules\stitching\src\blenders.cpp(473): error C2039: 'blend': is not a member of 'cv::cuda' D:\download\opencv4\contrib\modules\cudafeatures2d\include\opencv2/cudafeatures2d.hpp(61): note: see declaration of 'cv::cuda' D:\download\opencv4\modules\stitching\src\blenders.cpp(473): error C2871: 'blend': a namespace with this name does not exist D:\download\opencv4\modules\stitching\src\blenders.cpp(476): error C3861: 'addSrcWeightGpu32F': identifier not found D:\download\opencv4\modules\stitching\src\blenders.cpp(480): error C3861: 'addSrcWeightGpu16S': identifier not found D:\download\opencv4\modules\stitching\src\blenders.cpp(620): error C3083: 'device': the symbol to the left of a '::' must be a type D:\download\opencv4\modules\stitching\src\blenders.cpp(620): error C2039: 'blend': is not a member of 'cv::cuda' D:\download\opencv4\contrib\modules\cudafeatures2d\include\opencv2/cudafeatures2d.hpp(61): note: see declaration of 'cv::cuda' D:\download\opencv4\modules\stitching\src\blenders.cpp(620): error C2871: 'blend': a namespace with this name does not exist D:\download\opencv4\modules\stitching\src\blenders.cpp(623): error C3861: 'normalizeUsingWeightMapGpu32F': identifier not found D:\download\opencv4\modules\stitching\src\blenders.cpp(627): error C3861: 'normalizeUsingWeightMapGpu16S': identifier not found NMAKE : fatal error U1077: 'C:\PROGRA~2\MICROS~1.0\VC\bin\amd64\cl.exe' : return code '0x2' Stop. NMAKE : fatal error U1077: '&quot;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe&quot;' : return code '0x2' Stop. NMAKE : fatal error U1077: '&quot;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe&quot;' : return code '0x2' Stop. "><pre class="notranslate"><code class="notranslate">Scanning dependencies of target opencv_stitching [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/blenders.cpp.obj blenders.cpp D:\download\opencv4\modules\stitching\src\blenders.cpp(473): error C3083: 'device': the symbol to the left of a '::' must be a type D:\download\opencv4\modules\stitching\src\blenders.cpp(473): error C2039: 'blend': is not a member of 'cv::cuda' D:\download\opencv4\contrib\modules\cudafeatures2d\include\opencv2/cudafeatures2d.hpp(61): note: see declaration of 'cv::cuda' D:\download\opencv4\modules\stitching\src\blenders.cpp(473): error C2871: 'blend': a namespace with this name does not exist D:\download\opencv4\modules\stitching\src\blenders.cpp(476): error C3861: 'addSrcWeightGpu32F': identifier not found D:\download\opencv4\modules\stitching\src\blenders.cpp(480): error C3861: 'addSrcWeightGpu16S': identifier not found D:\download\opencv4\modules\stitching\src\blenders.cpp(620): error C3083: 'device': the symbol to the left of a '::' must be a type D:\download\opencv4\modules\stitching\src\blenders.cpp(620): error C2039: 'blend': is not a member of 'cv::cuda' D:\download\opencv4\contrib\modules\cudafeatures2d\include\opencv2/cudafeatures2d.hpp(61): note: see declaration of 'cv::cuda' D:\download\opencv4\modules\stitching\src\blenders.cpp(620): error C2871: 'blend': a namespace with this name does not exist D:\download\opencv4\modules\stitching\src\blenders.cpp(623): error C3861: 'normalizeUsingWeightMapGpu32F': identifier not found D:\download\opencv4\modules\stitching\src\blenders.cpp(627): error C3861: 'normalizeUsingWeightMapGpu16S': identifier not found NMAKE : fatal error U1077: 'C:\PROGRA~2\MICROS~1.0\VC\bin\amd64\cl.exe' : return code '0x2' Stop. NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"' : return code '0x2' Stop. NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"' : return code '0x2' Stop. </code></pre></div> <p dir="auto">further if i remove the preprocesser token, and hard code the namespaces and the functions ,</p> <div class="highlight highlight-source-c++ notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="//#ifdef HAVE_CUDA namespace cv { namespace cuda { namespace device { namespace blend { void addSrcWeightGpu16S(const PtrStep&lt;short&gt; src, const PtrStep&lt;short&gt; src_weight, PtrStep&lt;short&gt; dst, PtrStep&lt;short&gt; dst_weight, cv::Rect &amp;rc); void addSrcWeightGpu32F(const PtrStep&lt;short&gt; src, const PtrStepf src_weight, PtrStep&lt;short&gt; dst, PtrStepf dst_weight, cv::Rect &amp;rc); void normalizeUsingWeightMapGpu16S(const PtrStep&lt;short&gt; weight, PtrStep&lt;short&gt; src, const int width, const int height); void normalizeUsingWeightMapGpu32F(const PtrStepf weight, PtrStep&lt;short&gt; src, const int width, const int height); } } } } //#endif "><pre class="notranslate"><span class="pl-c"><span class="pl-c">//</span>#ifdef HAVE_CUDA </span> <span class="pl-k">namespace</span> <span class="pl-en">cv</span> { <span class="pl-k">namespace</span> <span class="pl-en">cuda</span> { <span class="pl-k">namespace</span> <span class="pl-en">device</span> { <span class="pl-k">namespace</span> <span class="pl-en">blend</span> { <span class="pl-k">void</span> <span class="pl-en">addSrcWeightGpu16S</span>(<span class="pl-k">const</span> PtrStep&lt;<span class="pl-k">short</span>&gt; src, <span class="pl-k">const</span> PtrStep&lt;<span class="pl-k">short</span>&gt; src_weight, PtrStep&lt;<span class="pl-k">short</span>&gt; dst, PtrStep&lt;<span class="pl-k">short</span>&gt; dst_weight, cv::<span class="pl-c1">Rect</span> &amp;rc); <span class="pl-k">void</span> <span class="pl-en">addSrcWeightGpu32F</span>(<span class="pl-k">const</span> PtrStep&lt;<span class="pl-k">short</span>&gt; src, <span class="pl-k">const</span> PtrStepf src_weight, PtrStep&lt;<span class="pl-k">short</span>&gt; dst, PtrStepf dst_weight, cv::<span class="pl-c1">Rect</span> &amp;rc); <span class="pl-k">void</span> <span class="pl-en">normalizeUsingWeightMapGpu16S</span>(<span class="pl-k">const</span> PtrStep&lt;<span class="pl-k">short</span>&gt; weight, PtrStep&lt;<span class="pl-k">short</span>&gt; src, <span class="pl-k">const</span> <span class="pl-k">int</span> width, <span class="pl-k">const</span> <span class="pl-k">int</span> height); <span class="pl-k">void</span> <span class="pl-en">normalizeUsingWeightMapGpu32F</span>(<span class="pl-k">const</span> PtrStepf weight, PtrStep&lt;<span class="pl-k">short</span>&gt; src, <span class="pl-k">const</span> <span class="pl-k">int</span> width, <span class="pl-k">const</span> <span class="pl-k">int</span> height); } } } } <span class="pl-c"><span class="pl-c">//</span>#endif</span> </pre></div> <p dir="auto">it will compile this file, but link will throw an error like this:<br> <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="376676037" data-permission-text="Title is private" data-url="https://github.com/opencv/opencv/issues/13019" data-hovercard-type="issue" data-hovercard-url="/opencv/opencv/issues/13019/hovercard?comment_id=435289395&amp;comment_type=issue_comment" href="https://github.com/opencv/opencv/issues/13019#issuecomment-435289395">#13019 (comment)</a></p> <p dir="auto">the screen was like:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Scanning dependencies of target opencv_stitching [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/blenders.cpp.obj blenders.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/camera.cpp.obj camera.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/exposure_compensate.cpp.obj exposure_compensate.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/matchers.cpp.obj matchers.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/motion_estimators.cpp.obj motion_estimators.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/seam_finders.cpp.obj seam_finders.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/stitcher.cpp.obj stitcher.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/timelapsers.cpp.obj timelapsers.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/util.cpp.obj util.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/warpers.cpp.obj warpers.cpp [ 94%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/warpers_cuda.cpp.obj warpers_cuda.cpp d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(451) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(202) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(203) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(204) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(497) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(244) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(245) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(288) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(246) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(529) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(289) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(290) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(443) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(470) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(539) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(507) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(461) : warning C4702: unreachable code [ 94%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/opencl_kernels_stitching.cpp.obj opencl_kernels_stitching.cpp [ 94%] Building RC object modules/stitching/CMakeFiles/opencv_stitching.dir/vs_version.rc.res Microsoft (R) Windows (R) Resource Compiler Version 6.3.9600.17336 Copyright (C) Microsoft Corporation. All rights reserved. [ 94%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/opencv_stitching_main.cpp.obj opencv_stitching_main.cpp [ 94%] Linking CXX shared library ..\..\bin\opencv_stitching400.dll Creating library ..\..\lib\opencv_stitching400.lib and object ..\..\lib\opencv_stitching400.exp blenders.cpp.obj : error LNK2019: unresolved external symbol &quot;void __cdecl cv::cuda::device::blend::addSrcWeightGpu16S(struct cv::cuda::PtrStep&lt;s hort&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,class cv::Rect_&lt;int&gt; &amp;)&quot; (?addSrcWeightGpu1 6S@blend@device@cuda@cv@@YAXU?$PtrStep@F@34@0U534@1AEAV?$Rect_@H@4@@Z) referenced in function &quot;public: virtual void __cdecl cv::detail::MultiBand Blender::feed(class cv::_InputArray const &amp;,class cv::_InputArray const &amp;,class cv::Point_&lt;int&gt;)&quot; (?feed@MultiBandBlender@detail@cv@@UEAAXAEBV_In putArray@3@0V?$Point_@H@3@@Z) blenders.cpp.obj : error LNK2019: unresolved external symbol &quot;void __cdecl cv::cuda::device::blend::addSrcWeightGpu32F(struct cv::cuda::PtrStep&lt;s hort&gt;,struct cv::cuda::PtrStep&lt;float&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;float&gt;,class cv::Rect_&lt;int&gt; &amp;)&quot; (?addSrcWeightGpu3 2F@blend@device@cuda@cv@@YAXU?$PtrStep@F@34@U?$PtrStep@M@34@U534@U634@AEAV?$Rect_@H@4@@Z) referenced in function &quot;public: virtual void __cdecl cv ::detail::MultiBandBlender::feed(class cv::_InputArray const &amp;,class cv::_InputArray const &amp;,class cv::Point_&lt;int&gt;)&quot; (?feed@MultiBandBlender@deta il@cv@@UEAAXAEBV_InputArray@3@0V?$Point_@H@3@@Z) blenders.cpp.obj : error LNK2019: unresolved external symbol &quot;void __cdecl cv::cuda::device::blend::normalizeUsingWeightMapGpu16S(struct cv::cuda ::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,int,int)&quot; (?normalizeUsingWeightMapGpu16S@blend@device@cuda@cv@@YAXU?$PtrStep@F@34@U534@HH@Z) re ferenced in function &quot;public: virtual void __cdecl cv::detail::MultiBandBlender::blend(class cv::_InputOutputArray const &amp;,class cv::_InputOutput Array const &amp;)&quot; (?blend@MultiBandBlender@detail@cv@@UEAAXAEBV_InputOutputArray@3@0@Z) blenders.cpp.obj : error LNK2019: unresolved external symbol &quot;void __cdecl cv::cuda::device::blend::normalizeUsingWeightMapGpu32F(struct cv::cuda ::PtrStep&lt;float&gt;,struct cv::cuda::PtrStep&lt;short&gt;,int,int)&quot; (?normalizeUsingWeightMapGpu32F@blend@device@cuda@cv@@YAXU?$PtrStep@M@34@U?$PtrStep@F@ 34@HH@Z) referenced in function &quot;public: virtual void __cdecl cv::detail::MultiBandBlender::blend(class cv::_InputOutputArray const &amp;,class cv::_ InputOutputArray const &amp;)&quot; (?blend@MultiBandBlender@detail@cv@@UEAAXAEBV_InputOutputArray@3@0@Z) ..\..\bin\opencv_stitching400.dll : fatal error LNK1120: 4 unresolved externals LINK failed. with 1120 NMAKE : fatal error U1077: '&quot;C:\Program Files\cmake\bin\cmake.exe&quot;' : return code '0xffffffff' Stop. NMAKE : fatal error U1077: '&quot;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe&quot;' : return code '0x2' Stop. NMAKE : fatal error U1077: '&quot;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe&quot;' : return code '0x2' Stop."><pre class="notranslate"><code class="notranslate">Scanning dependencies of target opencv_stitching [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/blenders.cpp.obj blenders.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/camera.cpp.obj camera.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/exposure_compensate.cpp.obj exposure_compensate.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/matchers.cpp.obj matchers.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/motion_estimators.cpp.obj motion_estimators.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/seam_finders.cpp.obj seam_finders.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/stitcher.cpp.obj stitcher.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/timelapsers.cpp.obj timelapsers.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/util.cpp.obj util.cpp [ 93%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/warpers.cpp.obj warpers.cpp [ 94%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/src/warpers_cuda.cpp.obj warpers_cuda.cpp d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(451) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(202) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(203) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(204) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(497) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(244) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(245) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(288) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(246) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(529) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(289) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\src\warpers_cuda.cpp(290) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(443) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(470) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(539) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(507) : warning C4702: unreachable code d:\download\opencv4\modules\stitching\include\opencv2\stitching\detail\warpers.hpp(461) : warning C4702: unreachable code [ 94%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/opencl_kernels_stitching.cpp.obj opencl_kernels_stitching.cpp [ 94%] Building RC object modules/stitching/CMakeFiles/opencv_stitching.dir/vs_version.rc.res Microsoft (R) Windows (R) Resource Compiler Version 6.3.9600.17336 Copyright (C) Microsoft Corporation. All rights reserved. [ 94%] Building CXX object modules/stitching/CMakeFiles/opencv_stitching.dir/opencv_stitching_main.cpp.obj opencv_stitching_main.cpp [ 94%] Linking CXX shared library ..\..\bin\opencv_stitching400.dll Creating library ..\..\lib\opencv_stitching400.lib and object ..\..\lib\opencv_stitching400.exp blenders.cpp.obj : error LNK2019: unresolved external symbol "void __cdecl cv::cuda::device::blend::addSrcWeightGpu16S(struct cv::cuda::PtrStep&lt;s hort&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,class cv::Rect_&lt;int&gt; &amp;)" (?addSrcWeightGpu1 6S@blend@device@cuda@cv@@YAXU?$PtrStep@F@34@0U534@1AEAV?$Rect_@H@4@@Z) referenced in function "public: virtual void __cdecl cv::detail::MultiBand Blender::feed(class cv::_InputArray const &amp;,class cv::_InputArray const &amp;,class cv::Point_&lt;int&gt;)" (?feed@MultiBandBlender@detail@cv@@UEAAXAEBV_In putArray@3@0V?$Point_@H@3@@Z) blenders.cpp.obj : error LNK2019: unresolved external symbol "void __cdecl cv::cuda::device::blend::addSrcWeightGpu32F(struct cv::cuda::PtrStep&lt;s hort&gt;,struct cv::cuda::PtrStep&lt;float&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;float&gt;,class cv::Rect_&lt;int&gt; &amp;)" (?addSrcWeightGpu3 2F@blend@device@cuda@cv@@YAXU?$PtrStep@F@34@U?$PtrStep@M@34@U534@U634@AEAV?$Rect_@H@4@@Z) referenced in function "public: virtual void __cdecl cv ::detail::MultiBandBlender::feed(class cv::_InputArray const &amp;,class cv::_InputArray const &amp;,class cv::Point_&lt;int&gt;)" (?feed@MultiBandBlender@deta il@cv@@UEAAXAEBV_InputArray@3@0V?$Point_@H@3@@Z) blenders.cpp.obj : error LNK2019: unresolved external symbol "void __cdecl cv::cuda::device::blend::normalizeUsingWeightMapGpu16S(struct cv::cuda ::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,int,int)" (?normalizeUsingWeightMapGpu16S@blend@device@cuda@cv@@YAXU?$PtrStep@F@34@U534@HH@Z) re ferenced in function "public: virtual void __cdecl cv::detail::MultiBandBlender::blend(class cv::_InputOutputArray const &amp;,class cv::_InputOutput Array const &amp;)" (?blend@MultiBandBlender@detail@cv@@UEAAXAEBV_InputOutputArray@3@0@Z) blenders.cpp.obj : error LNK2019: unresolved external symbol "void __cdecl cv::cuda::device::blend::normalizeUsingWeightMapGpu32F(struct cv::cuda ::PtrStep&lt;float&gt;,struct cv::cuda::PtrStep&lt;short&gt;,int,int)" (?normalizeUsingWeightMapGpu32F@blend@device@cuda@cv@@YAXU?$PtrStep@M@34@U?$PtrStep@F@ 34@HH@Z) referenced in function "public: virtual void __cdecl cv::detail::MultiBandBlender::blend(class cv::_InputOutputArray const &amp;,class cv::_ InputOutputArray const &amp;)" (?blend@MultiBandBlender@detail@cv@@UEAAXAEBV_InputOutputArray@3@0@Z) ..\..\bin\opencv_stitching400.dll : fatal error LNK1120: 4 unresolved externals LINK failed. with 1120 NMAKE : fatal error U1077: '"C:\Program Files\cmake\bin\cmake.exe"' : return code '0xffffffff' Stop. NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"' : return code '0x2' Stop. NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"' : return code '0x2' Stop. </code></pre></div> <p dir="auto">finally it come to the question,</p> <ul dir="auto"> <li>how to make sure of HAVE_CUDA<br> and</li> <li>why unresolved <strong>external</strong> symbol in the same file when the compiled code should be there</li> </ul>
<h5 dir="auto">System information (version)</h5> <ul dir="auto"> <li>OpenCV =&gt; 4.0.0 beta</li> <li>Operating System / Platform =&gt; Windows 7 64 Bit</li> <li>Compiler =&gt; Visual Studio 2015 build tool with cmake and nmake</li> </ul> <h5 dir="auto">Detailed description</h5> <p dir="auto">compilation fails</p> <p dir="auto">the earliest fail i've forgot the scene,<br> it was in file "modules\cudaoptflow\src\farneback.cpp"<br> in line 48 ,the FarnebackOpticalFlow was reported by compiler to be ambiguous<br> i removed these code since the code was in #if !defined HAVE_CUDA || defined(CUDA_DISABLER) and i will use cuda</p> <p dir="auto">in file "modules\stitching\src\blenders.cpp"<br> in line 40 or somewhere the namespace cv::cuda::device::blend don't exist. Obviously the #ifdef HAVE_CUDA did not work.<br> i modified it by removing the #ifdef , expose the code to the outer, for the same reason since i will use cuda<br> it worked</p> <p dir="auto">problem continues and maybe worse:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ 88%] Linking CXX executable ..\..\bin\opencv_perf_cudaoptflow.exe perf_optflow.cpp.obj : error LNK2019: unresolved external symbol &quot;public: static struct cv::Ptr&lt;class cv::cuda::FarnebackOpticalFlow&gt; __cdecl cv::cuda::FarnebackOpticalFlow::create(int,double,bool,int,int,int,double,int)&quot; (?create@FarnebackOpticalFlow@cuda@cv@@SA?AU?$Ptr@VFarnebackOpticalFlow@cuda@cv@@@3@HN_NHHHNH@Z) referenced in function &quot;protected: virtual void __cdecl opencv_test::`anonymous namespace'::ImagePair_FarnebackOpticalFlow::PerfTestBody(void)&quot; (?PerfTestBody@ImagePair_FarnebackOpticalFlow@?A0x63873ea8@opencv_test@@MEAAXXZ) ..\..\bin\opencv_perf_cudaoptflow.exe : fatal error LNK1120: 1 unresolved externals LINK failed. with 1120 NMAKE : fatal error U1077: '&quot;C:\Program Files\cmake\bin\cmake.exe&quot;' : return code '0xffffffff' Stop. NMAKE : fatal error U1077: '&quot;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe&quot;' : return code '0x2' Stop. NMAKE : fatal error U1077: '&quot;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe&quot;' : return code '0x2' Stop."><pre class="notranslate"><code class="notranslate">[ 88%] Linking CXX executable ..\..\bin\opencv_perf_cudaoptflow.exe perf_optflow.cpp.obj : error LNK2019: unresolved external symbol "public: static struct cv::Ptr&lt;class cv::cuda::FarnebackOpticalFlow&gt; __cdecl cv::cuda::FarnebackOpticalFlow::create(int,double,bool,int,int,int,double,int)" (?create@FarnebackOpticalFlow@cuda@cv@@SA?AU?$Ptr@VFarnebackOpticalFlow@cuda@cv@@@3@HN_NHHHNH@Z) referenced in function "protected: virtual void __cdecl opencv_test::`anonymous namespace'::ImagePair_FarnebackOpticalFlow::PerfTestBody(void)" (?PerfTestBody@ImagePair_FarnebackOpticalFlow@?A0x63873ea8@opencv_test@@MEAAXXZ) ..\..\bin\opencv_perf_cudaoptflow.exe : fatal error LNK1120: 1 unresolved externals LINK failed. with 1120 NMAKE : fatal error U1077: '"C:\Program Files\cmake\bin\cmake.exe"' : return code '0xffffffff' Stop. NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"' : return code '0x2' Stop. NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"' : return code '0x2' Stop. </code></pre></div> <p dir="auto">i re-run cmake, unchecked perf-test, and rerun nmake</p> <p dir="auto">the perf_cudaoptflow.exe was "avoided", but bug was not fixed, i got this soon:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="---------------------------------------------------------------------------------- [ 94%] Linking CXX shared library ..\..\bin\opencv_stitching400.dll Creating library ..\..\lib\opencv_stitching400.lib and object ..\..\lib\opencv_stitching400.exp blenders.cpp.obj : error LNK2019: unresolved external symbol &quot;void __cdecl cv::cuda::device::blend::addSrcWeightGpu16S(struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,cla ss cv::Rect_&lt;int&gt; &amp;)&quot; (?addSrcWeightGpu16S@blend@device@cuda@cv@@YAXU?$PtrStep@F@34@0U534@1AEAV?$Rect_@H@4@@Z) referenced in function &quot;public: virtual void __cdecl cv::detail::MultiBandBlender::feed(class cv::_InputArray const &amp;,class cv::_InputArray const &amp;,class cv::Point_&lt;int&gt;)&quot; (?feed@MultiBandBlender@detail@cv@@UEAAXAEBV_InputArray@3@0V?$Point_@H@3@@Z) blenders.cpp.obj : error LNK2019: unresolved external symbol &quot;void __cdecl cv::cuda::device::blend::addSrcWeightGpu32F(struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;float&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;float&gt;,cla ss cv::Rect_&lt;int&gt; &amp;)&quot; (?addSrcWeightGpu32F@blend@device@cuda@cv@@YAXU?$PtrStep@F@34@U?$PtrStep@M@34@U534@U634@AEAV?$Rect_@H@4 @@Z) referenced in function &quot;public: virtual void __cdecl cv::detail::MultiBandBlender::feed(class cv::_InputArray const &amp;,cl ass cv::_InputArray const &amp;,class cv::Point_&lt;int&gt;)&quot; (?feed@MultiBandBlender@detail@cv@@UEAAXAEBV_InputArray@3@0V?$Point_@H@3@ @Z) blenders.cpp.obj : error LNK2019: unresolved external symbol &quot;void __cdecl cv::cuda::device::blend::normalizeUsingWeightMapGp u16S(struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,int,int)&quot; (?normalizeUsingWeightMapGpu16S@blend@device@c uda@cv@@YAXU?$PtrStep@F@34@U534@HH@Z) referenced in function &quot;public: virtual void __cdecl cv::detail::MultiBandBlender::blen d(class cv::_InputOutputArray const &amp;,class cv::_InputOutputArray const &amp;)&quot; (?blend@MultiBandBlender@detail@cv@@UEAAXAEBV_Inp utOutputArray@3@0@Z) blenders.cpp.obj : error LNK2019: unresolved external symbol &quot;void __cdecl cv::cuda::device::blend::normalizeUsingWeightMapGp u32F(struct cv::cuda::PtrStep&lt;float&gt;,struct cv::cuda::PtrStep&lt;short&gt;,int,int)&quot; (?normalizeUsingWeightMapGpu32F@blend@device@c uda@cv@@YAXU?$PtrStep@M@34@U?$PtrStep@F@34@HH@Z) referenced in function &quot;public: virtual void __cdecl cv::detail::MultiBandBl ender::blend(class cv::_InputOutputArray const &amp;,class cv::_InputOutputArray const &amp;)&quot; (?blend@MultiBandBlender@detail@cv@@UE AAXAEBV_InputOutputArray@3@0@Z) ..\..\bin\opencv_stitching400.dll : fatal error LNK1120: 4 unresolved externals LINK failed. with 1120 NMAKE : fatal error U1077: '&quot;C:\Program Files\cmake\bin\cmake.exe&quot;' : return code '0xffffffff' Stop. NMAKE : fatal error U1077: '&quot;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe&quot;' : return code '0x2' Stop. NMAKE : fatal error U1077: '&quot;C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe&quot;' : return code '0x2' Stop."><pre class="notranslate"><code class="notranslate">---------------------------------------------------------------------------------- [ 94%] Linking CXX shared library ..\..\bin\opencv_stitching400.dll Creating library ..\..\lib\opencv_stitching400.lib and object ..\..\lib\opencv_stitching400.exp blenders.cpp.obj : error LNK2019: unresolved external symbol "void __cdecl cv::cuda::device::blend::addSrcWeightGpu16S(struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,cla ss cv::Rect_&lt;int&gt; &amp;)" (?addSrcWeightGpu16S@blend@device@cuda@cv@@YAXU?$PtrStep@F@34@0U534@1AEAV?$Rect_@H@4@@Z) referenced in function "public: virtual void __cdecl cv::detail::MultiBandBlender::feed(class cv::_InputArray const &amp;,class cv::_InputArray const &amp;,class cv::Point_&lt;int&gt;)" (?feed@MultiBandBlender@detail@cv@@UEAAXAEBV_InputArray@3@0V?$Point_@H@3@@Z) blenders.cpp.obj : error LNK2019: unresolved external symbol "void __cdecl cv::cuda::device::blend::addSrcWeightGpu32F(struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;float&gt;,struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;float&gt;,cla ss cv::Rect_&lt;int&gt; &amp;)" (?addSrcWeightGpu32F@blend@device@cuda@cv@@YAXU?$PtrStep@F@34@U?$PtrStep@M@34@U534@U634@AEAV?$Rect_@H@4 @@Z) referenced in function "public: virtual void __cdecl cv::detail::MultiBandBlender::feed(class cv::_InputArray const &amp;,cl ass cv::_InputArray const &amp;,class cv::Point_&lt;int&gt;)" (?feed@MultiBandBlender@detail@cv@@UEAAXAEBV_InputArray@3@0V?$Point_@H@3@ @Z) blenders.cpp.obj : error LNK2019: unresolved external symbol "void __cdecl cv::cuda::device::blend::normalizeUsingWeightMapGp u16S(struct cv::cuda::PtrStep&lt;short&gt;,struct cv::cuda::PtrStep&lt;short&gt;,int,int)" (?normalizeUsingWeightMapGpu16S@blend@device@c uda@cv@@YAXU?$PtrStep@F@34@U534@HH@Z) referenced in function "public: virtual void __cdecl cv::detail::MultiBandBlender::blen d(class cv::_InputOutputArray const &amp;,class cv::_InputOutputArray const &amp;)" (?blend@MultiBandBlender@detail@cv@@UEAAXAEBV_Inp utOutputArray@3@0@Z) blenders.cpp.obj : error LNK2019: unresolved external symbol "void __cdecl cv::cuda::device::blend::normalizeUsingWeightMapGp u32F(struct cv::cuda::PtrStep&lt;float&gt;,struct cv::cuda::PtrStep&lt;short&gt;,int,int)" (?normalizeUsingWeightMapGpu32F@blend@device@c uda@cv@@YAXU?$PtrStep@M@34@U?$PtrStep@F@34@HH@Z) referenced in function "public: virtual void __cdecl cv::detail::MultiBandBl ender::blend(class cv::_InputOutputArray const &amp;,class cv::_InputOutputArray const &amp;)" (?blend@MultiBandBlender@detail@cv@@UE AAXAEBV_InputOutputArray@3@0@Z) ..\..\bin\opencv_stitching400.dll : fatal error LNK1120: 4 unresolved externals LINK failed. with 1120 NMAKE : fatal error U1077: '"C:\Program Files\cmake\bin\cmake.exe"' : return code '0xffffffff' Stop. NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"' : return code '0x2' Stop. NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"' : return code '0x2' Stop. </code></pre></div> <p dir="auto">i did not dive into code yet, was this encountered yet or was it only my fault???</p> <h5 dir="auto">Steps to reproduce</h5> <p dir="auto">the real problem was "unresolved external symbol"</p>
1
<p dir="auto">[ x] bug report =&gt; search github for a similar issue or PR before submitting<br> [ ] feature request<br> [ ] support request =&gt; Please do not submit support request here, instead see</p> <p dir="auto">If i have an html that binds a property on its component and an error happens while detection changes for this property, the whole application will stop detecting changes, even if i add an error handler it wont help.\</p> <p dir="auto">Below i have tow properties Code,Name the Name is binding its value from an external object named EntityPM, now when this object is undefined the change detector will stop for the whole application.<br> I expect that the code should continue detecting the changes from the input even that there is an error with the name.</p> <p dir="auto"><a href="https://plnkr.co/edit/kg63yyu3GmjdZPaY8cmh?p=preview" rel="nofollow">https://plnkr.co/edit/kg63yyu3GmjdZPaY8cmh?p=preview</a></p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/6479417/23100407/830d099a-f688-11e6-9090-9fb302b7972b.png"><img src="https://cloud.githubusercontent.com/assets/6479417/23100407/830d099a-f688-11e6-9090-9fb302b7972b.png" alt="image" style="max-width: 100%;"></a></p>
<p dir="auto"><strong>I'm submitting a ...</strong></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[X] bug report [ ] feature request"><pre class="notranslate"><code class="notranslate">[X] bug report [ ] feature request </code></pre></div> <p dir="auto"><strong>Current behavior</strong></p> <p dir="auto">In prod mode, change detection stops working after uncaught exception occurs during the binding evaluation.</p> <p dir="auto">Details:<br> the subscription to zone.onMicrotaskEmpty event, which is established in angular/core/application_ref is being unsubscribed automatically by RxJS (at SafeSubscriber.__tryOrUnsub), when uncaught exception occurs during the binding evaluation, and currently there s no way to recover from uncaught exception during the binding evaluation in prod mode.</p> <p dir="auto"><strong>Expected/desired behavior</strong></p> <p dir="auto">In prod mode, change detection should continue to function properly after uncaught exception during the binding evaluation.</p> <p dir="auto"><strong>Reproduction of the problem</strong></p> <p dir="auto"><a href="http://plnkr.co/edit/2fe6GC6NkuFkffpEoDPZ?p=preview" rel="nofollow">http://plnkr.co/edit/2fe6GC6NkuFkffpEoDPZ?p=preview</a></p> <p dir="auto"><strong>What is the motivation / use case for changing the behavior?</strong></p> <p dir="auto">In our project, which previously used angular beta 9, we've built custom error handling (by subsclassing ExceptionHandler).<br> When in prod mode, the error was displayed in a popup on the current page, with 'Report' button, and other stuff.<br> After upgrading the project to RC1, we're unable to display the popup on the current page after the uncaught error has occurred.</p> <p dir="auto">There should be some ability to recover from an uncaught exception.</p> <p dir="auto"><strong>Please tell us about your environment:</strong></p> <ul dir="auto"> <li><strong>Angular version:</strong> 2.0.0-rc.1 - 2.0.0-rc.3</li> <li><strong>Browser:</strong> all</li> <li><strong>Language:</strong> all</li> </ul>
1
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="panic: runtime error: index out of range [recovered] panic: runtime error: index out of range goroutine 9 [running]: regexp.(*machine).backtrack(0xc2085c4ea0, 0xac7ce0, 0xc2085c4f78, 0x0, 0x2b26, 0x0, 0x4b2fc0) /Users/rsc/g/go/src/regexp/backtrack.go:343 +0x394 regexp.(*Regexp).doExecute(0xc208085040, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc208a1e000, 0x2b26, 0x0, 0x0, ...) /Users/rsc/g/go/src/regexp/exec.go:449 +0x413 regexp.(*Regexp).MatchString(0xc208085040, 0xc208a1e000, 0x2b26, 0x3e00) /Users/rsc/g/go/src/regexp/regexp.go:406 +0xc8 main.(*builder).processOutput(0xc20846afc0, 0xc2086a0000, 0x2b26, 0x3e00, 0x0, 0x0) /Users/rsc/g/go/src/cmd/go/build.go:1426 +0x146 main.(*builder).build(0xc20846afc0, 0xc208552c30, 0x0, 0x0) /Users/rsc/g/go/src/cmd/go/build.go:972 +0x25f6 main.(*builder).do.func1(0xc208552c30) /Users/rsc/g/go/src/cmd/go/build.go:737 +0x3a8 main.(*builder).do.func2(0xc2087b2940, 0xc20846afc0, 0xc2087b2920) /Users/rsc/g/go/src/cmd/go/build.go:794 +0x155 created by main.(*builder).do /Users/rsc/g/go/src/cmd/go/build.go:800 +0x49f"><pre class="notranslate"><code class="notranslate">panic: runtime error: index out of range [recovered] panic: runtime error: index out of range goroutine 9 [running]: regexp.(*machine).backtrack(0xc2085c4ea0, 0xac7ce0, 0xc2085c4f78, 0x0, 0x2b26, 0x0, 0x4b2fc0) /Users/rsc/g/go/src/regexp/backtrack.go:343 +0x394 regexp.(*Regexp).doExecute(0xc208085040, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc208a1e000, 0x2b26, 0x0, 0x0, ...) /Users/rsc/g/go/src/regexp/exec.go:449 +0x413 regexp.(*Regexp).MatchString(0xc208085040, 0xc208a1e000, 0x2b26, 0x3e00) /Users/rsc/g/go/src/regexp/regexp.go:406 +0xc8 main.(*builder).processOutput(0xc20846afc0, 0xc2086a0000, 0x2b26, 0x3e00, 0x0, 0x0) /Users/rsc/g/go/src/cmd/go/build.go:1426 +0x146 main.(*builder).build(0xc20846afc0, 0xc208552c30, 0x0, 0x0) /Users/rsc/g/go/src/cmd/go/build.go:972 +0x25f6 main.(*builder).do.func1(0xc208552c30) /Users/rsc/g/go/src/cmd/go/build.go:737 +0x3a8 main.(*builder).do.func2(0xc2087b2940, 0xc20846afc0, 0xc2087b2920) /Users/rsc/g/go/src/cmd/go/build.go:794 +0x155 created by main.(*builder).do /Users/rsc/g/go/src/cmd/go/build.go:800 +0x49f </code></pre></div> <p dir="auto">The line in question is</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="b.cap[0] = pos"><pre class="notranslate"><code class="notranslate">b.cap[0] = pos </code></pre></div> <p dir="auto">I extracted the specific regexp and input that caused this but in the obvious 1-line program there is no crash. This suggests there is something bad in the caching of machines. I don't have a simple program to provoke this, but maybe that's enough information anyway.</p>
<p dir="auto">by <strong>lvscar</strong>:</p> <pre class="notranslate">current http lib lack of public function for sending user-defined headers make send(src/pkg/http/client.go) public?</pre>
0
<p dir="auto">by <strong><a href="mailto:goprogger@gmx.de">goprogger@gmx.de</a></strong>:</p> <pre class="notranslate">Before filing a bug, please check whether it has been fixed since the latest release: run "hg pull -u" and retry what you did to reproduce the problem. Thanks. What steps will reproduce the problem? package main Version 1.go: ------------- import ( "fmt" "runtime" ) func main() { F(15000000) } func F(n int) (r string) { r2 := "" for len(r2 + r) &lt; n { t := "" for i := 0; i &lt; 5000; i++ { t += "10" } r += t if len(r) &gt; 1000000 { fmt.Printf("Alloc: %12d\n", runtime.MemStats.Alloc) r2 += r r = "" } } r2 += r return r2[:n] } Version 0.go (crushes ever faster): ----------------------------------- package main import ( "fmt" "runtime" "crypto/rand" ) func main() { F(15000000) b := make([]byte, 1000) _, err := rand.Read(b) if err != nil { return } } func F(n int) (r string) { r2 := "" for len(r2 + r) &lt; n { t := "" for i := 0; i &lt; 5000; i++ { t += "10" } r += t if len(r) &gt; 1000000 { fmt.Printf("Alloc: %10d\n", runtime.MemStats.Alloc) r2 += r r = "" } } r2 += r return r2[:n] } What is the expected output? Output of 0.go compiled with 6g Alloc: 2730712 Alloc: 4285864 Alloc: 6966696 Alloc: 6770088 Alloc: 13104552 Alloc: 13534632 Alloc: 17578920 Alloc: 19774376 Alloc: 18771368 Alloc: 17745320 Alloc: 16735656 Alloc: 16569768 Alloc: 58090368 Alloc: 60248960 What do you see instead? Output 386 0.go Alloc: 4590192 Alloc: 18337264 Alloc: 24819696 Alloc: 354659856 runtime: memory allocated by OS not in usable range runtime: out of memory: cannot allocate 4325376-byte block (535953408 in use) throw: out of memory runtime.throw+0x43 /home/ubuntu/go/src/pkg/runtime/runtime.c:102 runtime.throw(0x80f3005, 0x413) runtime.mallocgc+0x2cd /home/ubuntu/go/src/pkg/runtime/malloc.c:60 runtime.mallocgc(0x4127b1, 0x0, 0x1, 0x1, 0x0, ...) runtime.mal+0x43 /home/ubuntu/go/src/pkg/runtime/malloc.c:289 runtime.mal(0x4127b1, 0x805bfb1) runtime.gostringsize+0x49 /home/ubuntu/go/src/pkg/runtime/string.c:40 runtime.gostringsize(0x80fe4c, 0x4127b0, 0x2710) concatstring+0x79 /home/ubuntu/go/src/pkg/runtime/string.c:126 concatstring(0x80fe88, 0x2, 0x80fe78, 0x80fe78) runtime.concatstring+0x1f /home/ubuntu/go/src/pkg/runtime/string.c:141 runtime.concatstring(0x2, 0xaf067000, 0x3da540) main.F+0x6a /home/ubuntu/test/0.go:21 main.F(0xe4e1c0, 0xb6c33000, 0x38270) main.main+0x26 /home/ubuntu/test/0.go:10 main.main() runtime.mainstart+0xf /home/ubuntu/go/src/pkg/runtime/386/asm.s:93 runtime.mainstart() runtime.goexit /home/ubuntu/go/src/pkg/runtime/proc.c:178 runtime.goexit() ----- goroutine created by ----- _rt0_386+0xc1 /home/ubuntu/go/src/pkg/runtime/386/asm.s:80 -------------------------------------------------------------------------- Output 386 1.go Alloc: 3840488 Alloc: 4666216 Alloc: 8051560 Alloc: 6943592 Alloc: 8584040 Alloc: 13527912 Alloc: 20775784 Alloc: 91599424 Alloc: 424534984 runtime: memory allocated by OS not in usable range runtime: out of memory: cannot allocate 9175040-byte block (536805376 in use) throw: out of memory runtime.throw+0x43 /home/ubuntu/go/src/pkg/runtime/runtime.c:102 runtime.throw(0x80e9005, 0x8b1) runtime.mallocgc+0x2cd /home/ubuntu/go/src/pkg/runtime/malloc.c:60 runtime.mallocgc(0x8b01f1, 0x0, 0x1, 0x1, 0x0, ...) runtime.mal+0x43 /home/ubuntu/go/src/pkg/runtime/malloc.c:289 runtime.mal(0x8b01f1, 0x805bf4a) runtime.gostringsize+0x49 /home/ubuntu/go/src/pkg/runtime/string.c:40 runtime.gostringsize(0x307e8c, 0x8b01f0, 0x2710) concatstring+0x79 /home/ubuntu/go/src/pkg/runtime/string.c:126 concatstring(0x307ec8, 0x2, 0x307eb8, 0x307eb8) runtime.concatstring+0x1f /home/ubuntu/go/src/pkg/runtime/string.c:141 runtime.concatstring(0x2, 0xb5d6d000, 0x8ab3d0) main.F+0x6a /home/ubuntu/test/1.go:14 main.F(0xe4e1c0, 0xb451f000, 0x4e20) main.main+0x26 /home/ubuntu/test/1.go:9 main.main() runtime.mainstart+0xf /home/ubuntu/go/src/pkg/runtime/386/asm.s:93 runtime.mainstart() runtime.goexit /home/ubuntu/go/src/pkg/runtime/proc.c:178 runtime.goexit() ----- goroutine created by ----- _rt0_386+0xc1 /home/ubuntu/go/src/pkg/runtime/386/asm.s:80 Which compiler are you using (5g, 6g, 8g, gccgo)? 8g Which operating system are you using? ubuntu 10.04, 10.10, 11.04 Which revision are you using? (hg identify) e1e194eb5c8e (release-branch.r57) Please provide any additional information below.</pre>
<p dir="auto">by <strong>serge.hulne</strong>:</p> <pre class="notranslate">Problem: The following code uses a map to store unique bigrams (couple of words) from a text file (and an array to sort them according to their frequency of occurence). The file used for the test is : <a href="http://www.gutenberg.org/cache/epub/100/pg100.txt" rel="nofollow">http://www.gutenberg.org/cache/epub/100/pg100.txt</a> (concatenated a couple of times for the sake of the test) At no point during the run of program does the map store an amount of data comparable to the size of the text file, since the most frequent bigrams appear thousands of time in said text file. One would therefore expect the memory usage of the executable to use an amount of RAM which is less than the size of the text file. However it seem to be quite the opposite in practice. Here is the source code: The version of 6g is : 6g version 5189 release.2010-03-30 release The hardware is : Mac Mini , Intel Core Duo The Go env. variables are: GOBIN=/Users/serge2/go/src/bin GOARCH=amd64 GOROOT=/Users/serge2/go GOOS=darwin Serge Hulne ------------------- package main import ( "fmt" "os" "bufio" "unicode" "strings" "time" "runtime" "sort" ) func monitor() { for { fmt.Printf("Memory usage = %d\n", runtime.MemStats.Alloc) time.Sleep(1e9) } } //--- type Bigram struct { key string value string freq uint } type BigramArray []Bigram // Methods required by sort.Interface to sort structures of the type BigramArray. func (s BigramArray) Len() int { return len(s) } func (s BigramArray) Less(i, j int) bool { return s[i].freq &gt; s[j].freq } //(reverse sort) func (s BigramArray) Swap(i, j int) { s[i], s[j] = s[j], s[i] } func hash_bigram(b *Bigram) uint { var h uint = 5381 for _, r := range (*b).key { h = (h &lt;&lt; 5) + h + uint(r) } h = (h &lt;&lt; 5) + h + uint('_') for _, r := range (*b).value { h = (h &lt;&lt; 5) + h + uint(r) } return h } //--- func main() int { l_cnt := 0 w_cnt := 0 cpt_chars := 0 inword := false buf := "" old_word := "" new_word := "" var bigram Bigram T := map [uint] Bigram{} //f, err := os.Open("faust.txt", os.O_RDONLY, 0666) //f, err := os.Open("test.txt", os.O_RDONLY, 0666) //f, err := os.Open("hamlet.txt", os.O_RDONLY, 0666) f, err := os.Open("../shakespeare.txt", os.O_RDONLY, 0666) //f, err := os.Open("/Users/serge2/development/NLP/B60W20.txt", os.O_RDONLY, 0666) //f, err := os.Open("../B60W20.txt", os.O_RDONLY, 0666) go monitor() if err != nil { fmt.Printf("\nError =&gt; %s\n\n", err) } reader := bufio.NewReader(f) //Buffered reader for { c, _ ,err := reader.ReadRune() //"ReadRune": reads unicode chars cpt_chars++ if err != os.EOF &amp;&amp; err == nil { if c == '\n' { l_cnt++ } /////////////////////////////// if unicode.IsSpace(c) == false { //Scanner : filters out whitespace if inword == false { buf = "" buf += string(c) inword = true w_cnt++ } else { buf += string(c) } } else if inword == true { //--- buf = strings.ToLower(buf) new_word = buf if len(new_word)&gt;0 &amp;&amp; len(old_word)&gt;0 { bigram.key = old_word bigram.value = new_word h := hash_bigram(&amp;bigram) if _, ok := T[h]; ok { b := T[h] b.freq++ T[h] = b } else { T[h] = bigram } } old_word = new_word //--- //fmt.Printf("%d\t buf = (%s)\n", w_cnt ,buf) inword = false buf = "" } /////////////////////////////// } else { //EOF detected if err == os.EOF { break } } //end if (err=nil) } // end for (main loop) //--- var bigramsArray BigramArray bigramsArray = make (BigramArray, len(T)) i := 0 for _, v := range T{ bigramsArray[i] = v i++ } sort.Sort(bigramsArray) for _, v := range bigramsArray[0:20]{ fmt.Printf("%d\t (%s,%s)\n", v.freq, v.key, v.value) } //--- fmt.Printf("\nlines = %d, words = %d, chars = %d\n", l_cnt, w_cnt, cpt_chars) return 0 } ------------------- Here is the result of the run: serge-hulnes-mac-mini:Go_test serge2$ ls -l ../shakespeare.txt -rw-r--r-- 1 serge2 staff 15862370 5 mar 11:07 ../shakespeare.txt serge-hulnes-mac-mini:Go_test serge2$ time ./bigrammes_7 Memory usage = 347648 Memory usage = 18181624 Memory usage = 33399512 Memory usage = 22003136 Memory usage = 32615280 Memory usage = 19154104 Memory usage = 29662040 Memory usage = 18441376 Memory usage = 28763680 Memory usage = 18525536 Memory usage = 28688216 Memory usage = 18481616 Memory usage = 28727720 6809 (of,the) 5619 (in,the) 5539 (to,the) 4699 (i,am) 4149 (i,will) 3459 (i,have) 3079 (it,is) 2769 (if,you) 2609 (that,i) 2589 (and,the) 2569 (by,the) 2469 (to,be) 2099 (and,i) 2059 (my,lord,) 2039 (of,syracuse.) 2019 (you,are) 1999 (is,the) 1999 (for,the) 1989 (antipholus,of) 1899 (of,my) lines = 495200, words = 2703240, chars = 15862351 real 0m12.725s user 0m12.602s sys 0m0.104s</pre> <p dir="auto">Attachments:</p> <ol dir="auto"> <li><a href="https://storage.googleapis.com/go-attachment/719/0/bigrammes_7.go" rel="nofollow">bigrammes_7.go</a> (2930 bytes)</li> </ol>
0
<p dir="auto">I have 8 GB ram and all my apps run blazing fast, including chrome which is known these days to be laggy.<br> Unfortunately, launch time for Atom is really slow on Ubuntu 14.04 64 bit</p>
<p dir="auto">Status: This is an ongoing effort.</p> <p dir="auto">Via <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/kevinsawicki/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/kevinsawicki">@kevinsawicki</a></p> <p dir="auto">The current plan is to investigate what is slow on startup, optimize it, and then investigate concatenating all the CoffeeScript requires to save eval time on startup.</p> <h3 dir="auto">Merged Changes</h3> <p dir="auto">Times below are were taken with a Macbook Pro on OS X 10.8.5 with 2.6 Ghz Intel Core i7 processors and 16 GB of memory</p> <ul dir="auto"> <li><a class="commit-link" data-hovercard-type="commit" data-hovercard-url="https://github.com/atom/less-cache/commit/dbddce5d34aee85f8b3687d5ec9e5837bdb9bb7a/hovercard" href="https://github.com/atom/less-cache/commit/dbddce5d34aee85f8b3687d5ec9e5837bdb9bb7a">atom/less-cache@<tt>dbddce5</tt></a> <ul dir="auto"> <li>Saves <code class="notranslate">~40ms</code> when starting Atom with a fully warm Less cache</li> </ul> </li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="41972868" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/3453" data-hovercard-type="pull_request" data-hovercard-url="/atom/atom/pull/3453/hovercard" href="https://github.com/atom/atom/pull/3453">#3453</a> <ul dir="auto"> <li>Cuts browser process launch time by <code class="notranslate">~33%</code></li> <li>Saves <code class="notranslate">~60ms</code> on startup</li> </ul> </li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="42103599" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/3470" data-hovercard-type="pull_request" data-hovercard-url="/atom/atom/pull/3470/hovercard" href="https://github.com/atom/atom/pull/3470">#3470</a> <ul dir="auto"> <li>Cuts time taken to apply stylesheets by <code class="notranslate">~66%</code></li> <li>Saves <code class="notranslate">~40ms</code> on startup</li> </ul> </li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="42552587" data-permission-text="Title is private" data-url="https://github.com/atom/wrap-guide/issues/16" data-hovercard-type="pull_request" data-hovercard-url="/atom/wrap-guide/pull/16/hovercard" href="https://github.com/atom/wrap-guide/pull/16">atom/wrap-guide#16</a> <ul dir="auto"> <li>Saves <code class="notranslate">~10ms</code> on startup</li> </ul> </li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="42578011" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/3519" data-hovercard-type="pull_request" data-hovercard-url="/atom/atom/pull/3519/hovercard" href="https://github.com/atom/atom/pull/3519">#3519</a> <ul dir="auto"> <li>Saves <code class="notranslate">~250ms</code> on startup</li> </ul> </li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="42436799" data-permission-text="Title is private" data-url="https://github.com/atom/tree-view/issues/219" data-hovercard-type="pull_request" data-hovercard-url="/atom/tree-view/pull/219/hovercard" href="https://github.com/atom/tree-view/pull/219">atom/tree-view#219</a> <ul dir="auto"> <li>Saves <code class="notranslate">~200ms</code> on startup for large projects.</li> </ul> </li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="42836700" data-permission-text="Title is private" data-url="https://github.com/atom/status-bar/issues/35" data-hovercard-type="pull_request" data-hovercard-url="/atom/status-bar/pull/35/hovercard" href="https://github.com/atom/status-bar/pull/35">atom/status-bar#35</a> <ul dir="auto"> <li>Save <code class="notranslate">~30ms</code> on startup</li> </ul> </li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="42933439" data-permission-text="Title is private" data-url="https://github.com/atom/tabs/issues/82" data-hovercard-type="pull_request" data-hovercard-url="/atom/tabs/pull/82/hovercard" href="https://github.com/atom/tabs/pull/82">atom/tabs#82</a> <ul dir="auto"> <li>Saves <code class="notranslate">~15ms</code> on startup</li> </ul> </li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="46416489" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/3917" data-hovercard-type="pull_request" data-hovercard-url="/atom/atom/pull/3917/hovercard" href="https://github.com/atom/atom/pull/3917">#3917</a> <ul dir="auto"> <li>Reduces number of files read at startup</li> </ul> </li> <li><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="45282920" data-permission-text="Title is private" data-url="https://github.com/atom/atom/issues/3761" data-hovercard-type="pull_request" data-hovercard-url="/atom/atom/pull/3761/hovercard" href="https://github.com/atom/atom/pull/3761">#3761</a> <ul dir="auto"> <li>Caches requires across all installed packages and speeds up require resolution</li> </ul> </li> </ul>
1
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18362.0 Details: Platform ServicePack Version VersionString -------- ----------- ------- ------------- Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 Any other software? Ubuntu 18.04 WSL Anaconda/Miniconda"><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18362.0 Details: Platform ServicePack Version VersionString -------- ----------- ------- ------------- Win32NT 10.0.18362.0 Microsoft Windows NT 10.0.18362.0 Any other software? Ubuntu 18.04 WSL Anaconda/Miniconda </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <ol dir="auto"> <li>Install <a href="https://www.microsoft.com/en-us/p/windows-terminal-preview/9n0dx20hk701" rel="nofollow"><em>Windows Terminal (Preview)</em></a> through the <em>Microsoft Store</em> on two separate Windows devices<br> <strong>IMPORTANT</strong>: Use the same credentials in the Microsoft Store on both devices</li> <li>Change settings on one device (e.g. add a new profile to start in drive <code class="notranslate">D:\</code> )</li> <li>Change the settings on the other device (e.g. add the same profile but use drive <code class="notranslate">E:\</code>)</li> </ol> <h1 dir="auto">Expected behavior</h1> <p dir="auto">Configurations stay local to the device being configured on</p> <h1 dir="auto">Actual behavior</h1> <ul dir="auto"> <li>Configurations get shared between devices</li> <li>It is also not predictable when the configuration gets updated from the other device</li> </ul> <h1 dir="auto">My use case</h1> <p dir="auto">I had created a new profile for <em>Anaconda</em> on my desktop but I used <em>Miniconda</em> on my laptop. I was surprised to see that these profiles kept getting shuffled around.</p> <p dir="auto">The same happened with Ubuntu WSL, which I have manually installed on a different drive through Powershell.</p> <h1 dir="auto">Minor workarounds</h1> <ul dir="auto"> <li>Use environment variables in profile configuration <g-emoji class="g-emoji" alias="smile" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f604.png">πŸ˜„</g-emoji></li> <li>Have duplicated profiles with proper path and drive mappings per device <g-emoji class="g-emoji" alias="neutral_face" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f610.png">😐</g-emoji></li> <li>Install software in paths consistent across devices 😒 , etc. etc.</li> </ul> <p dir="auto"><strong>IMHO</strong>, this feels like a bug because I expected profiles to be created specific for each device. Though I suspect that the config file sharing is a feature of the Microsoft Store app platform and working as expected.</p> <p dir="auto">It would be nice to see this working as expected, but I'm OK if not possible. At least wanted to raise awareness about this behavior. Thank you!</p>
<h1 dir="auto">Environment</h1> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Windows build number: 10.0.18362.0 Windows Terminal version (if applicable): PowerShell: PowerShell 7 Preview 6 "><pre lang="none" class="notranslate"><code class="notranslate">Windows build number: 10.0.18362.0 Windows Terminal version (if applicable): PowerShell: PowerShell 7 Preview 6 </code></pre></div> <h1 dir="auto">Steps to reproduce</h1> <p dir="auto">If you run PowerShell 7 Preview 6 in Windows Terminal, Out-GridView, Show-Command, and Get-Help -ShowWindow don't get a focus. They open windows behind the Terminal.</p> <h1 dir="auto">Expected behavior</h1> <p dir="auto">Windows opened by these PowerShell commands will get focus and be open over Windows Terminal.</p> <h1 dir="auto">Actual behavior</h1> <p dir="auto">If you run PowerShell 7 Preview 6 in Windows Terminal, Out-GridView, Show-Command, and Get-Help -ShowWindow don't get a focus. They open windows behind the Terminal.</p>
0
<p dir="auto">Hi,<br> I'm noticing the reverse nested aggregation feature is available only for the nested data model but not for parent-child. We need to use parent-child since update latency is very important to us but noticing that aggregations which are several levels deep are not possible in a single query using parent child.</p> <p dir="auto">Here is how this can be done with the Nested model. Is this something which can be added for parent-child?</p> <p dir="auto">REQUEST:-<br> POST/document_test/document/_search?search_type=count{<br> "aggs": {<br> "created_date_agg": {<br> "nested": {<br> "path": "metadata"<br> },<br> "aggs": {<br> "created_date_agg_filter": {<br> "filter": {<br> "term": {<br> "fieldid": "CREATEDDATE"<br> }<br> },<br> "aggs": {<br> "created_date_agg_values": {<br> "terms": {<br> "field": "fieldvalue"<br> },<br> "aggs": {<br> "metadata_to_parent": {<br> "reverse_nested": {</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" }, &quot;aggs&quot;: { &quot;filetype_agg&quot;: { &quot;nested&quot;: { &quot;path&quot;: &quot;metadata&quot; }, &quot;aggs&quot;: { &quot;filetype_agg_filter&quot;: { &quot;filter&quot;: { &quot;term&quot;: { &quot;fieldid&quot;: &quot;DOCTYPE&quot; } }, &quot;aggs&quot;: { &quot;filetype_agg_values&quot;: { &quot;terms&quot;: { &quot;field&quot;: &quot;fieldvalue&quot; } } } } } } } } } } } } } } }"><pre class="notranslate"><code class="notranslate"> }, "aggs": { "filetype_agg": { "nested": { "path": "metadata" }, "aggs": { "filetype_agg_filter": { "filter": { "term": { "fieldid": "DOCTYPE" } }, "aggs": { "filetype_agg_values": { "terms": { "field": "fieldvalue" } } } } } } } } } } } } } } } </code></pre></div> <p dir="auto">}</p> <p dir="auto">RESPONSE:-<br> RESPONSE: -"aggregations": {<br> "created_date_agg": {<br> "doc_count": 12,<br> "created_date_agg_filter": {<br> "doc_count": 4,<br> "created_date_agg_values": {<br> "doc_count_error_upper_bound": 0,<br> "sum_other_doc_count": 0,<br> "buckets": [<br> {<br> "key": "6/9/2015",<br> "doc_count": 3,<br> "metadata_to_parent": {<br> "doc_count": 3,<br> "filetype_agg": {<br> "doc_count": 9,<br> "filetype_agg_filter": {<br> "doc_count": 3,<br> "filetype_agg_values": {<br> "doc_count_error_upper_bound": 0,<br> "sum_other_doc_count": 0,<br> "buckets": [<br> {<br> "key": "Excel",<br> "doc_count": 2<br> },<br> {<br> "key": "Microsoft Word",<br> "doc_count": 1<br> }<br> ]<br> }<br> }<br> }<br> }<br> },<br> {<br> "key": "6/10/2015",<br> "doc_count": 1,<br> "metadata_to_parent": {<br> "doc_count": 1,<br> "filetype_agg": {<br> "doc_count": 3,<br> "filetype_agg_filter": {<br> "doc_count": 1,<br> "filetype_agg_values": {<br> "doc_count_error_upper_bound": 0,<br> "sum_other_doc_count": 0,<br> "buckets": [<br> {<br> "key": "Powerpoint",<br> "doc_count": 1<br> }<br> ]<br> }<br> }<br> }<br> }<br> }<br> ]<br> }<br> }<br> }<br> }<br> }</p>
<p dir="auto">I get these NPE after running after running for about 10 minutes or less. I did not see these NPEs with ES v1.4.1.</p> <p dir="auto">ES v1.4.2 on tribe node and the ES clusters the tribe node is aggregating.</p> <p dir="auto">[2015-01-06 04:08:01,591][WARN ][tribe ] [dc1-app1111] failed to process [cluster event from mobile_dc1, zen-disco-receive(from master [[dc1-app2222][TLF_56CDTV2dHXmUf0XFUg][dc1-app2222][inet[/172.24.23.163:9300]]{max_local_storage_nodes=1, master=true, zone=data}])]<br> java.lang.NullPointerException<br> at org.elasticsearch.cluster.routing.RoutingTable$Builder.add(RoutingTable.java:429)<br> at org.elasticsearch.tribe.TribeService$TribeClusterStateListener$1.execute(TribeService.java:265)<br> at org.elasticsearch.cluster.service.InternalClusterService$UpdateTask.run(InternalClusterService.java:329)<br> at org.elasticsearch.common.util.concurrent.PrioritizedEsThreadPoolExecutor$TieBreakingPrioritizedRunnable.run(PrioritizedEsThreadPoolExecutor.java:153)<br> at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142)<br> at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617)<br> at java.lang.Thread.run(Thread.java:745)</p> <p dir="auto">Here is tribe config:</p> <p dir="auto">tribe:<br> mobile_dc1:<br> cluster.name: mobile-es_dc1<br> discovery.zen.ping.unicast.hosts: ["dc1-app2222", "dc1-app3333"]<br> mobile_dc2:<br> cluster.name: mobile-es_dc2<br> discovery.zen.ping.unicast.hosts: ["dc2-app2222", "dc2-app3333"]<br> mobile_dc3:<br> cluster.name: mobile-es_dc3<br> discovery.zen.ping.unicast.hosts: ["dc3-app2222", "dc3-app3333"]<br> feed_dc1:<br> cluster.name: dc1-logstash<br> discovery.zen.ping.unicast.hosts: ["dc1-app1234", "dc1-app1235"]<br> feed_dc2:<br> cluster.name: dc2-logstash<br> discovery.zen.ping.unicast.hosts: ["dc2-app2345", "dc2-app2346"]</p>
0
<p dir="auto">[Enter steps to reproduce below:]</p> <ol dir="auto"> <li>...</li> <li>...</li> </ol> <p dir="auto"><strong>Atom Version</strong>: 0.210.0<br> <strong>System</strong>: Unknown Windows Version<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: Cannot find module './context-menu'<br> Error: Cannot find module './context-menu'<br> at Function.Module._resolveFilename (module.js:328:15)<br> at Function.Module._load (module.js:270:25)<br> at Module.require (module.js:357:17)<br> at require (module.js:376:17)<br> at BrowserWindow. (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\src\browser\atom-window.js:152:27)<br> at emitOne (events.js:77:13)<br> at BrowserWindow.emit (events.js:166:7)<br> at callFunction (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br> at EventEmitter. (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br> at emitMany (events.js:108:13)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\src\window-event-handler.js:150:33) at HTMLDocument.handler (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) "><pre class="notranslate"><code class="notranslate">At C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\src\window-event-handler.js:150:33) at HTMLDocument.handler (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\Administrator\AppData\Local\atom\app-0.210.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) </code></pre></div> <h3 dir="auto">Commands</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -9:49.3.0 core:copy (atom-text-editor.editor.is-focused) -9:44.3.0 emmet:insert-formatted-line-break-only (atom-text-editor.editor.is-focused) -9:44.3.0 editor:newline (atom-text-editor.editor.is-focused) -9:44 core:paste (atom-text-editor.editor.is-focused) 2x -9:43.2.0 core:save (atom-text-editor.editor.is-focused)"><pre class="notranslate"><code class="notranslate"> -9:49.3.0 core:copy (atom-text-editor.editor.is-focused) -9:44.3.0 emmet:insert-formatted-line-break-only (atom-text-editor.editor.is-focused) -9:44.3.0 editor:newline (atom-text-editor.editor.is-focused) -9:44 core:paste (atom-text-editor.editor.is-focused) 2x -9:43.2.0 core:save (atom-text-editor.editor.is-focused) </code></pre></div> <h3 dir="auto">Config</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;core&quot;: { &quot;autoHideMenuBar&quot;: true, &quot;disabledPackages&quot;: [ &quot;remote-edit&quot; ] }, &quot;editor&quot;: { &quot;invisibles&quot;: {}, &quot;softWrap&quot;: true, &quot;preferredLineLength&quot;: 120, &quot;fontSize&quot;: 14 } }"><pre class="notranslate">{ <span class="pl-ent">"core"</span>: { <span class="pl-ent">"autoHideMenuBar"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"disabledPackages"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>remote-edit<span class="pl-pds">"</span></span> ] }, <span class="pl-ent">"editor"</span>: { <span class="pl-ent">"invisibles"</span>: {}, <span class="pl-ent">"softWrap"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"preferredLineLength"</span>: <span class="pl-c1">120</span>, <span class="pl-ent">"fontSize"</span>: <span class="pl-c1">14</span> } }</pre></div> <h3 dir="auto">Installed Packages</h3> <div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User aligner-css, v1.2.0 atom-color-highlight, v3.0.9 auto-detect-indentation, v0.4.2 autoclose-html, v0.18.0 autocomplete-paths, v1.0.2 autocomplete-php, v0.3.6 emmet, v2.3.10 grunt-runner, v0.10.0 linter, v0.12.7 linter-csslint, v0.0.13 linter-htmlhint, v0.0.16 linter-jshint, v0.1.6 minimap, v4.10.0 node-debugger, v1.0.5 pigments, v0.7.2 project-manager, v1.15.10 resize-indent, v0.2.1 tool-bar, v0.1.7 tool-bar-main, v0.0.8 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> aligner<span class="pl-k">-</span>css, v1.<span class="pl-ii">2</span>.<span class="pl-ii">0</span> atom<span class="pl-k">-</span>color<span class="pl-k">-</span>highlight, v3.<span class="pl-ii">0</span>.<span class="pl-ii">9</span> auto<span class="pl-k">-</span>detect<span class="pl-k">-</span>indentation, v0.<span class="pl-ii">4</span>.<span class="pl-ii">2</span> autoclose<span class="pl-k">-</span>html, v0.<span class="pl-ii">18</span>.<span class="pl-ii">0</span> autocomplete<span class="pl-k">-</span>paths, v1.<span class="pl-ii">0</span>.<span class="pl-ii">2</span> autocomplete<span class="pl-k">-</span>php, v0.<span class="pl-ii">3</span>.<span class="pl-ii">6</span> emmet, v2.<span class="pl-ii">3</span>.<span class="pl-ii">10</span> grunt<span class="pl-k">-</span>runner, v0.<span class="pl-ii">10</span>.<span class="pl-ii">0</span> linter, v0.<span class="pl-ii">12</span>.<span class="pl-ii">7</span> linter<span class="pl-k">-</span>csslint, v0.<span class="pl-ii">0</span>.<span class="pl-ii">13</span> linter<span class="pl-k">-</span>htmlhint, v0.<span class="pl-ii">0</span>.<span class="pl-ii">16</span> linter<span class="pl-k">-</span>jshint, v0.<span class="pl-ii">1</span>.<span class="pl-ii">6</span> minimap, v4.<span class="pl-ii">10</span>.<span class="pl-ii">0</span> node<span class="pl-k">-</span><span class="pl-k">debugger</span>, v1.<span class="pl-ii">0</span>.<span class="pl-ii">5</span> pigments, v0.<span class="pl-ii">7</span>.<span class="pl-ii">2</span> project<span class="pl-k">-</span>manager, v1.<span class="pl-ii">15</span>.<span class="pl-ii">10</span> resize<span class="pl-k">-</span>indent, v0.<span class="pl-ii">2</span>.<span class="pl-ii">1</span> tool<span class="pl-k">-</span>bar, v0.<span class="pl-ii">1</span>.<span class="pl-ii">7</span> tool<span class="pl-k">-</span>bar<span class="pl-k">-</span>main, v0.<span class="pl-ii">0</span>.<span class="pl-ii">8</span> <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
<p dir="auto">I right-clicked on a folder in the tree view</p> <p dir="auto"><strong>Atom Version</strong>: 0.194.0<br> <strong>System</strong>: Windows 7 Entreprise<br> <strong>Thrown From</strong>: Atom Core</p> <h3 dir="auto">Stack Trace</h3> <p dir="auto">Uncaught Error: Cannot find module './context-menu'<br> Error: Cannot find module './context-menu'<br> at Function.Module._resolveFilename (module.js:328:15)<br> at Function.Module._load (module.js:270:25)<br> at Module.require (module.js:357:17)<br> at require (module.js:376:17)<br> at BrowserWindow. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)<br> at emitOne (events.js:77:13)<br> at BrowserWindow.emit (events.js:166:7)<br> at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)<br> at EventEmitter. (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)<br> at emitMany (events.js:108:13)</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33) at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) "><pre class="notranslate"><code class="notranslate">At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77 Error: Cannot find module './context-menu' Error: Cannot find module './context-menu' at Function.Module._resolveFilename (module.js:328:15) at Function.Module._load (module.js:270:25) at Module.require (module.js:357:17) at require (module.js:376:17) at BrowserWindow.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27) at emitOne (events.js:77:13) at BrowserWindow.emit (events.js:166:7) at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18) at EventEmitter.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14) at emitMany (events.js:108:13) at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15) at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26) at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31) at HTMLDocument.&lt;anonymous&gt; (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33) at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34) at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9) at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46) </code></pre></div> <h3 dir="auto">Commands</h3> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused) 2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor) -3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -2:47.4.0 editor:newline (atom-text-editor.editor.is-focused) -2:38.2.0 core:cut (atom-text-editor.editor) -2:36.5.0 core:paste (atom-text-editor.editor.is-focused) -2:26.6.0 core:save (atom-text-editor.editor.is-focused) -2:20.6.0 core:move-down (atom-text-editor.editor) -2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor) -2:15.8.0 core:save (atom-text-editor.editor) -2:08.7.0 core:copy (atom-text-editor.editor.is-focused) -2:01.2.0 core:paste (atom-text-editor.editor.is-focused) -1:59.7.0 core:save (atom-text-editor.editor.is-focused) -1:52.2.0 core:paste (atom-text-editor.editor.is-focused) -1:51.6.0 core:save (atom-text-editor.editor.is-focused) -1:30.6.0 core:backspace (atom-text-editor.editor)"><pre class="notranslate"><code class="notranslate"> -4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused) 2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor) -3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel) -2:47.4.0 editor:newline (atom-text-editor.editor.is-focused) -2:38.2.0 core:cut (atom-text-editor.editor) -2:36.5.0 core:paste (atom-text-editor.editor.is-focused) -2:26.6.0 core:save (atom-text-editor.editor.is-focused) -2:20.6.0 core:move-down (atom-text-editor.editor) -2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor) -2:15.8.0 core:save (atom-text-editor.editor) -2:08.7.0 core:copy (atom-text-editor.editor.is-focused) -2:01.2.0 core:paste (atom-text-editor.editor.is-focused) -1:59.7.0 core:save (atom-text-editor.editor.is-focused) -1:52.2.0 core:paste (atom-text-editor.editor.is-focused) -1:51.6.0 core:save (atom-text-editor.editor.is-focused) -1:30.6.0 core:backspace (atom-text-editor.editor) </code></pre></div> <h3 dir="auto">Config</h3> <div class="highlight highlight-source-json notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="{ &quot;core&quot;: { &quot;ignoredNames&quot;: [ &quot;node_modules&quot; ], &quot;themes&quot;: [ &quot;atom-dark-ui&quot;, &quot;seti-syntax&quot; ], &quot;disabledPackages&quot;: [ &quot;Tern&quot; ], &quot;projectHome&quot;: &quot;Y:\\app-tfoumax&quot; }, &quot;editor&quot;: { &quot;invisibles&quot;: {}, &quot;softWrap&quot;: true, &quot;showIndentGuide&quot;: true } }"><pre class="notranslate">{ <span class="pl-ent">"core"</span>: { <span class="pl-ent">"ignoredNames"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>node_modules<span class="pl-pds">"</span></span> ], <span class="pl-ent">"themes"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>atom-dark-ui<span class="pl-pds">"</span></span>, <span class="pl-s"><span class="pl-pds">"</span>seti-syntax<span class="pl-pds">"</span></span> ], <span class="pl-ent">"disabledPackages"</span>: [ <span class="pl-s"><span class="pl-pds">"</span>Tern<span class="pl-pds">"</span></span> ], <span class="pl-ent">"projectHome"</span>: <span class="pl-s"><span class="pl-pds">"</span>Y:<span class="pl-cce">\\</span>app-tfoumax<span class="pl-pds">"</span></span> }, <span class="pl-ent">"editor"</span>: { <span class="pl-ent">"invisibles"</span>: {}, <span class="pl-ent">"softWrap"</span>: <span class="pl-c1">true</span>, <span class="pl-ent">"showIndentGuide"</span>: <span class="pl-c1">true</span> } }</pre></div> <h3 dir="auto">Installed Packages</h3> <div class="highlight highlight-source-coffee notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="# User autocomplete-plus, v2.12.0 autocomplete-snippets, v1.2.0 javascript-snippets, v1.0.0 jshint, v1.3.5 language-ejs, v0.1.0 linter, v0.12.1 pretty-json, v0.3.3 save-session, v0.14.0 Search, v0.4.0 seti-syntax, v0.4.0 # Dev No dev packages"><pre class="notranslate"><span class="pl-c"><span class="pl-c">#</span> User</span> autocomplete<span class="pl-k">-</span>plus, v2.<span class="pl-ii">12</span>.<span class="pl-ii">0</span> autocomplete<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">2</span>.<span class="pl-ii">0</span> javascript<span class="pl-k">-</span>snippets, v1.<span class="pl-ii">0</span>.<span class="pl-ii">0</span> jshint, v1.<span class="pl-ii">3</span>.<span class="pl-ii">5</span> language<span class="pl-k">-</span>ejs, v0.<span class="pl-ii">1</span>.<span class="pl-ii">0</span> linter, v0.<span class="pl-ii">12</span>.<span class="pl-ii">1</span> pretty<span class="pl-k">-</span>json, v0.<span class="pl-ii">3</span>.<span class="pl-ii">3</span> save<span class="pl-k">-</span>session, v0.<span class="pl-ii">14</span>.<span class="pl-ii">0</span> Search, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span> seti<span class="pl-k">-</span>syntax, v0.<span class="pl-ii">4</span>.<span class="pl-ii">0</span> <span class="pl-c"><span class="pl-c">#</span> Dev</span> <span class="pl-en">No</span> <span class="pl-en">dev</span> packages</pre></div>
1
<h3 dir="auto">Bug report</h3> <p dir="auto"><strong>Bug summary</strong></p> <p dir="auto">In 3.2, <code class="notranslate">scatter</code> is color-mapping 4 points when the <code class="notranslate">c</code> input is 2D with shape (1, 4). This is a change from 3.1.</p> <p dir="auto">The docs for <code class="notranslate">scatter</code> say</p> <blockquote> <p dir="auto">Note that <em>c</em> should not be a single numeric RGB or RGBA sequence<br> because that is indistinguishable from an array of values to be<br> colormapped. If you want to specify the same RGB or RGBA value for<br> all points, use a 2-D array with a single row. Otherwise, value-<br> matching will have precedence in case of a size matching with <em>x</em><br> and <em>y</em>.</p> </blockquote> <p dir="auto">However, this is no longer true.</p> <p dir="auto">I suspect <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="606754505" data-permission-text="Title is private" data-url="https://github.com/matplotlib/matplotlib/issues/17245" data-hovercard-type="pull_request" data-hovercard-url="/matplotlib/matplotlib/pull/17245/hovercard" href="https://github.com/matplotlib/matplotlib/pull/17245">#17245</a> may be related (only based on milestone and description, I haven't debugged the code).</p> <p dir="auto"><strong>Code for reproduction</strong></p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt x = y = 1, 2, 3, 4 c = [(.2, .5, .8, 1)] f, ax = plt.subplots() ax.scatter(x, y, c=c, s=100) # Increase s for visibility"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span> <span class="pl-s1">x</span> <span class="pl-c1">=</span> <span class="pl-s1">y</span> <span class="pl-c1">=</span> <span class="pl-c1">1</span>, <span class="pl-c1">2</span>, <span class="pl-c1">3</span>, <span class="pl-c1">4</span> <span class="pl-s1">c</span> <span class="pl-c1">=</span> [(<span class="pl-c1">.2</span>, <span class="pl-c1">.5</span>, <span class="pl-c1">.8</span>, <span class="pl-c1">1</span>)] <span class="pl-s1">f</span>, <span class="pl-s1">ax</span> <span class="pl-c1">=</span> <span class="pl-s1">plt</span>.<span class="pl-en">subplots</span>() <span class="pl-s1">ax</span>.<span class="pl-en">scatter</span>(<span class="pl-s1">x</span>, <span class="pl-s1">y</span>, <span class="pl-s1">c</span><span class="pl-c1">=</span><span class="pl-s1">c</span>, <span class="pl-s1">s</span><span class="pl-c1">=</span><span class="pl-c1">100</span>) <span class="pl-c"># Increase s for visibility</span></pre></div> <p dir="auto"><strong>Actual outcome</strong></p> <p dir="auto">On 3.2.1</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/315810/82120061-78059b80-9751-11ea-8f8f-8d73e34d9ea4.png"><img src="https://user-images.githubusercontent.com/315810/82120061-78059b80-9751-11ea-8f8f-8d73e34d9ea4.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto"><strong>Expected outcome</strong></p> <p dir="auto">On 3.1.2:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/315810/82120042-57d5dc80-9751-11ea-8c68-073e82a8c896.png"><img src="https://user-images.githubusercontent.com/315810/82120042-57d5dc80-9751-11ea-8c68-073e82a8c896.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto"><strong>Matplotlib version</strong></p> <ul dir="auto"> <li>Operating system: macos</li> <li>Matplotlib version: 3.2.1</li> <li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): pylab inline</li> <li>Python version: na</li> <li>Jupyter version (if applicable): na</li> <li>Other libraries: na</li> </ul>
<h3 dir="auto">Bug report</h3> <p dir="auto"><strong>Bug summary</strong></p> <p dir="auto">Scatter <a href="https://matplotlib.org/3.2.1/api/_as_gen/matplotlib.axes.Axes.scatter.html?highlight=scatter#matplotlib.axes.Axes.scatter" rel="nofollow">docs</a> say that in order to provide a single RGB/RGBA color for all scatter elements, it is required to pass a 2D array with a single row for <code class="notranslate">c</code> argument input:</p> <blockquote> <p dir="auto">If you want to specify the same RGB or RGBA value for all points, use a 2-D array with a single row. Otherwise, value- matching will have precedence in case of a size matching with x and y.</p> </blockquote> <p dir="auto">When x/y shape is 3 and RGB is passed as a 2D array with a single row (e.g. <code class="notranslate">c=[[1, 0.5, 0.05]]</code>), or when x/y shape is 4 and RGBA is passed as a 2D array with a single row, the plot elements have several different colors (taken from the default colormap?) while all should have the same color. The problem occurs for both <code class="notranslate">plt.scatter</code> and <code class="notranslate">ax.scatter</code> calls, and also if <code class="notranslate">c</code> input is provided as a numpy array of shape (1,3) for RGB or (1,4) for RGBA instead of a nested list.</p> <p dir="auto"><strong>Code for reproduction</strong></p> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="import matplotlib.pyplot as plt plt.scatter(range(3), range(3), c=[[1, 0.5, 0.05]]) #alternatively, for RGBA scenario plt.scatter(range(4), range(4), c=[[1, 0.5, 0.05, 1]])"><pre class="notranslate"><span class="pl-k">import</span> <span class="pl-s1">matplotlib</span>.<span class="pl-s1">pyplot</span> <span class="pl-k">as</span> <span class="pl-s1">plt</span> <span class="pl-s1">plt</span>.<span class="pl-en">scatter</span>(<span class="pl-en">range</span>(<span class="pl-c1">3</span>), <span class="pl-en">range</span>(<span class="pl-c1">3</span>), <span class="pl-s1">c</span><span class="pl-c1">=</span>[[<span class="pl-c1">1</span>, <span class="pl-c1">0.5</span>, <span class="pl-c1">0.05</span>]]) <span class="pl-c">#alternatively, for RGBA scenario</span> <span class="pl-s1">plt</span>.<span class="pl-en">scatter</span>(<span class="pl-en">range</span>(<span class="pl-c1">4</span>), <span class="pl-en">range</span>(<span class="pl-c1">4</span>), <span class="pl-s1">c</span><span class="pl-c1">=</span>[[<span class="pl-c1">1</span>, <span class="pl-c1">0.5</span>, <span class="pl-c1">0.05</span>, <span class="pl-c1">1</span>]])</pre></div> <p dir="auto"><strong>Actual outcome</strong><br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/13831112/82084053-5d043e80-96f3-11ea-9d01-5b8afa216e0a.png"><img src="https://user-images.githubusercontent.com/13831112/82084053-5d043e80-96f3-11ea-9d01-5b8afa216e0a.png" alt="840-mpl" style="max-width: 100%;"></a></p> <p dir="auto"><strong>Expected outcome</strong><br> All points have the same color: RGB (1, 0.5, 0.05).</p> <p dir="auto"><strong>Matplotlib version</strong></p> <ul dir="auto"> <li>Operating system: Linux</li> <li>Matplotlib version: 3.2.1</li> <li>Matplotlib backend (<code class="notranslate">print(matplotlib.get_backend())</code>): agg</li> <li>Python version: 3.7.3</li> </ul> <p dir="auto">Matplotlib installed through pip</p>
1
<p dir="auto"><strong>Apache Airflow version</strong>: 2.0.1 (possibly any?)</p> <p dir="auto"><strong>Kubernetes version (if you are using kubernetes)</strong> (use <code class="notranslate">kubectl version</code>): N/A</p> <p dir="auto"><strong>Environment</strong>: Any</p> <ul dir="auto"> <li><strong>Cloud provider or hardware configuration</strong>: Any</li> <li><strong>OS</strong> (e.g. from /etc/os-release): Any</li> <li><strong>Kernel</strong> (e.g. <code class="notranslate">uname -a</code>): Any</li> <li><strong>Install tools</strong>: Any</li> <li><strong>Others</strong>: Any</li> </ul> <p dir="auto"><strong>What happened</strong>:</p> <p dir="auto">From SQLAlchemy version 1.4.0b1, <a href="https://docs.sqlalchemy.org/en/14/changelog/changelog_14.html#change-3687655465c25a39b968b4f5f6e9170b" rel="nofollow">SQLAlchemy removed the support for the <code class="notranslate">postgres</code> prefix</a> in URIs (used for example in <code class="notranslate">create_engine</code>), and now it supports only <code class="notranslate">postgresql</code>.</p> <p dir="auto">This affects all Airflow jobs that:<br> (A) Use SQLAlchemy version &gt;= 1.4.0<br> (B) Obtain/use a Postgres URI from the <code class="notranslate">get_uri</code> method of a <code class="notranslate">PostgresHook</code> (method defined in the <code class="notranslate">DbApiHook</code> - <code class="notranslate">airflow/hooks/dbapi.py</code>).</p> <p dir="auto">This is because the <code class="notranslate">PostgresHook</code> (<code class="notranslate">airflow/providers/postgres/hooks/postgres.py</code>) class, defines a class attribute <code class="notranslate">conn_type = 'postgres'</code> instead of <code class="notranslate">postgresql</code>.</p> <p dir="auto">Right now my airflow jobs with the updated SQLAlchemy that are using SQLAlchemy <code class="notranslate">create_engine</code> with a postgres db are broken.</p> <p dir="auto"><strong>What you expected to happen</strong>:</p> <p dir="auto">That Airflow jobs using SQLAlchemy &gt;= 1.4.0 and SQLAlchemy's create_engine with Postgres databases work correctly, and that <code class="notranslate">get_uri</code> generates a postgres URI starting with <code class="notranslate">postgresql://</code>.</p> <p dir="auto">Of course I could use an older SQLAlchemy version or manipulated the returned URI, but I guess it'd be nice if Airflow adapts to the updated prefix.</p> <p dir="auto"><strong>How to reproduce it</strong>:</p> <p dir="auto">Use the <code class="notranslate">get_uri</code> method of any <code class="notranslate">PostgresHook</code>.</p> <p dir="auto"><strong>Anything else we need to know</strong>:</p> <p dir="auto">N/A</p>
<h3 dir="auto">Description</h3> <ul dir="auto"> <li>I met LoadJob bug in <code class="notranslate">BigQueryInsertJobOperator</code> and tried to use <code class="notranslate">GCSToBigQueryOperator</code> instead when update from Airflow 2.2.5 to 2.3.2.</li> </ul> <h3 dir="auto">Use case/motivation</h3> <ul dir="auto"> <li>most BigQuery-related operator recommend that we should use <code class="notranslate">insert_job()</code>, but gcs_to_bq_operator still use <code class="notranslate">run_load ()</code>.</li> <li><code class="notranslate">GCSToBigQueryOperator</code> still uses lots of parameter to build config. Not like <code class="notranslate">BigQueryInsertJobOperator</code> which uses a clean configuration. The configuration is much straightforward and easy to follow.</li> <li>I would like to know whether to keep <code class="notranslate">GCSToBigQueryOperator</code> and replace <code class="notranslate">run_load</code> with <code class="notranslate">insert_job</code>, Or have <code class="notranslate">BigQueryInsertJobOperator</code>. If we could replace <code class="notranslate">run_load</code> with <code class="notranslate">insert_job</code> in <code class="notranslate">GCSToBigQueryOperator</code> , all BigQuery-related operator could be more consistent.</li> </ul> <h3 dir="auto">Related issues</h3> <p dir="auto"><em>No response</em></p> <h3 dir="auto">Are you willing to submit a PR?</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> Yes I am willing to submit a PR!</li> </ul> <h3 dir="auto">Code of Conduct</h3> <ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I agree to follow this project's <a href="https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md">Code of Conduct</a></li> </ul>
0
<h3 dir="auto">Current Behavior:</h3> <p dir="auto">When the dependency tree contains many versions for one subdependency, npm puts the highest version at the top level (i.e., at node_modules/pkgname), even when another version has more referrals. This other version is then installed many times.</p> <h3 dir="auto">Expected Behavior:</h3> <p dir="auto">NPM checks for each package (that is not a direct dependency of the project) which version appears most often and puts that one on the top level, reducing duplication.</p> <h3 dir="auto">Steps To Reproduce:</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="npm init npm i next@10.0.2 npm ls source-map"><pre class="notranslate">npm init npm i next@10.0.2 npm ls source-map</pre></div> <p dir="auto">source-map@0.6.1 should be the top level one, not @0.7.3.</p> <h3 dir="auto">Environment:</h3> <p dir="auto">Windows 10<br> Node 14.13.0<br> Npm 7.0.12</p>
<h3 dir="auto">Current Behaviour:</h3> <p dir="auto">I have some npm packages installed globally, which are command line utilities (<code class="notranslate">create-react-app</code>, <code class="notranslate">distributed-dig</code>, snyk`, and others). I recently updated to npm version 7 (7.5.2) with node 14 (14.15.4) on Windows 10 (version: 2004 || build: 19041.746).</p> <p dir="auto">If I perform a global <code class="notranslate">dedupe</code> ...</p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="npm dedupe -g"><pre class="notranslate">npm dedupe -g</pre></div> <p dir="auto">... a number of the globally installed packages are removed. Curiously not all of them. In the example below eight of the 11 are removed.</p> <p dir="auto">Incidentally, I <strong>couldn't</strong> reproduce this behaviour with npm v7.5.2 &amp; node v15.5.1 on <a href="https://termbin.com/o044" rel="nofollow">Linux Mint v19</a></p> <h3 dir="auto">Expected Behaviour:</h3> <p dir="auto">I'd expect the same behaviour as npm v6 where each top-level globally installed package persists after the global dedupe. In the example steps below I'd expect all 11 globally installed packages to still be installed after the dedupe.</p> <h3 dir="auto">Steps To Reproduce:</h3> <p dir="auto">Report current versions: <code class="notranslate">npm -v ; node -v</code></p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="PS C:\Users&gt; npm -v;node -v 7.5.2 v14.15.4"><pre class="notranslate">PS C:<span class="pl-cce">\U</span>sers<span class="pl-k">&gt;</span> npm -v<span class="pl-k">;</span>node -v 7.5.2 v14.15.4</pre></div> <p dir="auto">List currently installed global packages (and report a count): <code class="notranslate">npm ls -g --depth 0;npm ls -g --depth 0|find </code>"--<code class="notranslate">" /c</code></p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="PS C:\Users&gt; npm ls -g --depth 0;npm ls -g --depth 0|find `&quot;--`&quot; /c C:\Users\markm\AppData\Roaming\npm +-- akamai-error-lookup@1.2.8 +-- akamai-staging@1.1.8 +-- ascii-art@2.5.0 +-- cdn-cache-check@1.6.0 +-- codename-generator@1.0.15 +-- create-react-app@4.0.2 +-- depcheck@1.3.1 +-- distributed-dig@1.8.3 +-- eslint@7.19.0 +-- jshint@2.12.0 +-- npm@7.5.2 `-- snyk@1.441.0 12"><pre class="notranslate">PS C:<span class="pl-cce">\U</span>sers<span class="pl-k">&gt;</span> npm ls -g --depth 0<span class="pl-k">;</span>npm ls -g --depth 0<span class="pl-k">|</span>find <span class="pl-s"><span class="pl-pds">`</span><span class="pl-s"><span class="pl-pds">"</span>--<span class="pl-s"><span class="pl-pds">`</span><span class="pl-s"><span class="pl-pds">"</span> /c</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">C:\Users\markm\AppData\Roaming\npm</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- akamai-error-lookup@1.2.8</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- akamai-staging@1.1.8</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- ascii-art@2.5.0</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- cdn-cache-check@1.6.0</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- codename-generator@1.0.15</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- create-react-app@4.0.2</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- depcheck@1.3.1</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- distributed-dig@1.8.3</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- eslint@7.19.0</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- jshint@2.12.0</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- npm@7.5.2</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-pds">`</span>-- snyk@1.441.0</span></span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s"></span></span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">12</span></span></span></span></span></pre></div> <p dir="auto">Perform a global dedupe: <code class="notranslate">npm dedupe -g</code></p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="PS C:\Users&gt; npm dedupe -g added 1 package, removed 1334 packages, and audited 256 packages in 6s 11 packages are looking for funding run `npm fund` for details found 0 vulnerabilities"><pre class="notranslate">PS C:<span class="pl-cce">\U</span>sers<span class="pl-k">&gt;</span> npm dedupe -g added 1 package, removed 1334 packages, and audited 256 packages <span class="pl-k">in</span> 6s 11 packages are looking <span class="pl-k">for</span> funding run <span class="pl-s"><span class="pl-pds">`</span>npm fund<span class="pl-pds">`</span></span> <span class="pl-k">for</span> details found 0 vulnerabilities</pre></div> <p dir="auto"><em>Notice that</em> <code class="notranslate">removed 1334 packages</code></p> <p dir="auto">Re-list globally installed packages (and a new count): <code class="notranslate">npm ls -g --depth 0;npm ls -g --depth 0|find </code>"--<code class="notranslate">" /c</code></p> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="PS C:\Users&gt; npm ls -g --depth 0;npm ls -g --depth 0|find `&quot;--`&quot; /c C:\Users\markm\AppData\Roaming\npm +-- acorn-jsx@5.3.1 +-- npm@7.5.2 `-- prettyjson@1.2.1 3"><pre class="notranslate">PS C:<span class="pl-cce">\U</span>sers<span class="pl-k">&gt;</span> npm ls -g --depth 0<span class="pl-k">;</span>npm ls -g --depth 0<span class="pl-k">|</span>find <span class="pl-s"><span class="pl-pds">`</span><span class="pl-s"><span class="pl-pds">"</span>--<span class="pl-s"><span class="pl-pds">`</span><span class="pl-s"><span class="pl-pds">"</span> /c</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">C:\Users\markm\AppData\Roaming\npm</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- acorn-jsx@5.3.1</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">+-- npm@7.5.2</span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-pds">`</span>-- prettyjson@1.2.1</span></span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s"></span></span></span></span></span> <span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s"><span class="pl-s">3</span></span></span></span></span></pre></div> <p dir="auto">Eight of the the initial 11 global packages are now removed<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9842107/106898125-b41bca80-66eb-11eb-9eaf-8ba8937c6409.gif"><img src="https://user-images.githubusercontent.com/9842107/106898125-b41bca80-66eb-11eb-9eaf-8ba8937c6409.gif" alt="2021-02-04_12h19_39" data-animated-image="" style="max-width: 100%;"></a></p> <h3 dir="auto">Environment:</h3> <ul dir="auto"> <li>OS: Windows 10 (version: 2004 || build: 19041.746)</li> <li>Node: 14.15.4</li> <li>npm: 7.5.2</li> <li>PowerShell 7.1.1 (although I still see this behaviour when using <code class="notranslate">cmd.exe</code> instead:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9842107/106899176-f396e680-66ec-11eb-9ce0-d2f0f2c0fd34.gif"><img src="https://user-images.githubusercontent.com/9842107/106899176-f396e680-66ec-11eb-9ce0-d2f0f2c0fd34.gif" alt="2021-02-04_13h27_40" data-animated-image="" style="max-width: 100%;"></a></li> </ul>
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.7.4-SNAPSHOT</li> <li>Operating System version: "mac os x", version: "10.12.6", arch: "x86_64", family: "mac"</li> <li>Java version: 1.8.0_131</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <ol dir="auto"> <li>just run UT <code class="notranslate">EtcdMetadataReportTest.testStoreConsumer</code> in IDEA<br> or <code class="notranslate">mvn clean install -DskipTests=false</code> from cmd.</li> </ol> <h3 dir="auto">Expected Result</h3> <p dir="auto">UT succeeds</p> <h3 dir="auto">Actual Result</h3> <p dir="auto">Ex:</p> <h4 dir="auto">IDEA</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="java.lang.NoClassDefFoundError: com/google/common/base/Preconditions at io.etcd.jetcd.ClientBuilder.endpoints(ClientBuilder.java:82) at org.apache.dubbo.metadata.store.etcd.EtcdMetadataReportTest.setUp(EtcdMetadataReportTest.java:64"><pre class="notranslate"><code class="notranslate">java.lang.NoClassDefFoundError: com/google/common/base/Preconditions at io.etcd.jetcd.ClientBuilder.endpoints(ClientBuilder.java:82) at org.apache.dubbo.metadata.store.etcd.EtcdMetadataReportTest.setUp(EtcdMetadataReportTest.java:64 </code></pre></div> <h4 dir="auto">mvn build with clean install</h4> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[ERROR] Tests run: 2, Failures: 0, Errors: 1, Skipped: 1, Time elapsed: 4.798 s &lt;&lt;&lt; FAILURE! - in org.apache.dubbo.metadata.store.etcd.EtcdMetadataReportTest [ERROR] testStoreConsumer Time elapsed: 2.127 s &lt;&lt;&lt; ERROR! java.lang.NoClassDefFoundError: com/google/common/base/Preconditions at org.apache.dubbo.metadata.store.etcd.EtcdMetadataReportTest.setUp(EtcdMetadataReportTest.java:64) Caused by: java.lang.ClassNotFoundException: com.google.common.base.Preconditions at org.apache.dubbo.metadata.store.etcd.EtcdMetadataReportTest.setUp(EtcdMetadataReportTest.java:64) "><pre class="notranslate"><code class="notranslate">[ERROR] Tests run: 2, Failures: 0, Errors: 1, Skipped: 1, Time elapsed: 4.798 s &lt;&lt;&lt; FAILURE! - in org.apache.dubbo.metadata.store.etcd.EtcdMetadataReportTest [ERROR] testStoreConsumer Time elapsed: 2.127 s &lt;&lt;&lt; ERROR! java.lang.NoClassDefFoundError: com/google/common/base/Preconditions at org.apache.dubbo.metadata.store.etcd.EtcdMetadataReportTest.setUp(EtcdMetadataReportTest.java:64) Caused by: java.lang.ClassNotFoundException: com.google.common.base.Preconditions at org.apache.dubbo.metadata.store.etcd.EtcdMetadataReportTest.setUp(EtcdMetadataReportTest.java:64) </code></pre></div>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have searched the <a href="https://github.com/apache/dubbo/issues">issues</a> of this repository and believe that this is not a duplicate.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I have checked the <a href="https://github.com/apache/dubbo/blob/master/FAQ.md">FAQ</a> of this repository and believe that this is not a duplicate.</li> </ul> <h3 dir="auto">Environment</h3> <ul dir="auto"> <li>Dubbo version: 2.7.9</li> <li>Operating System version: Windows10 2004</li> <li>Java version: 1.8</li> </ul> <h3 dir="auto">Steps to reproduce this issue</h3> <p dir="auto">When i pull the source code from Github, i could not find MapValue and ThrowablePB in this source code,but some methods<br> in other class(e.g. org.apache.dubbo.common.serialize.protobuf.support.GenericProtobufJsonObjectOutput) actually refer to MapValue and ThrowablePB .<br> So i need the resource code about org.apache.dubbo.common.serialize.protobuf.support.wrapper.MapValue and org.apache.dubbo.common.serialize.protobuf.support.wrapper.ThrowablePB.</p>
0
<p dir="auto">React version:</p> <h2 dir="auto">Steps To Reproduce</h2> <p dir="auto">1.1111111111111<br> 2.22222222222</p> <h2 dir="auto">The current behavior</h2> <p dir="auto">fffffffffffffffffffff</p> <h2 dir="auto">The expected behavior</h2> <p dir="auto">gggggggggggggggg</p>
<p dir="auto">I've noticed that there's no way to access a class' statics through one of its instances.<br> When trying to find a <code class="notranslate">statics</code> method inside an instance method, <code class="notranslate">this</code> does not contain the method. <code class="notranslate">this.statics</code> exists, but is <code class="notranslate">null</code>.</p> <p dir="auto">This is something I think could be a bit useful. This is a behavior that exists in Java and other similar languages.</p> <p dir="auto">A description of my use-case: I am using <a href="https://github.com/gaearon/react-dnd">React DnD</a>, and trying to slightly generalize duplicate code.<br> By using this library/mixin, you need to define a static method, which calls a <code class="notranslate">register</code> method and passes a constant value. I would like that value to be defined on the class.</p> <p dir="auto">By adding the following bit of code:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="statics: { getConst: function() { return 'const'; }, configureDragDrop: function(register) { register(this.getConst(), ...); } }"><pre class="notranslate">statics: <span class="pl-kos">{</span> <span class="pl-en">getConst</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-k">return</span> <span class="pl-s">'const'</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-en">configureDragDrop</span>: <span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-s1">register</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-s1">register</span><span class="pl-kos">(</span><span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">getConst</span><span class="pl-kos">(</span><span class="pl-kos">)</span><span class="pl-kos">,</span> ...<span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span> <span class="pl-kos">}</span></pre></div> <p dir="auto">However, in my <code class="notranslate">render</code> method, I need to access the same constant again:</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="return ( &lt;li className={classes} {...this.dragSourceFor('const')} /&gt; );"><pre class="notranslate"><span class="pl-k">return</span> <span class="pl-kos">(</span> <span class="pl-c1">&lt;</span><span class="pl-ent">li</span> <span class="pl-c1">className</span><span class="pl-c1">=</span><span class="pl-kos">{</span><span class="pl-s1">classes</span><span class="pl-kos">}</span> <span class="pl-kos">{</span>...<span class="pl-smi">this</span><span class="pl-kos">.</span><span class="pl-en">dragSourceFor</span><span class="pl-kos">(</span><span class="pl-s">'const'</span><span class="pl-kos">)</span><span class="pl-kos">}</span> <span class="pl-c1">/</span><span class="pl-c1">&gt;</span> <span class="pl-kos">)</span><span class="pl-kos">;</span></pre></div> <p dir="auto">At this point, <code class="notranslate">this</code> does not have <code class="notranslate">getConst</code> defined, and <code class="notranslate">this.statics</code> is a null object.</p>
0
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I tried using the <code class="notranslate">@types/react</code> package and had problems.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox"> I tried using the latest stable version of tsc. <a href="https://www.npmjs.com/package/typescript" rel="nofollow">https://www.npmjs.com/package/typescript</a></li> </ul> <p dir="auto">I think you should consider to update these lines of code in order to support react 16 fragments</p> <div class="highlight highlight-source-js notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="render(): JSX.Element | null | false | string | JSX.Element[]; //class Component&lt;P, S&gt; interface ElementClass extends React.Component&lt;any&gt; { render(): Element | null | false | string | Element[]; }"><pre class="notranslate"><span class="pl-en">render</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-c1">JSX</span><span class="pl-kos">.</span><span class="pl-c1">Element</span> <span class="pl-c1">|</span> <span class="pl-c1">null</span> <span class="pl-c1">|</span> <span class="pl-c1">false</span> <span class="pl-c1">|</span> <span class="pl-s1">string</span> <span class="pl-c1">|</span> <span class="pl-c1">JSX</span><span class="pl-kos">.</span><span class="pl-c1">Element</span><span class="pl-kos">[</span><span class="pl-s1"></span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-c">//class Component&lt;P, S&gt;</span> <span class="pl-s1">interface</span> <span class="pl-v">ElementClass</span> <span class="pl-k">extends</span> <span class="pl-v">React</span><span class="pl-kos">.</span><span class="pl-c1">Component</span><span class="pl-c1">&lt;</span><span class="pl-s1">any</span><span class="pl-c1">&gt;</span> <span class="pl-kos">{</span> <span class="pl-c1">render</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-v">Element</span> <span class="pl-c1">|</span> <span class="pl-c1">null</span> <span class="pl-c1">|</span> <span class="pl-c1">false</span> <span class="pl-c1">|</span> <span class="pl-s1">string</span> <span class="pl-c1">|</span> <span class="pl-v">Element</span><span class="pl-kos">[</span><span class="pl-kos">]</span><span class="pl-kos">;</span> <span class="pl-kos">}</span></pre></div> <p dir="auto"><a href="https://reactjs.org/blog/2017/09/26/react-v16.0.html" rel="nofollow">https://reactjs.org/blog/2017/09/26/react-v16.0.html</a></p>
<ul class="contains-task-list"> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the <code class="notranslate">@types/xxxx</code> package and had problems.</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I tried using the latest stable version of tsc. <a href="https://www.npmjs.com/package/typescript" rel="nofollow">https://www.npmjs.com/package/typescript</a></li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> I have a question that is inappropriate for <a href="https://stackoverflow.com/" rel="nofollow">StackOverflow</a>. (Please ask any appropriate questions there).</li> <li class="task-list-item"><input type="checkbox" id="" disabled="" class="task-list-item-checkbox" checked=""> <a href="https://github.com/blog/821-mention-somebody-they-re-notified">Mention</a> the authors (see <code class="notranslate">Definitions by:</code> in <code class="notranslate">index.d.ts</code>) so they can respond. <ul dir="auto"> <li>Authors: <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gaspard/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gaspard">@gaspard</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/vbfox/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/vbfox">@vbfox</a></li> </ul> </li> </ul> <p dir="auto">As mentioned in <a href="https://facebook.github.io/react/docs/conditional-rendering.html#inline-if-with-logical--operator" rel="nofollow">React documentation</a>, a stateless component can return <code class="notranslate">false</code> for empty content. Currently <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts#L312-L313">StatelessComponent</a> is defined as:</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="interface StatelessComponent&lt;P = {}&gt; { (props: P &amp; { children?: ReactNode }, context?: any): ReactElement&lt;any&gt; | null;"><pre class="notranslate"><span class="pl-k">interface</span> <span class="pl-smi">StatelessComponent</span><span class="pl-c1">&lt;</span><span class="pl-smi">P</span> <span class="pl-c1">=</span> <span class="pl-kos">{</span><span class="pl-kos">}</span><span class="pl-c1">&gt;</span> <span class="pl-kos">{</span> <span class="pl-kos">(</span><span class="pl-s1">props</span>: <span class="pl-smi">P</span> <span class="pl-c1">&amp;</span> <span class="pl-kos">{</span> <span class="pl-c1">children</span>?: <span class="pl-smi">ReactNode</span> <span class="pl-kos">}</span><span class="pl-kos">,</span> <span class="pl-s1">context</span>?: <span class="pl-smi">any</span><span class="pl-kos">)</span>: <span class="pl-smi">ReactElement</span><span class="pl-kos">&lt;</span><span class="pl-smi">any</span><span class="pl-kos">&gt;</span> <span class="pl-c1">|</span> <span class="pl-c1">null</span><span class="pl-kos">;</span><span class="pl-kos"></span></pre></div> <p dir="auto">whereas <a href="https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types/react/index.d.ts#L270-L280">Component</a> has</p> <div class="highlight highlight-source-ts notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="class Component&lt;P, S&gt; { constructor(props?: P, context?: any); // ...snip... render(): JSX.Element | null | false;"><pre class="notranslate"><span class="pl-k">class</span> <span class="pl-smi">Component</span><span class="pl-c1">&lt;</span><span class="pl-smi">P</span><span class="pl-kos">,</span> <span class="pl-smi">S</span><span class="pl-c1">&gt;</span> <span class="pl-kos">{</span> <span class="pl-c1">constructor</span><span class="pl-kos">(</span><span class="pl-s1">props</span>?: <span class="pl-smi">P</span><span class="pl-kos">,</span> <span class="pl-s1">context</span>?: <span class="pl-smi">any</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-c">// ...snip...</span> <span class="pl-c1">render</span><span class="pl-kos">(</span><span class="pl-kos">)</span>: <span class="pl-smi">JSX</span><span class="pl-kos">.</span><span class="pl-smi">Element</span> <span class="pl-c1">|</span> <span class="pl-c1">null</span> <span class="pl-c1">|</span> <span class="pl-c1">false</span><span class="pl-kos">;</span><span class="pl-kos"></span></pre></div> <p dir="auto">Shouldn't these types be the same (including eliminating the ReactElement vs JSX.Element difference)? And to avoid future such issues (<a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="201343233" data-permission-text="Title is private" data-url="https://github.com/DefinitelyTyped/DefinitelyTyped/issues/14064" data-hovercard-type="issue" data-hovercard-url="/DefinitelyTyped/DefinitelyTyped/issues/14064/hovercard" href="https://github.com/DefinitelyTyped/DefinitelyTyped/issues/14064">#14064</a>, this one) it should probably be a named type, e.g. RenderResult.</p> <p dir="auto">A search for <code class="notranslate">| null</code> also comes up with <code class="notranslate">ComponentSpec.render</code> which probably should also have the same result type.</p>
1
<p dir="auto">Forgive me if this has been discussed already, but why does <code class="notranslate">sklearn.cross_validation._fit_and_score</code> use a <code class="notranslate">verbosity</code> parameter and the <code class="notranslate">print</code> function, rather than using python's <code class="notranslate">logging</code> module? As someone who is building a library that uses sklearn, it means that I have to expose that <code class="notranslate">verbosity</code> parameter in my code, rather than letting the user set the logging level (or even hide the logging from that module).</p> <p dir="auto">For instance in lines 1434-1440 of sklearn/cross_validation.py</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" if verbose &gt; 1: if parameters is None: msg = &quot;no parameters to be set&quot; else: msg = '%s' % (', '.join('%s=%s' % (k, v) for k, v in parameters.items())) print(&quot;[CV] %s %s&quot; % (msg, (64 - len(msg)) * '.'))"><pre class="notranslate"><code class="notranslate"> if verbose &gt; 1: if parameters is None: msg = "no parameters to be set" else: msg = '%s' % (', '.join('%s=%s' % (k, v) for k, v in parameters.items())) print("[CV] %s %s" % (msg, (64 - len(msg)) * '.')) </code></pre></div>
<p dir="auto">This is a proposal to use python's logging module instead of using stdout and verbose flags in the models API.</p> <p dir="auto">Using the logging module would make it easier for the user to control the verbosity of the scikit using a single and well documented configuration interface and logging API.</p> <p dir="auto"><a href="http://docs.python.org/library/logging.html" rel="nofollow">http://docs.python.org/library/logging.html</a></p>
1
<p dir="auto"><a href="https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke/8301/" rel="nofollow">https://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-e2e-gke/8301/</a></p> <p dir="auto">Failed: [k8s.io] Kubectl client [k8s.io] Update Demo should do a rolling update of a replication controller [Conformance] {Kubernetes e2e suite}</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:233 Expected error: &lt;*errors.errorString | 0xc820926400&gt;: { s: &quot;Error running &amp;{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.155.129.194 --kubeconfig=/workspace/.kube/config get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo --namespace=e2e-tests-kubectl-g5f7f] [] &lt;nil&gt; Unable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout\n [] &lt;nil&gt; 0xc820e6a320 exit status 1 &lt;nil&gt; true [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe038 0xc8200fe0a8] [0xbc7e00 0xbc7e00] 0xc820cf6240}:\nCommand stdout:\n\nstderr:\nUnable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout\n\nerror:\nexit status 1\n&quot;, } Error running &amp;{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.155.129.194 --kubeconfig=/workspace/.kube/config get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo --namespace=e2e-tests-kubectl-g5f7f] [] &lt;nil&gt; Unable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout [] &lt;nil&gt; 0xc820e6a320 exit status 1 &lt;nil&gt; true [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe038 0xc8200fe0a8] [0xbc7e00 0xbc7e00] 0xc820cf6240}: Command stdout: stderr: Unable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout error: exit status 1 not to have occurred"><pre class="notranslate"><code class="notranslate">/go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:233 Expected error: &lt;*errors.errorString | 0xc820926400&gt;: { s: "Error running &amp;{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.155.129.194 --kubeconfig=/workspace/.kube/config get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo --namespace=e2e-tests-kubectl-g5f7f] [] &lt;nil&gt; Unable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout\n [] &lt;nil&gt; 0xc820e6a320 exit status 1 &lt;nil&gt; true [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe038 0xc8200fe0a8] [0xbc7e00 0xbc7e00] 0xc820cf6240}:\nCommand stdout:\n\nstderr:\nUnable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout\n\nerror:\nexit status 1\n", } Error running &amp;{/workspace/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.155.129.194 --kubeconfig=/workspace/.kube/config get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo --namespace=e2e-tests-kubectl-g5f7f] [] &lt;nil&gt; Unable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout [] &lt;nil&gt; 0xc820e6a320 exit status 1 &lt;nil&gt; true [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe048 0xc8200fe058 0xc8200fe0c0] [0xc8200fe038 0xc8200fe0a8] [0xbc7e00 0xbc7e00] 0xc820cf6240}: Command stdout: stderr: Unable to connect to the server: dial tcp 104.155.129.194:443: i/o timeout error: exit status 1 not to have occurred </code></pre></div> <p dir="auto">Previous issues for this test: <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="157221194" data-permission-text="Title is private" data-url="https://github.com/kubernetes/kubernetes/issues/26425" data-hovercard-type="issue" data-hovercard-url="/kubernetes/kubernetes/issues/26425/hovercard" href="https://github.com/kubernetes/kubernetes/issues/26425">#26425</a></p>
<div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[BeforeEach] [k8s.io] Kubectl client /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework.go:101 STEP: Creating a kubernetes client Mar 16 12:19:35.383: INFO: &gt;&gt;&gt; testContext.KubeConfig: /var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config STEP: Building a namespace api object Mar 16 12:19:35.396: INFO: Waiting up to 2m0s for service account default to be provisioned in ns e2e-tests-kubectl-nty7t Mar 16 12:19:35.400: INFO: Get service account default in ns e2e-tests-kubectl-nty7t failed, ignoring for 2s: serviceaccounts &quot;default&quot; not found Mar 16 12:19:37.403: INFO: Service account default in ns e2e-tests-kubectl-nty7t with secrets found. (2.006941127s) STEP: Waiting for a default service account to be provisioned in namespace Mar 16 12:19:37.403: INFO: Waiting up to 2m0s for service account default to be provisioned in ns e2e-tests-kubectl-nty7t Mar 16 12:19:37.405: INFO: Service account default in ns e2e-tests-kubectl-nty7t with secrets found. (1.965487ms) [BeforeEach] [k8s.io] Kubectl client /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:120 [BeforeEach] [k8s.io] Update Demo /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:128 [It] should do a rolling update of a replication controller [Conformance] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:159 STEP: creating the initial replication controller Mar 16 12:19:37.406: INFO: Running '/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/platforms/linux/amd64/kubectl --server=https://104.197.94.145 --kubeconfig=/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config create -f /var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/docs/user-guide/update-demo/nautilus-rc.yaml --namespace=e2e-tests-kubectl-nty7t' Mar 16 12:19:37.696: INFO: stderr: &quot;&quot; Mar 16 12:19:37.696: INFO: stdout: &quot;replicationcontroller \&quot;update-demo-nautilus\&quot; created&quot; STEP: waiting for all containers in name=update-demo pods to come up. Mar 16 12:19:37.698: INFO: Running '/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/platforms/linux/amd64/kubectl --server=https://104.197.94.145 --kubeconfig=/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} --api-version=v1 -l name=update-demo --namespace=e2e-tests-kubectl-nty7t' Mar 16 12:19:37.935: INFO: stderr: &quot;Flag --api-version has been deprecated, flag is no longer respected and will be deleted in the next release\n&quot; Mar 16 12:19:37.935: INFO: stdout: &quot;update-demo-nautilus-kmv8c update-demo-nautilus-tnbyq&quot; Mar 16 12:19:37.935: INFO: Running '/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/platforms/linux/amd64/kubectl --server=https://104.197.94.145 --kubeconfig=/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config get pods update-demo-nautilus-kmv8c -o template --template={{if (exists . &quot;status&quot; &quot;containerStatuses&quot;)}}{{range .status.containerStatuses}}{{if (and (eq .name &quot;update-demo&quot;) (exists . &quot;state&quot; &quot;running&quot;))}}true{{end}}{{end}}{{end}} --api-version=v1 --namespace=e2e-tests-kubectl-nty7t' Mar 16 12:20:08.144: INFO: stdout: &quot;&quot; [AfterEach] [k8s.io] Kubectl client /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework.go:102 STEP: Collecting events from namespace &quot;e2e-tests-kubectl-nty7t&quot;. Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:37 -0700 PDT - event for update-demo-nautilus: {replication-controller } SuccessfulCreate: Created pod: update-demo-nautilus-kmv8c Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:37 -0700 PDT - event for update-demo-nautilus: {replication-controller } SuccessfulCreate: Created pod: update-demo-nautilus-tnbyq Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:37 -0700 PDT - event for update-demo-nautilus-kmv8c: {default-scheduler } Scheduled: Successfully assigned update-demo-nautilus-kmv8c to e2e-gce-builder-4-3-minion-or77 Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:37 -0700 PDT - event for update-demo-nautilus-tnbyq: {default-scheduler } Scheduled: Successfully assigned update-demo-nautilus-tnbyq to e2e-gce-builder-4-3-minion-c7o2 Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:39 -0700 PDT - event for update-demo-nautilus-kmv8c: {kubelet e2e-gce-builder-4-3-minion-or77} Pulling: pulling image &quot;gcr.io/google_containers/update-demo:nautilus&quot; Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:39 -0700 PDT - event for update-demo-nautilus-tnbyq: {kubelet e2e-gce-builder-4-3-minion-c7o2} Pulling: pulling image &quot;gcr.io/google_containers/update-demo:nautilus&quot; Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:46 -0700 PDT - event for update-demo-nautilus-kmv8c: {kubelet e2e-gce-builder-4-3-minion-or77} Pulled: Successfully pulled image &quot;gcr.io/google_containers/update-demo:nautilus&quot; Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:47 -0700 PDT - event for update-demo-nautilus-kmv8c: {kubelet e2e-gce-builder-4-3-minion-or77} Created: Created container with docker id d9198470bfed Mar 16 12:20:08.151: INFO: At 2016-03-16 12:19:47 -0700 PDT - event for update-demo-nautilus-kmv8c: {kubelet e2e-gce-builder-4-3-minion-or77} Started: Started container with docker id d9198470bfed Mar 16 12:20:08.187: INFO: POD NODE PHASE GRACE CONDITIONS Mar 16 12:20:08.187: INFO: test-webserver-13c988b5-ebac-11e5-8c3f-42010af0000e e2e-gce-builder-4-3-minion-w0dx Running [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:00 -0700 PDT ContainersNotReady containers with unready status: [test-webserber]}] Mar 16 12:20:08.187: INFO: client-containers-15f05ad4-ebac-11e5-8bf2-42010af0000e e2e-gce-builder-4-3-minion-tgot Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:03 -0700 PDT ContainersNotReady containers with unready status: [test-container]}] Mar 16 12:20:08.187: INFO: test-rollover-controller-1g4h3 e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:39 -0700 PDT }] Mar 16 12:20:08.187: INFO: test-rollover-controller-f6t0c e2e-gce-builder-4-3-minion-c7o2 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:39 -0700 PDT }] Mar 16 12:20:08.187: INFO: test-rollover-controller-jm00e e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:39 -0700 PDT }] Mar 16 12:20:08.187: INFO: test-rollover-deployment-2446224220-7m3ri e2e-gce-builder-4-3-minion-or77 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:59 -0700 PDT ContainersNotReady containers with unready status: [redis]}] Mar 16 12:20:08.187: INFO: test-rollover-deployment-2446224220-amzsz e2e-gce-builder-4-3-minion-0m7u Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:59 -0700 PDT ContainersNotReady containers with unready status: [redis]}] Mar 16 12:20:08.187: INFO: test-rolling-update-deployment-2583128681-9h5sv e2e-gce-builder-4-3-minion-0m7u Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:58 -0700 PDT ContainersNotReady containers with unready status: [redis]}] Mar 16 12:20:08.187: INFO: test-rolling-update-deployment-2583128681-py7p7 e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:05 -0700 PDT }] Mar 16 12:20:08.187: INFO: test-rolling-update-deployment-2583128681-w3vj4 e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:58 -0700 PDT }] Mar 16 12:20:08.187: INFO: hostexec e2e-gce-builder-4-3-minion-or77 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:05 -0700 PDT ContainersNotReady containers with unready status: [hostexec]}] Mar 16 12:20:08.187: INFO: pod-1805b392-ebac-11e5-937d-42010af0000e e2e-gce-builder-4-3-minion-0m7u Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:07 -0700 PDT ContainersNotReady containers with unready status: [test-container]}] Mar 16 12:20:08.187: INFO: pod-13627548-ebac-11e5-a2a6-42010af0000e e2e-gce-builder-4-3-minion-or77 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:59 -0700 PDT ContainersNotReady containers with unready status: [test-container]}] Mar 16 12:20:08.187: INFO: scale-down-p480r e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:30 -0700 PDT }] Mar 16 12:20:08.187: INFO: scale-down-sjjfo e2e-gce-builder-4-3-minion-c7o2 Running 30s [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:31 -0700 PDT }] Mar 16 12:20:08.187: INFO: nginx e2e-gce-builder-4-3-minion-tgot Running [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:02 -0700 PDT ContainersNotReady containers with unready status: [nginx]}] Mar 16 12:20:08.187: INFO: redis-master-uh9yy e2e-gce-builder-4-3-minion-c7o2 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:43 -0700 PDT ContainersNotReady containers with unready status: [redis-master]}] Mar 16 12:20:08.187: INFO: update-demo-nautilus-jvo95 e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:48 -0700 PDT }] Mar 16 12:20:08.187: INFO: nginx e2e-gce-builder-4-3-minion-c7o2 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:22 -0700 PDT ContainersNotReady containers with unready status: [nginx]}] Mar 16 12:20:08.187: INFO: update-demo-nautilus-kmv8c e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:48 -0700 PDT }] Mar 16 12:20:08.187: INFO: update-demo-nautilus-tnbyq e2e-gce-builder-4-3-minion-c7o2 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:37 -0700 PDT ContainersNotReady containers with unready status: [update-demo]}] Mar 16 12:20:08.187: INFO: netexec e2e-gce-builder-4-3-minion-h74l Running [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:36 -0700 PDT ContainersNotReady containers with unready status: [netexec]}] Mar 16 12:20:08.187: INFO: nginx e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:35 -0700 PDT }] Mar 16 12:20:08.187: INFO: liveness-exec e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:55 -0700 PDT }] Mar 16 12:20:08.187: INFO: tester e2e-gce-builder-4-3-minion-or77 Running 30s [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:51 -0700 PDT }] Mar 16 12:20:08.187: INFO: proxy-service-ggul8-sytl3 e2e-gce-builder-4-3-minion-c7o2 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:42 -0700 PDT ContainersNotReady containers with unready status: [proxy-service-ggul8]}] Mar 16 12:20:08.187: INFO: my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e-0klsj e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:52 -0700 PDT }] Mar 16 12:20:08.187: INFO: my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e-kauzr e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:04 -0700 PDT }] Mar 16 12:20:08.188: INFO: mutability-test-gg1wk e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:07 -0700 PDT }] Mar 16 12:20:08.188: INFO: hostexec e2e-gce-builder-4-3-minion-w0dx Running 30s [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:58 -0700 PDT }] Mar 16 12:20:08.188: INFO: nodeport-test-w1ub0 e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:06 -0700 PDT }] Mar 16 12:20:08.188: INFO: rand-non-local-11w02 e2e-gce-builder-4-3-minion-tgot Succeeded [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:04 -0700 PDT PodCompleted }] Mar 16 12:20:08.188: INFO: rand-non-local-l2dn1 e2e-gce-builder-4-3-minion-tgot Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:07 -0700 PDT ContainersNotReady containers with unready status: [c]}] Mar 16 12:20:08.188: INFO: rand-non-local-t2fie e2e-gce-builder-4-3-minion-0m7u Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:04 -0700 PDT ContainersNotReady containers with unready status: [c]}] Mar 16 12:20:08.188: INFO: scale-down-z2l1p e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:24 -0700 PDT }] Mar 16 12:20:08.188: INFO: elasticsearch-logging-v1-b650i e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:59 -0700 PDT }] Mar 16 12:20:08.188: INFO: elasticsearch-logging-v1-q7y2f e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:18 -0700 PDT }] Mar 16 12:20:08.188: INFO: etcd-server-e2e-gce-builder-4-3-master e2e-gce-builder-4-3-master Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:15:34 -0700 PDT }] Mar 16 12:20:08.188: INFO: etcd-server-events-e2e-gce-builder-4-3-master e2e-gce-builder-4-3-master Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:15:34 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-0m7u e2e-gce-builder-4-3-minion-0m7u Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:28 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-c7o2 e2e-gce-builder-4-3-minion-c7o2 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:33 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-h74l e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:19 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-or77 e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:48 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-tgot e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:30 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-w0dx e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:35 -0700 PDT }] Mar 16 12:20:08.188: INFO: heapster-v1.0.0-8x00h e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:31 -0700 PDT }] Mar 16 12:20:08.188: INFO: kibana-logging-v1-fkofe e2e-gce-builder-4-3-minion-c7o2 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:08 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-apiserver-e2e-gce-builder-4-3-master e2e-gce-builder-4-3-master Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:15:53 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-controller-manager-e2e-gce-builder-4-3-master e2e-gce-builder-4-3-master Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:16:12 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-dns-v11-nqvv6 e2e-gce-builder-4-3-minion-0m7u Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:00 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-0m7u e2e-gce-builder-4-3-minion-0m7u Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:02 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-c7o2 e2e-gce-builder-4-3-minion-c7o2 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:01 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-h74l e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:26 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-or77 e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:23 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-tgot e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:02 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-w0dx e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:03 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-scheduler-e2e-gce-builder-4-3-master e2e-gce-builder-4-3-master Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:15:31 -0700 PDT }] Mar 16 12:20:08.188: INFO: kubernetes-dashboard-v1.0.0-ienpj e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:35 -0700 PDT }] Mar 16 12:20:08.188: INFO: l7-lb-controller-v0.6.0-25t0o e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:20 -0700 PDT }] Mar 16 12:20:08.188: INFO: monitoring-influxdb-grafana-v3-su8ak e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:10 -0700 PDT }] Mar 16 12:20:08.188: INFO: Mar 16 12:20:08.196: INFO: Logging node info for node e2e-gce-builder-4-3-master Mar 16 12:20:08.237: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-master /api/v1/nodes/e2e-gce-builder-4-3-master 842f0834-ebab-11e5-94ab-42010af00002 1446 0 2016-03-16 12:15:59 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[kubernetes.io/hostname:e2e-gce-builder-4-3-master beta.kubernetes.io/instance-type:n1-standard-2 builder-4: failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f] map[]} {10.245.0.0/24 4818467139392673848 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-master true} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:19:59 -0700 PDT 2016-03-16 12:15:59 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:19:59 -0700 PDT 2016-03-16 12:15:59 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.2} {ExternalIP 104.197.94.145}] {{10250}} { 6F6BC8A2-D30F-E30C-AC2C-95701305F333 ef733f29-3d4b-4e97-b2c8-10cc04e0b672 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-apiserver:bb58ee65e555e6c407537c8acdd02a30] 62321994} {[gcr.io/google_containers/kube-scheduler:c2596c07dc13c13a000491d04d0d0556] 45172162} {[gcr.io/google_containers/kube-controller-manager:dc69e5ad78645929ebcb626c8ae69262] 55420482} {[gcr.io/google_containers/etcd:2.2.1] 28191895} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/kube-registry-proxy:0.3] 151228508} {[gcr.io/google_containers/pause:0.8.0] 241656}]}} Mar 16 12:20:08.237: INFO: Logging kubelet events for node e2e-gce-builder-4-3-master Mar 16 12:20:08.253: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-master Mar 16 12:20:08.315: INFO: etcd-server-events-e2e-gce-builder-4-3-master started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.315: INFO: etcd-server-e2e-gce-builder-4-3-master started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.315: INFO: kube-apiserver-e2e-gce-builder-4-3-master started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.315: INFO: kube-controller-manager-e2e-gce-builder-4-3-master started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.315: INFO: kube-scheduler-e2e-gce-builder-4-3-master started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.412: INFO: ERROR kubelet_docker_errors{operation_type=&quot;info&quot;} =&gt; 1 @[0] Mar 16 12:20:08.412: INFO: ERROR kubelet_docker_errors{operation_type=&quot;inspect_image&quot;} =&gt; 7 @[0] Mar 16 12:20:08.412: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_containers&quot;} =&gt; 10 @[0] Mar 16 12:20:08.412: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_images&quot;} =&gt; 7 @[0] Mar 16 12:20:08.412: INFO: ERROR kubelet_docker_errors{operation_type=&quot;version&quot;} =&gt; 8 @[0] Mar 16 12:20:08.412: INFO: Latency metrics for node e2e-gce-builder-4-3-master Mar 16 12:20:08.412: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:22.74059s} Mar 16 12:20:08.412: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:22.74059s} Mar 16 12:20:08.412: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.5 Latency:15.024225s} Mar 16 12:20:08.412: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:15.023729s} Mar 16 12:20:08.412: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.9 Latency:15.023729s} Mar 16 12:20:08.412: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.5 Latency:15.023037s} Mar 16 12:20:08.412: INFO: Logging node info for node e2e-gce-builder-4-3-minion-0m7u Mar 16 12:20:08.416: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-0m7u /api/v1/nodes/e2e-gce-builder-4-3-minion-0m7u 8d805430-ebab-11e5-94ab-42010af00002 1503 0 2016-03-16 12:16:15 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f kubernetes.io/hostname:e2e-gce-builder-4-3-minion-0m7u beta.kubernetes.io/instance-type:n1-standard-2 builder-4:] map[]} {10.245.1.0/24 14778003829187722291 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-0m7u false} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:20:02 -0700 PDT 2016-03-16 12:16:14 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:02 -0700 PDT 2016-03-16 12:17:01 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.6} {ExternalIP 104.197.180.253}] {{10250}} { 50C2CB59-7EC8-A54D-61E0-67E687C69994 4dd07954-c146-41cb-b09b-0b0edc06645f 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[gcr.io/google_containers/kube2sky:1.14] 27804037} {[redis:latest] 177586452} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/etcd-amd64:2.2.1] 28192476} {[gcr.io/google_containers/skydns:2015-10-13-8c72f8c] 40551394} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/exechealthz:1.0] 7099444} {[gcr.io/google_containers/jessie-dnsutils:e2e] 190148402} {[gcr.io/google_containers/dnsutils:e2e] 141895666} {[gcr.io/google_containers/pause:0.8.0] 241656} {[gcr.io/google_containers/nginx:1.7.9] 91664166} {[gcr.io/google_containers/test-webserver:e2e] 4534272}]}} Mar 16 12:20:08.416: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-0m7u Mar 16 12:20:08.425: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-0m7u Mar 16 12:20:08.436: INFO: pod-1805b392-ebac-11e5-937d-42010af0000e started at 2016-03-16 12:20:07 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.436: INFO: Container test-container ready: false, restart count 0 Mar 16 12:20:08.436: INFO: test-rollover-deployment-2446224220-amzsz started at 2016-03-16 12:19:59 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.436: INFO: Container redis ready: false, restart count 0 Mar 16 12:20:08.436: INFO: rand-non-local-t2fie started at 2016-03-16 12:20:04 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.436: INFO: Container c ready: false, restart count 0 Mar 16 12:20:08.436: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-0m7u started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.436: INFO: kube-proxy-e2e-gce-builder-4-3-minion-0m7u started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.436: INFO: kube-dns-v11-nqvv6 started at 2016-03-16 12:17:20 -0700 PDT (4 container statuses recorded) Mar 16 12:20:08.436: INFO: Container etcd ready: true, restart count 0 Mar 16 12:20:08.436: INFO: Container healthz ready: true, restart count 0 Mar 16 12:20:08.436: INFO: Container kube2sky ready: true, restart count 0 Mar 16 12:20:08.436: INFO: Container skydns ready: true, restart count 0 Mar 16 12:20:08.436: INFO: test-rolling-update-deployment-2583128681-9h5sv started at 2016-03-16 12:19:58 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.436: INFO: Container redis ready: false, restart count 0 Mar 16 12:20:08.608: INFO: ERROR kubelet_docker_errors{operation_type=&quot;info&quot;} =&gt; 1 @[0] Mar 16 12:20:08.608: INFO: ERROR kubelet_docker_errors{operation_type=&quot;inspect_image&quot;} =&gt; 17 @[0] Mar 16 12:20:08.608: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_containers&quot;} =&gt; 33 @[0] Mar 16 12:20:08.608: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_images&quot;} =&gt; 6 @[0] Mar 16 12:20:08.608: INFO: ERROR kubelet_docker_errors{operation_type=&quot;version&quot;} =&gt; 12 @[0] Mar 16 12:20:08.608: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-0m7u Mar 16 12:20:08.608: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:41.109471s} Mar 16 12:20:08.608: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:40.00967s} Mar 16 12:20:08.608: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.009561s} Mar 16 12:20:08.608: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:25.179163s} Mar 16 12:20:08.608: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:25.075069s} Mar 16 12:20:08.608: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:25.075069s} Mar 16 12:20:08.608: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:25.067876s} Mar 16 12:20:08.608: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:24.058246s} Mar 16 12:20:08.608: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:15.41202s} Mar 16 12:20:08.608: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.9 Latency:14.964465s} Mar 16 12:20:08.608: INFO: Logging node info for node e2e-gce-builder-4-3-minion-c7o2 Mar 16 12:20:08.611: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-c7o2 /api/v1/nodes/e2e-gce-builder-4-3-minion-c7o2 8cdc007b-ebab-11e5-94ab-42010af00002 1491 0 2016-03-16 12:16:13 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f kubernetes.io/hostname:e2e-gce-builder-4-3-minion-c7o2 beta.kubernetes.io/instance-type:n1-standard-2 builder-4:] map[]} {10.245.2.0/24 15451494475836778689 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-c7o2 false} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI} cpu:{2.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:20:01 -0700 PDT 2016-03-16 12:16:13 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:01 -0700 PDT 2016-03-16 12:17:00 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.5} {ExternalIP 146.148.98.116}] {{10250}} { D6EA2312-131B-13F5-8A69-340B5D38A03D 9186ea0d-2630-4267-a68b-0625b9e79c63 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[&lt;none&gt;:&lt;none&gt;] 125110803} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/busybox:1.24] 1113554} {[gcr.io/google_containers/mounttest-user:0.3] 1718853} {[gcr.io/google_containers/mounttest:0.5] 1718853} {[gcr.io/google_containers/pause:2.0] 350164} {[&lt;none&gt;:&lt;none&gt;] 569} {[gcr.io/google_containers/kibana:1.3] 396897764} {[gcr.io/google_containers/pause:0.8.0] 241656} {[gcr.io/google_containers/serve_hostname:1.1] 4522409} {[&lt;none&gt;:&lt;none&gt;] 188300556} {[gcr.io/google_containers/nginx:1.7.9] 91664166} {[&lt;none&gt;:&lt;none&gt;] 4534272}]}} Mar 16 12:20:08.612: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-c7o2 Mar 16 12:20:08.630: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-c7o2 Mar 16 12:20:08.682: INFO: scale-down-sjjfo started at 2016-03-16 12:19:28 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container c ready: true, restart count 0 Mar 16 12:20:08.682: INFO: proxy-service-ggul8-sytl3 started at 2016-03-16 12:19:42 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container proxy-service-ggul8 ready: false, restart count 0 Mar 16 12:20:08.682: INFO: test-rollover-controller-f6t0c started at 2016-03-16 12:19:35 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container nginx ready: true, restart count 0 Mar 16 12:20:08.682: INFO: update-demo-nautilus-z816h started at 2016-03-16 12:20:08 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container update-demo ready: false, restart count 0 Mar 16 12:20:08.682: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-c7o2 started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.682: INFO: kube-proxy-e2e-gce-builder-4-3-minion-c7o2 started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.682: INFO: kibana-logging-v1-fkofe started at 2016-03-16 12:17:19 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container kibana-logging ready: true, restart count 1 Mar 16 12:20:08.682: INFO: update-demo-nautilus-tnbyq started at 2016-03-16 12:19:37 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container update-demo ready: false, restart count 0 Mar 16 12:20:08.682: INFO: redis-master-uh9yy started at 2016-03-16 12:19:43 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container redis-master ready: false, restart count 0 Mar 16 12:20:08.682: INFO: nginx started at 2016-03-16 12:19:22 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container nginx ready: false, restart count 0 Mar 16 12:20:09.227: INFO: ERROR kubelet_docker_errors{operation_type=&quot;info&quot;} =&gt; 1 @[0] Mar 16 12:20:09.228: INFO: ERROR kubelet_docker_errors{operation_type=&quot;inspect_image&quot;} =&gt; 15 @[0] Mar 16 12:20:09.228: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_containers&quot;} =&gt; 32 @[0] Mar 16 12:20:09.228: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_images&quot;} =&gt; 6 @[0] Mar 16 12:20:09.228: INFO: ERROR kubelet_docker_errors{operation_type=&quot;stop_container&quot;} =&gt; 4 @[0] Mar 16 12:20:09.228: INFO: ERROR kubelet_docker_errors{operation_type=&quot;version&quot;} =&gt; 12 @[0] Mar 16 12:20:09.228: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-c7o2 Mar 16 12:20:09.228: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:41.159592s} Mar 16 12:20:09.228: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:40.012318s} Mar 16 12:20:09.228: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.012204s} Mar 16 12:20:09.228: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:32.814857s} Mar 16 12:20:09.228: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:32.814857s} Mar 16 12:20:09.228: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:32.778882s} Mar 16 12:20:09.228: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:31.69445s} Mar 16 12:20:09.228: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:31.345439s} Mar 16 12:20:09.228: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:31.345439s} Mar 16 12:20:09.228: INFO: Logging node info for node e2e-gce-builder-4-3-minion-h74l Mar 16 12:20:09.233: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-h74l /api/v1/nodes/e2e-gce-builder-4-3-minion-h74l 95e4ee91-ebab-11e5-94ab-42010af00002 1615 0 2016-03-16 12:16:29 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[builder-4: failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f kubernetes.io/hostname:e2e-gce-builder-4-3-minion-h74l beta.kubernetes.io/instance-type:n1-standard-2] map[]} {10.245.5.0/24 13922910527554352375 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-h74l false} {map[memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI} cpu:{2.000 DecimalSI}] map[pods:{110.000 DecimalSI} cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI}] [{OutOfDisk False 2016-03-16 12:20:08 -0700 PDT 2016-03-16 12:16:29 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:08 -0700 PDT 2016-03-16 12:17:17 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.3} {ExternalIP 104.197.85.60}] {{10250}} { C1B91124-0F14-312B-8627-BAB00828A5C6 dc807e14-ad07-4cef-b802-32f3c8c4d08b 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[gcr.io/google_containers/glbc:0.6.0] 229770249} {[gcr.io/google_containers/netexec:1.5] 7358440} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/netexec:1.4] 7297019} {[gcr.io/google_containers/elasticsearch:1.8] 410989305} {[gcr.io/google_containers/defaultbackend:1.0] 7513643} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/mounttest:0.2] 1752375} {[gcr.io/google_containers/pause:0.8.0] 241656} {[gcr.io/google_containers/serve_hostname:1.1] 4522409} {[gcr.io/google_containers/redis:e2e] 419003740} {[gcr.io/google_containers/nginx:1.7.9] 91664166}]}} Mar 16 12:20:09.233: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-h74l Mar 16 12:20:09.241: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-h74l Mar 16 12:20:09.280: INFO: mutability-test-gg1wk started at 2016-03-16 12:19:55 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.280: INFO: Container netexec ready: true, restart count 0 Mar 16 12:20:09.280: INFO: kube-proxy-e2e-gce-builder-4-3-minion-h74l started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.280: INFO: elasticsearch-logging-v1-q7y2f started at 2016-03-16 12:17:19 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.280: INFO: Container elasticsearch-logging ready: true, restart count 0 Mar 16 12:20:09.280: INFO: l7-lb-controller-v0.6.0-25t0o started at 2016-03-16 12:17:19 -0700 PDT (2 container statuses recorded) Mar 16 12:20:09.280: INFO: Container default-http-backend ready: true, restart count 0 Mar 16 12:20:09.280: INFO: Container l7-lb-controller ready: true, restart count 0 Mar 16 12:20:09.280: INFO: nodeport-test-w1ub0 started at 2016-03-16 12:19:42 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.280: INFO: Container netexec ready: true, restart count 0 Mar 16 12:20:09.280: INFO: netexec started at 2016-03-16 12:19:36 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.280: INFO: Container netexec ready: false, restart count 0 Mar 16 12:20:09.280: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-h74l started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.281: INFO: test-rolling-update-deployment-2583128681-py7p7 started at 2016-03-16 12:19:33 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.281: INFO: Container redis ready: true, restart count 0 Mar 16 12:20:09.281: INFO: my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e-kauzr started at 2016-03-16 12:19:50 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.281: INFO: Container my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e ready: true, restart count 0 Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type=&quot;info&quot;} =&gt; 1 @[0] Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type=&quot;inspect_image&quot;} =&gt; 19 @[0] Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_containers&quot;} =&gt; 32 @[0] Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_images&quot;} =&gt; 6 @[0] Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type=&quot;stop_container&quot;} =&gt; 3 @[0] Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type=&quot;version&quot;} =&gt; 12 @[0] Mar 16 12:20:09.466: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-h74l Mar 16 12:20:09.466: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:1m0.155039s} Mar 16 12:20:09.466: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:59.763067s} Mar 16 12:20:09.466: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:59.753069s} Mar 16 12:20:09.466: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:58.186227s} Mar 16 12:20:09.466: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:52.536215s} Mar 16 12:20:09.466: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:51.25003s} Mar 16 12:20:09.466: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:40.015213s} Mar 16 12:20:09.466: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.013567s} Mar 16 12:20:09.466: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:30.85301s} Mar 16 12:20:09.466: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.9 Latency:22.33817s} Mar 16 12:20:09.466: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.9 Latency:21.679325s} Mar 16 12:20:09.466: INFO: Logging node info for node e2e-gce-builder-4-3-minion-or77 Mar 16 12:20:09.470: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-or77 /api/v1/nodes/e2e-gce-builder-4-3-minion-or77 99d77966-ebab-11e5-94ab-42010af00002 1534 0 2016-03-16 12:16:35 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[failure-domain.beta.kubernetes.io/zone:us-central1-f kubernetes.io/hostname:e2e-gce-builder-4-3-minion-or77 beta.kubernetes.io/instance-type:n1-standard-2 builder-4: failure-domain.beta.kubernetes.io/region:us-central1] map[]} {10.245.6.0/24 12060484192874722186 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-or77 false} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI} cpu:{2.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:20:04 -0700 PDT 2016-03-16 12:16:35 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:04 -0700 PDT 2016-03-16 12:17:22 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.8} {ExternalIP 23.251.156.211}] {{10250}} { 684B0FA3-F92B-629A-26D4-0F3041A363DE c2f2107e-002a-4791-8373-768447b23096 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[redis:latest] 177586452} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/nettest:1.7] 24051275} {[gcr.io/google_containers/busybox:1.24] 1113554} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/portforwardtester:1.0] 2296329} {[gcr.io/google_containers/pause:0.8.0] 241656} {[&lt;none&gt;:&lt;none&gt;] 188300556} {[gcr.io/google_containers/update-demo:nautilus] 4555533} {[gcr.io/google_containers/nginx:1.7.9] 91664166}]}} Mar 16 12:20:09.470: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-or77 Mar 16 12:20:09.480: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-or77 Mar 16 12:20:09.529: INFO: kube-proxy-e2e-gce-builder-4-3-minion-or77 started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.529: INFO: pod-13627548-ebac-11e5-a2a6-42010af0000e started at 2016-03-16 12:19:59 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container test-container ready: false, restart count 0 Mar 16 12:20:09.529: INFO: update-demo-nautilus-kmv8c started at 2016-03-16 12:19:37 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container update-demo ready: true, restart count 0 Mar 16 12:20:09.529: INFO: test-rollover-deployment-2446224220-7m3ri started at 2016-03-16 12:19:59 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container redis ready: true, restart count 0 Mar 16 12:20:09.529: INFO: hostexec started at 2016-03-16 12:20:05 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container hostexec ready: true, restart count 0 Mar 16 12:20:09.529: INFO: test-rollover-controller-jm00e started at 2016-03-16 12:19:35 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container nginx ready: true, restart count 0 Mar 16 12:20:09.529: INFO: update-demo-nautilus-jvo95 started at 2016-03-16 12:19:36 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container update-demo ready: true, restart count 0 Mar 16 12:20:09.529: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-or77 started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.529: INFO: mutability-test-y4nt5 started at 2016-03-16 12:20:09 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container netexec ready: false, restart count 0 Mar 16 12:20:09.529: INFO: tester started at 2016-03-16 12:19:49 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container tester ready: true, restart count 0 Mar 16 12:20:09.529: INFO: scale-down-p480r started at 2016-03-16 12:19:28 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container c ready: true, restart count 0 Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type=&quot;info&quot;} =&gt; 1 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type=&quot;inspect_image&quot;} =&gt; 16 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_containers&quot;} =&gt; 32 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_images&quot;} =&gt; 6 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type=&quot;logs&quot;} =&gt; 1 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type=&quot;stop_container&quot;} =&gt; 3 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type=&quot;version&quot;} =&gt; 12 @[0] Mar 16 12:20:09.768: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-or77 Mar 16 12:20:09.768: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:41.412811s} Mar 16 12:20:09.768: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.017814s} Mar 16 12:20:09.768: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:26.177674s} Mar 16 12:20:09.768: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:25.654324s} Mar 16 12:20:09.768: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:25.075843s} Mar 16 12:20:09.768: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:24.521367s} Mar 16 12:20:09.768: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:24.317074s} Mar 16 12:20:09.768: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:23.343841s} Mar 16 12:20:09.768: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:11.983074s} Mar 16 12:20:09.768: INFO: Logging node info for node e2e-gce-builder-4-3-minion-tgot Mar 16 12:20:09.772: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-tgot /api/v1/nodes/e2e-gce-builder-4-3-minion-tgot 8d77529d-ebab-11e5-94ab-42010af00002 1501 0 2016-03-16 12:16:15 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[kubernetes.io/hostname:e2e-gce-builder-4-3-minion-tgot beta.kubernetes.io/instance-type:n1-standard-2 builder-4: failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f] map[]} {10.245.3.0/24 7315069135013650812 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-tgot false} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:20:02 -0700 PDT 2016-03-16 12:16:14 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:02 -0700 PDT 2016-03-16 12:17:01 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.4} {ExternalIP 104.197.211.215}] {{10250}} { 7F61EE4D-A146-0F54-23B9-11467DF53A75 9e9e8c1e-64e7-4b39-9a44-daceb629f065 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[gcr.io/google_containers/heapster:v1.0.0] 96204288} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/busybox:1.24] 1113554} {[gcr.io/google_containers/mounttest:0.6] 2084693} {[gcr.io/google_containers/mounttest-user:0.3] 1718853} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/pause:0.8.0] 241656} {[gcr.io/google_containers/redis:e2e] 419003740} {[gcr.io/google_containers/update-demo:nautilus] 4555533} {[gcr.io/google_containers/nginx:1.7.9] 91664166} {[gcr.io/google_containers/liveness:e2e] 4387474}]}} Mar 16 12:20:09.773: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-tgot Mar 16 12:20:09.782: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-tgot Mar 16 12:20:09.818: INFO: client-containers-15f05ad4-ebac-11e5-8bf2-42010af0000e started at 2016-03-16 12:20:03 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.818: INFO: Container test-container ready: false, restart count 0 Mar 16 12:20:09.818: INFO: test-rollover-controller-1g4h3 started at 2016-03-16 12:19:35 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.818: INFO: Container nginx ready: true, restart count 0 Mar 16 12:20:09.818: INFO: rand-non-local-11w02 started at 2016-03-16 12:20:04 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.819: INFO: Container c ready: false, restart count 0 Mar 16 12:20:09.819: INFO: rand-non-local-l2dn1 started at 2016-03-16 12:20:07 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.819: INFO: Container c ready: false, restart count 0 Mar 16 12:20:09.819: INFO: rand-non-local-aox3b started at 2016-03-16 12:20:09 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.819: INFO: Container c ready: false, restart count 0 Mar 16 12:20:09.819: INFO: kube-proxy-e2e-gce-builder-4-3-minion-tgot started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.819: INFO: heapster-v1.0.0-8x00h started at 2016-03-16 12:17:19 -0700 PDT (2 container statuses recorded) Mar 16 12:20:09.819: INFO: Container eventer ready: true, restart count 0 Mar 16 12:20:09.819: INFO: Container heapster ready: true, restart count 0 Mar 16 12:20:09.819: INFO: nginx started at 2016-03-16 12:20:02 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.819: INFO: Container nginx ready: false, restart count 0 Mar 16 12:20:09.819: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-tgot started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.819: INFO: nginx started at 2016-03-16 12:19:28 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.819: INFO: Container nginx ready: true, restart count 0 Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type=&quot;info&quot;} =&gt; 1 @[0] Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type=&quot;inspect_image&quot;} =&gt; 14 @[0] Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_containers&quot;} =&gt; 32 @[0] Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_images&quot;} =&gt; 6 @[0] Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type=&quot;stop_container&quot;} =&gt; 8 @[0] Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type=&quot;version&quot;} =&gt; 12 @[0] Mar 16 12:20:10.074: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-tgot Mar 16 12:20:10.074: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:41.259114s} Mar 16 12:20:10.074: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:40.013844s} Mar 16 12:20:10.074: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.013689s} Mar 16 12:20:10.074: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:24.479953s} Mar 16 12:20:10.074: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:24.45393s} Mar 16 12:20:10.074: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:24.435067s} Mar 16 12:20:10.074: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:23.744054s} Mar 16 12:20:10.074: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:21.581525s} Mar 16 12:20:10.074: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:19.432044s} Mar 16 12:20:10.074: INFO: Logging node info for node e2e-gce-builder-4-3-minion-w0dx Mar 16 12:20:10.082: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-w0dx /api/v1/nodes/e2e-gce-builder-4-3-minion-w0dx 8e5b8285-ebab-11e5-94ab-42010af00002 1511 0 2016-03-16 12:16:16 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[beta.kubernetes.io/instance-type:n1-standard-2 builder-4: failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f kubernetes.io/hostname:e2e-gce-builder-4-3-minion-w0dx] map[]} {10.245.4.0/24 6267779568652324074 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-w0dx false} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI} cpu:{2.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:20:03 -0700 PDT 2016-03-16 12:16:16 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:03 -0700 PDT 2016-03-16 12:17:01 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.7} {ExternalIP 146.148.97.148}] {{10250}} { 2932BDE0-F4C9-9E4D-3A67-28A296BA1D30 4bcacbeb-a408-42d4-a288-2f6fe40d3345 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[gcr.io/google_containers/kubernetes-dashboard-amd64:v1.0.0] 40688848} {[gcr.io/google_containers/heapster_grafana:v2.6.0-2] 230092866} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/busybox:1.24] 1113554} {[gcr.io/google_containers/elasticsearch:1.8] 410989305} {[gcr.io/google_containers/mounttest:0.6] 2084693} {[gcr.io/google_containers/hostexec:1.2] 13209617} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/heapster_influxdb:v0.5] 251005705} {[gcr.io/google_containers/jessie-dnsutils:e2e] 190148402} {[gcr.io/google_containers/dnsutils:e2e] 141895666} {[gcr.io/google_containers/pause:0.8.0] 241656} {[gcr.io/google_containers/serve_hostname:1.1] 4522409} {[gcr.io/google_containers/nginx:1.7.9] 91664166} {[gcr.io/google_containers/test-webserver:e2e] 4534272}]}} Mar 16 12:20:10.082: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-w0dx Mar 16 12:20:10.090: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-w0dx Mar 16 12:20:10.134: INFO: monitoring-influxdb-grafana-v3-su8ak started at 2016-03-16 12:17:19 -0700 PDT (2 container statuses recorded) Mar 16 12:20:10.135: INFO: Container grafana ready: true, restart count 0 Mar 16 12:20:10.135: INFO: Container influxdb ready: true, restart count 0 Mar 16 12:20:10.135: INFO: scale-down-z2l1p started at 2016-03-16 12:19:21 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container c ready: true, restart count 0 Mar 16 12:20:10.135: INFO: my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e-0klsj started at 2016-03-16 12:19:50 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e ready: true, restart count 0 Mar 16 12:20:10.135: INFO: liveness-exec started at 2016-03-16 12:19:54 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container liveness ready: true, restart count 0 Mar 16 12:20:10.135: INFO: kube-proxy-e2e-gce-builder-4-3-minion-w0dx started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:10.135: INFO: kubernetes-dashboard-v1.0.0-ienpj started at 2016-03-16 12:17:19 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container kubernetes-dashboard ready: true, restart count 0 Mar 16 12:20:10.135: INFO: test-webserver-13c988b5-ebac-11e5-8c3f-42010af0000e started at 2016-03-16 12:20:00 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container test-webserber ready: false, restart count 0 Mar 16 12:20:10.135: INFO: hostexec started at 2016-03-16 12:19:56 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container hostexec ready: true, restart count 0 Mar 16 12:20:10.135: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-w0dx started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:10.135: INFO: elasticsearch-logging-v1-b650i started at 2016-03-16 12:17:19 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container elasticsearch-logging ready: true, restart count 0 Mar 16 12:20:10.356: INFO: ERROR kubelet_docker_errors{operation_type=&quot;info&quot;} =&gt; 1 @[0] Mar 16 12:20:10.356: INFO: ERROR kubelet_docker_errors{operation_type=&quot;inspect_image&quot;} =&gt; 16 @[0] Mar 16 12:20:10.357: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_containers&quot;} =&gt; 32 @[0] Mar 16 12:20:10.357: INFO: ERROR kubelet_docker_errors{operation_type=&quot;list_images&quot;} =&gt; 6 @[0] Mar 16 12:20:10.357: INFO: ERROR kubelet_docker_errors{operation_type=&quot;version&quot;} =&gt; 12 @[0] Mar 16 12:20:10.357: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-w0dx Mar 16 12:20:10.357: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:50.286722s} Mar 16 12:20:10.357: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:40.136159s} Mar 16 12:20:10.357: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.013843s} Mar 16 12:20:10.357: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:39.54455s} Mar 16 12:20:10.357: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:39.537679s} Mar 16 12:20:10.357: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:35.942497s} Mar 16 12:20:10.357: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:34.291256s} Mar 16 12:20:10.357: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:33.107967s} Mar 16 12:20:10.357: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:32.442493s} Mar 16 12:20:10.357: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.9 Latency:12.614231s} Mar 16 12:20:10.357: INFO: Waiting up to 1m0s for all nodes to be ready STEP: Destroying namespace &quot;e2e-tests-kubectl-nty7t&quot; for this suite. Ò€’ Failure [74.999 seconds] [k8s.io] Kubectl client /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework.go:420 [k8s.io] Update Demo /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework.go:420 should do a rolling update of a replication controller [Conformance] [It] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:159 Expected error: &lt;*errors.errorString | 0xc2085a1860&gt;: { s: &quot;Error running &amp;{/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.197.94.145 --kubeconfig=/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config get pods update-demo-nautilus-kmv8c -o template --template={{if (exists . \&quot;status\&quot; \&quot;containerStatuses\&quot;)}}{{range .status.containerStatuses}}{{if (and (eq .name \&quot;update-demo\&quot;) (exists . \&quot;state\&quot; \&quot;running\&quot;))}}true{{end}}{{end}}{{end}} --api-version=v1 --namespace=e2e-tests-kubectl-nty7t] [] &lt;nil&gt; Flag --api-version has been deprecated, flag is no longer respected and will be deleted in the next release\nUnable to connect to the server: dial tcp 104.197.94.145:443: i/o timeout\n [] &lt;nil&gt; 0xc208572f00 exit status 1 &lt;nil&gt; true [0xc2083c43c0 0xc2083c43e0 0xc2083c4408] [0xc2083c43c0 0xc2083c43e0 0xc2083c4408] [0xc2083c43d8 0xc2083c4400] [0x962b80 0x962b80] 0xc208487800}:\nCommand stdout:\n\nstderr:\nFlag --api-version has been deprecated, flag is no longer respected and will be deleted in the next release\nUnable to connect to the server: dial tcp 104.197.94.145:443: i/o timeout\n\nerror:\nexit status 1\n&quot;, } Error running &amp;{/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.197.94.145 --kubeconfig=/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config get pods update-demo-nautilus-kmv8c -o template --template={{if (exists . &quot;status&quot; &quot;containerStatuses&quot;)}}{{range .status.containerStatuses}}{{if (and (eq .name &quot;update-demo&quot;) (exists . &quot;state&quot; &quot;running&quot;))}}true{{end}}{{end}}{{end}} --api-version=v1 --namespace=e2e-tests-kubectl-nty7t] [] &lt;nil&gt; Flag --api-version has been deprecated, flag is no longer respected and will be deleted in the next release Unable to connect to the server: dial tcp 104.197.94.145:443: i/o timeout [] &lt;nil&gt; 0xc208572f00 exit status 1 &lt;nil&gt; true [0xc2083c43c0 0xc2083c43e0 0xc2083c4408] [0xc2083c43c0 0xc2083c43e0 0xc2083c4408] [0xc2083c43d8 0xc2083c4400] [0x962b80 0x962b80] 0xc208487800}: Command stdout: stderr: Flag --api-version has been deprecated, flag is no longer respected and will be deleted in the next release Unable to connect to the server: dial tcp 104.197.94.145:443: i/o timeout error: exit status 1 not to have occurred /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/util.go:1591"><pre class="notranslate"><code class="notranslate">[BeforeEach] [k8s.io] Kubectl client /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework.go:101 STEP: Creating a kubernetes client Mar 16 12:19:35.383: INFO: &gt;&gt;&gt; testContext.KubeConfig: /var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config STEP: Building a namespace api object Mar 16 12:19:35.396: INFO: Waiting up to 2m0s for service account default to be provisioned in ns e2e-tests-kubectl-nty7t Mar 16 12:19:35.400: INFO: Get service account default in ns e2e-tests-kubectl-nty7t failed, ignoring for 2s: serviceaccounts "default" not found Mar 16 12:19:37.403: INFO: Service account default in ns e2e-tests-kubectl-nty7t with secrets found. (2.006941127s) STEP: Waiting for a default service account to be provisioned in namespace Mar 16 12:19:37.403: INFO: Waiting up to 2m0s for service account default to be provisioned in ns e2e-tests-kubectl-nty7t Mar 16 12:19:37.405: INFO: Service account default in ns e2e-tests-kubectl-nty7t with secrets found. (1.965487ms) [BeforeEach] [k8s.io] Kubectl client /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:120 [BeforeEach] [k8s.io] Update Demo /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:128 [It] should do a rolling update of a replication controller [Conformance] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:159 STEP: creating the initial replication controller Mar 16 12:19:37.406: INFO: Running '/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/platforms/linux/amd64/kubectl --server=https://104.197.94.145 --kubeconfig=/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config create -f /var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/docs/user-guide/update-demo/nautilus-rc.yaml --namespace=e2e-tests-kubectl-nty7t' Mar 16 12:19:37.696: INFO: stderr: "" Mar 16 12:19:37.696: INFO: stdout: "replicationcontroller \"update-demo-nautilus\" created" STEP: waiting for all containers in name=update-demo pods to come up. Mar 16 12:19:37.698: INFO: Running '/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/platforms/linux/amd64/kubectl --server=https://104.197.94.145 --kubeconfig=/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} --api-version=v1 -l name=update-demo --namespace=e2e-tests-kubectl-nty7t' Mar 16 12:19:37.935: INFO: stderr: "Flag --api-version has been deprecated, flag is no longer respected and will be deleted in the next release\n" Mar 16 12:19:37.935: INFO: stdout: "update-demo-nautilus-kmv8c update-demo-nautilus-tnbyq" Mar 16 12:19:37.935: INFO: Running '/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/platforms/linux/amd64/kubectl --server=https://104.197.94.145 --kubeconfig=/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config get pods update-demo-nautilus-kmv8c -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}} --api-version=v1 --namespace=e2e-tests-kubectl-nty7t' Mar 16 12:20:08.144: INFO: stdout: "" [AfterEach] [k8s.io] Kubectl client /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework.go:102 STEP: Collecting events from namespace "e2e-tests-kubectl-nty7t". Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:37 -0700 PDT - event for update-demo-nautilus: {replication-controller } SuccessfulCreate: Created pod: update-demo-nautilus-kmv8c Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:37 -0700 PDT - event for update-demo-nautilus: {replication-controller } SuccessfulCreate: Created pod: update-demo-nautilus-tnbyq Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:37 -0700 PDT - event for update-demo-nautilus-kmv8c: {default-scheduler } Scheduled: Successfully assigned update-demo-nautilus-kmv8c to e2e-gce-builder-4-3-minion-or77 Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:37 -0700 PDT - event for update-demo-nautilus-tnbyq: {default-scheduler } Scheduled: Successfully assigned update-demo-nautilus-tnbyq to e2e-gce-builder-4-3-minion-c7o2 Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:39 -0700 PDT - event for update-demo-nautilus-kmv8c: {kubelet e2e-gce-builder-4-3-minion-or77} Pulling: pulling image "gcr.io/google_containers/update-demo:nautilus" Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:39 -0700 PDT - event for update-demo-nautilus-tnbyq: {kubelet e2e-gce-builder-4-3-minion-c7o2} Pulling: pulling image "gcr.io/google_containers/update-demo:nautilus" Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:46 -0700 PDT - event for update-demo-nautilus-kmv8c: {kubelet e2e-gce-builder-4-3-minion-or77} Pulled: Successfully pulled image "gcr.io/google_containers/update-demo:nautilus" Mar 16 12:20:08.150: INFO: At 2016-03-16 12:19:47 -0700 PDT - event for update-demo-nautilus-kmv8c: {kubelet e2e-gce-builder-4-3-minion-or77} Created: Created container with docker id d9198470bfed Mar 16 12:20:08.151: INFO: At 2016-03-16 12:19:47 -0700 PDT - event for update-demo-nautilus-kmv8c: {kubelet e2e-gce-builder-4-3-minion-or77} Started: Started container with docker id d9198470bfed Mar 16 12:20:08.187: INFO: POD NODE PHASE GRACE CONDITIONS Mar 16 12:20:08.187: INFO: test-webserver-13c988b5-ebac-11e5-8c3f-42010af0000e e2e-gce-builder-4-3-minion-w0dx Running [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:00 -0700 PDT ContainersNotReady containers with unready status: [test-webserber]}] Mar 16 12:20:08.187: INFO: client-containers-15f05ad4-ebac-11e5-8bf2-42010af0000e e2e-gce-builder-4-3-minion-tgot Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:03 -0700 PDT ContainersNotReady containers with unready status: [test-container]}] Mar 16 12:20:08.187: INFO: test-rollover-controller-1g4h3 e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:39 -0700 PDT }] Mar 16 12:20:08.187: INFO: test-rollover-controller-f6t0c e2e-gce-builder-4-3-minion-c7o2 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:39 -0700 PDT }] Mar 16 12:20:08.187: INFO: test-rollover-controller-jm00e e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:39 -0700 PDT }] Mar 16 12:20:08.187: INFO: test-rollover-deployment-2446224220-7m3ri e2e-gce-builder-4-3-minion-or77 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:59 -0700 PDT ContainersNotReady containers with unready status: [redis]}] Mar 16 12:20:08.187: INFO: test-rollover-deployment-2446224220-amzsz e2e-gce-builder-4-3-minion-0m7u Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:59 -0700 PDT ContainersNotReady containers with unready status: [redis]}] Mar 16 12:20:08.187: INFO: test-rolling-update-deployment-2583128681-9h5sv e2e-gce-builder-4-3-minion-0m7u Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:58 -0700 PDT ContainersNotReady containers with unready status: [redis]}] Mar 16 12:20:08.187: INFO: test-rolling-update-deployment-2583128681-py7p7 e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:05 -0700 PDT }] Mar 16 12:20:08.187: INFO: test-rolling-update-deployment-2583128681-w3vj4 e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:58 -0700 PDT }] Mar 16 12:20:08.187: INFO: hostexec e2e-gce-builder-4-3-minion-or77 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:05 -0700 PDT ContainersNotReady containers with unready status: [hostexec]}] Mar 16 12:20:08.187: INFO: pod-1805b392-ebac-11e5-937d-42010af0000e e2e-gce-builder-4-3-minion-0m7u Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:07 -0700 PDT ContainersNotReady containers with unready status: [test-container]}] Mar 16 12:20:08.187: INFO: pod-13627548-ebac-11e5-a2a6-42010af0000e e2e-gce-builder-4-3-minion-or77 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:59 -0700 PDT ContainersNotReady containers with unready status: [test-container]}] Mar 16 12:20:08.187: INFO: scale-down-p480r e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:30 -0700 PDT }] Mar 16 12:20:08.187: INFO: scale-down-sjjfo e2e-gce-builder-4-3-minion-c7o2 Running 30s [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:31 -0700 PDT }] Mar 16 12:20:08.187: INFO: nginx e2e-gce-builder-4-3-minion-tgot Running [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:02 -0700 PDT ContainersNotReady containers with unready status: [nginx]}] Mar 16 12:20:08.187: INFO: redis-master-uh9yy e2e-gce-builder-4-3-minion-c7o2 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:43 -0700 PDT ContainersNotReady containers with unready status: [redis-master]}] Mar 16 12:20:08.187: INFO: update-demo-nautilus-jvo95 e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:48 -0700 PDT }] Mar 16 12:20:08.187: INFO: nginx e2e-gce-builder-4-3-minion-c7o2 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:22 -0700 PDT ContainersNotReady containers with unready status: [nginx]}] Mar 16 12:20:08.187: INFO: update-demo-nautilus-kmv8c e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:48 -0700 PDT }] Mar 16 12:20:08.187: INFO: update-demo-nautilus-tnbyq e2e-gce-builder-4-3-minion-c7o2 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:37 -0700 PDT ContainersNotReady containers with unready status: [update-demo]}] Mar 16 12:20:08.187: INFO: netexec e2e-gce-builder-4-3-minion-h74l Running [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:36 -0700 PDT ContainersNotReady containers with unready status: [netexec]}] Mar 16 12:20:08.187: INFO: nginx e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:35 -0700 PDT }] Mar 16 12:20:08.187: INFO: liveness-exec e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:55 -0700 PDT }] Mar 16 12:20:08.187: INFO: tester e2e-gce-builder-4-3-minion-or77 Running 30s [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:51 -0700 PDT }] Mar 16 12:20:08.187: INFO: proxy-service-ggul8-sytl3 e2e-gce-builder-4-3-minion-c7o2 Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:42 -0700 PDT ContainersNotReady containers with unready status: [proxy-service-ggul8]}] Mar 16 12:20:08.187: INFO: my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e-0klsj e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:52 -0700 PDT }] Mar 16 12:20:08.187: INFO: my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e-kauzr e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:04 -0700 PDT }] Mar 16 12:20:08.188: INFO: mutability-test-gg1wk e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:07 -0700 PDT }] Mar 16 12:20:08.188: INFO: hostexec e2e-gce-builder-4-3-minion-w0dx Running 30s [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:58 -0700 PDT }] Mar 16 12:20:08.188: INFO: nodeport-test-w1ub0 e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:06 -0700 PDT }] Mar 16 12:20:08.188: INFO: rand-non-local-11w02 e2e-gce-builder-4-3-minion-tgot Succeeded [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:04 -0700 PDT PodCompleted }] Mar 16 12:20:08.188: INFO: rand-non-local-l2dn1 e2e-gce-builder-4-3-minion-tgot Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:07 -0700 PDT ContainersNotReady containers with unready status: [c]}] Mar 16 12:20:08.188: INFO: rand-non-local-t2fie e2e-gce-builder-4-3-minion-0m7u Pending [{Ready False 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:20:04 -0700 PDT ContainersNotReady containers with unready status: [c]}] Mar 16 12:20:08.188: INFO: scale-down-z2l1p e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:19:24 -0700 PDT }] Mar 16 12:20:08.188: INFO: elasticsearch-logging-v1-b650i e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:59 -0700 PDT }] Mar 16 12:20:08.188: INFO: elasticsearch-logging-v1-q7y2f e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:18 -0700 PDT }] Mar 16 12:20:08.188: INFO: etcd-server-e2e-gce-builder-4-3-master e2e-gce-builder-4-3-master Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:15:34 -0700 PDT }] Mar 16 12:20:08.188: INFO: etcd-server-events-e2e-gce-builder-4-3-master e2e-gce-builder-4-3-master Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:15:34 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-0m7u e2e-gce-builder-4-3-minion-0m7u Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:28 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-c7o2 e2e-gce-builder-4-3-minion-c7o2 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:33 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-h74l e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:19 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-or77 e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:48 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-tgot e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:30 -0700 PDT }] Mar 16 12:20:08.188: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-w0dx e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:35 -0700 PDT }] Mar 16 12:20:08.188: INFO: heapster-v1.0.0-8x00h e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:31 -0700 PDT }] Mar 16 12:20:08.188: INFO: kibana-logging-v1-fkofe e2e-gce-builder-4-3-minion-c7o2 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:08 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-apiserver-e2e-gce-builder-4-3-master e2e-gce-builder-4-3-master Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:15:53 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-controller-manager-e2e-gce-builder-4-3-master e2e-gce-builder-4-3-master Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:16:12 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-dns-v11-nqvv6 e2e-gce-builder-4-3-minion-0m7u Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:00 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-0m7u e2e-gce-builder-4-3-minion-0m7u Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:02 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-c7o2 e2e-gce-builder-4-3-minion-c7o2 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:01 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-h74l e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:26 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-or77 e2e-gce-builder-4-3-minion-or77 Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:23 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-tgot e2e-gce-builder-4-3-minion-tgot Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:02 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-proxy-e2e-gce-builder-4-3-minion-w0dx e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:03 -0700 PDT }] Mar 16 12:20:08.188: INFO: kube-scheduler-e2e-gce-builder-4-3-master e2e-gce-builder-4-3-master Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:15:31 -0700 PDT }] Mar 16 12:20:08.188: INFO: kubernetes-dashboard-v1.0.0-ienpj e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:17:35 -0700 PDT }] Mar 16 12:20:08.188: INFO: l7-lb-controller-v0.6.0-25t0o e2e-gce-builder-4-3-minion-h74l Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:20 -0700 PDT }] Mar 16 12:20:08.188: INFO: monitoring-influxdb-grafana-v3-su8ak e2e-gce-builder-4-3-minion-w0dx Running [{Ready True 0001-01-01 00:00:00 +0000 UTC 2016-03-16 12:18:10 -0700 PDT }] Mar 16 12:20:08.188: INFO: Mar 16 12:20:08.196: INFO: Logging node info for node e2e-gce-builder-4-3-master Mar 16 12:20:08.237: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-master /api/v1/nodes/e2e-gce-builder-4-3-master 842f0834-ebab-11e5-94ab-42010af00002 1446 0 2016-03-16 12:15:59 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[kubernetes.io/hostname:e2e-gce-builder-4-3-master beta.kubernetes.io/instance-type:n1-standard-2 builder-4: failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f] map[]} {10.245.0.0/24 4818467139392673848 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-master true} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:19:59 -0700 PDT 2016-03-16 12:15:59 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:19:59 -0700 PDT 2016-03-16 12:15:59 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.2} {ExternalIP 104.197.94.145}] {{10250}} { 6F6BC8A2-D30F-E30C-AC2C-95701305F333 ef733f29-3d4b-4e97-b2c8-10cc04e0b672 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-apiserver:bb58ee65e555e6c407537c8acdd02a30] 62321994} {[gcr.io/google_containers/kube-scheduler:c2596c07dc13c13a000491d04d0d0556] 45172162} {[gcr.io/google_containers/kube-controller-manager:dc69e5ad78645929ebcb626c8ae69262] 55420482} {[gcr.io/google_containers/etcd:2.2.1] 28191895} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/kube-registry-proxy:0.3] 151228508} {[gcr.io/google_containers/pause:0.8.0] 241656}]}} Mar 16 12:20:08.237: INFO: Logging kubelet events for node e2e-gce-builder-4-3-master Mar 16 12:20:08.253: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-master Mar 16 12:20:08.315: INFO: etcd-server-events-e2e-gce-builder-4-3-master started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.315: INFO: etcd-server-e2e-gce-builder-4-3-master started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.315: INFO: kube-apiserver-e2e-gce-builder-4-3-master started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.315: INFO: kube-controller-manager-e2e-gce-builder-4-3-master started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.315: INFO: kube-scheduler-e2e-gce-builder-4-3-master started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.412: INFO: ERROR kubelet_docker_errors{operation_type="info"} =&gt; 1 @[0] Mar 16 12:20:08.412: INFO: ERROR kubelet_docker_errors{operation_type="inspect_image"} =&gt; 7 @[0] Mar 16 12:20:08.412: INFO: ERROR kubelet_docker_errors{operation_type="list_containers"} =&gt; 10 @[0] Mar 16 12:20:08.412: INFO: ERROR kubelet_docker_errors{operation_type="list_images"} =&gt; 7 @[0] Mar 16 12:20:08.412: INFO: ERROR kubelet_docker_errors{operation_type="version"} =&gt; 8 @[0] Mar 16 12:20:08.412: INFO: Latency metrics for node e2e-gce-builder-4-3-master Mar 16 12:20:08.412: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:22.74059s} Mar 16 12:20:08.412: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:22.74059s} Mar 16 12:20:08.412: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.5 Latency:15.024225s} Mar 16 12:20:08.412: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:15.023729s} Mar 16 12:20:08.412: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.9 Latency:15.023729s} Mar 16 12:20:08.412: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.5 Latency:15.023037s} Mar 16 12:20:08.412: INFO: Logging node info for node e2e-gce-builder-4-3-minion-0m7u Mar 16 12:20:08.416: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-0m7u /api/v1/nodes/e2e-gce-builder-4-3-minion-0m7u 8d805430-ebab-11e5-94ab-42010af00002 1503 0 2016-03-16 12:16:15 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f kubernetes.io/hostname:e2e-gce-builder-4-3-minion-0m7u beta.kubernetes.io/instance-type:n1-standard-2 builder-4:] map[]} {10.245.1.0/24 14778003829187722291 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-0m7u false} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:20:02 -0700 PDT 2016-03-16 12:16:14 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:02 -0700 PDT 2016-03-16 12:17:01 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.6} {ExternalIP 104.197.180.253}] {{10250}} { 50C2CB59-7EC8-A54D-61E0-67E687C69994 4dd07954-c146-41cb-b09b-0b0edc06645f 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[gcr.io/google_containers/kube2sky:1.14] 27804037} {[redis:latest] 177586452} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/etcd-amd64:2.2.1] 28192476} {[gcr.io/google_containers/skydns:2015-10-13-8c72f8c] 40551394} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/exechealthz:1.0] 7099444} {[gcr.io/google_containers/jessie-dnsutils:e2e] 190148402} {[gcr.io/google_containers/dnsutils:e2e] 141895666} {[gcr.io/google_containers/pause:0.8.0] 241656} {[gcr.io/google_containers/nginx:1.7.9] 91664166} {[gcr.io/google_containers/test-webserver:e2e] 4534272}]}} Mar 16 12:20:08.416: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-0m7u Mar 16 12:20:08.425: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-0m7u Mar 16 12:20:08.436: INFO: pod-1805b392-ebac-11e5-937d-42010af0000e started at 2016-03-16 12:20:07 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.436: INFO: Container test-container ready: false, restart count 0 Mar 16 12:20:08.436: INFO: test-rollover-deployment-2446224220-amzsz started at 2016-03-16 12:19:59 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.436: INFO: Container redis ready: false, restart count 0 Mar 16 12:20:08.436: INFO: rand-non-local-t2fie started at 2016-03-16 12:20:04 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.436: INFO: Container c ready: false, restart count 0 Mar 16 12:20:08.436: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-0m7u started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.436: INFO: kube-proxy-e2e-gce-builder-4-3-minion-0m7u started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.436: INFO: kube-dns-v11-nqvv6 started at 2016-03-16 12:17:20 -0700 PDT (4 container statuses recorded) Mar 16 12:20:08.436: INFO: Container etcd ready: true, restart count 0 Mar 16 12:20:08.436: INFO: Container healthz ready: true, restart count 0 Mar 16 12:20:08.436: INFO: Container kube2sky ready: true, restart count 0 Mar 16 12:20:08.436: INFO: Container skydns ready: true, restart count 0 Mar 16 12:20:08.436: INFO: test-rolling-update-deployment-2583128681-9h5sv started at 2016-03-16 12:19:58 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.436: INFO: Container redis ready: false, restart count 0 Mar 16 12:20:08.608: INFO: ERROR kubelet_docker_errors{operation_type="info"} =&gt; 1 @[0] Mar 16 12:20:08.608: INFO: ERROR kubelet_docker_errors{operation_type="inspect_image"} =&gt; 17 @[0] Mar 16 12:20:08.608: INFO: ERROR kubelet_docker_errors{operation_type="list_containers"} =&gt; 33 @[0] Mar 16 12:20:08.608: INFO: ERROR kubelet_docker_errors{operation_type="list_images"} =&gt; 6 @[0] Mar 16 12:20:08.608: INFO: ERROR kubelet_docker_errors{operation_type="version"} =&gt; 12 @[0] Mar 16 12:20:08.608: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-0m7u Mar 16 12:20:08.608: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:41.109471s} Mar 16 12:20:08.608: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:40.00967s} Mar 16 12:20:08.608: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.009561s} Mar 16 12:20:08.608: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:25.179163s} Mar 16 12:20:08.608: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:25.075069s} Mar 16 12:20:08.608: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:25.075069s} Mar 16 12:20:08.608: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:25.067876s} Mar 16 12:20:08.608: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:24.058246s} Mar 16 12:20:08.608: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:15.41202s} Mar 16 12:20:08.608: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.9 Latency:14.964465s} Mar 16 12:20:08.608: INFO: Logging node info for node e2e-gce-builder-4-3-minion-c7o2 Mar 16 12:20:08.611: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-c7o2 /api/v1/nodes/e2e-gce-builder-4-3-minion-c7o2 8cdc007b-ebab-11e5-94ab-42010af00002 1491 0 2016-03-16 12:16:13 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f kubernetes.io/hostname:e2e-gce-builder-4-3-minion-c7o2 beta.kubernetes.io/instance-type:n1-standard-2 builder-4:] map[]} {10.245.2.0/24 15451494475836778689 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-c7o2 false} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI} cpu:{2.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:20:01 -0700 PDT 2016-03-16 12:16:13 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:01 -0700 PDT 2016-03-16 12:17:00 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.5} {ExternalIP 146.148.98.116}] {{10250}} { D6EA2312-131B-13F5-8A69-340B5D38A03D 9186ea0d-2630-4267-a68b-0625b9e79c63 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[&lt;none&gt;:&lt;none&gt;] 125110803} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/busybox:1.24] 1113554} {[gcr.io/google_containers/mounttest-user:0.3] 1718853} {[gcr.io/google_containers/mounttest:0.5] 1718853} {[gcr.io/google_containers/pause:2.0] 350164} {[&lt;none&gt;:&lt;none&gt;] 569} {[gcr.io/google_containers/kibana:1.3] 396897764} {[gcr.io/google_containers/pause:0.8.0] 241656} {[gcr.io/google_containers/serve_hostname:1.1] 4522409} {[&lt;none&gt;:&lt;none&gt;] 188300556} {[gcr.io/google_containers/nginx:1.7.9] 91664166} {[&lt;none&gt;:&lt;none&gt;] 4534272}]}} Mar 16 12:20:08.612: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-c7o2 Mar 16 12:20:08.630: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-c7o2 Mar 16 12:20:08.682: INFO: scale-down-sjjfo started at 2016-03-16 12:19:28 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container c ready: true, restart count 0 Mar 16 12:20:08.682: INFO: proxy-service-ggul8-sytl3 started at 2016-03-16 12:19:42 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container proxy-service-ggul8 ready: false, restart count 0 Mar 16 12:20:08.682: INFO: test-rollover-controller-f6t0c started at 2016-03-16 12:19:35 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container nginx ready: true, restart count 0 Mar 16 12:20:08.682: INFO: update-demo-nautilus-z816h started at 2016-03-16 12:20:08 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container update-demo ready: false, restart count 0 Mar 16 12:20:08.682: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-c7o2 started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.682: INFO: kube-proxy-e2e-gce-builder-4-3-minion-c7o2 started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:08.682: INFO: kibana-logging-v1-fkofe started at 2016-03-16 12:17:19 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container kibana-logging ready: true, restart count 1 Mar 16 12:20:08.682: INFO: update-demo-nautilus-tnbyq started at 2016-03-16 12:19:37 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container update-demo ready: false, restart count 0 Mar 16 12:20:08.682: INFO: redis-master-uh9yy started at 2016-03-16 12:19:43 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container redis-master ready: false, restart count 0 Mar 16 12:20:08.682: INFO: nginx started at 2016-03-16 12:19:22 -0700 PDT (1 container statuses recorded) Mar 16 12:20:08.682: INFO: Container nginx ready: false, restart count 0 Mar 16 12:20:09.227: INFO: ERROR kubelet_docker_errors{operation_type="info"} =&gt; 1 @[0] Mar 16 12:20:09.228: INFO: ERROR kubelet_docker_errors{operation_type="inspect_image"} =&gt; 15 @[0] Mar 16 12:20:09.228: INFO: ERROR kubelet_docker_errors{operation_type="list_containers"} =&gt; 32 @[0] Mar 16 12:20:09.228: INFO: ERROR kubelet_docker_errors{operation_type="list_images"} =&gt; 6 @[0] Mar 16 12:20:09.228: INFO: ERROR kubelet_docker_errors{operation_type="stop_container"} =&gt; 4 @[0] Mar 16 12:20:09.228: INFO: ERROR kubelet_docker_errors{operation_type="version"} =&gt; 12 @[0] Mar 16 12:20:09.228: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-c7o2 Mar 16 12:20:09.228: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:41.159592s} Mar 16 12:20:09.228: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:40.012318s} Mar 16 12:20:09.228: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.012204s} Mar 16 12:20:09.228: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:32.814857s} Mar 16 12:20:09.228: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:32.814857s} Mar 16 12:20:09.228: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:32.778882s} Mar 16 12:20:09.228: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:31.69445s} Mar 16 12:20:09.228: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:31.345439s} Mar 16 12:20:09.228: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:31.345439s} Mar 16 12:20:09.228: INFO: Logging node info for node e2e-gce-builder-4-3-minion-h74l Mar 16 12:20:09.233: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-h74l /api/v1/nodes/e2e-gce-builder-4-3-minion-h74l 95e4ee91-ebab-11e5-94ab-42010af00002 1615 0 2016-03-16 12:16:29 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[builder-4: failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f kubernetes.io/hostname:e2e-gce-builder-4-3-minion-h74l beta.kubernetes.io/instance-type:n1-standard-2] map[]} {10.245.5.0/24 13922910527554352375 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-h74l false} {map[memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI} cpu:{2.000 DecimalSI}] map[pods:{110.000 DecimalSI} cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI}] [{OutOfDisk False 2016-03-16 12:20:08 -0700 PDT 2016-03-16 12:16:29 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:08 -0700 PDT 2016-03-16 12:17:17 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.3} {ExternalIP 104.197.85.60}] {{10250}} { C1B91124-0F14-312B-8627-BAB00828A5C6 dc807e14-ad07-4cef-b802-32f3c8c4d08b 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[gcr.io/google_containers/glbc:0.6.0] 229770249} {[gcr.io/google_containers/netexec:1.5] 7358440} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/netexec:1.4] 7297019} {[gcr.io/google_containers/elasticsearch:1.8] 410989305} {[gcr.io/google_containers/defaultbackend:1.0] 7513643} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/mounttest:0.2] 1752375} {[gcr.io/google_containers/pause:0.8.0] 241656} {[gcr.io/google_containers/serve_hostname:1.1] 4522409} {[gcr.io/google_containers/redis:e2e] 419003740} {[gcr.io/google_containers/nginx:1.7.9] 91664166}]}} Mar 16 12:20:09.233: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-h74l Mar 16 12:20:09.241: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-h74l Mar 16 12:20:09.280: INFO: mutability-test-gg1wk started at 2016-03-16 12:19:55 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.280: INFO: Container netexec ready: true, restart count 0 Mar 16 12:20:09.280: INFO: kube-proxy-e2e-gce-builder-4-3-minion-h74l started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.280: INFO: elasticsearch-logging-v1-q7y2f started at 2016-03-16 12:17:19 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.280: INFO: Container elasticsearch-logging ready: true, restart count 0 Mar 16 12:20:09.280: INFO: l7-lb-controller-v0.6.0-25t0o started at 2016-03-16 12:17:19 -0700 PDT (2 container statuses recorded) Mar 16 12:20:09.280: INFO: Container default-http-backend ready: true, restart count 0 Mar 16 12:20:09.280: INFO: Container l7-lb-controller ready: true, restart count 0 Mar 16 12:20:09.280: INFO: nodeport-test-w1ub0 started at 2016-03-16 12:19:42 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.280: INFO: Container netexec ready: true, restart count 0 Mar 16 12:20:09.280: INFO: netexec started at 2016-03-16 12:19:36 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.280: INFO: Container netexec ready: false, restart count 0 Mar 16 12:20:09.280: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-h74l started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.281: INFO: test-rolling-update-deployment-2583128681-py7p7 started at 2016-03-16 12:19:33 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.281: INFO: Container redis ready: true, restart count 0 Mar 16 12:20:09.281: INFO: my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e-kauzr started at 2016-03-16 12:19:50 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.281: INFO: Container my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e ready: true, restart count 0 Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type="info"} =&gt; 1 @[0] Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type="inspect_image"} =&gt; 19 @[0] Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type="list_containers"} =&gt; 32 @[0] Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type="list_images"} =&gt; 6 @[0] Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type="stop_container"} =&gt; 3 @[0] Mar 16 12:20:09.466: INFO: ERROR kubelet_docker_errors{operation_type="version"} =&gt; 12 @[0] Mar 16 12:20:09.466: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-h74l Mar 16 12:20:09.466: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:1m0.155039s} Mar 16 12:20:09.466: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:59.763067s} Mar 16 12:20:09.466: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:59.753069s} Mar 16 12:20:09.466: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:58.186227s} Mar 16 12:20:09.466: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:52.536215s} Mar 16 12:20:09.466: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:51.25003s} Mar 16 12:20:09.466: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:40.015213s} Mar 16 12:20:09.466: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.013567s} Mar 16 12:20:09.466: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:30.85301s} Mar 16 12:20:09.466: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.9 Latency:22.33817s} Mar 16 12:20:09.466: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.9 Latency:21.679325s} Mar 16 12:20:09.466: INFO: Logging node info for node e2e-gce-builder-4-3-minion-or77 Mar 16 12:20:09.470: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-or77 /api/v1/nodes/e2e-gce-builder-4-3-minion-or77 99d77966-ebab-11e5-94ab-42010af00002 1534 0 2016-03-16 12:16:35 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[failure-domain.beta.kubernetes.io/zone:us-central1-f kubernetes.io/hostname:e2e-gce-builder-4-3-minion-or77 beta.kubernetes.io/instance-type:n1-standard-2 builder-4: failure-domain.beta.kubernetes.io/region:us-central1] map[]} {10.245.6.0/24 12060484192874722186 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-or77 false} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI} cpu:{2.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:20:04 -0700 PDT 2016-03-16 12:16:35 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:04 -0700 PDT 2016-03-16 12:17:22 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.8} {ExternalIP 23.251.156.211}] {{10250}} { 684B0FA3-F92B-629A-26D4-0F3041A363DE c2f2107e-002a-4791-8373-768447b23096 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[redis:latest] 177586452} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/nettest:1.7] 24051275} {[gcr.io/google_containers/busybox:1.24] 1113554} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/portforwardtester:1.0] 2296329} {[gcr.io/google_containers/pause:0.8.0] 241656} {[&lt;none&gt;:&lt;none&gt;] 188300556} {[gcr.io/google_containers/update-demo:nautilus] 4555533} {[gcr.io/google_containers/nginx:1.7.9] 91664166}]}} Mar 16 12:20:09.470: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-or77 Mar 16 12:20:09.480: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-or77 Mar 16 12:20:09.529: INFO: kube-proxy-e2e-gce-builder-4-3-minion-or77 started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.529: INFO: pod-13627548-ebac-11e5-a2a6-42010af0000e started at 2016-03-16 12:19:59 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container test-container ready: false, restart count 0 Mar 16 12:20:09.529: INFO: update-demo-nautilus-kmv8c started at 2016-03-16 12:19:37 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container update-demo ready: true, restart count 0 Mar 16 12:20:09.529: INFO: test-rollover-deployment-2446224220-7m3ri started at 2016-03-16 12:19:59 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container redis ready: true, restart count 0 Mar 16 12:20:09.529: INFO: hostexec started at 2016-03-16 12:20:05 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container hostexec ready: true, restart count 0 Mar 16 12:20:09.529: INFO: test-rollover-controller-jm00e started at 2016-03-16 12:19:35 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container nginx ready: true, restart count 0 Mar 16 12:20:09.529: INFO: update-demo-nautilus-jvo95 started at 2016-03-16 12:19:36 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container update-demo ready: true, restart count 0 Mar 16 12:20:09.529: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-or77 started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.529: INFO: mutability-test-y4nt5 started at 2016-03-16 12:20:09 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container netexec ready: false, restart count 0 Mar 16 12:20:09.529: INFO: tester started at 2016-03-16 12:19:49 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container tester ready: true, restart count 0 Mar 16 12:20:09.529: INFO: scale-down-p480r started at 2016-03-16 12:19:28 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.529: INFO: Container c ready: true, restart count 0 Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type="info"} =&gt; 1 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type="inspect_image"} =&gt; 16 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type="list_containers"} =&gt; 32 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type="list_images"} =&gt; 6 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type="logs"} =&gt; 1 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type="stop_container"} =&gt; 3 @[0] Mar 16 12:20:09.768: INFO: ERROR kubelet_docker_errors{operation_type="version"} =&gt; 12 @[0] Mar 16 12:20:09.768: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-or77 Mar 16 12:20:09.768: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:41.412811s} Mar 16 12:20:09.768: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.017814s} Mar 16 12:20:09.768: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:26.177674s} Mar 16 12:20:09.768: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:25.654324s} Mar 16 12:20:09.768: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:25.075843s} Mar 16 12:20:09.768: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:24.521367s} Mar 16 12:20:09.768: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:24.317074s} Mar 16 12:20:09.768: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:23.343841s} Mar 16 12:20:09.768: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:11.983074s} Mar 16 12:20:09.768: INFO: Logging node info for node e2e-gce-builder-4-3-minion-tgot Mar 16 12:20:09.772: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-tgot /api/v1/nodes/e2e-gce-builder-4-3-minion-tgot 8d77529d-ebab-11e5-94ab-42010af00002 1501 0 2016-03-16 12:16:15 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[kubernetes.io/hostname:e2e-gce-builder-4-3-minion-tgot beta.kubernetes.io/instance-type:n1-standard-2 builder-4: failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f] map[]} {10.245.3.0/24 7315069135013650812 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-tgot false} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:20:02 -0700 PDT 2016-03-16 12:16:14 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:02 -0700 PDT 2016-03-16 12:17:01 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.4} {ExternalIP 104.197.211.215}] {{10250}} { 7F61EE4D-A146-0F54-23B9-11467DF53A75 9e9e8c1e-64e7-4b39-9a44-daceb629f065 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[gcr.io/google_containers/heapster:v1.0.0] 96204288} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/busybox:1.24] 1113554} {[gcr.io/google_containers/mounttest:0.6] 2084693} {[gcr.io/google_containers/mounttest-user:0.3] 1718853} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/pause:0.8.0] 241656} {[gcr.io/google_containers/redis:e2e] 419003740} {[gcr.io/google_containers/update-demo:nautilus] 4555533} {[gcr.io/google_containers/nginx:1.7.9] 91664166} {[gcr.io/google_containers/liveness:e2e] 4387474}]}} Mar 16 12:20:09.773: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-tgot Mar 16 12:20:09.782: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-tgot Mar 16 12:20:09.818: INFO: client-containers-15f05ad4-ebac-11e5-8bf2-42010af0000e started at 2016-03-16 12:20:03 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.818: INFO: Container test-container ready: false, restart count 0 Mar 16 12:20:09.818: INFO: test-rollover-controller-1g4h3 started at 2016-03-16 12:19:35 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.818: INFO: Container nginx ready: true, restart count 0 Mar 16 12:20:09.818: INFO: rand-non-local-11w02 started at 2016-03-16 12:20:04 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.819: INFO: Container c ready: false, restart count 0 Mar 16 12:20:09.819: INFO: rand-non-local-l2dn1 started at 2016-03-16 12:20:07 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.819: INFO: Container c ready: false, restart count 0 Mar 16 12:20:09.819: INFO: rand-non-local-aox3b started at 2016-03-16 12:20:09 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.819: INFO: Container c ready: false, restart count 0 Mar 16 12:20:09.819: INFO: kube-proxy-e2e-gce-builder-4-3-minion-tgot started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.819: INFO: heapster-v1.0.0-8x00h started at 2016-03-16 12:17:19 -0700 PDT (2 container statuses recorded) Mar 16 12:20:09.819: INFO: Container eventer ready: true, restart count 0 Mar 16 12:20:09.819: INFO: Container heapster ready: true, restart count 0 Mar 16 12:20:09.819: INFO: nginx started at 2016-03-16 12:20:02 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.819: INFO: Container nginx ready: false, restart count 0 Mar 16 12:20:09.819: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-tgot started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:09.819: INFO: nginx started at 2016-03-16 12:19:28 -0700 PDT (1 container statuses recorded) Mar 16 12:20:09.819: INFO: Container nginx ready: true, restart count 0 Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type="info"} =&gt; 1 @[0] Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type="inspect_image"} =&gt; 14 @[0] Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type="list_containers"} =&gt; 32 @[0] Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type="list_images"} =&gt; 6 @[0] Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type="stop_container"} =&gt; 8 @[0] Mar 16 12:20:10.074: INFO: ERROR kubelet_docker_errors{operation_type="version"} =&gt; 12 @[0] Mar 16 12:20:10.074: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-tgot Mar 16 12:20:10.074: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:41.259114s} Mar 16 12:20:10.074: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:40.013844s} Mar 16 12:20:10.074: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.013689s} Mar 16 12:20:10.074: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:24.479953s} Mar 16 12:20:10.074: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:24.45393s} Mar 16 12:20:10.074: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:24.435067s} Mar 16 12:20:10.074: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:23.744054s} Mar 16 12:20:10.074: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:21.581525s} Mar 16 12:20:10.074: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:19.432044s} Mar 16 12:20:10.074: INFO: Logging node info for node e2e-gce-builder-4-3-minion-w0dx Mar 16 12:20:10.082: INFO: Node Info: &amp;{{ } {e2e-gce-builder-4-3-minion-w0dx /api/v1/nodes/e2e-gce-builder-4-3-minion-w0dx 8e5b8285-ebab-11e5-94ab-42010af00002 1511 0 2016-03-16 12:16:16 -0700 PDT &lt;nil&gt; &lt;nil&gt; map[beta.kubernetes.io/instance-type:n1-standard-2 builder-4: failure-domain.beta.kubernetes.io/region:us-central1 failure-domain.beta.kubernetes.io/zone:us-central1-f kubernetes.io/hostname:e2e-gce-builder-4-3-minion-w0dx] map[]} {10.245.4.0/24 6267779568652324074 gce://kubernetes-jenkins-pull/us-central1-f/e2e-gce-builder-4-3-minion-w0dx false} {map[cpu:{2.000 DecimalSI} memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI}] map[memory:{7864139776.000 BinarySI} pods:{110.000 DecimalSI} cpu:{2.000 DecimalSI}] [{OutOfDisk False 2016-03-16 12:20:03 -0700 PDT 2016-03-16 12:16:16 -0700 PDT KubeletHasSufficientDisk kubelet has sufficient disk space available} {Ready True 2016-03-16 12:20:03 -0700 PDT 2016-03-16 12:17:01 -0700 PDT KubeletReady kubelet is posting ready status. WARNING: CPU hardcapping unsupported}] [{InternalIP 10.240.0.7} {ExternalIP 146.148.97.148}] {{10250}} { 2932BDE0-F4C9-9E4D-3A67-28A296BA1D30 4bcacbeb-a408-42d4-a288-2f6fe40d3345 3.16.0-4-amd64 Debian GNU/Linux 7 (wheezy) docker://1.9.1 v1.3.0-alpha.0.571+82d5b0f237b6c8 v1.3.0-alpha.0.571+82d5b0f237b6c8} [{[gcr.io/google_containers/kube-proxy:3c91322614c3fbd2f5cbce55f1484f56] 165640165} {[gcr.io/google_containers/kubernetes-dashboard-amd64:v1.0.0] 40688848} {[gcr.io/google_containers/heapster_grafana:v2.6.0-2] 230092866} {[gcr.io/google_containers/fluentd-elasticsearch:1.15] 562043967} {[gcr.io/google_containers/busybox:1.24] 1113554} {[gcr.io/google_containers/elasticsearch:1.8] 410989305} {[gcr.io/google_containers/mounttest:0.6] 2084693} {[gcr.io/google_containers/hostexec:1.2] 13209617} {[gcr.io/google_containers/pause:2.0] 350164} {[gcr.io/google_containers/heapster_influxdb:v0.5] 251005705} {[gcr.io/google_containers/jessie-dnsutils:e2e] 190148402} {[gcr.io/google_containers/dnsutils:e2e] 141895666} {[gcr.io/google_containers/pause:0.8.0] 241656} {[gcr.io/google_containers/serve_hostname:1.1] 4522409} {[gcr.io/google_containers/nginx:1.7.9] 91664166} {[gcr.io/google_containers/test-webserver:e2e] 4534272}]}} Mar 16 12:20:10.082: INFO: Logging kubelet events for node e2e-gce-builder-4-3-minion-w0dx Mar 16 12:20:10.090: INFO: Logging pods the kubelet thinks is on node e2e-gce-builder-4-3-minion-w0dx Mar 16 12:20:10.134: INFO: monitoring-influxdb-grafana-v3-su8ak started at 2016-03-16 12:17:19 -0700 PDT (2 container statuses recorded) Mar 16 12:20:10.135: INFO: Container grafana ready: true, restart count 0 Mar 16 12:20:10.135: INFO: Container influxdb ready: true, restart count 0 Mar 16 12:20:10.135: INFO: scale-down-z2l1p started at 2016-03-16 12:19:21 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container c ready: true, restart count 0 Mar 16 12:20:10.135: INFO: my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e-0klsj started at 2016-03-16 12:19:50 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container my-hostname-basic-0e0c570f-ebac-11e5-87e7-42010af0000e ready: true, restart count 0 Mar 16 12:20:10.135: INFO: liveness-exec started at 2016-03-16 12:19:54 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container liveness ready: true, restart count 0 Mar 16 12:20:10.135: INFO: kube-proxy-e2e-gce-builder-4-3-minion-w0dx started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:10.135: INFO: kubernetes-dashboard-v1.0.0-ienpj started at 2016-03-16 12:17:19 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container kubernetes-dashboard ready: true, restart count 0 Mar 16 12:20:10.135: INFO: test-webserver-13c988b5-ebac-11e5-8c3f-42010af0000e started at 2016-03-16 12:20:00 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container test-webserber ready: false, restart count 0 Mar 16 12:20:10.135: INFO: hostexec started at 2016-03-16 12:19:56 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container hostexec ready: true, restart count 0 Mar 16 12:20:10.135: INFO: fluentd-elasticsearch-e2e-gce-builder-4-3-minion-w0dx started at &lt;nil&gt; (0 container statuses recorded) Mar 16 12:20:10.135: INFO: elasticsearch-logging-v1-b650i started at 2016-03-16 12:17:19 -0700 PDT (1 container statuses recorded) Mar 16 12:20:10.135: INFO: Container elasticsearch-logging ready: true, restart count 0 Mar 16 12:20:10.356: INFO: ERROR kubelet_docker_errors{operation_type="info"} =&gt; 1 @[0] Mar 16 12:20:10.356: INFO: ERROR kubelet_docker_errors{operation_type="inspect_image"} =&gt; 16 @[0] Mar 16 12:20:10.357: INFO: ERROR kubelet_docker_errors{operation_type="list_containers"} =&gt; 32 @[0] Mar 16 12:20:10.357: INFO: ERROR kubelet_docker_errors{operation_type="list_images"} =&gt; 6 @[0] Mar 16 12:20:10.357: INFO: ERROR kubelet_docker_errors{operation_type="version"} =&gt; 12 @[0] Mar 16 12:20:10.357: INFO: Latency metrics for node e2e-gce-builder-4-3-minion-w0dx Mar 16 12:20:10.357: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.99 Latency:50.286722s} Mar 16 12:20:10.357: INFO: {Operation: Method:pod_start_latency_microseconds Quantile:0.9 Latency:40.136159s} Mar 16 12:20:10.357: INFO: {Operation: Method:pod_worker_start_latency_microseconds Quantile:0.99 Latency:40.013843s} Mar 16 12:20:10.357: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.99 Latency:39.54455s} Mar 16 12:20:10.357: INFO: {Operation:SyncPod Method:container_manager_latency_microseconds Quantile:0.99 Latency:39.537679s} Mar 16 12:20:10.357: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.99 Latency:35.942497s} Mar 16 12:20:10.357: INFO: {Operation:create Method:pod_worker_latency_microseconds Quantile:0.9 Latency:34.291256s} Mar 16 12:20:10.357: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.99 Latency:33.107967s} Mar 16 12:20:10.357: INFO: {Operation:pull_image Method:docker_operations_latency_microseconds Quantile:0.9 Latency:32.442493s} Mar 16 12:20:10.357: INFO: {Operation:sync Method:pod_worker_latency_microseconds Quantile:0.9 Latency:12.614231s} Mar 16 12:20:10.357: INFO: Waiting up to 1m0s for all nodes to be ready STEP: Destroying namespace "e2e-tests-kubectl-nty7t" for this suite. Ò€’ Failure [74.999 seconds] [k8s.io] Kubectl client /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework.go:420 [k8s.io] Update Demo /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/framework.go:420 should do a rolling update of a replication controller [Conformance] [It] /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/kubectl.go:159 Expected error: &lt;*errors.errorString | 0xc2085a1860&gt;: { s: "Error running &amp;{/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.197.94.145 --kubeconfig=/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config get pods update-demo-nautilus-kmv8c -o template --template={{if (exists . \"status\" \"containerStatuses\")}}{{range .status.containerStatuses}}{{if (and (eq .name \"update-demo\") (exists . \"state\" \"running\"))}}true{{end}}{{end}}{{end}} --api-version=v1 --namespace=e2e-tests-kubectl-nty7t] [] &lt;nil&gt; Flag --api-version has been deprecated, flag is no longer respected and will be deleted in the next release\nUnable to connect to the server: dial tcp 104.197.94.145:443: i/o timeout\n [] &lt;nil&gt; 0xc208572f00 exit status 1 &lt;nil&gt; true [0xc2083c43c0 0xc2083c43e0 0xc2083c4408] [0xc2083c43c0 0xc2083c43e0 0xc2083c4408] [0xc2083c43d8 0xc2083c4400] [0x962b80 0x962b80] 0xc208487800}:\nCommand stdout:\n\nstderr:\nFlag --api-version has been deprecated, flag is no longer respected and will be deleted in the next release\nUnable to connect to the server: dial tcp 104.197.94.145:443: i/o timeout\n\nerror:\nexit status 1\n", } Error running &amp;{/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/kubernetes/platforms/linux/amd64/kubectl [kubectl --server=https://104.197.94.145 --kubeconfig=/var/lib/jenkins/workspace/kubernetes-pull-build-test-e2e-gce/.kube/config get pods update-demo-nautilus-kmv8c -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}} --api-version=v1 --namespace=e2e-tests-kubectl-nty7t] [] &lt;nil&gt; Flag --api-version has been deprecated, flag is no longer respected and will be deleted in the next release Unable to connect to the server: dial tcp 104.197.94.145:443: i/o timeout [] &lt;nil&gt; 0xc208572f00 exit status 1 &lt;nil&gt; true [0xc2083c43c0 0xc2083c43e0 0xc2083c4408] [0xc2083c43c0 0xc2083c43e0 0xc2083c4408] [0xc2083c43d8 0xc2083c4400] [0x962b80 0x962b80] 0xc208487800}: Command stdout: stderr: Flag --api-version has been deprecated, flag is no longer respected and will be deleted in the next release Unable to connect to the server: dial tcp 104.197.94.145:443: i/o timeout error: exit status 1 not to have occurred /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/util.go:1591 </code></pre></div> <p dir="auto">Test logs: <a href="https://console.developers.google.com/storage/browser/kubernetes-jenkins/pr-logs/pull/23068/kubernetes-pull-build-test-e2e-gce/32824/artifacts/" rel="nofollow">https://console.developers.google.com/storage/browser/kubernetes-jenkins/pr-logs/pull/23068/kubernetes-pull-build-test-e2e-gce/32824/artifacts/</a></p>
1
<p dir="auto">Hi,</p> <p dir="auto">As described in this <a href="https://github.com/denoland/deno_std/issues/543#issuecomment-541817552" data-hovercard-type="issue" data-hovercard-url="/denoland/deno_std/issues/543/hovercard">issue</a>, when I run <code class="notranslate">cargo test</code> I receive this output:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="FAILED (errors=1) ', cli/tests/util/mod.rs:34:5 stack backtrace: 0: backtrace::backtrace::libunwind::trace at /Users/vsts/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/libunwind.rs:88 1: backtrace::backtrace::trace_unsynchronized at /Users/vsts/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/mod.rs:66 2: std::sys_common::backtrace::_print at src/libstd/sys_common/backtrace.rs:47 3: std::sys_common::backtrace::print at src/libstd/sys_common/backtrace.rs:36 4: std::panicking::default_hook::{{closure}} at src/libstd/panicking.rs:200 5: std::panicking::default_hook at src/libstd/panicking.rs:211 6: std::panicking::rust_panic_with_hook at src/libstd/panicking.rs:477 7: std::panicking::continue_panic_fmt at src/libstd/panicking.rs:384 8: std::thread::local::fast::Key&lt;T&gt;::try_initialize 9: integration_tests::util::run_python_script at cli/tests/util/mod.rs:34 10: integration_tests::fmt_test at cli/tests/integration_tests.rs:32 11: integration_tests::fmt_test::{{closure}} at cli/tests/integration_tests.rs:30 12: core::ops::function::FnOnce::call_once at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libcore/ops/function.rs:235 13: &lt;alloc::boxed::Box&lt;F&gt; as core::ops::function::FnOnce&lt;A&gt;&gt;::call_once at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/liballoc/boxed.rs:787 14: __rust_maybe_catch_panic at src/libpanic_unwind/lib.rs:80 15: std::panicking::try at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libstd/panicking.rs:275 16: std::panic::catch_unwind at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libstd/panic.rs:394 17: test::run_test::run_test_inner::{{closure}} at src/libtest/lib.rs:1408 note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. ---- js_unit_tests stdout ---- thread 'js_unit_tests' panicked at 'called `Result::unwrap()` on an `Err` value: &quot;PoisonError { inner: .. }&quot;', src/libcore/result.rs:1084:5 stack backtrace: 0: backtrace::backtrace::libunwind::trace at /Users/vsts/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/libunwind.rs:88 1: backtrace::backtrace::trace_unsynchronized at /Users/vsts/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/mod.rs:66 2: std::sys_common::backtrace::_print at src/libstd/sys_common/backtrace.rs:47 3: std::sys_common::backtrace::print at src/libstd/sys_common/backtrace.rs:36 4: std::panicking::default_hook::{{closure}} at src/libstd/panicking.rs:200 5: std::panicking::default_hook at src/libstd/panicking.rs:211 6: std::panicking::rust_panic_with_hook at src/libstd/panicking.rs:477 7: std::panicking::continue_panic_fmt at src/libstd/panicking.rs:384 8: rust_begin_unwind at src/libstd/panicking.rs:311 9: std::panicking::begin_panic 10: std::panicking::begin_panic 11: core::result::Result&lt;T,E&gt;::unwrap at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libcore/result.rs:852 12: deno_cli::test_util::http_server at cli/test_util.rs:62 13: integration_tests::js_unit_tests at cli/tests/integration_tests.rs:38 14: integration_tests::js_unit_tests::{{closure}} at cli/tests/integration_tests.rs:37 15: core::ops::function::FnOnce::call_once at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libcore/ops/function.rs:235 16: &lt;alloc::boxed::Box&lt;F&gt; as core::ops::function::FnOnce&lt;A&gt;&gt;::call_once at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/liballoc/boxed.rs:787 17: __rust_maybe_catch_panic at src/libpanic_unwind/lib.rs:80 18: std::panicking::try at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libstd/panicking.rs:275 19: std::panic::catch_unwind at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libstd/panic.rs:394 20: test::run_test::run_test_inner::{{closure}} at src/libtest/lib.rs:1408 note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace."><pre class="notranslate"><code class="notranslate">FAILED (errors=1) ', cli/tests/util/mod.rs:34:5 stack backtrace: 0: backtrace::backtrace::libunwind::trace at /Users/vsts/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/libunwind.rs:88 1: backtrace::backtrace::trace_unsynchronized at /Users/vsts/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/mod.rs:66 2: std::sys_common::backtrace::_print at src/libstd/sys_common/backtrace.rs:47 3: std::sys_common::backtrace::print at src/libstd/sys_common/backtrace.rs:36 4: std::panicking::default_hook::{{closure}} at src/libstd/panicking.rs:200 5: std::panicking::default_hook at src/libstd/panicking.rs:211 6: std::panicking::rust_panic_with_hook at src/libstd/panicking.rs:477 7: std::panicking::continue_panic_fmt at src/libstd/panicking.rs:384 8: std::thread::local::fast::Key&lt;T&gt;::try_initialize 9: integration_tests::util::run_python_script at cli/tests/util/mod.rs:34 10: integration_tests::fmt_test at cli/tests/integration_tests.rs:32 11: integration_tests::fmt_test::{{closure}} at cli/tests/integration_tests.rs:30 12: core::ops::function::FnOnce::call_once at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libcore/ops/function.rs:235 13: &lt;alloc::boxed::Box&lt;F&gt; as core::ops::function::FnOnce&lt;A&gt;&gt;::call_once at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/liballoc/boxed.rs:787 14: __rust_maybe_catch_panic at src/libpanic_unwind/lib.rs:80 15: std::panicking::try at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libstd/panicking.rs:275 16: std::panic::catch_unwind at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libstd/panic.rs:394 17: test::run_test::run_test_inner::{{closure}} at src/libtest/lib.rs:1408 note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. ---- js_unit_tests stdout ---- thread 'js_unit_tests' panicked at 'called `Result::unwrap()` on an `Err` value: "PoisonError { inner: .. }"', src/libcore/result.rs:1084:5 stack backtrace: 0: backtrace::backtrace::libunwind::trace at /Users/vsts/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/libunwind.rs:88 1: backtrace::backtrace::trace_unsynchronized at /Users/vsts/.cargo/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.34/src/backtrace/mod.rs:66 2: std::sys_common::backtrace::_print at src/libstd/sys_common/backtrace.rs:47 3: std::sys_common::backtrace::print at src/libstd/sys_common/backtrace.rs:36 4: std::panicking::default_hook::{{closure}} at src/libstd/panicking.rs:200 5: std::panicking::default_hook at src/libstd/panicking.rs:211 6: std::panicking::rust_panic_with_hook at src/libstd/panicking.rs:477 7: std::panicking::continue_panic_fmt at src/libstd/panicking.rs:384 8: rust_begin_unwind at src/libstd/panicking.rs:311 9: std::panicking::begin_panic 10: std::panicking::begin_panic 11: core::result::Result&lt;T,E&gt;::unwrap at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libcore/result.rs:852 12: deno_cli::test_util::http_server at cli/test_util.rs:62 13: integration_tests::js_unit_tests at cli/tests/integration_tests.rs:38 14: integration_tests::js_unit_tests::{{closure}} at cli/tests/integration_tests.rs:37 15: core::ops::function::FnOnce::call_once at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libcore/ops/function.rs:235 16: &lt;alloc::boxed::Box&lt;F&gt; as core::ops::function::FnOnce&lt;A&gt;&gt;::call_once at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/liballoc/boxed.rs:787 17: __rust_maybe_catch_panic at src/libpanic_unwind/lib.rs:80 18: std::panicking::try at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libstd/panicking.rs:275 19: std::panic::catch_unwind at /rustc/625451e376bb2e5283fc4741caa0a3e8a2ca4d54/src/libstd/panic.rs:394 20: test::run_test::run_test_inner::{{closure}} at src/libtest/lib.rs:1408 note: Some details are omitted, run with `RUST_BACKTRACE=full` for a verbose backtrace. </code></pre></div> <p dir="auto">My <code class="notranslate">cargo --version</code> is <code class="notranslate">cargo 1.38.0 (23ef9a4ef 2019-08-20)</code> &amp; <code class="notranslate">rustc --version</code> is <code class="notranslate">rustc 1.38.0 (625451e37 2019-09-23)</code>.</p> <p dir="auto">I also get this error earlier in the format test (<code class="notranslate">python2 tools/format.py</code> passes) and that is where the panic occurs:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;tools/fmt_test.py&quot;, line 31, in test_fmt quiet=True) File &quot;/Users/usrname/Documents/deno/tools/util.py&quot;, line 99, in run_output sys.exit(retcode) SystemExit: -4"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "tools/fmt_test.py", line 31, in test_fmt quiet=True) File "/Users/usrname/Documents/deno/tools/util.py", line 99, in run_output sys.exit(retcode) SystemExit: -4 </code></pre></div> <p dir="auto">I don't know enough about the logic of <code class="notranslate">util.py</code> to know why this is being thrown from L99 but it's in the <code class="notranslate">run_output</code> function.</p>
<p dir="auto"><g-emoji class="g-emoji" alias="slightly_frowning_face" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f641.png">πŸ™</g-emoji></p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tmnk@buildDeno:~/deno$ ./target/debug/deno fmt badly_formatted.js Download https://deno.land/std@8c90bd9/prettier/vendor/standalone.js Download https://deno.land/std@8c90bd9/prettier/vendor/parser_typescript.js Download https://deno.land/std@8c90bd9/prettier/vendor/parser_markdown.js # # Fatal error in ../../core/libdeno/v8/src/parsing/preparser.h, line 1076 # Debug check failed: !parsing_module_. # # # #FailureMessage Object: 0x7eff75515cc0 ==== C stack trace =============================== ./target/debug/deno(+0x286acb3) [0x55aadeed1cb3] ./target/debug/deno(+0x273e52b) [0x55aadeda552b] ./target/debug/deno(+0x1e6e648) [0x55aade4d5648] ./target/debug/deno(+0x1e6e375) [0x55aade4d5375] ./target/debug/deno(+0x1adf30f) [0x55aade14630f] ./target/debug/deno(+0x1a7927e) [0x55aade0e027e] ./target/debug/deno(+0x1a7b081) [0x55aade0e2081] ./target/debug/deno(+0x1a7abd0) [0x55aade0e1bd0] ./target/debug/deno(+0x1ad1346) [0x55aade138346] ./target/debug/deno(+0x1acf856) [0x55aade136856] ./target/debug/deno(+0x1ad6f14) [0x55aade13df14] ./target/debug/deno(+0x1ad68a6) [0x55aade13d8a6] ./target/debug/deno(+0x1ad4ee4) [0x55aade13bee4] ./target/debug/deno(+0x1ad63f0) [0x55aade13d3f0] ./target/debug/deno(+0x1ad4fea) [0x55aade13bfea] ./target/debug/deno(+0x1ad2753) [0x55aade139753] ./target/debug/deno(+0x1adf556) [0x55aade146556] ./target/debug/deno(+0x1addc1e) [0x55aade144c1e] ./target/debug/deno(+0x1a7927e) [0x55aade0e027e] ./target/debug/deno(+0x1a7b081) [0x55aade0e2081] ./target/debug/deno(+0x1a7abd0) [0x55aade0e1bd0] ./target/debug/deno(+0x1ad1346) [0x55aade138346] ./target/debug/deno(+0x1acf856) [0x55aade136856] ./target/debug/deno(+0x1ad6f14) [0x55aade13df14] ./target/debug/deno(+0x1ad68a6) [0x55aade13d8a6] ./target/debug/deno(+0x1ad4ee4) [0x55aade13bee4] ./target/debug/deno(+0x1ad45b4) [0x55aade13b5b4] ./target/debug/deno(+0x1aced95) [0x55aade135d95] ./target/debug/deno(+0x1ad6f78) [0x55aade13df78] ./target/debug/deno(+0x1ad68a6) [0x55aade13d8a6] ./target/debug/deno(+0x1ad4ee4) [0x55aade13bee4] ./target/debug/deno(+0x1ad63f0) [0x55aade13d3f0] ./target/debug/deno(+0x1adb37b) [0x55aade14237b] ./target/debug/deno(+0x1acc833) [0x55aade133833] ./target/debug/deno(+0x1a7927e) [0x55aade0e027e] ./target/debug/deno(+0x1a7b081) [0x55aade0e2081] ./target/debug/deno(+0x1a7abd0) [0x55aade0e1bd0] ./target/debug/deno(+0x1ad1346) [0x55aade138346] ./target/debug/deno(+0x1acf856) [0x55aade136856] ./target/debug/deno(+0x1ad6f14) [0x55aade13df14] ./target/debug/deno(+0x1ad68a6) [0x55aade13d8a6] ./target/debug/deno(+0x1ad4ee4) [0x55aade13bee4] ./target/debug/deno(+0x1ad45b4) [0x55aade13b5b4] ./target/debug/deno(+0x1aced95) [0x55aade135d95] ./target/debug/deno(+0x1ad6f78) [0x55aade13df78] ./target/debug/deno(+0x1ad68a6) [0x55aade13d8a6] ./target/debug/deno(+0x1ad4ee4) [0x55aade13bee4] ./target/debug/deno(+0x1ad63f0) [0x55aade13d3f0] ./target/debug/deno(+0x1adb37b) [0x55aade14237b] ./target/debug/deno(+0x1acc833) [0x55aade133833] ./target/debug/deno(+0x1a7927e) [0x55aade0e027e] ./target/debug/deno(+0x1a7a423) [0x55aade0e1423] ./target/debug/deno(+0x1a798e0) [0x55aade0e08e0] ./target/debug/deno(+0x284c271) [0x55aadeeb3271] ./target/debug/deno(+0x284155b) [0x55aadeea855b] ./target/debug/deno(+0x2859c4d) [0x55aadeec0c4d] ./target/debug/deno(+0x2858284) [0x55aadeebf284] ./target/debug/deno(+0x2856a34) [0x55aadeebda34] ./target/debug/deno(+0x2855e46) [0x55aadeebce46] ./target/debug/deno(+0x28548e0) [0x55aadeebb8e0] ./target/debug/deno(+0x285bf35) [0x55aadeec2f35] ./target/debug/deno(+0x2857615) [0x55aadeebe615] Illegal instruction (core dumped)"><pre class="notranslate"><code class="notranslate">tmnk@buildDeno:~/deno$ ./target/debug/deno fmt badly_formatted.js Download https://deno.land/std@8c90bd9/prettier/vendor/standalone.js Download https://deno.land/std@8c90bd9/prettier/vendor/parser_typescript.js Download https://deno.land/std@8c90bd9/prettier/vendor/parser_markdown.js # # Fatal error in ../../core/libdeno/v8/src/parsing/preparser.h, line 1076 # Debug check failed: !parsing_module_. # # # #FailureMessage Object: 0x7eff75515cc0 ==== C stack trace =============================== ./target/debug/deno(+0x286acb3) [0x55aadeed1cb3] ./target/debug/deno(+0x273e52b) [0x55aadeda552b] ./target/debug/deno(+0x1e6e648) [0x55aade4d5648] ./target/debug/deno(+0x1e6e375) [0x55aade4d5375] ./target/debug/deno(+0x1adf30f) [0x55aade14630f] ./target/debug/deno(+0x1a7927e) [0x55aade0e027e] ./target/debug/deno(+0x1a7b081) [0x55aade0e2081] ./target/debug/deno(+0x1a7abd0) [0x55aade0e1bd0] ./target/debug/deno(+0x1ad1346) [0x55aade138346] ./target/debug/deno(+0x1acf856) [0x55aade136856] ./target/debug/deno(+0x1ad6f14) [0x55aade13df14] ./target/debug/deno(+0x1ad68a6) [0x55aade13d8a6] ./target/debug/deno(+0x1ad4ee4) [0x55aade13bee4] ./target/debug/deno(+0x1ad63f0) [0x55aade13d3f0] ./target/debug/deno(+0x1ad4fea) [0x55aade13bfea] ./target/debug/deno(+0x1ad2753) [0x55aade139753] ./target/debug/deno(+0x1adf556) [0x55aade146556] ./target/debug/deno(+0x1addc1e) [0x55aade144c1e] ./target/debug/deno(+0x1a7927e) [0x55aade0e027e] ./target/debug/deno(+0x1a7b081) [0x55aade0e2081] ./target/debug/deno(+0x1a7abd0) [0x55aade0e1bd0] ./target/debug/deno(+0x1ad1346) [0x55aade138346] ./target/debug/deno(+0x1acf856) [0x55aade136856] ./target/debug/deno(+0x1ad6f14) [0x55aade13df14] ./target/debug/deno(+0x1ad68a6) [0x55aade13d8a6] ./target/debug/deno(+0x1ad4ee4) [0x55aade13bee4] ./target/debug/deno(+0x1ad45b4) [0x55aade13b5b4] ./target/debug/deno(+0x1aced95) [0x55aade135d95] ./target/debug/deno(+0x1ad6f78) [0x55aade13df78] ./target/debug/deno(+0x1ad68a6) [0x55aade13d8a6] ./target/debug/deno(+0x1ad4ee4) [0x55aade13bee4] ./target/debug/deno(+0x1ad63f0) [0x55aade13d3f0] ./target/debug/deno(+0x1adb37b) [0x55aade14237b] ./target/debug/deno(+0x1acc833) [0x55aade133833] ./target/debug/deno(+0x1a7927e) [0x55aade0e027e] ./target/debug/deno(+0x1a7b081) [0x55aade0e2081] ./target/debug/deno(+0x1a7abd0) [0x55aade0e1bd0] ./target/debug/deno(+0x1ad1346) [0x55aade138346] ./target/debug/deno(+0x1acf856) [0x55aade136856] ./target/debug/deno(+0x1ad6f14) [0x55aade13df14] ./target/debug/deno(+0x1ad68a6) [0x55aade13d8a6] ./target/debug/deno(+0x1ad4ee4) [0x55aade13bee4] ./target/debug/deno(+0x1ad45b4) [0x55aade13b5b4] ./target/debug/deno(+0x1aced95) [0x55aade135d95] ./target/debug/deno(+0x1ad6f78) [0x55aade13df78] ./target/debug/deno(+0x1ad68a6) [0x55aade13d8a6] ./target/debug/deno(+0x1ad4ee4) [0x55aade13bee4] ./target/debug/deno(+0x1ad63f0) [0x55aade13d3f0] ./target/debug/deno(+0x1adb37b) [0x55aade14237b] ./target/debug/deno(+0x1acc833) [0x55aade133833] ./target/debug/deno(+0x1a7927e) [0x55aade0e027e] ./target/debug/deno(+0x1a7a423) [0x55aade0e1423] ./target/debug/deno(+0x1a798e0) [0x55aade0e08e0] ./target/debug/deno(+0x284c271) [0x55aadeeb3271] ./target/debug/deno(+0x284155b) [0x55aadeea855b] ./target/debug/deno(+0x2859c4d) [0x55aadeec0c4d] ./target/debug/deno(+0x2858284) [0x55aadeebf284] ./target/debug/deno(+0x2856a34) [0x55aadeebda34] ./target/debug/deno(+0x2855e46) [0x55aadeebce46] ./target/debug/deno(+0x28548e0) [0x55aadeebb8e0] ./target/debug/deno(+0x285bf35) [0x55aadeec2f35] ./target/debug/deno(+0x2857615) [0x55aadeebe615] Illegal instruction (core dumped) </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tmnk@buildDeno:~/deno$ cat badly_formatted.js console.log( &quot;Hello World&quot; )"><pre class="notranslate"><code class="notranslate">tmnk@buildDeno:~/deno$ cat badly_formatted.js console.log( "Hello World" ) </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="tmnk@buildDeno:~/deno$ cat /proc/version Linux version 5.0.0-1018-azure (buildd@lgw01-amd64-048) (gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)) #19~18.04.1-Ubuntu SMP Wed Aug 21 05:13:05 UTC 2019"><pre class="notranslate"><code class="notranslate">tmnk@buildDeno:~/deno$ cat /proc/version Linux version 5.0.0-1018-azure (buildd@lgw01-amd64-048) (gcc version 7.4.0 (Ubuntu 7.4.0-1ubuntu1~18.04.1)) #19~18.04.1-Ubuntu SMP Wed Aug 21 05:13:05 UTC 2019 </code></pre></div>
1
<p dir="auto">I would like the following to work:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; x, ys... = (1,2,3) ERROR: syntax: invalid assignment location &quot;ys...&quot;"><pre class="notranslate"><code class="notranslate">julia&gt; x, ys... = (1,2,3) ERROR: syntax: invalid assignment location "ys..." </code></pre></div> <p dir="auto">This would also let us write function signatures like:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="julia&gt; foo((a, bs...), c, ds...) = bs ERROR: syntax: invalid assignment location &quot;bs...&quot;"><pre class="notranslate"><code class="notranslate">julia&gt; foo((a, bs...), c, ds...) = bs ERROR: syntax: invalid assignment location "bs..." </code></pre></div> <p dir="auto">Which would be useful for e.g. <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="564218882" data-permission-text="Title is private" data-url="https://github.com/JuliaDiff/ChainRulesCore.jl/issues/128" data-hovercard-type="issue" data-hovercard-url="/JuliaDiff/ChainRulesCore.jl/issues/128/hovercard?comment_id=586716291&amp;comment_type=issue_comment" href="https://github.com/JuliaDiff/ChainRulesCore.jl/issues/128#issuecomment-586716291">JuliaDiff/ChainRulesCore.jl#128 (comment)</a></p>
<p dir="auto">This would be a very nice syntax for taking head and rest. Likewise <code class="notranslate">a..., b = [1,2,3]</code> might be good for slurping the initial elements into <code class="notranslate">a</code> and the tail element into <code class="notranslate">b</code>.</p>
1
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/en/challenges/jquery/target-html-elements-with-selectors-using-jquery" rel="nofollow">target-html-elements-with-selectors-using-jquery</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/601.7.8</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <p dir="auto">I have completed this challenge successfully but am not able to move forward after hitting "submit" in the (newly formatted?) black ribbon strip.</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" &lt;script&gt; $(document).ready(function() { $(&quot;button&quot;).addClass(&quot;animated bounce&quot;); }); &lt;/script&gt; &lt;!-- Only change code above this line. --&gt; &lt;div class=&quot;container-fluid&quot;&gt; &lt;h3 class=&quot;text-primary text-center&quot;&gt;jQuery Playground&lt;/h3&gt; &lt;div class=&quot;row&quot;&gt; &lt;div class=&quot;col-xs-6&quot;&gt; &lt;h4&gt;#left-well&lt;/h4&gt; &lt;div class=&quot;well&quot; id=&quot;left-well&quot;&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target1&quot;&gt;#target1&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target2&quot;&gt;#target2&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target3&quot;&gt;#target3&lt;/button&gt; &lt;/div&gt; &lt;/div&gt; &lt;div class=&quot;col-xs-6&quot;&gt; &lt;h4&gt;#right-well&lt;/h4&gt; &lt;div class=&quot;well&quot; id=&quot;right-well&quot;&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target4&quot;&gt;#target4&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target5&quot;&gt;#target5&lt;/button&gt; &lt;button class=&quot;btn btn-default target&quot; id=&quot;target6&quot;&gt;#target6&lt;/button&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; &lt;/div&gt; ``` "><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">script</span><span class="pl-kos">&gt;</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-smi">document</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">ready</span><span class="pl-kos">(</span><span class="pl-k">function</span><span class="pl-kos">(</span><span class="pl-kos">)</span> <span class="pl-kos">{</span> <span class="pl-en">$</span><span class="pl-kos">(</span><span class="pl-s">"button"</span><span class="pl-kos">)</span><span class="pl-kos">.</span><span class="pl-en">addClass</span><span class="pl-kos">(</span><span class="pl-s">"animated bounce"</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">}</span><span class="pl-kos">)</span><span class="pl-kos">;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">script</span><span class="pl-kos">&gt;</span> <span class="pl-c">&lt;!-- Only change code above this line. --&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">container-fluid</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h3</span> <span class="pl-c1">class</span>="<span class="pl-s">text-primary text-center</span>"<span class="pl-kos">&gt;</span>jQuery Playground<span class="pl-kos">&lt;/</span><span class="pl-ent">h3</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">row</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-6</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span>#left-well<span class="pl-kos">&lt;/</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">left-well</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target1</span>"<span class="pl-kos">&gt;</span>#target1<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target2</span>"<span class="pl-kos">&gt;</span>#target2<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target3</span>"<span class="pl-kos">&gt;</span>#target3<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">col-xs-6</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span>#right-well<span class="pl-kos">&lt;/</span><span class="pl-ent">h4</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">div</span> <span class="pl-c1">class</span>="<span class="pl-s">well</span>" <span class="pl-c1">id</span>="<span class="pl-s">right-well</span>"<span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target4</span>"<span class="pl-kos">&gt;</span>#target4<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target5</span>"<span class="pl-kos">&gt;</span>#target5<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;</span><span class="pl-ent">button</span> <span class="pl-c1">class</span>="<span class="pl-s">btn btn-default target</span>" <span class="pl-c1">id</span>="<span class="pl-s">target6</span>"<span class="pl-kos">&gt;</span>#target6<span class="pl-kos">&lt;/</span><span class="pl-ent">button</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> <span class="pl-kos">&lt;/</span><span class="pl-ent">div</span><span class="pl-kos">&gt;</span> ```</pre></div>
<p dir="auto">Challenge <a href="https://www.freecodecamp.com/en/challenges/html5-and-css/use-rgb-values-to-color-elements" rel="nofollow">use-rgb-values-to-color-elements</a> has an issue.<br> User Agent is: <code class="notranslate">Mozilla/5.0 (Windows NT 6.1; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0</code>.<br> Please describe how to reproduce this issue, and include links to screenshots if possible.</p> <div class="highlight highlight-text-html-basic notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content=" &lt;style&gt; body { background-color: rgb(0, 0, 0); } &lt;/style&gt; "><pre class="notranslate"><span class="pl-kos">&lt;</span><span class="pl-ent">style</span><span class="pl-kos">&gt;</span> <span class="pl-ent">body</span> { <span class="pl-c1">background-color</span><span class="pl-kos">:</span> <span class="pl-en">rgb</span>(<span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c1">0</span><span class="pl-kos">,</span> <span class="pl-c1">0</span>); } <span class="pl-kos">&lt;/</span><span class="pl-ent">style</span><span class="pl-kos">&gt;</span></pre></div>
1
<p dir="auto">I installed with npm the babel-core and this files are empty, i need them for system js.</p>
<p dir="auto">When I install the latest babel-core I end up with browser.js and browser.min.js as empty files with no content just some white space, each file is around 4 bytes, compared to babel-core 5.8 where browser.js is 2MB. I am using npm 2.11.3. I don't see any errors or warnings on install everything appears fine, except those files are empty.</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://cloud.githubusercontent.com/assets/90569/10834779/98826944-7e59-11e5-8d68-29c24694695f.png"><img src="https://cloud.githubusercontent.com/assets/90569/10834779/98826944-7e59-11e5-8d68-29c24694695f.png" alt="screen shot 2015-10-29 at 4 22 13 pm" style="max-width: 100%;"></a></p>
1
<p dir="auto">Hello everybody,</p> <p dir="auto">I have a little issue with the modal component.</p> <p dir="auto">When I open a modal, the button close (with data-dismiss attribute) works and close it. But if I reopen the same one, it's over, it doesn't work anymore. The only way to close the modal is to click outside of it or to press ESC.</p> <p dir="auto">Any idea ? (I'm a PHP developper with only few basics in JS)</p> <p dir="auto">Thanks</p> <p dir="auto">Robin</p> <p dir="auto">PS: Excuse me if my english is not so well, i'm french</p>
<p dir="auto">Hi,</p> <p dir="auto">The code used on last Thursday worked fine. But after updated to latest code on Monday (GMT+8), the modal dialog when clicks to dismiss for seconds onward cannot be close.</p> <p dir="auto">I am checking on source code line 932, if I commented out this line then it is working again.</p> <p dir="auto">this.$element<br> .removeClass('in')<br> .attr('aria-hidden', true)<br> //.off('click.dismiss.modal')</p> <p dir="auto">Am I missing anything...?</p> <p dir="auto">Sorry for the grammar. Thanks.</p>
1
<h3 dir="auto">Describe your issue.</h3> <p dir="auto">installed with <code class="notranslate">python3.10 -m pip install scipy</code> and after a long time it returend without any error.</p> <p dir="auto">However <code class="notranslate">python3.10 -c 'import scipy.spatial'</code> fails with:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;&lt;string&gt;&quot;, line 1, in &lt;module&gt; File &quot;/home/dave/.local/lib/python3.10/site-packages/scipy/spatial/__init__.py&quot;, line 107, in &lt;module&gt; from . import distance, transform File &quot;/home/dave/.local/lib/python3.10/site-packages/scipy/spatial/transform/__init__.py&quot;, line 19, in &lt;module&gt; from .rotation import Rotation, Slerp ImportError: /home/dave/.local/lib/python3.10/site-packages/scipy/spatial/transform/rotation.cpython-310-x86_64-linux-gnu.so: undefined symbol: _PyGen_Send"><pre class="notranslate"><code class="notranslate">Traceback (most recent call last): File "&lt;string&gt;", line 1, in &lt;module&gt; File "/home/dave/.local/lib/python3.10/site-packages/scipy/spatial/__init__.py", line 107, in &lt;module&gt; from . import distance, transform File "/home/dave/.local/lib/python3.10/site-packages/scipy/spatial/transform/__init__.py", line 19, in &lt;module&gt; from .rotation import Rotation, Slerp ImportError: /home/dave/.local/lib/python3.10/site-packages/scipy/spatial/transform/rotation.cpython-310-x86_64-linux-gnu.so: undefined symbol: _PyGen_Send </code></pre></div> <p dir="auto">Note: <code class="notranslate">_PyGen_Send</code> is defined in /usr/lib64/libpython3.9.so but not in /usr/lib64/libpython3.10.so.</p> <h3 dir="auto">Reproducing Code Example</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Start from fedora 34 install python3.9 (default) and python3.10 sudo dnf install python3.9-devel python3.10 python3.10 -m ensurepip python3.10 -m pip install scipy python3.10 -c 'import scipy.spatial'"><pre class="notranslate"><span class="pl-v">Start</span> <span class="pl-k">from</span> <span class="pl-s1">fedora</span> <span class="pl-c1">34</span> <span class="pl-en">install</span> <span class="pl-s1">python3</span><span class="pl-c1">.9</span> (<span class="pl-s1">default</span>) <span class="pl-c1">and</span> <span class="pl-s1">python3</span>.<span class="pl-c1">10</span> <span class="pl-s1">sudo</span> <span class="pl-s1">dnf</span> <span class="pl-s1">install</span> <span class="pl-s1">python3</span><span class="pl-c1">.9</span><span class="pl-c1">-</span><span class="pl-s1">devel</span> <span class="pl-s1">python3</span><span class="pl-c1">.10</span> <span class="pl-s1">python3</span>.<span class="pl-c1">10</span> <span class="pl-c1">-</span><span class="pl-s1">m</span> <span class="pl-s1">ensurepip</span> <span class="pl-s1">python3</span>.<span class="pl-c1">10</span> <span class="pl-c1">-</span><span class="pl-s1">m</span> <span class="pl-s1">pip</span> <span class="pl-s1">install</span> <span class="pl-s1">scipy</span> <span class="pl-s1">python3</span>.<span class="pl-c1">10</span> <span class="pl-c1">-</span><span class="pl-s1">c</span> <span class="pl-s">'import scipy.spatial'</span></pre></div> <h3 dir="auto">Error message</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="Traceback (most recent call last): File &quot;&lt;string&gt;&quot;, line 1, in &lt;module&gt; File &quot;/home/dave/.local/lib/python3.10/site-packages/scipy/spatial/__init__.py&quot;, line 107, in &lt;module&gt; from . import distance, transform File &quot;/home/dave/.local/lib/python3.10/site-packages/scipy/spatial/transform/__init__.py&quot;, line 19, in &lt;module&gt; from .rotation import Rotation, Slerp ImportError: /home/dave/.local/lib/python3.10/site-packages/scipy/spatial/transform/rotation.cpython-310-x86_64-linux-gnu.so: undefined symbol: _PyGen_Send"><pre class="notranslate">Traceback (most recent call last): File <span class="pl-s"><span class="pl-pds">"</span>&lt;string&gt;<span class="pl-pds">"</span></span>, line 1, <span class="pl-k">in</span> <span class="pl-k">&lt;</span>module<span class="pl-k">&gt;</span> File <span class="pl-s"><span class="pl-pds">"</span>/home/dave/.local/lib/python3.10/site-packages/scipy/spatial/__init__.py<span class="pl-pds">"</span></span>, line 107, <span class="pl-k">in</span> <span class="pl-k">&lt;</span>module<span class="pl-k">&gt;</span> from <span class="pl-c1">.</span> import distance, transform File <span class="pl-s"><span class="pl-pds">"</span>/home/dave/.local/lib/python3.10/site-packages/scipy/spatial/transform/__init__.py<span class="pl-pds">"</span></span>, line 19, <span class="pl-k">in</span> <span class="pl-k">&lt;</span>module<span class="pl-k">&gt;</span> from .rotation import Rotation, Slerp ImportError: /home/dave/.local/lib/python3.10/site-packages/scipy/spatial/transform/rotation.cpython-310-x86_64-linux-gnu.so: undefined symbol: _PyGen_Send</pre></div> <h3 dir="auto">SciPy/NumPy/Python version information</h3> <p dir="auto">1.6.1 1.21.3 sys.version_info(major=3, minor=10, micro=0, releaselevel='final', serial=0)</p>
<h3 dir="auto">Describe your issue.</h3> <p dir="auto">Importing <code class="notranslate">scipy.signal</code> under Py3.10 (in a venv) fails with this message (on Py3.9.4 and older it works):</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python3 Python 3.10.0a6 (default, Mar 2 2021, 02:01:08) [GCC 5.4.0 20160609] on linux Type &quot;help&quot;, &quot;copyright&quot;, &quot;credits&quot; or &quot;license&quot; for more information. &gt;&gt;&gt; import scipy.signal Traceback (most recent call last): File &quot;&lt;stdin&gt;&quot;, line 1, in &lt;module&gt; File &quot;~/vgl310/lib/python3.10/site-packages/scipy/signal/__init__.py&quot;, line 302, in &lt;module&gt; from .filter_design import * File &quot;~/vgl310/lib/python3.10/site-packages/scipy/signal/filter_design.py&quot;, line 16, in &lt;module&gt; from scipy import special, optimize, fft as sp_fft File &quot;~/vgl310/lib/python3.10/site-packages/scipy/optimize/__init__.py&quot;, line 421, in &lt;module&gt; from ._shgo import shgo File &quot;~/vgl310/lib/python3.10/site-packages/scipy/optimize/_shgo.py&quot;, line 9, in &lt;module&gt; from scipy import spatial File &quot;~/vgl310/lib/python3.10/site-packages/scipy/spatial/__init__.py&quot;, line 107, in &lt;module&gt; from . import distance, transform File &quot;/home/ullix/geigerlog/vgl310/lib/python3.10/site-packages/scipy/spatial/transform/__init__.py&quot;, line 19, in &lt;module&gt; from .rotation import Rotation, Slerp ImportError: /home/ullix/geigerlog/vgl310/lib/python3.10/site-packages/scipy/spatial/transform/rotation.cpython-310-x86_64-linux-gnu.so: undefined symbol: _PyGen_Send"><pre class="notranslate"><code class="notranslate">$ python3 Python 3.10.0a6 (default, Mar 2 2021, 02:01:08) [GCC 5.4.0 20160609] on linux Type "help", "copyright", "credits" or "license" for more information. &gt;&gt;&gt; import scipy.signal Traceback (most recent call last): File "&lt;stdin&gt;", line 1, in &lt;module&gt; File "~/vgl310/lib/python3.10/site-packages/scipy/signal/__init__.py", line 302, in &lt;module&gt; from .filter_design import * File "~/vgl310/lib/python3.10/site-packages/scipy/signal/filter_design.py", line 16, in &lt;module&gt; from scipy import special, optimize, fft as sp_fft File "~/vgl310/lib/python3.10/site-packages/scipy/optimize/__init__.py", line 421, in &lt;module&gt; from ._shgo import shgo File "~/vgl310/lib/python3.10/site-packages/scipy/optimize/_shgo.py", line 9, in &lt;module&gt; from scipy import spatial File "~/vgl310/lib/python3.10/site-packages/scipy/spatial/__init__.py", line 107, in &lt;module&gt; from . import distance, transform File "/home/ullix/geigerlog/vgl310/lib/python3.10/site-packages/scipy/spatial/transform/__init__.py", line 19, in &lt;module&gt; from .rotation import Rotation, Slerp ImportError: /home/ullix/geigerlog/vgl310/lib/python3.10/site-packages/scipy/spatial/transform/rotation.cpython-310-x86_64-linux-gnu.so: undefined symbol: _PyGen_Send </code></pre></div> <p dir="auto">The latest version of scipy is installed:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python3 -m pip install -U scipy Requirement already satisfied: scipy in ~/vgl310/lib/python3.10/site-packages (1.6.1) Requirement already satisfied: numpy&gt;=1.16.5 in ~/vgl310/lib/python3.10/site-packages (from scipy) (1.21.2)"><pre class="notranslate"><code class="notranslate">$ python3 -m pip install -U scipy Requirement already satisfied: scipy in ~/vgl310/lib/python3.10/site-packages (1.6.1) Requirement already satisfied: numpy&gt;=1.16.5 in ~/vgl310/lib/python3.10/site-packages (from scipy) (1.21.2) </code></pre></div> <h3 dir="auto">Reproducing Code Example</h3> <div class="highlight highlight-source-python notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="-"><pre class="notranslate"><span class="pl-c1">-</span></pre></div> <h3 dir="auto">Error message</h3> <div class="highlight highlight-source-shell notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="-"><pre class="notranslate">-</pre></div> <h3 dir="auto">SciPy/NumPy/Python version information</h3> <p dir="auto"><code class="notranslate">import sys, scipy, numpy; print(scipy.__version__, numpy.__version__, sys.version_info) 1.6.1 1.21.2 sys.version_info(major=3, minor=10, micro=0, releaselevel='alpha', serial=6)</code></p>
1
<p dir="auto"><strong>System information</strong></p> <ul dir="auto"> <li>Have I written custom code (as opposed to using a stock example script provided in TensorFlow): <a href="https://github.com/tensorflow/benchmarks/tree/cnn_tf_v1.12_compatible">tensorflow/benchmarks:cnn_tf_v1.12_compatible</a></li> <li>OS Platform and Distribution (e.g., Linux Ubuntu 16.04): Ubuntu 16.04-hwe</li> <li>Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device: N/A</li> <li>TensorFlow installed from (source or binary): binary</li> <li>TensorFlow version (use command below): ('v1.12.0-0-ga6d8ffae09', '1.12.0')</li> <li>Python version: 2.7.12</li> <li>Bazel version (if compiling from source): N/A</li> <li>GCC/Compiler version (if compiling from source): N/A</li> <li>CUDA/cuDNN version: 9.0/7.2.1.38-1+cuda9.0</li> <li>GPU model and memory: V100-PCIE-32GB, NVIDIA driver version 384.145, with <code class="notranslate">intel_iommu=on</code></li> </ul> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ cat /proc/cmdline BOOT_IMAGE=/boot/vmlinuz-4.15.0-38-generic root=/dev/mapper/vgroot-lvroot ro intel_iommu=on"><pre class="notranslate"><code class="notranslate">$ cat /proc/cmdline BOOT_IMAGE=/boot/vmlinuz-4.15.0-38-generic root=/dev/mapper/vgroot-lvroot ro intel_iommu=on </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ nvidia-smi topo -m GPU0 GPU1 GPU2 GPU3 CPU Affinity GPU0 X PIX NODE NODE 0-9,20-29 GPU1 PIX X NODE NODE 0-9,20-29 GPU2 NODE NODE X PIX 0-9,20-29 GPU3 NODE NODE PIX X 0-9,20-29 Legend: X = Self SYS = Connection traversing PCIe as well as the SMP interconnect between NUMA nodes (e.g., QPI/UPI) NODE = Connection traversing PCIe as well as the interconnect between PCIe Host Bridges within a NUMA node PHB = Connection traversing PCIe as well as a PCIe Host Bridge (typically the CPU) PXB = Connection traversing multiple PCIe switches (without traversing the PCIe Host Bridge) PIX = Connection traversing a single PCIe switch NV# = Connection traversing a bonded set of # NVLinks"><pre class="notranslate"><code class="notranslate">$ nvidia-smi topo -m GPU0 GPU1 GPU2 GPU3 CPU Affinity GPU0 X PIX NODE NODE 0-9,20-29 GPU1 PIX X NODE NODE 0-9,20-29 GPU2 NODE NODE X PIX 0-9,20-29 GPU3 NODE NODE PIX X 0-9,20-29 Legend: X = Self SYS = Connection traversing PCIe as well as the SMP interconnect between NUMA nodes (e.g., QPI/UPI) NODE = Connection traversing PCIe as well as the interconnect between PCIe Host Bridges within a NUMA node PHB = Connection traversing PCIe as well as a PCIe Host Bridge (typically the CPU) PXB = Connection traversing multiple PCIe switches (without traversing the PCIe Host Bridge) PIX = Connection traversing a single PCIe switch NV# = Connection traversing a bonded set of # NVLinks </code></pre></div> <p dir="auto"><strong>Describe the current behavior</strong><br> FP-16 multi-GPU training with CPU as local parameter server is converging in single process mode, but diverging loss value (nan) adding another loopback PS process with grpc. Consistent behaviours for both ResNet-50 and VGG16.</p> <p dir="auto"><strong>Describe the expected behavior</strong><br> The same training procedure should yield exactly same result using only 1 worker with/without 1 PS. Not sure why adding SendRecvOps causes data corruption. See other info below.</p> <p dir="auto"><strong>Code to reproduce the issue</strong></p> <p dir="auto">ResNet50 local with <a href="https://gist.github.com/byronyi/4f0821a4792b479bf884ff81171c4011">output</a>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py \ --variable_update=parameter_server \ --local_parameter_device=cpu \ --model=resnet50 \ --num_gpus=4 \ --use_fp16 \ --batch_size=256"><pre class="notranslate"><code class="notranslate">$ python benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py \ --variable_update=parameter_server \ --local_parameter_device=cpu \ --model=resnet50 \ --num_gpus=4 \ --use_fp16 \ --batch_size=256 </code></pre></div> <p dir="auto">VGG16 local with <a href="https://gist.github.com/byronyi/0dc379b8feac762bc8d04cab2b240060">output</a>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py \ --variable_update=parameter_server \ --local_parameter_device=cpu \ --model=vgg16 \ --num_gpus=4 \ --use_fp16 \ --batch_size=256"><pre class="notranslate"><code class="notranslate">$ python benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py \ --variable_update=parameter_server \ --local_parameter_device=cpu \ --model=vgg16 \ --num_gpus=4 \ --use_fp16 \ --batch_size=256 </code></pre></div> <p dir="auto">Distributed using the same PS command with <a href="https://gist.github.com/byronyi/ea508b150d1e55b0ac41502c48685b7c">output</a>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="CUDA_VISIBLE_DEVICES= \ python benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py \ --ps_hosts=localhost:5000 \ --worker_hosts=localhost:5001 \ --job_name=ps \ --local_parameter_device=cpu \ --task_index=0 \ --server_protocol=grpc"><pre class="notranslate"><code class="notranslate">CUDA_VISIBLE_DEVICES= \ python benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py \ --ps_hosts=localhost:5000 \ --worker_hosts=localhost:5001 \ --job_name=ps \ --local_parameter_device=cpu \ --task_index=0 \ --server_protocol=grpc </code></pre></div> <p dir="auto">ResNet50 distributed with <a href="https://gist.github.com/byronyi/de05ccb7b481932ce7be91f889f41aee">output</a>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py \ --ps_hosts=localhost:5000 \ --worker_hosts=localhost:5001 \ --job_name=worker \ --task_index=0 \ --server_protocol=grpc \ --variable_update=parameter_server \ --local_parameter_device=cpu \ --model=resnet50 \ --num_gpus=4 \ --use_fp16 \ --batch_size=256"><pre class="notranslate"><code class="notranslate">$ python benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py \ --ps_hosts=localhost:5000 \ --worker_hosts=localhost:5001 \ --job_name=worker \ --task_index=0 \ --server_protocol=grpc \ --variable_update=parameter_server \ --local_parameter_device=cpu \ --model=resnet50 \ --num_gpus=4 \ --use_fp16 \ --batch_size=256 </code></pre></div> <p dir="auto">VGG16 distributed with <a href="https://gist.github.com/byronyi/1113a5cd8048f729a2c73df5bfd97017">output</a>:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="$ python benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py \ --ps_hosts=localhost:5000 \ --worker_hosts=localhost:5001 \ --job_name=worker \ --task_index=0 \ --server_protocol=grpc \ --variable_update=parameter_server \ --local_parameter_device=cpu \ --model=vgg16 \ --num_gpus=4 \ --use_fp16 \ --batch_size=256"><pre class="notranslate"><code class="notranslate">$ python benchmarks/scripts/tf_cnn_benchmarks/tf_cnn_benchmarks.py \ --ps_hosts=localhost:5000 \ --worker_hosts=localhost:5001 \ --job_name=worker \ --task_index=0 \ --server_protocol=grpc \ --variable_update=parameter_server \ --local_parameter_device=cpu \ --model=vgg16 \ --num_gpus=4 \ --use_fp16 \ --batch_size=256 </code></pre></div> <p dir="auto"><strong>Other info / logs</strong><br> Kernel reports <code class="notranslate">[DMA Write] PTE Write access is not set</code> for one of the GPU.<br> Detailed log could be found <a href="https://gist.github.com/dd1e75702116d941d95dfa1fe17b8e27">here</a>.</p>
<h3 dir="auto">System information</h3> <ul dir="auto"> <li><strong>Have I written custom code (as opposed to using a stock example script provided in TensorFlow)</strong>: No</li> <li><strong>OS Platform and Distribution (e.g., Linux Ubuntu 16.04)</strong>: Ubuntu 16.04 LTS (GNU/Linux 4.4.38-rt49-tegra aarch64)</li> <li><strong>TensorFlow installed from (source or binary)</strong>: source</li> <li><strong>TensorFlow version (use command below)</strong>: 1.7.0-rc0, r1.7, master</li> <li><strong>Python version</strong>: 2.7.12</li> <li><strong>Bazel version (if compiling from source)</strong>: 0.11.1</li> <li><strong>GCC/Compiler version (if compiling from source)</strong>: 5.4.0-6ubuntu1~16.04.9</li> <li><strong>CUDA/cuDNN version</strong>: 8.0/6</li> <li><strong>GPU model and memory</strong>: name: GP106 major: 6 minor: 1 totalMemory: 3.75GiB (as reported by some previous version of Tensorflow on the other part of the same Drive PX2)</li> <li><strong>Exact command to reproduce</strong>:<br> <code class="notranslate">git checkout v1.7.0-rc0</code><br> <code class="notranslate">./configure</code><br> <code class="notranslate">bazel build //tensorflow:libtensorflow_cc.so</code></li> </ul> <h3 dir="auto">Describe the problem</h3> <p dir="auto">Same problem for all branches listed under <strong>TensorFlow version</strong>.<br> Build fails immediately with<br> <code class="notranslate">Cuda Configuration Error: Cannot find libdevice.10.bc under /usr/local/cuda-8.0</code><br> It's strange because I explicitly answered 8.0 versions and libdevice.10.bc exists only in 9.0 AFAIK.</p> <h3 dir="auto">Source code / logs</h3> <p dir="auto"><a href="https://github.com/tensorflow/tensorflow/files/1822159/error.log">error.log</a></p> <p dir="auto"><a href="https://github.com/tensorflow/tensorflow/files/1822155/configure.log">configure.log</a></p> <p dir="auto"><a href="https://github.com/tensorflow/tensorflow/files/1822157/tf_configure.txt">tf_configure.txt</a></p>
0
<h2 dir="auto">Bug Report</h2> <p dir="auto"><strong>For English only</strong>, other languages will not accept.</p> <p dir="auto">Before report a bug, make sure you have:</p> <ul dir="auto"> <li>Searched open and closed <a href="https://github.com/apache/shardingsphere/issues">GitHub issues</a>.</li> <li>Read documentation: <a href="https://shardingsphere.apache.org/document/current/en/overview" rel="nofollow">ShardingSphere Doc</a>.</li> </ul> <p dir="auto">Please pay attention on issues you submitted, because we maybe need more details.<br> If no response anymore and we cannot reproduce it on current information, we will <strong>close it</strong>.</p> <p dir="auto">Please answer these questions before submitting your issue. Thanks!</p> <h3 dir="auto">Which version of ShardingSphere did you use?</h3> <p dir="auto">docker image-5.2.1</p> <h3 dir="auto">Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy?</h3> <p dir="auto">ShardingSphere-Proxy</p> <h3 dir="auto">Expected behavior</h3> <p dir="auto">select successfully!</p> <div class="highlight highlight-source-sql notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="SELECT * FROM INFORMATION_SCHEMA.TABLES;"><pre class="notranslate"><span class="pl-k">SELECT</span> <span class="pl-k">*</span> <span class="pl-k">FROM</span> <span class="pl-c1">INFORMATION_SCHEMA</span>.<span class="pl-c1">TABLES</span>;</pre></div> <h3 dir="auto">Actual behavior</h3> <div class="highlight highlight-source-java notranslate position-relative overflow-auto" dir="auto" data-snippet-clipboard-copy-content="[ERROR] 2022-10-24 09:14:34.110 [Connection-1-ThreadExecutor] o.a.s.p.f.c.CommandExecutorTask - Exception occur: java.lang.NullPointerException: Cannot invoke &quot;org.apache.shardingsphere.infra.federation.optimizer.context.parser.OptimizerParserContext.getDialectProps()&quot; because the return value of &quot;java.util.Map.get(Object)&quot; is null at org.apache.shardingsphere.infra.federation.executor.original.OriginalFederationExecutor.createConnection(OriginalFederationExecutor.java:92) at org.apache.shardingsphere.infra.federation.executor.original.OriginalFederationExecutor.executeQuery(OriginalFederationExecutor.java:83) at org.apache.shardingsphere.proxy.backend.communication.jdbc.JDBCDatabaseCommunicationEngine.doExecuteFederation(JDBCDatabaseCommunicationEngine.java:165) at org.apache.shardingsphere.proxy.backend.communication.jdbc.JDBCDatabaseCommunicationEngine.execute(JDBCDatabaseCommunicationEngine.java:123) at org.apache.shardingsphere.proxy.frontend.mysql.command.query.text.query.MySQLComQueryPacketExecutor.execute(MySQLComQueryPacketExecutor.java:94) at org.apache.shardingsphere.proxy.frontend.command.CommandExecutorTask.executeCommand(CommandExecutorTask.java:110) at org.apache.shardingsphere.proxy.frontend.command.CommandExecutorTask.run(CommandExecutorTask.java:77) at java.base/java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1136) at java.base/java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:635) at java.base/java.lang.Thread.run(Thread.java:833)"><pre class="notranslate">[<span class="pl-c1">ERROR</span>] <span class="pl-c1">2022</span>-<span class="pl-c1">10</span>-<span class="pl-c1">24</span> <span class="pl-c1">09</span>:<span class="pl-c1">14</span>:<span class="pl-c1">34.110</span> [<span class="pl-s1">Connection</span>-<span class="pl-c1">1</span>-<span class="pl-s1">ThreadExecutor</span>] <span class="pl-s1">o</span>.<span class="pl-s1">a</span>.<span class="pl-s1">s</span>.<span class="pl-s1">p</span>.<span class="pl-s1">f</span>.<span class="pl-s1">c</span>.<span class="pl-s1">CommandExecutorTask</span> - <span class="pl-smi">Exception</span> <span class="pl-s1">occur</span>: <span class="pl-smi">java</span>.<span class="pl-smi">lang</span>.<span class="pl-smi">NullPointerException</span>: <span class="pl-s1">Cannot</span> <span class="pl-s1">invoke</span> <span class="pl-s">"org.apache.shardingsphere.infra.federation.optimizer.context.parser.OptimizerParserContext.getDialectProps()"</span> <span class="pl-s1">because</span> <span class="pl-smi">the</span> <span class="pl-s1">return</span> <span class="pl-smi">value</span> <span class="pl-s1">of</span> <span class="pl-s">"java.util.Map.get(Object)"</span> <span class="pl-s1">is</span> <span class="pl-c1">null</span> <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">infra</span>.<span class="pl-s1">federation</span>.<span class="pl-s1">executor</span>.<span class="pl-s1">original</span>.<span class="pl-s1">OriginalFederationExecutor</span>.<span class="pl-en">createConnection</span>(<span class="pl-smi">OriginalFederationExecutor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">92</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">infra</span>.<span class="pl-s1">federation</span>.<span class="pl-s1">executor</span>.<span class="pl-s1">original</span>.<span class="pl-s1">OriginalFederationExecutor</span>.<span class="pl-en">executeQuery</span>(<span class="pl-smi">OriginalFederationExecutor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">83</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">proxy</span>.<span class="pl-s1">backend</span>.<span class="pl-s1">communication</span>.<span class="pl-s1">jdbc</span>.<span class="pl-s1">JDBCDatabaseCommunicationEngine</span>.<span class="pl-en">doExecuteFederation</span>(<span class="pl-smi">JDBCDatabaseCommunicationEngine</span>.<span class="pl-smi">java</span>:<span class="pl-c1">165</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">proxy</span>.<span class="pl-s1">backend</span>.<span class="pl-s1">communication</span>.<span class="pl-s1">jdbc</span>.<span class="pl-s1">JDBCDatabaseCommunicationEngine</span>.<span class="pl-en">execute</span>(<span class="pl-smi">JDBCDatabaseCommunicationEngine</span>.<span class="pl-smi">java</span>:<span class="pl-c1">123</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">proxy</span>.<span class="pl-s1">frontend</span>.<span class="pl-s1">mysql</span>.<span class="pl-s1">command</span>.<span class="pl-s1">query</span>.<span class="pl-s1">text</span>.<span class="pl-s1">query</span>.<span class="pl-s1">MySQLComQueryPacketExecutor</span>.<span class="pl-en">execute</span>(<span class="pl-smi">MySQLComQueryPacketExecutor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">94</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">proxy</span>.<span class="pl-s1">frontend</span>.<span class="pl-s1">command</span>.<span class="pl-s1">CommandExecutorTask</span>.<span class="pl-en">executeCommand</span>(<span class="pl-smi">CommandExecutorTask</span>.<span class="pl-smi">java</span>:<span class="pl-c1">110</span>) <span class="pl-s1">at</span> <span class="pl-s1">org</span>.<span class="pl-s1">apache</span>.<span class="pl-s1">shardingsphere</span>.<span class="pl-s1">proxy</span>.<span class="pl-s1">frontend</span>.<span class="pl-s1">command</span>.<span class="pl-s1">CommandExecutorTask</span>.<span class="pl-en">run</span>(<span class="pl-smi">CommandExecutorTask</span>.<span class="pl-smi">java</span>:<span class="pl-c1">77</span>) <span class="pl-s1">at</span> <span class="pl-s1">java</span>.<span class="pl-s1">base</span>/<span class="pl-s1">java</span>.<span class="pl-s1">util</span>.<span class="pl-s1">concurrent</span>.<span class="pl-s1">ThreadPoolExecutor</span>.<span class="pl-en">runWorker</span>(<span class="pl-smi">ThreadPoolExecutor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">1136</span>) <span class="pl-smi">at</span> <span class="pl-s1">java</span>.<span class="pl-s1">base</span>/<span class="pl-s1">java</span>.<span class="pl-s1">util</span>.<span class="pl-s1">concurrent</span>.<span class="pl-s1">ThreadPoolExecutor$Worker</span>.<span class="pl-s1">run</span>(<span class="pl-smi">ThreadPoolExecutor</span>.<span class="pl-smi">java</span>:<span class="pl-c1">635</span>) <span class="pl-smi">at</span> <span class="pl-s1">java</span>.<span class="pl-s1">base</span>/<span class="pl-s1">java</span>.<span class="pl-s1">lang</span>.<span class="pl-s1">Thread</span>.<span class="pl-en">run</span>(<span class="pl-smi">Thread</span>.<span class="pl-smi">java</span>:<span class="pl-c1">833</span>)</pre></div> <h3 dir="auto">Reason analyze (If you can)</h3> <h3 dir="auto">Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc.</h3> <h3 dir="auto">Example codes for reproduce this issue (such as a github link).</h3>
<p dir="auto">I use 4.0.1 in my spring boot 2.2.2</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="&lt;dependency&gt; &lt;groupId&gt;com.alibaba&lt;/groupId&gt; &lt;artifactId&gt;druid-spring-boot-starter&lt;/artifactId&gt; &lt;version&gt;1.1.20&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;org.apache.shardingsphere&lt;/groupId&gt; &lt;artifactId&gt;sharding-jdbc-spring-boot-starter&lt;/artifactId&gt; &lt;version&gt;4.0.1&lt;/version&gt; &lt;/dependency&gt;"><pre class="notranslate"><code class="notranslate">&lt;dependency&gt; &lt;groupId&gt;com.alibaba&lt;/groupId&gt; &lt;artifactId&gt;druid-spring-boot-starter&lt;/artifactId&gt; &lt;version&gt;1.1.20&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;org.apache.shardingsphere&lt;/groupId&gt; &lt;artifactId&gt;sharding-jdbc-spring-boot-starter&lt;/artifactId&gt; &lt;version&gt;4.0.1&lt;/version&gt; &lt;/dependency&gt; </code></pre></div> <p dir="auto">But i get error</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class Action: Consider the following: If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active)."><pre class="notranslate"><code class="notranslate">Description: Failed to configure a DataSource: 'url' attribute is not specified and no embedded datasource could be configured. Reason: Failed to determine a suitable driver class Action: Consider the following: If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. If you have database settings to be loaded from a particular profile you may need to activate it (no profiles are currently active). </code></pre></div> <p dir="auto">I change 4.0.0-RC1 version</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" &lt;dependency&gt; &lt;groupId&gt;org.apache.shardingsphere&lt;/groupId&gt; &lt;artifactId&gt;sharding-jdbc-spring-boot-starter&lt;/artifactId&gt; &lt;version&gt;4.0.0-RC1&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;com.alibaba&lt;/groupId&gt; &lt;artifactId&gt;druid-spring-boot-starter&lt;/artifactId&gt; &lt;version&gt;1.1.20&lt;/version&gt; &lt;/dependency&gt;"><pre class="notranslate"><code class="notranslate"> &lt;dependency&gt; &lt;groupId&gt;org.apache.shardingsphere&lt;/groupId&gt; &lt;artifactId&gt;sharding-jdbc-spring-boot-starter&lt;/artifactId&gt; &lt;version&gt;4.0.0-RC1&lt;/version&gt; &lt;/dependency&gt; &lt;dependency&gt; &lt;groupId&gt;com.alibaba&lt;/groupId&gt; &lt;artifactId&gt;druid-spring-boot-starter&lt;/artifactId&gt; &lt;version&gt;1.1.20&lt;/version&gt; &lt;/dependency&gt; </code></pre></div> <p dir="auto">The error is gone;<br> I think that druid-spring-boot-starter have some wrong.<br> But i don't find reason.<br> What's the reason?</p>
0
<p dir="auto">When I click on a link with an ID, the link target shows up under the bar. This is not as noticeable for functions, which have a very large title, but here is an extreme example of what happens when I go to the docs for <a href="https://numpy.org/doc/stable/reference/arrays.scalars.html#numpy.uint8" rel="nofollow"><code class="notranslate">np.uint8</code></a>:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4617010/110687228-e6ff2580-81a5-11eb-8f09-67bd861a1798.png"><img src="https://user-images.githubusercontent.com/4617010/110687228-e6ff2580-81a5-11eb-8f09-67bd861a1798.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">I have to scroll up a bit to see the actual link target:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/4617010/110687475-2594e000-81a6-11eb-8295-6892e5607423.png"><img src="https://user-images.githubusercontent.com/4617010/110687475-2594e000-81a6-11eb-8295-6892e5607423.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">If this issue is with pydata/pydata-sphinx-theme as <a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="822737676" data-permission-text="Title is private" data-url="https://github.com/numpy/numpy/issues/18549" data-hovercard-type="issue" data-hovercard-url="/numpy/numpy/issues/18549/hovercard" href="https://github.com/numpy/numpy/issues/18549">#18549</a> was, I would be more than happy to replicate it there as well.</p>
<h2 dir="auto">Documentation</h2> <p dir="auto">When searching the documentation and clicking on the listed links, the link refers to a specific heading/reference in the generated documentation page. On the new HTML documentation design, the fixed top bar covers up this referenced element:</p> <p dir="auto"><a href="https://numpy.org/devdocs/reference/generated/numpy.repeat.html?highlight=repeat#numpy.repeat" rel="nofollow">https://numpy.org/devdocs/reference/generated/numpy.repeat.html?highlight=repeat#numpy.repeat</a></p> <p dir="auto">Image illustrating what is seen when entering the page from a search:</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/87876/98549521-2f134780-229b-11eb-9c13-b9a9f08bd6ae.png"><img src="https://user-images.githubusercontent.com/87876/98549521-2f134780-229b-11eb-9c13-b9a9f08bd6ae.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">Scrolling slightly down reveals the header of the desired content</p> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/87876/98549570-45210800-229b-11eb-995c-770102eccf7e.png"><img src="https://user-images.githubusercontent.com/87876/98549570-45210800-229b-11eb-995c-770102eccf7e.png" alt="image" style="max-width: 100%;"></a></p>
1
<p dir="auto">Dear all, for some reason, I recently started to have problems with torchvision, although it looks like I haven't changed anything recently.</p> <p dir="auto">Do you have any idea what happened ?<br> Thank you in advance for your help</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" import segmentation_models_pytorch as smp File &quot;/usr/local/lib/python3.6/dist-packages/segmentation_models_pytorch/__init__.py&quot;, line 1, in &lt;module&gt; from .unet import Unet File &quot;/usr/local/lib/python3.6/dist-packages/segmentation_models_pytorch/unet/__init__.py&quot;, line 1, in &lt;module&gt; from .model import Unet File &quot;/usr/local/lib/python3.6/dist-packages/segmentation_models_pytorch/unet/model.py&quot;, line 3, in &lt;module&gt; from ..encoders import get_encoder File &quot;/usr/local/lib/python3.6/dist-packages/segmentation_models_pytorch/encoders/__init__.py&quot;, line 4, in &lt;module&gt; from .resnet import resnet_encoders File &quot;/usr/local/lib/python3.6/dist-packages/segmentation_models_pytorch/encoders/resnet.py&quot;, line 28, in &lt;module&gt; from torchvision.models.resnet import ResNet File &quot;/usr/local/lib/python3.6/dist-packages/torchvision/__init__.py&quot;, line 5, in &lt;module&gt; from torchvision import models File &quot;/usr/local/lib/python3.6/dist-packages/torchvision/models/__init__.py&quot;, line 12, in &lt;module&gt; from . import detection File &quot;/usr/local/lib/python3.6/dist-packages/torchvision/models/detection/__init__.py&quot;, line 1, in &lt;module&gt; from .faster_rcnn import * File &quot;/usr/local/lib/python3.6/dist-packages/torchvision/models/detection/faster_rcnn.py&quot;, line 7, in &lt;module&gt; from torchvision.ops import misc as misc_nn_ops File &quot;/usr/local/lib/python3.6/dist-packages/torchvision/ops/__init__.py&quot;, line 1, in &lt;module&gt; from .boxes import nms, box_iou File &quot;/usr/local/lib/python3.6/dist-packages/torchvision/ops/boxes.py&quot;, line 43, in &lt;module&gt; @torch.jit._script_if_tracing AttributeError: module 'torch.jit' has no attribute '_script_if_tracing'"><pre class="notranslate"><code class="notranslate"> import segmentation_models_pytorch as smp File "/usr/local/lib/python3.6/dist-packages/segmentation_models_pytorch/__init__.py", line 1, in &lt;module&gt; from .unet import Unet File "/usr/local/lib/python3.6/dist-packages/segmentation_models_pytorch/unet/__init__.py", line 1, in &lt;module&gt; from .model import Unet File "/usr/local/lib/python3.6/dist-packages/segmentation_models_pytorch/unet/model.py", line 3, in &lt;module&gt; from ..encoders import get_encoder File "/usr/local/lib/python3.6/dist-packages/segmentation_models_pytorch/encoders/__init__.py", line 4, in &lt;module&gt; from .resnet import resnet_encoders File "/usr/local/lib/python3.6/dist-packages/segmentation_models_pytorch/encoders/resnet.py", line 28, in &lt;module&gt; from torchvision.models.resnet import ResNet File "/usr/local/lib/python3.6/dist-packages/torchvision/__init__.py", line 5, in &lt;module&gt; from torchvision import models File "/usr/local/lib/python3.6/dist-packages/torchvision/models/__init__.py", line 12, in &lt;module&gt; from . import detection File "/usr/local/lib/python3.6/dist-packages/torchvision/models/detection/__init__.py", line 1, in &lt;module&gt; from .faster_rcnn import * File "/usr/local/lib/python3.6/dist-packages/torchvision/models/detection/faster_rcnn.py", line 7, in &lt;module&gt; from torchvision.ops import misc as misc_nn_ops File "/usr/local/lib/python3.6/dist-packages/torchvision/ops/__init__.py", line 1, in &lt;module&gt; from .boxes import nms, box_iou File "/usr/local/lib/python3.6/dist-packages/torchvision/ops/boxes.py", line 43, in &lt;module&gt; @torch.jit._script_if_tracing AttributeError: module 'torch.jit' has no attribute '_script_if_tracing' </code></pre></div> <p dir="auto">Which versions am I using:</p> <blockquote> <p dir="auto">pip freeze | grep torch<br> efficientnet-pytorch==0.6.3<br> segmentation-models-pytorch==0.1.0<br> torch==1.4.0<br> torchvision==0.5.0</p> </blockquote> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/suo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/suo">@suo</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gmagogsfm/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gmagogsfm">@gmagogsfm</a></p>
<h2 dir="auto"><g-emoji class="g-emoji" alias="bug" fallback-src="https://github.githubassets.com/images/icons/emoji/unicode/1f41b.png">πŸ›</g-emoji> Bug</h2> <p dir="auto">Error using the pytorch.hub API:<br> code:</p> <p dir="auto">import torch<br> from torch import hub<br> resnet18_model = hub.load('pytorch/vision:master','resnet18',pretrained=True)</p> <h2 dir="auto">Error</h2> <hr> <h2 dir="auto">Downloading: "<a href="https://github.com/pytorch/vision/archive/master.zip">https://github.com/pytorch/vision/archive/master.zip</a>" to /home/pratik/.cache/torch/hub/master.zip</h2> <p dir="auto">AttributeError Traceback (most recent call last)<br> in<br> 3 resnet18_model = hub.load('pytorch/vision:master',<br> 4 'resnet18',<br> ----&gt; 5 pretrained=True)</p> <p dir="auto">~/anaconda3/lib/python3.7/site-packages/torch/hub.py in load(github, model, *args, **kwargs)<br> 363 sys.path.insert(0, repo_dir)<br> 364<br> --&gt; 365 hub_module = import_module(MODULE_HUBCONF, repo_dir + '/' + MODULE_HUBCONF)<br> 366<br> 367 entry = _load_entry_from_hubconf(hub_module, model)</p> <p dir="auto">~/anaconda3/lib/python3.7/site-packages/torch/hub.py in import_module(name, path)<br> 73 spec = importlib.util.spec_from_file_location(name, path)<br> 74 module = importlib.util.module_from_spec(spec)<br> ---&gt; 75 spec.loader.exec_module(module)<br> 76 return module<br> 77 elif sys.version_info &gt;= (3, 0):</p> <p dir="auto">~/anaconda3/lib/python3.7/importlib/_bootstrap_external.py in exec_module(self, module)</p> <p dir="auto">~/anaconda3/lib/python3.7/importlib/_bootstrap.py in _call_with_frames_removed(f, *args, **kwds)</p> <p dir="auto">~/.cache/torch/hub/pytorch_vision_master/hubconf.py in<br> 3<br> 4 # classification<br> ----&gt; 5 from torchvision.models.alexnet import alexnet<br> 6 from torchvision.models.densenet import densenet121, densenet169, densenet201, densenet161<br> 7 from torchvision.models.inception import inception_v3</p> <p dir="auto">~/.cache/torch/hub/pytorch_vision_master/torchvision/<strong>init</strong>.py in<br> 3 from .extension import _HAS_OPS<br> 4<br> ----&gt; 5 from torchvision import models<br> 6 from torchvision import datasets<br> 7 from torchvision import ops</p> <p dir="auto">~/.cache/torch/hub/pytorch_vision_master/torchvision/models/<strong>init</strong>.py in<br> 10 from .shufflenetv2 import *<br> 11 from . import segmentation<br> ---&gt; 12 from . import detection<br> 13 from . import video<br> 14 from . import quantization</p> <p dir="auto">~/.cache/torch/hub/pytorch_vision_master/torchvision/models/detection/<strong>init</strong>.py in<br> ----&gt; 1 from .faster_rcnn import *<br> 2 from .mask_rcnn import *<br> 3 from .keypoint_rcnn import *</p> <p dir="auto">~/.cache/torch/hub/pytorch_vision_master/torchvision/models/detection/faster_rcnn.py in<br> 5 import torch.nn.functional as F<br> 6<br> ----&gt; 7 from torchvision.ops import misc as misc_nn_ops<br> 8 from torchvision.ops import MultiScaleRoIAlign<br> 9</p> <p dir="auto">~/.cache/torch/hub/pytorch_vision_master/torchvision/ops/<strong>init</strong>.py in<br> ----&gt; 1 from .boxes import nms, box_iou<br> 2 from .new_empty_tensor import _new_empty_tensor<br> 3 from .deform_conv import deform_conv2d, DeformConv2d<br> 4 from .roi_align import roi_align, RoIAlign<br> 5 from .roi_pool import roi_pool, RoIPool</p> <p dir="auto">~/.cache/torch/hub/pytorch_vision_master/torchvision/ops/boxes.py in<br> 40<br> 41<br> ---&gt; 42 @torch.jit._script_if_tracing<br> 43 def batched_nms(<br> 44 boxes: Tensor,</p> <h2 dir="auto">AttributeError: module 'torch.jit' has no attribute '_script_if_tracing'</h2> <h2 dir="auto">Environment</h2> <hr> <p dir="auto">PyTorch version: 1.5.0<br> Is debug build: No<br> CUDA used to build PyTorch: None</p> <p dir="auto">OS: Ubuntu 20.04 LTS<br> GCC version: (Ubuntu 9.3.0-10ubuntu2) 9.3.0<br> CMake version: version 3.16.3</p> <p dir="auto">Python version: 3.7<br> Is CUDA available: No<br> CUDA runtime version: No CUDA<br> GPU models and configuration: No CUDA<br> Nvidia driver version: No CUDA<br> cuDNN version: No CUDA</p> <p dir="auto">Versions of relevant libraries:<br> [pip3] numpy==1.18.0<br> [pip3] numpydoc==0.9.1<br> [pip3] torch==1.5.0<br> [pip3] torchvision==0.6.0a0+82fd1c8<br> [conda] _tflow_select 2.3.0 mkl<br> [conda] blas 1.0 mkl<br> [conda] cpuonly 1.0 0 pytorch<br> [conda] mkl 2019.4 243<br> [conda] mkl-service 2.3.0 py37he904b0f_0<br> [conda] mkl_fft 1.0.14 py37ha843d7b_0<br> [conda] mkl_random 1.1.0 py37hd6b4f25_0<br> [conda] numpy 1.16.2 pypi_0 pypi<br> [conda] numpy-base 1.17.2 py37hde5b4d6_0<br> [conda] numpydoc 0.9.1 py_0<br> [conda] pytorch 1.5.0 py3.7_cpu_0 [cpuonly] pytorch<br> [conda] tensorflow-base 2.0.0 mkl_py37h9204916_0<br> [conda] torchvision 0.6.0 py37_cpu [cpuonly] pytorch</p> <p dir="auto">cc <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/suo/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/suo">@suo</a> <a class="user-mention notranslate" data-hovercard-type="user" data-hovercard-url="/users/gmagogsfm/hovercard" data-octo-click="hovercard-link-click" data-octo-dimensions="link_type:self" href="https://github.com/gmagogsfm">@gmagogsfm</a></p>
1
<p dir="auto">Currently the .gitignore generated when you type <code class="notranslate">flutter create -t module foo</code> inside <code class="notranslate">foo</code> contains the line ".android". My testing suggests excluding this from a git checkout causes problems for other people trying to check out your project.</p> <p dir="auto">You can test this by:</p> <ol dir="auto"> <li>Start with some existing android project and follow the instructions here: <a href="https://github.com/flutter/flutter/wiki/Add-Flutter-to-existing-apps">https://github.com/flutter/flutter/wiki/Add-Flutter-to-existing-apps</a></li> <li>Create a repository with both the android app and the flutter module. Commit and push.</li> <li>Somewhere else, check out that repository and try to load in android studio.<br> You will see an error like the following:</li> </ol> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="Error:/usr/local/google/home/efortuna/github/flutter_dof/.android/include_flutter.groovy (/usr/local/google/home/efortuna/github/flutter_dof/.android/include_flutter.groovy) Consult IDE log for more details (Help | Show Log)"><pre class="notranslate"><code class="notranslate">Error:/usr/local/google/home/efortuna/github/flutter_dof/.android/include_flutter.groovy (/usr/local/google/home/efortuna/github/flutter_dof/.android/include_flutter.groovy) Consult IDE log for more details (Help | Show Log) </code></pre></div> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" $ flutter doctor -v [βœ“] Flutter (Channel master, v0.8.3-pre.28, on Linux, locale en_US.UTF-8) β€’ Flutter version 0.8.3-pre.28 at /usr/local/google/home/efortuna/googleio/flutter β€’ Framework revision 0e8103ff13 (5 hours ago), 2018-09-11 18:16:21 +0200 β€’ Engine revision 9a173a8dc8 β€’ Dart version 2.1.0-dev.4.0.flutter-ef72098353 [βœ“] Android toolchain - develop for Android devices (Android SDK 27.0.3) β€’ Android SDK at /usr/local/google/home/efortuna/Android/Sdk β€’ Android NDK location not configured (optional; useful for native profiling support) β€’ Platform android-28, build-tools 27.0.3 β€’ Java binary at: /opt/android-studio-3.0/jre/bin/java β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) β€’ All Android licenses accepted. [βœ“] Android Studio (version 3.0) β€’ Android Studio at /opt/android-studio-3.0 β€’ Flutter plugin version 23.2.1 β€’ Dart plugin version 171.4424 β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) [βœ“] IntelliJ IDEA Community Edition (version 2018.1) β€’ IntelliJ at /opt/intellij-ce-2018.1 β€’ Flutter plugin version 27.0.2 β€’ Dart plugin version 181.4892.1 [βœ“] IntelliJ IDEA Community Edition (version 2017.3) β€’ IntelliJ at /opt/intellij-ce-2017.3 β€’ Flutter plugin version 26.0.1 β€’ Dart plugin version 173.4700 [βœ“] VS Code (version 1.25.1) β€’ VS Code at /usr/share/code β€’ Flutter extension version 2.18.0 [βœ“] Connected devices (1 available) β€’ Pixel 2 XL β€’ 711KPAE0891080 β€’ android-arm64 β€’ Android 8.1.0 (API 27) β€’ No issues found!"><pre class="notranslate"><code class="notranslate"> $ flutter doctor -v [βœ“] Flutter (Channel master, v0.8.3-pre.28, on Linux, locale en_US.UTF-8) β€’ Flutter version 0.8.3-pre.28 at /usr/local/google/home/efortuna/googleio/flutter β€’ Framework revision 0e8103ff13 (5 hours ago), 2018-09-11 18:16:21 +0200 β€’ Engine revision 9a173a8dc8 β€’ Dart version 2.1.0-dev.4.0.flutter-ef72098353 [βœ“] Android toolchain - develop for Android devices (Android SDK 27.0.3) β€’ Android SDK at /usr/local/google/home/efortuna/Android/Sdk β€’ Android NDK location not configured (optional; useful for native profiling support) β€’ Platform android-28, build-tools 27.0.3 β€’ Java binary at: /opt/android-studio-3.0/jre/bin/java β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) β€’ All Android licenses accepted. [βœ“] Android Studio (version 3.0) β€’ Android Studio at /opt/android-studio-3.0 β€’ Flutter plugin version 23.2.1 β€’ Dart plugin version 171.4424 β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b01) [βœ“] IntelliJ IDEA Community Edition (version 2018.1) β€’ IntelliJ at /opt/intellij-ce-2018.1 β€’ Flutter plugin version 27.0.2 β€’ Dart plugin version 181.4892.1 [βœ“] IntelliJ IDEA Community Edition (version 2017.3) β€’ IntelliJ at /opt/intellij-ce-2017.3 β€’ Flutter plugin version 26.0.1 β€’ Dart plugin version 173.4700 [βœ“] VS Code (version 1.25.1) β€’ VS Code at /usr/share/code β€’ Flutter extension version 2.18.0 [βœ“] Connected devices (1 available) β€’ Pixel 2 XL β€’ 711KPAE0891080 β€’ android-arm64 β€’ Android 8.1.0 (API 27) β€’ No issues found! </code></pre></div>
<p dir="auto">I have problem in following the steps of this wiki:<br> <a href="https://github.com/flutter/flutter/wiki/Add-Flutter-to-existing-apps">Add Flutter to existing apps</a></p> <p dir="auto">I have been trying to follow this wiki to create a Android Native project that can jump to an Flutter View, but I have trouble in simply building the project.</p> <h2 dir="auto">Steps to Reproduce</h2> <ol dir="auto"> <li> <p dir="auto">Create an Android Project in Android studio (version 3.3.2), confiugration as follow:<br> <a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9447003/55861056-2d0d7200-5ba8-11e9-941a-5e9659743ce2.png"><img src="https://user-images.githubusercontent.com/9447003/55861056-2d0d7200-5ba8-11e9-941a-5e9659743ce2.png" alt="image" style="max-width: 100%;"></a></p> </li> <li> <p dir="auto">Then I finished the building, The gradle syncing and running is good, nothing wrong here.</p> </li> <li> <p dir="auto">Then I create the flutter module in the same folder as the Android project, nothing wrong here (using flutter create -t module flutter_module_for_android)</p> </li> <li> <p dir="auto">Then I edit the app's build.gradle as follow, you can see that I have added the compileOptions to the file.</p> </li> </ol> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9447003/55861931-fe909680-5ba9-11e9-9c64-50bc379ec711.png"><img src="https://user-images.githubusercontent.com/9447003/55861931-fe909680-5ba9-11e9-9c64-50bc379ec711.png" alt="image" style="max-width: 100%;"></a></p> <ol start="4" dir="auto"> <li>Then I edit the settings.gradle in the host project at here (I have renamed the path properly), Here we have the first problem, the ide says that the "Binding" Symbol is missing. SInce no where in the wiki has mentioned where this "Binding" coming from, I have no idea what I should do here.</li> </ol> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9447003/55863123-7cee3800-5bac-11e9-8775-6c1aee67096c.png"><img src="https://user-images.githubusercontent.com/9447003/55863123-7cee3800-5bac-11e9-8775-6c1aee67096c.png" alt="image" style="max-width: 100%;"></a></p> <ol start="5" dir="auto"> <li>Then I choose to ignore this problem and continue, then I have add the "implementation' to the app's build.gradle as the wiki requested.</li> </ol> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9447003/55862772-b7a3a080-5bab-11e9-92f1-347ab4a01a19.png"><img src="https://user-images.githubusercontent.com/9447003/55862772-b7a3a080-5bab-11e9-92f1-347ab4a01a19.png" alt="image" style="max-width: 100%;"></a></p> <ol start="6" dir="auto"> <li>After all thest procedures I click the "make" to build project, although I haven't added any active dart or android code, the project should be successfully built at least. However I got this:</li> </ol> <p dir="auto"><a target="_blank" rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/9447003/55863152-91323500-5bac-11e9-8fbc-b3a64daa97d9.png"><img src="https://user-images.githubusercontent.com/9447003/55863152-91323500-5bac-11e9-8fbc-b3a64daa97d9.png" alt="image" style="max-width: 100%;"></a></p> <p dir="auto">I stuck at here and have no idea what I should do next, so I put forward this issues to ask for assistance.</p> <h2 dir="auto">Logs</h2> <p dir="auto">detail Android build failure as follow:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content=" ERROR: /Users/yifan.chen/ByteDanceIES/android_with_flutter/flutter_module_for_android/.android/Flutter/null/packages/flutter_tools/gradle/tt_flutter.gradle (No such file or directory) "><pre class="notranslate"><code class="notranslate"> ERROR: /Users/yifan.chen/ByteDanceIES/android_with_flutter/flutter_module_for_android/.android/Flutter/null/packages/flutter_tools/gradle/tt_flutter.gradle (No such file or directory) </code></pre></div> <p dir="auto">flutter doctor -v result as follow:</p> <div class="snippet-clipboard-content notranslate position-relative overflow-auto" data-snippet-clipboard-copy-content="[βœ“] Flutter (Channel faceu_dev_1.0.0, v1.0.1-pre.8, on Mac OS X 10.14.3 18D109, locale en-CN) β€’ Flutter version 1.0.1-pre.8 at /Users/yifan.chen/ByteDanceIES/flutter β€’ Framework revision f1c0708bd5 (3 months ago), 2019-01-15 11:42:04 +0800 β€’ Engine revision 7375a0f414 β€’ Dart version 2.1.0 (build 2.1.0-dev.9.4 f9ebf21297) [!] Android toolchain - develop for Android devices (Android SDK 28.0.3) β€’ Android SDK at /Users/yifan.chen/Library/Android/sdk β€’ Android NDK location not configured (optional; useful for native profiling support) β€’ Platform android-28, build-tools 28.0.3 β€’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01) βœ— Android license status unknown. [βœ“] iOS toolchain - develop for iOS devices (Xcode 10.2) β€’ Xcode at /Applications/Xcode.app/Contents/Developer β€’ Xcode 10.2, Build version 10E125 β€’ ios-deploy 1.9.4 β€’ CocoaPods version 1.6.1 [βœ“] Android Studio (version 3.3) β€’ Android Studio at /Applications/Android Studio.app/Contents β€’ Flutter plugin version 34.0.1 β€’ Dart plugin version 182.5215 β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01) [βœ“] VS Code (version 1.32.3) β€’ VS Code at /Applications/Visual Studio Code.app/Contents β€’ Flutter extension version 2.24.0 [!] Connected device ! No devices available"><pre class="notranslate"><code class="notranslate">[βœ“] Flutter (Channel faceu_dev_1.0.0, v1.0.1-pre.8, on Mac OS X 10.14.3 18D109, locale en-CN) β€’ Flutter version 1.0.1-pre.8 at /Users/yifan.chen/ByteDanceIES/flutter β€’ Framework revision f1c0708bd5 (3 months ago), 2019-01-15 11:42:04 +0800 β€’ Engine revision 7375a0f414 β€’ Dart version 2.1.0 (build 2.1.0-dev.9.4 f9ebf21297) [!] Android toolchain - develop for Android devices (Android SDK 28.0.3) β€’ Android SDK at /Users/yifan.chen/Library/Android/sdk β€’ Android NDK location not configured (optional; useful for native profiling support) β€’ Platform android-28, build-tools 28.0.3 β€’ Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01) βœ— Android license status unknown. [βœ“] iOS toolchain - develop for iOS devices (Xcode 10.2) β€’ Xcode at /Applications/Xcode.app/Contents/Developer β€’ Xcode 10.2, Build version 10E125 β€’ ios-deploy 1.9.4 β€’ CocoaPods version 1.6.1 [βœ“] Android Studio (version 3.3) β€’ Android Studio at /Applications/Android Studio.app/Contents β€’ Flutter plugin version 34.0.1 β€’ Dart plugin version 182.5215 β€’ Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1248-b01) [βœ“] VS Code (version 1.32.3) β€’ VS Code at /Applications/Visual Studio Code.app/Contents β€’ Flutter extension version 2.24.0 [!] Connected device ! No devices available </code></pre></div> <p dir="auto">Any suggestion or analysis is appreciated.</p>
1