Skip to content

Commit

Permalink
v1.6.5 (#337)
Browse files Browse the repository at this point in the history
* v1.6.5-rc1

* v1.6.5-rc2

---------

Co-authored-by: rtosholdings-bot <[email protected]>
  • Loading branch information
OrestZborowski-SIG and rtosholdings-bot authored Feb 22, 2023
1 parent ce54d13 commit abbf49f
Show file tree
Hide file tree
Showing 14 changed files with 1,099 additions and 163 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Install dependencies
run: |
python dev_tools/gen_requirements.py --out pypi_reqs.txt pypi
conda install -q -y --file pypi_reqs.txt
conda create -q -y -n pypi_build python=${{ matrix.python-version }} --file pypi_reqs.txt
- name: Install core dependencies
# Needed for pip install of riptide_cpp from sdist
run: |
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
run: |
set -ex
python dev_tools/gen_requirements.py --out conda_reqs.txt conda
conda install -q -y --file conda_reqs.txt
conda create -q -y -n conda_build python=${{ env.python-version }} --file conda_reqs.txt
- name: Build Package
shell: bash -l {0}
run: |
Expand Down
2 changes: 1 addition & 1 deletion docs/source/tutorial/tutorial_concat.rst
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ To keep the column data from the first Dataset, use
names, but the concatenation is performed::

>>> rt.Dataset.concat_columns([ds7, ds8], do_copy=True, on_duplicate='first')
C:\Miniconda3\envs\johnsonc_py39\lib\site-packages\riptable-1.3.6-py3.9.egg\riptable\rt_dataset.py:5628: UserWarning: concat_columns() duplicate column mismatch: {'A'}
C:\\riptable\\rt_dataset.py:5628: UserWarning: concat_columns() duplicate column mismatch: {'A'}
warnings.warn(f'concat_columns() duplicate column mismatch: {dups!r}')
# A B C D
- -- -- -- --
Expand Down
2 changes: 1 addition & 1 deletion docs/source/tutorial/tutorial_datasets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ you try to work with one::

>>> a = np.array([[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12]])
>>> a_fa = rt.FastArray(a)
C:\Miniconda\envs\johnsonc_py39\lib\site-packages\riptable\rt_fastarray.py:561: UserWarning: FastArray contains two or more dimensions greater than one - shape:(3, 4). Problems may occur.
C:\\riptable\\rt_fastarray.py:561: UserWarning: FastArray contains two or more dimensions greater than one - shape:(3, 4). Problems may occur.
warnings.warn(warning_string)

If you don’t specify the dtype, Riptable makes its best guess::
Expand Down
2 changes: 1 addition & 1 deletion docs/source/tutorial/tutorial_io.rst
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ To add it with rows and columns transposed::
>>> ds3 = rt.Dataset()
>>> ds3.add_matrix(np_2d_arr.T)
>>> ds3
C:\Miniconda\envs\johnsonc_py39\lib\site-packages\riptable\rt_fastarray.py:561: UserWarning: FastArray initialized with strides.
C:\\riptable\\rt_fastarray.py:561: UserWarning: FastArray initialized with strides.
warnings.warn(warning_string)
# col_0 col_1 col_2
- ----- ----- -----
Expand Down
3 changes: 0 additions & 3 deletions riptable/.vs/ProjectSettings.json

This file was deleted.

8 changes: 0 additions & 8 deletions riptable/.vs/VSWorkspaceState.json

This file was deleted.

Binary file removed riptable/.vs/riptable/v16/.suo
Binary file not shown.
Binary file removed riptable/.vs/slnx.sqlite
Binary file not shown.
Loading

0 comments on commit abbf49f

Please sign in to comment.