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: 4 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ jobs:
- dtype: float64
# Installation options variations
- options: 'none'
# No options on Python < 3.14, where annotations are evaluated eagerly, to catch
# annotations referencing optional dependencies.
- python-version: '3.10'
options: 'none'
# Lower-bounds of all dependencies and Python version.
- python-version: '3.10.0'
extra_groups: 'lower_bounds'
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ changelog does not include internal changes that do not affect the user.

## [Unreleased]

### Fixed

- Fixed a bug with type annotations making it impossible to use TorchJD without any optional
dependencies on Python versions older than 3.14.

## [0.17.0] - 2026-06-24

### Added
Expand Down
2 changes: 2 additions & 0 deletions src/torchjd/_linalg/_dual_cone.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
from __future__ import annotations

import contextlib
from abc import ABC, abstractmethod

Expand Down
Loading