Skip to content

Commit

Permalink
trying to deal with bug can't find version
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsteve committed Dec 23, 2023
1 parent 89ae76e commit dbb8472
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ bokeh==3
astropy==5.1
scipy==1.9.1
numpy==1.23.3
setuptools_scm==3.2.0
setuptools==40.7.3
./
16 changes: 16 additions & 0 deletions roentgen/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# file generated by setuptools_scm
# don't change, don't track in version control
TYPE_CHECKING = False
if TYPE_CHECKING:
from typing import Tuple, Union
VERSION_TUPLE = Tuple[Union[int, str], ...]
else:
VERSION_TUPLE = object

version: str
__version__: str
__version_tuple__: VERSION_TUPLE
version_tuple: VERSION_TUPLE

__version__ = version = '2.1.1.dev18+g89ae76e'
__version_tuple__ = version_tuple = (2, 1, 1, 'dev18', 'g89ae76e')

0 comments on commit dbb8472

Please sign in to comment.