Skip to content

Commit

Permalink
v1.14.1 (#365)
Browse files Browse the repository at this point in the history
* v1.14.1-rc0

* v1.14.1-rc1

---------

Co-authored-by: rtosholdings-bot <rtosholdings-bot@sig.com>
  • Loading branch information
OrestZborowski-SIG and rtosholdings-bot authored Dec 1, 2023
1 parent 24552d7 commit ec3d030
Show file tree
Hide file tree
Showing 24 changed files with 3,918 additions and 1,224 deletions.
2 changes: 1 addition & 1 deletion conda_recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ requirements:
- numba >=0.56.2
- pandas >=1.0,<3.0
- python-dateutil
- riptide_cpp >=1.16.0,<2 # run with any (compatible) version in this range
- riptide_cpp >=1.16.1,<2 # run with any (compatible) version in this range

about:
home: https://github.com/rtosholdings/riptable
Expand Down
11 changes: 11 additions & 0 deletions dev_tools/_docstring_config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import riptable

# Standardized riptable configuration settings applied when doing docstring validation.

# Standardize on these display settings when executing examples
riptable.Display.options.COL_MAX = 1_000_000 # display all Dataset columns (COL_ALL is incomplete)
riptable.Display.options.E_MAX = 100_000_000 # render up to 100MM before using scientific notation
riptable.Display.options.P_THRESHOLD = 0 # truncate small decimals, rather than scientific notation
riptable.Display.options.NUMBER_SEPARATOR = True # put commas in numbers
riptable.Display.options.HEAD_ROWS = 3
riptable.Display.options.TAIL_ROWS = 3
12 changes: 12 additions & 0 deletions dev_tools/docstring_filters.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Extra name filters for docstring names to validate.
# All names rooted at these filters will match.
#
# By default, all public names are included and all private names are excluded.
# Each line has the form [+-]<name>, and specifies files to include (+) or exclude (-) from the default list.

+riptable.rt_categorical.Categorical._fa
+riptable.rt_fastarray.FastArray._np

-riptable.rt_sort_cache
-riptable.rt_fastarray.FastArray.abs
-riptable.rt_fastarray.FastArray.save
Loading

0 comments on commit ec3d030

Please sign in to comment.