Skip to content

Commit

Permalink
Merge pull request #163 from XAITK/update-to-0.9.2
Browse files Browse the repository at this point in the history
Update to 0.9.2
  • Loading branch information
bjrichardwebster authored Nov 18, 2024
2 parents 5da9fd4 + aad28ab commit e0dd5c6
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
1 change: 1 addition & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ Release Notes
release_notes/v0.8.3
release_notes/v0.9.0
release_notes/v0.9.1
release_notes/v0.9.2
12 changes: 12 additions & 0 deletions docs/release_notes/v0.9.2.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
v0.9.2
======

This is a quick hotfix to remove a pinned version of ``tqdm``.

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

Fixes
-----

* Removed an accidental ``tqdm`` pin and put it as a lower-bound.
14 changes: 1 addition & 13 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
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.9.1"
version = "0.9.2"
description = """\
Visual saliency map generation interfaces and baseline implementations \
for explainable AI."""
Expand Down Expand Up @@ -59,7 +59,7 @@ matplotlib = { version=">=3.4.1", optional = true }
papermill = { version = ">=2.3.3", optional = true }
torch = {version = ">=1.9.0,!=2.0.1", optional = true}
torchvision = {version = ">=0.10.0", optional = true}
tqdm = { version = "4.66.3", optional = true } # CVE-2024-34062
tqdm = { version = ">=4.66.3", optional = true } # CVE-2024-34062
# Optionals for "tools" extra"
kwcoco = { version = ">=0.2.18", optional = true}
pyyaml = {version = ">=6.0.1", optional = true, python = ">=3.12"}
Expand Down

0 comments on commit e0dd5c6

Please sign in to comment.