Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Z
zolfa-nd2reader
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lorenzo ZOLFANELLI
zolfa-nd2reader
Commits
a92617a5
Commit
a92617a5
authored
5 years ago
by
Ruben Verweij
Browse files
Options
Downloads
Patches
Plain Diff
New version 3.2.2
parent
66361332
No related branches found
No related tags found
No related merge requests found
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
MANIFEST.in
+2
-1
2 additions, 1 deletion
MANIFEST.in
VERSION
+1
-0
1 addition, 0 deletions
VERSION
docs
+1
-1
1 addition, 1 deletion
docs
nd2reader/__init__.py
+7
-1
7 additions, 1 deletion
nd2reader/__init__.py
setup.py
+5
-1
5 additions, 1 deletion
setup.py
sphinx/conf.py
+8
-2
8 additions, 2 deletions
sphinx/conf.py
with
24 additions
and
6 deletions
MANIFEST.in
+
2
−
1
View file @
a92617a5
include MANIFEST.in
include VERSION
include setup.py
include README.md
include LICENSE
include COPYING
\ No newline at end of file
include COPYING
This diff is collapsed.
Click to expand it.
VERSION
0 → 100644
+
1
−
0
View file @
a92617a5
3.2.2
This diff is collapsed.
Click to expand it.
docs
@
c42c8525
Compare
f700c239
...
c42c8525
Subproject commit
f700c239f8f9d7d1f99a3c10d9f67e2b3b8ef30
7
Subproject commit
c42c8525ee3a593ef7e63f7146b9cca2a7e0c7f
7
This diff is collapsed.
Click to expand it.
nd2reader/__init__.py
+
7
−
1
View file @
a92617a5
from
os
import
path
from
nd2reader.reader
import
ND2Reader
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
This diff is collapsed.
Click to expand it.
setup.py
+
5
−
1
View file @
a92617a5
from
os
import
path
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__
'
:
setup
(
...
...
This diff is collapsed.
Click to expand it.
sphinx/conf.py
+
8
−
2
View file @
a92617a5
#!/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
()
# -- General configuration ------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
...
...
@@ -44,9 +50,9 @@ author = 'Ruben Verweij'
# built documents.
#
# The short X.Y version.
version
=
'
3.2.1
'
version
=
VERSION
# The full version, including alpha/beta/rc tags.
release
=
'
3.2.1
'
release
=
VERSION
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment