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
A __version__ string should be added to xigt/__init__.py. It should become 1.1.0 for the next release. 1.0.0 was not in the 1.0 release, so it probably shouldn't be used since it's no longer true after something has been committed, so let's use 1.0.1 for the first one.
After some research, it seems a good method is to put it in a separate module (e.g. version.py) then read (NOT import) it from setup.py, but import it from __init__.py.
A
__version__
string should be added toxigt/__init__.py
. It should become1.1.0
for the next release.1.0.0
was not in the 1.0 release, so it probably shouldn't be used since it's no longer true after something has been committed, so let's use1.0.1
for the first one.After some research, it seems a good method is to put it in a separate module (e.g.
version.py
) then read (NOT import) it fromsetup.py
, but import it from__init__.py
.See here and here and here
The text was updated successfully, but these errors were encountered: