prefer local sources over remote ones#585
Closed
dimpase wants to merge 1 commit into
Closed
Conversation
While trying to upgrade SageMath's mpmath to 1.2.0, I had to patch this, see https://trac.sagemath.org/ticket/31564#comment:9 (also, it simply does not work with new versions of setuptools etc) ``` [mpmath-1.2.0] LookupError: setuptools-scm was unable to detect version for '/tmp/pip-req-build-i64_7gu6'. [mpmath-1.2.0] [mpmath-1.2.0] Make sure you're either building from a fully intact git repository or PyPI tarballs. Most other sources (such as GitHub's tarballs, a git checkout without the .git folder) don't contain the necessary metadata and will not work. ``` - probably due to missing meta-data.
Collaborator
|
Maybe it could be possible to use |
This was referenced Mar 26, 2021
Collaborator
Author
|
this actually is working in 1.2.1, as opposed to 1.2.0. I'll close it then, sorry for noise. |
Collaborator
|
You reported a real problem. It's hardly a noise. (Unfortunately, that problem was predicted) |
t98yu
pushed a commit
to HPQC-LABS/mpmath
that referenced
this pull request
Apr 26, 2021
The setuptools_scm usage was broken by 867d878 (likely, this is a source of problem in mpmath#585) Closes mpmath#580 (an alternative to mpmath#583 and mpmath#581) Solves mpmath#585 as well.
t98yu
pushed a commit
to t98yu/mpmath
that referenced
this pull request
Apr 27, 2021
The setuptools_scm usage was broken by 867d878 (likely, this is a source of problem in mpmath#585) Closes mpmath#580 (an alternative to mpmath#583 and mpmath#581) Solves mpmath#585 as well.
t98yu
pushed a commit
to t98yu/mpmath
that referenced
this pull request
Apr 27, 2021
The setuptools_scm usage was broken by 867d878 (likely, this is a source of problem in mpmath#585) Closes mpmath#580 (an alternative to mpmath#583 and mpmath#581) Solves mpmath#585 as well.
t98yu
pushed a commit
to t98yu/mpmath
that referenced
this pull request
Apr 28, 2021
The setuptools_scm usage was broken by 867d878 (likely, this is a source of problem in mpmath#585) Closes mpmath#580 (an alternative to mpmath#583 and mpmath#581) Solves mpmath#585 as well.
t98yu
pushed a commit
to t98yu/mpmath
that referenced
this pull request
Apr 28, 2021
The setuptools_scm usage was broken by 867d878 (likely, this is a source of problem in mpmath#585) Closes mpmath#580 (an alternative to mpmath#583 and mpmath#581) Solves mpmath#585 as well.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
While trying to upgrade SageMath's mpmath to 1.2.0, I had to patch this, see
https://trac.sagemath.org/ticket/31564#comment:9
(also, it simply does not work with new versions of setuptools etc)