Skip to content

Commit

Permalink
v1.12.0-rc1 (#357)
Browse files Browse the repository at this point in the history
Co-authored-by: rtosholdings-bot <[email protected]>
  • Loading branch information
OrestZborowski-SIG and rtosholdings-bot authored Aug 16, 2023
1 parent fae8f36 commit 9c5e3bb
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ share/python-wheels/
.installed.cfg
*.egg
MANIFEST
riptable/_version.py

# PyInstaller
# Usually these files are written by a python script from a template
Expand Down
7 changes: 6 additions & 1 deletion riptable/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@
rt: RIPTABLE
"""
__author__ = "SIG"
from ._version import __version__
# The _version module is generated by ci script and never checked in, thus
# it may not be available when run in-tree, so treat that case as dev version.
try:
from ._version import __version__
except ModuleNotFoundError:
__version__ = "DEV"
from .rt_accum2 import Accum2
from .rt_accumtable import AccumTable, accum_cols, accum_ratio, accum_ratiop
from .rt_categorical import Categorical, CatZero, categorical_convert
Expand Down
1 change: 0 additions & 1 deletion riptable/_version.py

This file was deleted.

0 comments on commit 9c5e3bb

Please sign in to comment.