use version number from the tags#87
Conversation
| Function_Changes.md | ||
| .vscode | ||
| _build | ||
| pyobis/_version.py No newline at end of file |
There was a problem hiding this comment.
We don't want to track this file. It should be shipped only on tagged releases but no need to keep it in the repo.
| occurrence.search(geometry='POLYGON((30.1 10.1, 10 20, 20 40, 40 40, 30.1 10.1))') | ||
| """ | ||
|
|
||
| __version__ = "1.2.5" |
There was a problem hiding this comment.
With the lines below, when we create a tag on GitHub, a _version.py file will be written and the installation will read the version from it. That way we need to change the version in a single place, the tag, and everything else is automatic.
There was a problem hiding this comment.
beautiful. I am learning so many great tricks through this project. Thanks!
There was a problem hiding this comment.
Sadly all I can teach is packaging tricks. At least I can save you two from the packaging hell so you can focus on fun coding :-)
There was a problem hiding this comment.
I am actually having fun coding on this project. And thank you for keeping me out of those trappy things so that I would keep doing that fun :)
This should fix step
1from #84.