Skip to content

Commit 1961e4c

Browse files
Merge pull request #108 from alexdaniel654/rel/v1.1.2
rel/v1.1.2
2 parents 2a1f96a + 9c0dbee commit 1961e4c

File tree

6 files changed

+20
-11
lines changed

6 files changed

+20
-11
lines changed

.github/workflows/python_ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,10 @@ jobs:
1212

1313
runs-on: ${{ matrix.os }}
1414
strategy:
15+
fail-fast: false
1516
matrix:
1617
os: [ubuntu-latest, windows-latest, macos-latest]
17-
python-version: [3.9, "3.10", "3.11", "3.12"]
18+
python-version: [3.9, "3.10", "3.11", "3.12", "3.13"]
1819

1920
steps:
2021
- uses: actions/checkout@v2

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Changelog
2+
## [1.1.2] - 2025-11-06
3+
### Added
4+
* Support for Python 3.13
5+
6+
### Changed
7+
* Dependencies are no longer pinned to exact versions
8+
29
## [1.1.1] - 2024-07-22
310
### Added
411
* Segmentation Metrics is now available on conda-forge.

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ authors:
55
given-names: "Alexander J"
66
orcid: "https://orcid.org/0000-0003-2353-3283"
77
title: "Segmentation Metrics"
8-
version: 1.1.1
8+
version: 1.1.2
99
doi: 10.5281/zenodo.6576199
10-
date-released: 2024-07-22
10+
date-released: 2025-11-06
1111
url: "https://github.com/alexdaniel654/Segmentation_Metrics"

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
project = 'Segmentation Metrics'
2020
copyright = f'{datetime.now().year}, Alex Daniel'
2121
author = 'Alexander J Daniel'
22-
release = '1.1.1'
22+
release = '1.1.2'
2323

2424
# -- General configuration ---------------------------------------------------
2525
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
absl-py==2.1.0
2-
numpy==2.0.1
3-
pandas==2.2.2
4-
pytest==8.3.1
5-
scikit-image==0.24.0
6-
scipy==1.13.1
1+
absl-py>=2.1.0
2+
numpy>=2.0.1
3+
pandas>=2.2.3
4+
pytest>=8.3.2
5+
scikit-image>=0.24.0
6+
scipy>=1.13.1

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name="segmentationmetrics",
13-
version="1.1.1",
13+
version="1.1.2",
1414
description="Binary segmentation accuracy metrics",
1515
long_description=long_description,
1616
long_description_content_type="text/markdown",
@@ -33,6 +33,7 @@
3333
'Programming Language :: Python :: 3.10',
3434
'Programming Language :: Python :: 3.11',
3535
'Programming Language :: Python :: 3.12',
36+
'Programming Language :: Python :: 3.13',
3637
'License :: OSI Approved :: Apache Software License',
3738
],
3839
)

0 commit comments

Comments
 (0)