Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.0.5 #488

Merged
merged 3 commits into from
Dec 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading