Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PETRA III Debian Packages
python-pninexus
Commits
c0e88840
Commit
c0e88840
authored
Jan 15, 2019
by
Jan Kotanski
Browse files
New upstream version 1.2.11
parent
80b6dbba
Changes
8
Hide whitespace changes
Inline
Side-by-side
PKG-INFO
View file @
c0e88840
Metadata-Version: 1.1
Name: pninexus
Version: 1.2.1
0
Version: 1.2.1
1
Summary: Python wrapper for the PNI libraries
Home-page: https://github.com/pninexus-libraries/python-pninexus
Author: Eugen Wintersberger
...
...
setup.py
View file @
c0e88840
...
...
@@ -15,8 +15,8 @@ from build_tools import (CppExtensionFactory,
cmdclass
=
{
'build_sphinx'
:
BuildDoc
}
name
=
"pninexus"
version
=
"1.2.1
0
"
release
=
"1.2.1
0
"
version
=
"1.2.1
1
"
release
=
"1.2.1
1
"
def
get_build_dir
():
...
...
src/cpp/h5cpp/_h5cpp.cpp
View file @
c0e88840
...
...
@@ -43,14 +43,17 @@ using namespace boost::python;
#if PY_MAJOR_VERSION >= 3
int
static
void
*
init_numpy
()
{
import_array
();
return
NULL
;
}
#else
void
#endif
init_numpy
()
static
void
init_numpy
()
{
import_array
();
}
#endif
std
::
string
path_to_string
(
const
hdf5
::
Path
&
self
)
{
...
...
src/cpp/h5cpp/attribute/attribute.cpp
View file @
c0e88840
...
...
@@ -43,14 +43,17 @@ extern "C"{
#include
<h5cpp/datatype/enum.hpp>
#if PY_MAJOR_VERSION >= 3
int
#else
void
#endif
init_numpy
()
static
void
*
init_numpy
()
{
import_array
();
return
NULL
;
}
#else
static
void
init_numpy
()
{
import_array
();
}
#endif
namespace
{
...
...
src/cpp/h5cpp/node/nodes.cpp
View file @
c0e88840
...
...
@@ -36,14 +36,17 @@ extern "C"{
#if PY_MAJOR_VERSION >= 3
int
#else
void
#endif
init_numpy
()
static
void
*
init_numpy
()
{
import_array
();
return
NULL
;
}
#else
static
void
init_numpy
()
{
import_array
();
}
#endif
hdf5
::
node
::
Link
get_link_by_index
(
const
hdf5
::
node
::
LinkView
&
self
,
size_t
index
)
{
...
...
src/cpp/nexus/nexus.cpp
View file @
c0e88840
...
...
@@ -43,14 +43,17 @@ using namespace boost::python;
using
namespace
pni
::
io
;
#if PY_MAJOR_VERSION >= 3
int
static
void
*
init_numpy
()
{
import_array
();
return
NULL
;
}
#else
void
#endif
init_numpy
()
static
void
init_numpy
()
{
import_array
();
}
#endif
...
...
src/pninexus.egg-info/PKG-INFO
View file @
c0e88840
Metadata-Version: 1.1
Name: pninexus
Version: 1.2.1
0
Version: 1.2.1
1
Summary: Python wrapper for the PNI libraries
Home-page: https://github.com/pninexus-libraries/python-pninexus
Author: Eugen Wintersberger
...
...
src/pninexus/h5cpp/__init__.py
View file @
c0e88840
"""
:py:mod:`pninexus.io.h5cpp` is a thin wrapper around the *h5cpp* C++
library where every
library where every
namespace in the C++ library has a counterpart as a sub-package of
:py:mod:`pninexus.io.h5cpp`.
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment