Skip to content

Commit

Permalink
Add support for 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
erikogabrielsson committed Jan 12, 2024
1 parent 7846b5d commit c7da453
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run_pytests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- name: Prevent cache-miss on windows
run: |
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.1] - 2023-01-12

### Fixed

- Fixed missing support for Python 3.12.

## [0.12.0] - 2023-01-12

### Changed
Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "wsidicomizer"
version = "0.12.0"
version = "0.12.1"
description = "Tool for reading WSI files from proprietary formats and optionally convert them to to DICOM"
authors = ["Erik O Gabrielsson <erik.o.gabrielsson@sectra.com>"]
license = "Apache-2.0"
Expand All @@ -17,7 +17,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = ">=3.9, <3.12"
python = "^3.9"
wsidicom = "^0.18.1"
opentile = "^0.11.1"
numpy = "^1.22.0"
Expand Down
2 changes: 1 addition & 1 deletion wsidicomizer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

from wsidicomizer.wsidicomizer import WsiDicomizer

__version__ = "0.12.0"
__version__ = "0.12.1"

0 comments on commit c7da453

Please sign in to comment.