Skip to content

Commit

Permalink
Merge pull request #151 from XAITK/update-to-v0.8.2
Browse files Browse the repository at this point in the history
Update to v0.8.2.
  • Loading branch information
bjrichardwebster authored Jun 5, 2024
2 parents e865ec0 + 8307a3e commit a455cd7
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 4 deletions.
1 change: 1 addition & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ Release Notes
release_notes/v0.7.0
release_notes/v0.8.0
release_notes/v0.8.1
release_notes/v0.8.2
12 changes: 12 additions & 0 deletions docs/release_notes/v0.8.2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
v0.8.2
======

A quick hotfix to resolve Python 3.12 `numpy` dependencies.

Updates / New Features
----------------------

Fixes
-----

* Added `numpy` pin `^1.26` for Python 3.12.
18 changes: 16 additions & 2 deletions poetry.lock

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

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ name = "xaitk_saliency"
# REMEMBER: `distutils.version.*Version` types can be used to compare versions
# from strings like this.
# This package prefers to use the strict numbering standard when possible.
version = "0.8.1"
version = "0.8.2"
description = """\
Visual saliency map generation interfaces and baseline implementations \
for explainable AI."""
Expand Down Expand Up @@ -38,7 +38,8 @@ python = "^3.8"
# https://stackoverflow.com/questions/77431252/why-doesnt-poetry-select-the-good-version-of-my-dependency
numpy = [
{version = ">=1.22,<1.25", python = "~3.8"}, # CVE-2021-34141
{version = ">=1.22,^1.25", python = ">=3.9,<3.13" } # CVE-2021-34141
{version = ">=1.22,^1.25", python = ">=3.9,<3.12" }, # CVE-2021-34141
{version = "^1.26", python = ">=3.12,<3.13" } # py3.12 only supports >= 1.26
]
scikit-image = [
# Hinge because minimum support 0.20.0 for py3.11
Expand Down

0 comments on commit a455cd7

Please sign in to comment.