Browse Source

Bump version number to reflect api changes

feature/load_slices
Ruben Verweij 7 years ago
parent
commit
480e231d17
3 changed files with 3 additions and 2 deletions
  1. +1
    -1
      nd2reader/__init__.py
  2. +1
    -0
      nd2reader/reader.py
  3. +1
    -1
      setup.py

+ 1
- 1
nd2reader/__init__.py View File

@ -1,4 +1,4 @@
from nd2reader.reader import ND2Reader
from nd2reader.legacy import Nd2
__version__ = '2.1.3'
__version__ = '3.0.0'

+ 1
- 0
nd2reader/reader.py View File

@ -9,6 +9,7 @@ class ND2Reader(FramesSequenceND):
"""
def __init__(self, filename):
super(self.__class__, self).__init__()
self.filename = filename
# first use the parser to parse the file


+ 1
- 1
setup.py View File

@ -1,6 +1,6 @@
from setuptools import setup
VERSION = '2.1.3'
VERSION = '3.0.0'
if __name__ == '__main__':
setup(


Loading…
Cancel
Save