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

New version 3.2.2

parent 66361332
No related branches found
No related tags found
No related merge requests found
include MANIFEST.in include MANIFEST.in
include VERSION
include setup.py include setup.py
include README.md include README.md
include LICENSE include LICENSE
......
3.2.2
Subproject commit f700c239f8f9d7d1f99a3c10d9f67e2b3b8ef307 Subproject commit c42c8525ee3a593ef7e63f7146b9cca2a7e0c7f7
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__ = '3.2.1' VERSION = ''
CURRENT_DIRECTORY = path.abspath(path.dirname(__file__))
with open(path.join(CURRENT_DIRECTORY, '..', 'VERSION')) as version_file:
VERSION = version_file.read().strip()
__version__ = VERSION
from os import path
from setuptools import setup from setuptools import setup
VERSION = '3.2.1' 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
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 ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here. # If your documentation needs a minimal Sphinx version, state it here.
...@@ -44,9 +50,9 @@ author = 'Ruben Verweij' ...@@ -44,9 +50,9 @@ author = 'Ruben Verweij'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '3.2.1' version = VERSION
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '3.2.1' release = VERSION
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment