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
darshan
darshan
Commits
54ad42ba
Commit
54ad42ba
authored
Jan 14, 2021
by
Jakob Luettgau
Browse files
Resolve merge conflict.
parents
18486628
8429a8e5
Changes
3
Hide whitespace changes
Inline
Side-by-side
darshan-util/pydarshan/darshan/discover_darshan.py
View file @
54ad42ba
...
...
@@ -168,7 +168,10 @@ def find_utils(ffi, libdutil):
import
glob
library_path
=
glob
.
glob
(
f
'
{
darshan_path
}
/libdarshan-util*.so'
)[
0
]
logger
.
debug
(
f
"Attempting library_path=
{
library_path
}
in case of binary wheel."
)
save
=
os
.
getcwd
()
os
.
chdir
(
darshan_path
)
libdutil
=
ffi
.
dlopen
(
library_path
)
os
.
chdir
(
save
)
except
:
libdutil
=
None
...
...
@@ -178,7 +181,10 @@ def find_utils(ffi, libdutil):
import
glob
library_path
=
glob
.
glob
(
f
'
{
darshan_path
}
/libdarshan-util*.so'
)[
0
]
logger
.
debug
(
f
"Attempting library_path=
{
library_path
}
for pyinstaller bundles."
)
save
=
os
.
getcwd
()
os
.
chdir
(
darshan_path
)
libdutil
=
ffi
.
dlopen
(
library_path
)
os
.
chdir
(
save
)
except
:
libdutil
=
None
...
...
darshan-util/pydarshan/setup.cfg
View file @
54ad42ba
[bumpversion]
current_version = 0.0.
4
current_version = 0.0.
5
commit = True
tag = True
...
...
darshan-util/pydarshan/setup.py
View file @
54ad42ba
...
...
@@ -53,6 +53,6 @@ setup(
test_suite
=
'tests'
,
tests_require
=
test_requirements
,
url
=
'https://www.mcs.anl.gov/research/projects/darshan/'
,
version
=
'0.0.
4
'
,
version
=
'0.0.
5
'
,
zip_safe
=
False
,
)
Write
Preview
Markdown
is supported
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