Skip to content

Commit 27d9632

Browse files
committed
Update to skmatter 1.8
1 parent 1c2af45 commit 27d9632

File tree

12 files changed

+22
-19
lines changed

12 files changed

+22
-19
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Set up Python
1616
uses: actions/setup-python@v5
1717
with:
18-
python-version: "3.13"
18+
python-version: "3.14"
1919

2020
- name: install tests dependencies
2121
run: python -m pip install tox

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: setup Python
1717
uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.13"
19+
python-version: "3.14"
2020

2121
- name: install tests dependencies
2222
run: python -m pip install tox

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Set up Python
1515
uses: actions/setup-python@v5
1616
with:
17-
python-version: "3.13"
17+
python-version: "3.14"
1818

1919
- name: install tests dependencies
2020
run: python -m pip install tox

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: setup Python
2323
uses: actions/setup-python@v5
2424
with:
25-
python-version: "3.13"
25+
python-version: "3.14"
2626
- run: python -m pip install tox
2727
- name: Build package
2828
run: tox -e build

.github/workflows/tests-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ jobs:
1111
strategy:
1212
matrix:
1313
python-version:
14-
- "3.10"
15-
- "3.13"
14+
- "3.11"
15+
- "3.14"
1616

1717
steps:
1818
- uses: actions/checkout@v5

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
- macos-latest
1717
- windows-latest
1818
python-version:
19-
- "3.10"
20-
- "3.13"
19+
- "3.11"
20+
- "3.14"
2121

2222
steps:
2323
- uses: actions/checkout@v5

CHANGELOG

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ The rules for CHANGELOG file:
1313

1414
Unreleased
1515
----------
16+
- Fix PCovC scaling (#270)
17+
- Refactor of reconstruction measures(#275)
18+
- Code cleanup of Base classes (#264)
19+
- Update ``sklearn`` dependency to `>=1.8.0` (#278)
20+
- Bump minimal Python version to 3.11 (#278)
1621

1722
0.3.2 (2025/07/15)
1823
------------------

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can then ``import skmatter`` and use scikit-matter in your projects!
3434
3535
Tests
3636
-----
37-
We are testing our code for Python 3.10 and 3.13 on the latest versions of Ubuntu,
37+
We are testing our code for Python 3.11 and 3.14 on the latest versions of Ubuntu,
3838
macOS and Windows.
3939

4040
.. marker-issues

docs/requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,3 @@ sphinx
22
sphinx-gallery
33
sphinx-toggleprompt
44
pydata-sphinx-theme
5-
tomli

docs/src/conf.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,11 @@
1010
# add these directories to sys.path here. If the directory is relative to the
1111
# documentation root, use os.path.abspath to make it absolute, like shown here.
1212

13+
import tomllib
1314
import os
1415
import sys
1516
from datetime import datetime
1617

17-
import tomli # Replace by tomllib from std library once docs are build with Python 3.11
18-
1918
import skmatter
2019

2120

@@ -28,7 +27,7 @@
2827
master_doc = "index"
2928

3029
with open(os.path.join(ROOT, "pyproject.toml"), "rb") as fp:
31-
project_dict = tomli.load(fp)["project"]
30+
project_dict = tomllib.load(fp)["project"]
3231

3332
project = project_dict["name"]
3433
author = ", ".join(a["name"] for a in project_dict["authors"])

0 commit comments

Comments
 (0)