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
2 changes: 1 addition & 1 deletion docs/building-and-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ CI currently tests only the 3.12 floor — the 3.14 matrix entry in
`.github/workflows/test.yml` is commented out to save CI minutes.

Raising the floor to 3.14 (Ubuntu 26.04 LTS) is under consideration; see the
[Python Version Policy](https://github.com/iglootools/common-guidelines/blob/main/guidelines/project-setup/python-tooling.md#python-version-policy)
[Python Version Policy](https://github.com/iglootools/common-guidelines/blob/main/guidelines/coding/python.md#python-version-policy)
for the full rationale and the list of knobs that must move together.

The `check-links` workflow runs a link checker against the documentation to catch broken links.
Expand Down
2 changes: 1 addition & 1 deletion docs/guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ For general coding, Python, and tooling guidelines, see the [common guidelines](

### Documented exception: mutable accumulators in scan/group loops

The [common Python guidelines](https://github.com/iglootools/common-guidelines/blob/main/guidelines/python.md)
The [common Python guidelines](https://github.com/iglootools/common-guidelines/blob/main/guidelines/coding/python.md)
ask for lists built as a single expression rather than `errors = []` plus
`append`, and for `continue` to be replaced by filtering. photree keeps the
accumulator form in two specific shapes, because the comprehension is harder
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "photree"
description = "Manage photos in a directory tree"
readme = "README.md"
# Floor is Ubuntu 24.04 LTS's python3; upper bound keeps installs off an untested
# Python. See common-guidelines/guidelines/project-setup/python-tooling.md "Python Version Policy".
# Python. See common-guidelines/guidelines/coding/python.md "Python Version Policy".
requires-python = ">=3.12,<3.15"
license = "Apache-2.0"
license-files = ["LICENSE"]
Expand Down