Skip to content

Commit 37870e9

Browse files
committed
fix import version error
1 parent 9266117 commit 37870e9

File tree

5 files changed

+4
-5
lines changed

5 files changed

+4
-5
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
/*.egg-info
44
/docs/build
55
/docs/doxygen_h
6-
/pyfmm/_version.py
76

87
/pyfmm/__pycache__
98
/pyfmm/C_extension/build

docs/source/examples/01_uniform.ipynb

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

pyfmm/C_extension/lib/libfmm.so

-38.9 KB
Binary file not shown.

pyfmm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
from . import c_interfaces
66

77

8-
from _version import *
8+
from ._version import __version__

pyfmm/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.2-dev'
1+
__version__ = '0.2.2'

0 commit comments

Comments
 (0)