Browse Source

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

zolfa-add_slices_loading
Ruben Verweij 4 years ago
parent
commit
06c9c20ce1
6 changed files with 5 additions and 20 deletions
  1. +0
    -1
      VERSION
  2. +1
    -1
      docs
  3. +1
    -6
      nd2reader/__init__.py
  4. +1
    -1
      release.txt
  5. +1
    -5
      setup.py
  6. +1
    -6
      sphinx/conf.py

+ 0
- 1
VERSION View File

@ -1 +0,0 @@
3.2.2

+ 1
- 1
docs

@ -1 +1 @@
Subproject commit c42c8525ee3a593ef7e63f7146b9cca2a7e0c7f7
Subproject commit 47a1165d5558515d6df67fb20b3032172de56279

+ 1
- 6
nd2reader/__init__.py View File

@ -2,9 +2,4 @@ from os import path
from nd2reader.reader import ND2Reader
from nd2reader.legacy import Nd2
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
__version__ = '3.2.3'

+ 1
- 1
release.txt View File

@ -1,4 +1,4 @@
Update version in 'VERSION' file
Update version in 'nd2reader/__init__.py' file
Rebuild sphinx documentation


+ 1
- 5
setup.py View File

@ -1,10 +1,6 @@
from os import path
from setuptools import setup
VERSION = ''
CURRENT_DIRECTORY = path.abspath(path.dirname(__file__))
with open(path.join(CURRENT_DIRECTORY, 'VERSION')) as version_file:
VERSION = version_file.read().strip()
from nd2reader import __version__ as VERSION
if __name__ == '__main__':
setup(


+ 1
- 6
sphinx/conf.py View File

@ -1,13 +1,8 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from os import path
import sphinx_bootstrap_theme
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()
from nd2reader import __version__ as VERSION
# -- General configuration ------------------------------------------------


Loading…
Cancel
Save