Skip to content

Commit

Permalink
Release 0.0.5 (#488)
Browse files Browse the repository at this point in the history
* Remove XRayTransform warning (projection is accurate now)

* Increase timeout value

* Set release version and date
  • Loading branch information
bwohlberg authored Dec 19, 2023
1 parent 34c0ff4 commit bdd68d9
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SCICO Release Notes
===================


Version 0.0.5 (unreleased)
Version 0.0.5 (2023-12-18)
----------------------------

• New functionals ``functional.AnisotropicTVNorm`` and
Expand Down
2 changes: 1 addition & 1 deletion examples/scriptcheck.sh
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ for f in $SCRIPTPATH/scripts/*.py; do
sed -E -e "$re1$re2$re3$re4$re5$re6$re7$re8" $f > $g

# Run temporary script and print status message.
if output=$(timeout 60s python $g 2>&1); then
if output=$(timeout 180s python $g 2>&1); then
printf "%s\n" succeeded
else
printf "%s\n" FAILED
Expand Down
2 changes: 1 addition & 1 deletion scico/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
solving the inverse problems that arise in scientific imaging applications.
"""

__version__ = "0.0.5.dev0"
__version__ = "0.0.5"

import logging
import sys
Expand Down
5 changes: 0 additions & 5 deletions scico/linop/xray/_xray.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ class XRayTransform(LinearOperator):
"""X-ray transform operator.
Wrap an X-ray projector object in a SCICO :class:`LinearOperator`.
**Warning:** Note that the only X-ray projector object currently
supported, :class:`.Parallel2dProjector`, is not a very accurate
approximation of the integral transform representing real projection
imaging, and may therefore not be suitable for real imaging
applications.
"""

def __init__(self, projector):
Expand Down

0 comments on commit bdd68d9

Please sign in to comment.