Skip to content

Commit 715e793

Browse files
authored
Merge branch 'main' into v0_6
2 parents d2e9880 + bd8393e commit 715e793

17 files changed

+255
-62
lines changed

.github/workflows/asv-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
working-directory: ${{env.WORKING_DIR}}
2727
steps:
2828
- name: Set up Python ${{env.PYTHON_VERSION}}
29-
uses: actions/setup-python@v5
29+
uses: actions/setup-python@v6
3030
with:
3131
python-version: ${{env.PYTHON_VERSION}}
3232
- name: Checkout main branch of the repository

.github/workflows/asv-nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
working-directory: ${{env.WORKING_DIR}}
2323
steps:
2424
- name: Set up Python ${{env.PYTHON_VERSION}}
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: ${{env.PYTHON_VERSION}}
2828
- name: Checkout main branch of the repository

.github/workflows/asv-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
working-directory: ${{env.WORKING_DIR}}
2929
steps:
3030
- name: Set up Python ${{env.PYTHON_VERSION}}
31-
uses: actions/setup-python@v5
31+
uses: actions/setup-python@v6
3232
with:
3333
python-version: ${{env.PYTHON_VERSION}}
3434
- name: Checkout PR branch of the repository

.github/workflows/build-documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v5
2424
- name: Set up Python 3.11
25-
uses: actions/setup-python@v5
25+
uses: actions/setup-python@v6
2626
with:
2727
python-version: '3.11'
2828
- name: Install dependencies

.github/workflows/pre-commit-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
fetch-depth: 0
2020
- name: Set up Python
21-
uses: actions/setup-python@v5
21+
uses: actions/setup-python@v6
2222
with:
2323
python-version: '3.11'
2424
- name: Install dependencies

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v5
2727
- name: Set up Python
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: '3.11'
3131
- name: Install dependencies

.github/workflows/smoke-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
steps:
2626
- uses: actions/checkout@v5
2727
- name: Set up Python ${{ matrix.python-version }}
28-
uses: actions/setup-python@v5
28+
uses: actions/setup-python@v6
2929
with:
3030
python-version: ${{ matrix.python-version }}
3131
- name: Install dependencies

.github/workflows/testing-and-coverage.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v5
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies
@@ -42,7 +42,7 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@v5
4444
- name: Set up Python 3.10
45-
uses: actions/setup-python@v5
45+
uses: actions/setup-python@v6
4646
with:
4747
python-version: '3.10'
4848
- name: Install dependencies

.github/workflows/testing-windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222
- uses: actions/checkout@v5
2323
- name: Set up Python ${{ matrix.python-version }}
24-
uses: actions/setup-python@v5
24+
uses: actions/setup-python@v6
2525
with:
2626
python-version: ${{ matrix.python-version }}
2727
- name: Install dependencies

docs/tutorials/data_manipulation.ipynb

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -310,6 +310,30 @@
310310
"ndf[\"nested.ab\"]"
311311
]
312312
},
313+
{
314+
"cell_type": "markdown",
315+
"metadata": {},
316+
"source": [
317+
"## Concatenating Nested Frames\n",
318+
"\n",
319+
"Users can concatenate two nested data frames using panda's `concat` function. Each row from each individual frame becomes a single row in the combined frame with the nested data correctly propagated."
320+
]
321+
},
322+
{
323+
"cell_type": "code",
324+
"execution_count": null,
325+
"metadata": {},
326+
"outputs": [],
327+
"source": [
328+
"from pandas import concat\n",
329+
"\n",
330+
"ndf_part1 = generate_data(5, 20, seed=1)\n",
331+
"ndf_part2 = generate_data(5, 20, seed=2)\n",
332+
"ndf_joined = concat([ndf_part1, ndf_part2], ignore_index=True)\n",
333+
"\n",
334+
"ndf_joined"
335+
]
336+
},
313337
{
314338
"cell_type": "markdown",
315339
"metadata": {},
@@ -363,7 +387,7 @@
363387
],
364388
"metadata": {
365389
"kernelspec": {
366-
"display_name": "lsdb",
390+
"display_name": "nested",
367391
"language": "python",
368392
"name": "python3"
369393
},
@@ -377,7 +401,7 @@
377401
"name": "python",
378402
"nbconvert_exporter": "python",
379403
"pygments_lexer": "ipython3",
380-
"version": "3.12.8"
404+
"version": "3.10.4"
381405
}
382406
},
383407
"nbformat": 4,

0 commit comments

Comments
 (0)