Skip to content

set orig_index in Index.__call__ to avoid pandas SettingWithCopyWarning #68

set orig_index in Index.__call__ to avoid pandas SettingWithCopyWarning

set orig_index in Index.__call__ to avoid pandas SettingWithCopyWarning #68

Workflow file for this run

name: Run unit tests
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
run_tests:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- name: Check out main
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
run: python -m pip install . pytest
- name: Run pytest
run: pytest