Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alchemy
autobuild
Commits
502a1c0b
Commit
502a1c0b
authored
Jul 31, 2021
by
Rye Mutt
🍞
Browse files
Change graph format to svg
parent
d9537e06
Pipeline
#1007
passed with stages
in 33 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
autobuild/autobuild_tool_graph.py
View file @
502a1c0b
...
...
@@ -234,9 +234,9 @@ class AutobuildTool(autobuild_base.AutobuildBase):
else
:
graph_file
=
os
.
path
.
join
(
tempfile
.
gettempdir
(),
metadata
[
'package_description'
][
'name'
]
+
"_graph_"
+
args
.
graph_type
+
'.
pn
g'
)
+
args
.
graph_type
+
'.
sv
g'
)
logger
.
info
(
"writing %s"
%
graph_file
)
graph
.
write_
pn
g
(
graph_file
,
prog
=
args
.
graph_type
)
graph
.
write_
sv
g
(
graph_file
,
prog
=
args
.
graph_type
)
if
args
.
display
and
not
args
.
graph_file
:
webbrowser
.
open
(
'file:'
+
graph_file
)
else
:
...
...
autobuild/version.py
View file @
502a1c0b
...
...
@@ -43,4 +43,4 @@ $/LicenseInfo$
# will wreak havoc upon new users of your package, as they will not be able to
# install your package without manually installing the dependencies first."
AUTOBUILD_VERSION_STRING
=
"2.0.
4
"
AUTOBUILD_VERSION_STRING
=
"2.0.
5
"
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