Skip to content

Commit

Permalink
Version 3.2.3 due to build error of new version number storage system
Browse files Browse the repository at this point in the history
  • Loading branch information
rbnvrw committed Jan 6, 2020
1 parent fe644d2 commit 4eea6a8
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 20 deletions.
1 change: 0 additions & 1 deletion VERSION

This file was deleted.

2 changes: 1 addition & 1 deletion docs
Submodule docs updated from c42c85 to 47a116
7 changes: 1 addition & 6 deletions nd2reader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,4 @@
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'
2 changes: 1 addition & 1 deletion release.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Update version in 'VERSION' file
Update version in 'nd2reader/__init__.py' file

Rebuild sphinx documentation

Expand Down
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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(
Expand Down
7 changes: 1 addition & 6 deletions sphinx/conf.py
Original file line number Diff line number Diff line change
@@ -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 ------------------------------------------------

Expand Down

0 comments on commit 4eea6a8

Please sign in to comment.