ci: add version file to gitignore

This commit is contained in:
Elara 2024-04-25 19:45:09 -07:00
parent 68919e2c35
commit e97ee0ea13
2 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@ -160,3 +160,5 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# setuptools-scm
_version.py

View File

@ -12,5 +12,5 @@ __version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE
__version__ = version = '0.1.dev15'
__version_tuple__ = version_tuple = (0, 1, 'dev15')
__version__ = version = '0.1.dev17'
__version_tuple__ = version_tuple = (0, 1, 'dev17')