Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12', '3.13']
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
defaults:
run:
shell: bash
Expand Down Expand Up @@ -42,6 +42,8 @@ jobs:
- name: Lint with flake8
run: poetry run flake8 ./staircase
- name: Test with pytest
env:
MPLBACKEND: Agg
run: |
poetry run pytest ./tests --junitxml=junit/test-results-${{ matrix.platform }}-${{ matrix.python-version }}.xml --cov=staircase --cov-report=xml
codecov
Expand Down
4 changes: 4 additions & 0 deletions docs/release_notes/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ Changelog

UNRELEASED

- support for Pandas 4 added
- support for Python 3.14 added
- support for Python 3.9 removed

Please list new changes above this comment

**v2.7.0 2025-01-01**
Expand Down
Loading
Loading