Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
We have upgraded GitLab to 15.1. Due to major code changes GitLab was down for some time.
Open sidebar
vadere
vadere
Commits
fb5c0ded
Commit
fb5c0ded
authored
Nov 21, 2018
by
Stefan Schuhbaeck
Browse files
chanage VadereAnalysisTool instal script to work from base path
parent
064ff776
Pipeline
#76141
failed with stages
in 2 minutes and 52 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Tools/ContinuousIntegration/install_vadere_analysis_tool.py
View file @
fb5c0ded
...
...
@@ -32,13 +32,12 @@ def install_package_if_needed(package_name='VadereAnalysisTool', search_path='To
dist_dir
=
os
.
path
.
join
(
search_path
,
"dist"
)
wheel_files
=
[
f
for
f
in
os
.
listdir
(
dist_dir
)
if
f
.
endswith
(
".whl"
)]
if
len
(
wheel_files
)
>
0
:
dist_path
=
os
.
path
.
join
(
"dist"
,
wheel_files
[
0
])
dist_path
=
os
.
path
.
join
(
search_path
,
"dist"
,
wheel_files
[
0
])
user
=
getpass
.
getuser
()
print
(
"
\n
Install package {} locally for user {} ..."
.
format
(
dist_path
,
user
))
p_install_package
=
subprocess
.
run
(
args
=
[
"python3"
,
"-m"
,
"pip"
,
"install"
,
"--user"
,
dist_path
],
cwd
=
make_package_cwd
,
timeout
=
10
,
check
=
True
,
stdout
=
subprocess
.
PIPE
,
...
...
Tools/VadereAnalysisTool/setup.py
View file @
fb5c0ded
...
...
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools
.
setup
(
name
=
"VadereAnalysisTool"
,
version
=
"0.0.
5
"
,
version
=
"0.0.
7
"
,
author
=
"Stefan Schuhbäck"
,
author_email
=
"stefan.schuhbaeck@hm.edu"
,
description
=
"Import VadereProject to ease analysis"
,
...
...
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