Stefan Mejlgaard
Stefan Mejlgaard
This works for me using the current master. Using: Driver: MySQL ODBC 8.0 Unicode Driver turbodbc: 4.2.1 Python: 3.9.4 Table definition: ``` Column | Type --------+----- data | json (null)...
@sbidoul What is the reasoning for stripping the credentials from a VCS URL in `direct_url.json` when specified as environment variables? Specifically, I'm referring to [this section](https://peps.python.org/pep-0610/#:~:text=url%20MUST%20be%20stripped) of the specification in...
@sbidoul I have a `requirements.txt` file that contains the line ``` ml-framework @ git+https://${USERNAME}:${PASSWORD}@gitlab.com/ds-api/team-ai-projects/team-ai-internal-projects/[email protected] ``` When installed, this results in the following `ml_framework-0.10.2.dist-info/direct_url.json`: ```json { "url": "https://gitlab.com/ds-api/team-ai-projects/team-ai-internal-projects/ml_framework.git", "vcs_info": { "commit_id":...
Here's a reproducible example: ```bash $ mkdir pip-test; cd pip-test $ echo "resolvelib @ git+https://${TEST_USER}:${TEST_PASS}@github.com/sarugaku/[email protected]" > requirements.txt $ python3 -m venv .venv $ . .venv/bin/activate $ export TEST_USER="test-user" $ export...
@sbidoul Do you want me to create a separate issue on this?
Issue stems from this commit: https://github.com/pytest-dev/pytest/commit/385796ba494e7ae65d55892d4a358b371ac7a6b6 Running the example on the commit just before works fine. After this commit, I get the reported error.
@pradyunsg The issue with separating "url" and "url with auth" in pip is that pip is relying on the `str(req)` behaviour of the `Requirement` class, so there is no easy...
Hi @dennisbader, thanks for the explanation. I can see how it makes sense to enforce the 0-indexing for encodings. In that case, I would like to add a note to...
> I suppose some_float here is a float? Yes, there's a reproducible example in the details of my issue.