Skip to content

Commit 5820791

Browse files
authored
add SciMLOperators to versioninfo (#275)
1 parent b5ce558 commit 5820791

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ body:
1616
label: Code to Reproduce the Bug
1717
description: Please provide a minimal working example. Paste your code directly (It will be automatically formatted, so there's no need for backticks)
1818
placeholder: "using QuantumToolbox\nprint(qeye(2))"
19-
render: shell
19+
render: julia
2020
- type: textarea
2121
id: bug-output
2222
attributes:
@@ -37,7 +37,7 @@ body:
3737
attributes:
3838
label: Your Environment
3939
description: Please use `QuantumToolbox.about()` or `QuantumToolbox.versioninfo()` to get the information about your environment and paste it here (automatically formatted)
40-
placeholder: "Julia Ver. ***\nQuantumToolbox Ver. ***\nLinearSolve Ver. ***\nOrdinaryDiffEqCore Ver. ***\nOS : ***\nWORD_SIZE: ***\nLIBM : ***\nLLVM : ***\nBLAS : ***"
40+
placeholder: "Julia Ver. ***\nQuantumToolbox Ver. ***\nSciMLOperators Ver. ***\nLinearSolve Ver. ***\nOrdinaryDiffEqCore Ver. ***\nOS : ***\nWORD_SIZE: ***\nLIBM : ***\nLLVM : ***\nBLAS : ***"
4141
render: shell
4242
validations:
4343
required: true

src/versioninfo.jl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,19 @@ function versioninfo(io::IO = stdout)
2323
" Alberto Mercurio and Yi-Te Huang\n",
2424
)
2525

26-
# print package informations
26+
# print package information
2727
println(
2828
io,
2929
"Package information:\n",
3030
"====================================\n",
3131
"Julia Ver. $(VERSION)\n",
3232
"QuantumToolbox Ver. $(_get_pkg_version("QuantumToolbox"))\n",
33+
"SciMLOperators Ver. $(_get_pkg_version("SciMLOperators"))\n",
3334
"LinearSolve Ver. $(_get_pkg_version("LinearSolve"))\n",
3435
"OrdinaryDiffEqCore Ver. $(_get_pkg_version("OrdinaryDiffEqCore"))\n",
3536
)
3637

37-
# print System informations
38+
# print System information
3839
println(io, "System information:")
3940
println(io, "====================================")
4041
println(io, """OS : $(OS_name) ($(Sys.MACHINE))""")

0 commit comments

Comments
 (0)