Skip to content

Commit

Permalink
Merge pull request #320 from alexdaniel654/rel/v1.3.9
Browse files Browse the repository at this point in the history
rel/v1.3.9
  • Loading branch information
alexdaniel654 authored Mar 20, 2024
2 parents bbcd11d + b5e44df commit 2acf603
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/python_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ jobs:

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## [1.3.9] - 2024-03-20
### Added
* Testing/Support for Python 3.11

### Fixes
* Limit Keras to <v3 as newer versions can't load models in the supplied format


## [1.3.8] - 2023-07-24

### Changed
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ authors:
given-names: "Susan T"
orcid: "https://orcid.org/0000-0003-0903-7507"
title: "Renal Segmentor"
version: 1.3.8
version: 1.3.9
doi: 10.5281/zenodo.5796277
date-released: 2023-07-24
date-released: 2024-03-20
url: "https://github.com/alexdaniel654/Renal_Segmentor"
4 changes: 2 additions & 2 deletions renal_segmentor.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,8 @@ def resource_path(relative_path):
'name': 'Renal Segmentor',
'description': 'Automatically segment the kidneys from MRI '
'data.',
'version': '1.3.8',
'copyright': '2023',
'version': '1.3.9',
'copyright': '2024',
'website': 'https://github.com/alexdaniel654/Renal_Segmentor',
'developer': 'https://www.researchgate.net/profile/'
'Alexander-Daniel-2',
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ pandas>=2.0.3
pytest>=7.4.0
scikit-image>=0.20.0
tensorflow>=2.13.0
keras<3
wget>=3.2
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

setup(
name="renalsegmentor",
version="1.3.8",
version="1.3.9",
description="Segment kidneys from MRI data",
long_description=long_description,
long_description_content_type="text/markdown",
Expand All @@ -36,6 +36,7 @@
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',

'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
Expand Down

0 comments on commit 2acf603

Please sign in to comment.