Skip to content

Commit

Permalink
Fix:
Browse files Browse the repository at this point in the history
- Removed the import of an unused python-package which caused errors
  • Loading branch information
phaase-hhi committed May 4, 2023
1 parent 5b91f18 commit 44fca93
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ source env/bin/activate

**Note**: For further information on how to set up a virtual python environment (also on **Windows**) refer to https://docs.python.org/3/library/venv.html .

When successfully installed, the software outputs the line : "Successfully installed NNC-0.2.0"
When successfully installed, the software outputs the line : "Successfully installed NNC-0.2.1"

### Importing the main module

Expand Down
1 change: 0 additions & 1 deletion nnc/compression.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
POSSIBILITY OF SUCH DAMAGE.
'''

from symbol import pass_stmt
import sys

assert sys.version_info >= (3, 6)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
from setuptools.command.build_ext import build_ext
import setuptools

__version__ = '0.2.0'
__version__ = '0.2.1'


class get_pybind_include(object):
Expand Down

0 comments on commit 44fca93

Please sign in to comment.