You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Result: version of pkg-name-0.1.1.dev10+g28f91ce.d20201030 (works)
Note: this version has the date appended for some reason
The Issue
I would like to be able to use Case 1 above. Unfortunately, it doesn't seem to work. What might be the problem? I have tried combing through the docs several times over, and haven't found any solutions.
In the meantime, I will be going with Case 2.
The text was updated successfully, but these errors were encountered:
I am hitting what seems to be an edge when combining
python setup.py sdist
,setup.py
, andpyproject.toml
.Here is my
pyproject.toml
:And my
venv
at the beginning:Case 1: didn't pre-install package
Result: version of
0.0.0
(didn't work)#386 seems related.
Case 2: pre-installed package
pip install -e . python setup.py sdist
Result: version of
pkg-name-0.1.1.dev10+g28f91ce
(works)Case 3: didn't install package + added config directly to
setup.py
I add the
pyproject.toml
config section tosetup.py
'ssetup
function:And do not have to pre-install the package:
Result: version of
pkg-name-0.1.1.dev10+g28f91ce.d20201030
(works)Note: this version has the date appended for some reason
The Issue
I would like to be able to use Case 1 above. Unfortunately, it doesn't seem to work. What might be the problem? I have tried combing through the docs several times over, and haven't found any solutions.
In the meantime, I will be going with Case 2.
The text was updated successfully, but these errors were encountered: