Skip to content

Commit 7eaff18

Browse files
authored
Merge pull request #364 from ComputationalCryoEM/develop
Develop
2 parents 19a938d + 806b585 commit 7eaff18

File tree

13 files changed

+493
-11
lines changed

13 files changed

+493
-11
lines changed

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.6.1
2+
current_version = 0.6.2
33
commit = True
44
tag = True
55

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
env: TOXENV=docs
3535

3636
install:
37-
- pip install -U tox tox-travis
37+
- pip install -U tox tox-travis sphinx
3838

3939
script: tox -v --skip-missing-interpreters false -e $TOXENV
4040

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![Travis Build Status](https://travis-ci.org/ComputationalCryoEM/ASPIRE-Python.svg?branch=master)](https://travis-ci.org/ComputationalCryoEM/ASPIRE-Python)
55
[![Coverage Status](https://coveralls.io/repos/github/ComputationalCryoEM/ASPIRE-Python/badge.svg?branch=master)](https://coveralls.io/github/ComputationalCryoEM/ASPIRE-Python?branch=master)
66

7-
# ASPIRE - Algorithms for Single Particle Reconstruction - v0.6.1
7+
# ASPIRE - Algorithms for Single Particle Reconstruction - v0.6.2
88

99
This is the Python version to supersede the [Matlab ASPIRE](https://github.com/PrincetonUniversity/aspire).
1010

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# built documents.
6363
#
6464
# The full version, including alpha/beta/rc tags.
65-
release = version = "0.6.1"
65+
release = version = "0.6.2"
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Aspire v0.6.1
1+
Aspire v0.6.2
22
==============
33

44
Algorithms for Single Particle Reconstruction

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ def read(fname):
99

1010
setup(
1111
name="aspire",
12-
version="0.6.1",
12+
version="0.6.2",
1313
data_files=[
1414
("", ["src/aspire/config.ini"]),
1515
("", ["src/aspire/logging.conf"]),
@@ -39,7 +39,7 @@ def read(fname):
3939
"pytest-cov",
4040
"scipy==1.4.0",
4141
"scikit-learn",
42-
"scikit-image==0.14.0",
42+
"scikit-image==0.16.2",
4343
"setuptools>=0.41",
4444
"sphinxcontrib-bibtex",
4545
"sphinx-rtd-theme>=0.4.2",

src/aspire/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from aspire.exceptions import handle_exception
1111

1212
# version in maj.min.bld format
13-
__version__ = "0.6.1"
13+
__version__ = "0.6.2"
1414

1515
# Implements some code that writes out exceptions to 'aspire.err.log'.
1616
config = Config(read_text(aspire, "config.ini"))

src/aspire/image/image.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,9 @@ def __mul__(self, other):
156156

157157
return Image(self.data * other)
158158

159+
def __neg__(self):
160+
return Image(-self.data)
161+
159162
def sqrt(self):
160163
return np.sqrt(self.data)
161164

src/aspire/operators/filters.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -274,9 +274,6 @@ def __repr__(self):
274274
def _evaluate(self, omega):
275275
return self.value * np.ones_like(omega)
276276

277-
def scale(self, c):
278-
pass
279-
280277

281278
class ZeroFilter(ScalarFilter):
282279
def __init__(self, dim=None):

src/aspire/utils/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@
2121
vol_to_vec,
2222
volmat_to_vecmat,
2323
)
24+
from .rotation import Rotation
2425
from .types import complex_type, real_type, utest_tolerance

0 commit comments

Comments
 (0)