Skip to content
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v5
- name: Set up Python
run: uv python install 3.13
run: uv python install 3.14
- name: Bump version
run: |
uv run bumpversion.py ${{ github.event.inputs.bumptype }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
python-version: "3.13"
python-version: "3.14"
enable-cache: true
- name: Set up Python
run: uv python install
Expand Down
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -105,4 +105,6 @@ uv.lock

**data/

pkg_graph.*
pkg_graph.*

/notebooks/tutorials-repository/
11 changes: 11 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
Unreleased
----------
- **perf(numba)**: cache the generic Numba root-finder specializations, add
opt-in `warmup_numba()`, and enable disk caching on the direct Numba kernels.
- **build(numba)**: widen Python < 3.14 support to Numba 0.61 through 0.65
without gaps, while keeping Python 3.14 on Numba 0.65.
- **fix(compatibility)**: add Pandas 3.x compatibility fixes in the
cycle-count aggregation helpers and notebook examples.
- **docs(numba)**: refresh the Numba speedup report, repair broken docs links,
and update the tutorial notebooks so they execute on Python 3.13 and 3.14.

2.0.4
------
- **bump(patch)**: Bump version to 2.0.4 [skip ci]
Expand Down
Loading
Loading