-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
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
Fix/updater #506
Fix/updater #506
Conversation
.gitignore
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
roooo
iblrig/__init__.py
Outdated
@@ -1,8 +1,7 @@ | |||
from pathlib import Path | |||
from setuptools_scm import get_version |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there an alternative to a new package? In general we're very careful about adding packages that are not part of the standard library or large reputable open source packages.
In this case to get the version number, I would look into alternatives.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one is a bit more specific, as it gets the version numbers from the local .git directory. Alternative would be to go back to hardcoding the version numbers - which wouldn't be a big deal either.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We would, however, lose support for per-commit versions (e.g., "8.9.3.post3"), but these could probably also be possible with a bit of git magic
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
git describe should do the job - I'll look into it
No description provided.