-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make bm3d dependency optional (#243)
* Minor cleanup * Make bm3d semi-optional * Update manifest * Add extras_requires options * Really add extras_requires options * Add keywords * Remove cached_property dependency now that xdesign dependencies correctly specified * Avoid test failure if bm3d not installed * Avoid test failure if bm3d not installed * Fix checks for invalid input shapes * Fix blockarray tests, add new test * Remove debugging code * Minor edit * Use more appropriate exception * Add some tests * Clean up
- Loading branch information
Showing
8 changed files
with
67 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
include MANIFEST.in | ||
include setup.py | ||
include setup.cfg | ||
include README.rst | ||
include LICENSE | ||
include CHANGES.rst | ||
include requirements.txt | ||
include dev_requirements.txt | ||
include examples/scriptcheck.sh | ||
include docs/docs_requirements.txt | ||
|
||
recursive-include scico *.py | ||
recursive-include scico/data *.png *.npz | ||
recursive-include docs Makefile *.py *.ipynb *.rst *.bib *.css *.svg *.ico | ||
recursive-include examples Makefile *.txt *.rst *.py | ||
include examples/pytojnb examples/scriptcheck | ||
recursive-include examples *_requirements.txt *.txt *.rst *.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,5 @@ | ||
astra-toolbox | ||
cached_property | ||
colour_demosaicing | ||
xdesign | ||
xdesign>=0.5.5 | ||
ray[tune] | ||
hyperopt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,8 +24,6 @@ | |
from ray.tune.suggest.hyperopt import HyperOptSearch | ||
from ray.tune.trial import Trial | ||
|
||
__author__ = """Brendt Wohlberg <[email protected]>""" | ||
|
||
|
||
class _CustomReporter(TuneReporterBase): | ||
"""Custom status reporter for :mod:`ray.tune`.""" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters