8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to use a different filename for my _version.py, so in my setup.cfg I set:
versionfile_source = src/someotherfile.py
When I run versioneer install this correctly generates that file and adds it to my MANIFEST.in.
versioneer install
However in my init.py it adds:
from ._version import get_versions
instead of:
from .someotherfile import get_versions
If I manually modify this line everything else seems to work as expected.
The text was updated successfully, but these errors were encountered:
Thanks for the report. Yes, this is a known issue (#123), and it appears that #138 was a first pass at resolving it.
Would you be interested in taking a shot at fixing it?
Sorry, something went wrong.
Oops, I hadn't seen the original bug report. Feel free to close this as duplicate.
I can have a look at fixing it in the next week or two.
No branches or pull requests
I want to use a different filename for my _version.py, so in my setup.cfg I set:
When I run
versioneer install
this correctly generates that file and adds it to my MANIFEST.in.However in my init.py it adds:
instead of:
If I manually modify this line everything else seems to work as expected.
The text was updated successfully, but these errors were encountered: