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
14 changes: 7 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
python-version:
- '3.14'
steps:
- uses: actions/checkout@v6
- uses: prefix-dev/setup-pixi@v0.9.4
- uses: actions/checkout@v7
- uses: prefix-dev/setup-pixi@v0.10.0
with:
pixi-version: v0.70.2
pixi-version: v0.71.2
cache: true
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
environments: tests-cpu
Expand All @@ -44,17 +44,17 @@ jobs:
run: pixi run -e tests-cpu tests-with-cov
- name: Upload coverage report
if: runner.os == 'Linux' && matrix.python-version == '3.14'
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v7
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
run-ty:
name: Run ty
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: prefix-dev/setup-pixi@v0.9.4
- uses: actions/checkout@v7
- uses: prefix-dev/setup-pixi@v0.10.0
with:
pixi-version: v0.70.2
pixi-version: v0.71.2
cache: true
cache-write: ${{ github.event_name == 'push' && github.ref_name == 'main' }}
frozen: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# hatch-vcs derives the version from git tags, so the full history
# (including tags) must be fetched.
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ repos:
- id: check-hooks-apply
- id: check-useless-excludes
- repo: https://github.com/tox-dev/pyproject-fmt
rev: v2.25.0
rev: v2.25.1
hooks:
- id: pyproject-fmt
- repo: https://github.com/lyz-code/yamlfix
Expand Down Expand Up @@ -47,7 +47,7 @@ repos:
hooks:
- id: yamllint
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.18
rev: v0.15.20
hooks:
- id: ruff-check
args:
Expand All @@ -62,7 +62,7 @@ repos:
- pyi
- python
- repo: https://github.com/astral-sh/ty-pre-commit
rev: v0.0.49
rev: v0.0.55
hooks:
- id: ty
# `--no-project` stops uv from creating a `.venv`/`uv.lock` in this
Expand Down
7 changes: 7 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ This is a record of all past skillmodels releases and what went into them in rev
chronological order. We follow [semantic versioning](https://semver.org/) and all
releases are available on [PyPI](https://pypi.org/project/skillmodels/).

## 0.1.1

- Drop the unused `jaxopt` dependency.
- Migrate the deprecated pixi `[system-requirements]` CUDA tables to named
per-platform virtual packages (`linux-64-cuda12`/`linux-64-cuda13`), and refresh the
CI toolchain (pixi 0.71.2, updated GitHub Actions and pre-commit hooks).

## 0.1

- Add the Antweiler–Freyberger (AF) sequential MLE and the Attanasio–Meghir–Nix (AMN)
Expand Down
Loading
Loading