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
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,12 @@ jobs:
- os: ubuntu-latest
python-version: '3.14'
toxenv: py314
- os: ubuntu-latest
python-version: '3.15-dev'
toxenv: py315
# 3.15 is not released yet, so do not fail the whole matrix if it
# (or a dependency not having wheels for it yet) breaks.
allow-failure: true
- os: macos-latest
python-version: '3.12'
toxenv: py312
Expand Down
6 changes: 6 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@ Fixes:
conf.py now falls back to the setuptools_scm generated src/borgstore/_version.py
and, if that is not there either, to an empty version.

Other changes:

- add support for Python 3.15: classifier, tox py315 env and a CI job running
the test suite on 3.15-dev. As 3.15 is not released yet, that CI job is
allowed to fail.


Version 0.5.5 (2026-07-10)
--------------------------
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# tox configuration - if you change anything here, run this to verify: tox --recreate

[tox]
envlist = py{311,312,313,314},flake8,mypy
envlist = py{311,312,313,314,315},flake8,mypy

[testenv]
deps =
Expand Down
Loading