Skip to content

Commit 3e4287c

Browse files
authored
Merge pull request #192 from siapy/fix
fix: update Python version in workflow configurations from 3.10 to 3.12
2 parents b23449b + d516b76 commit 3e4287c

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Setup PDM
2020
uses: pdm-project/setup-pdm@v4
2121
with:
22-
python-version: 3.10
22+
python-version: "3.12"
2323
cache: true
2424
- name: Install dependencies
2525
run: pdm install -G docs

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- uses: actions/checkout@v4
3737
- uses: pdm-project/setup-pdm@v4
3838
with:
39-
python-version: 3.10
39+
python-version: "3.12"
4040
cache: true
4141
- name: Publish package distributions to PyPI
4242
run: pdm publish

tests/conftest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
from siapy.core.configs import TEST_DATA_DIR
88
from siapy.datasets.tabular import TabularDataset, TabularDatasetData
99
from siapy.entities import Pixels, Shape, SpectralImage, SpectralImageSet
10-
from tests.data_maneger import verify_testdata_integrity
10+
from tests.data_manager import verify_testdata_integrity
1111

1212

1313
class PytestConfigs(SimpleNamespace):

0 commit comments

Comments
 (0)