Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
matrix:
os: [ ubuntu-latest, windows-latest ]
python-version: [ "3.12", "3.13" ]
pandas-version: [ "2", "3" ]
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -52,6 +53,14 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install package
run: make install
- name: Install pandas ${{ matrix.pandas-version }}
shell: bash
run: |
if [ "${{ matrix.pandas-version }}" = "2" ]; then
pip install "pandas>=2,<3"
else
pip install "pandas>=3,<4"
fi
- name: Run tests
run: make test
- uses: codecov/codecov-action@v4
Expand Down
4 changes: 4 additions & 0 deletions changelog_entry.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- bump: patch
changes:
added:
- Added pandas 2 and 3 CI matrix testing to ensure compatibility with both major versions.