Skip to content
Snippets Groups Projects
Commit 58d60ebf authored by Ruben Verweij's avatar Ruben Verweij
Browse files

Version 3.2.3 due to build error of new version number storage system

parent 9297cc86
No related branches found
No related tags found
No related merge requests found
3.2.2
Subproject commit c42c8525ee3a593ef7e63f7146b9cca2a7e0c7f7 Subproject commit 47a1165d5558515d6df67fb20b3032172de56279
...@@ -2,9 +2,4 @@ from os import path ...@@ -2,9 +2,4 @@ from os import path
from nd2reader.reader import ND2Reader from nd2reader.reader import ND2Reader
from nd2reader.legacy import Nd2 from nd2reader.legacy import Nd2
VERSION = '' __version__ = '3.2.3'
CURRENT_DIRECTORY = path.abspath(path.dirname(__file__))
with open(path.join(CURRENT_DIRECTORY, '..', 'VERSION')) as version_file:
VERSION = version_file.read().strip()
__version__ = VERSION
Update version in 'VERSION' file Update version in 'nd2reader/__init__.py' file
Rebuild sphinx documentation Rebuild sphinx documentation
......
from os import path from os import path
from setuptools import setup from setuptools import setup
from nd2reader import __version__ as VERSION
VERSION = ''
CURRENT_DIRECTORY = path.abspath(path.dirname(__file__))
with open(path.join(CURRENT_DIRECTORY, 'VERSION')) as version_file:
VERSION = version_file.read().strip()
if __name__ == '__main__': if __name__ == '__main__':
setup( setup(
......
#!/usr/bin/env python3 #!/usr/bin/env python3
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
from os import path
import sphinx_bootstrap_theme import sphinx_bootstrap_theme
from recommonmark.parser import CommonMarkParser from recommonmark.parser import CommonMarkParser
from nd2reader import __version__ as VERSION
VERSION = ''
CURRENT_DIRECTORY = path.abspath(path.dirname(__file__))
with open(path.join(CURRENT_DIRECTORY, '..', 'VERSION')) as version_file:
VERSION = version_file.read().strip()
# -- General configuration ------------------------------------------------ # -- General configuration ------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment