David Tucker

Results 39 comments of David Tucker

Yes, looks like it: ``` console $ pipenv --version pipenv, version 2022.11.30 $ pipenv install 'requests

Potentially relevant: https://discuss.python.org/t/announce-pybi-and-posy/23021

> Well if the virtualenv was already established for the project It wasn't tho ``` console Creating a virtualenv for this project... ``` > Also the minimum version modern pipenv...

@matteius Thanks for the response! I've definitely seen that... Just to see if I understand: - `--index` controls where a specific, named package comes from (and is reflected in the...

FWIW, I recognize this is kind of a wonky ask, and we have since remedied the need for 2 indices. The direct answer to my Q seems to be "it's...

IMO fixtures and `setUpClass` have the desirable behavior (error). It's desirable because, when something breaks, it's useful to see - failures for the tests of that something - errors for...

Same for the link at the top of https://docs.saltproject.io/en/latest/ref/states/all/salt.states.docker_network.html

This repros... ``` python import requests requests.post( "https://httpbin.org/post", timeout=60 * 3 ) ``` _edit: It's because of the `60 * 3` instead of `180`_ 😩

@ericwb, this still hits on 3260f137873798b4b0c0c289373cc5e8fa2d93ed: ``` >> Issue: [B113:request_without_timeout] Requests call without timeout Severity: Medium Confidence: Low CWE: CWE-400 (https://cwe.mitre.org/data/definitions/400.html) More Info: https://bandit.readthedocs.io/en/1.7.6/plugins/b113_request_without_timeout.html Location: sscce.py:2:0 1 import requests 2...