Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add SciMLOperators to versioninfo #275

Merged
merged 1 commit into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ body:
label: Code to Reproduce the Bug
description: Please provide a minimal working example. Paste your code directly (It will be automatically formatted, so there's no need for backticks)
placeholder: "using QuantumToolbox\nprint(qeye(2))"
render: shell
render: julia
- type: textarea
id: bug-output
attributes:
Expand All @@ -37,7 +37,7 @@ body:
attributes:
label: Your Environment
description: Please use `QuantumToolbox.about()` or `QuantumToolbox.versioninfo()` to get the information about your environment and paste it here (automatically formatted)
placeholder: "Julia Ver. ***\nQuantumToolbox Ver. ***\nLinearSolve Ver. ***\nOrdinaryDiffEqCore Ver. ***\nOS : ***\nWORD_SIZE: ***\nLIBM : ***\nLLVM : ***\nBLAS : ***"
placeholder: "Julia Ver. ***\nQuantumToolbox Ver. ***\nSciMLOperators Ver. ***\nLinearSolve Ver. ***\nOrdinaryDiffEqCore Ver. ***\nOS : ***\nWORD_SIZE: ***\nLIBM : ***\nLLVM : ***\nBLAS : ***"
render: shell
validations:
required: true
Expand Down
5 changes: 3 additions & 2 deletions src/versioninfo.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,19 @@ function versioninfo(io::IO = stdout)
" Alberto Mercurio and Yi-Te Huang\n",
)

# print package informations
# print package information
println(
io,
"Package information:\n",
"====================================\n",
"Julia Ver. $(VERSION)\n",
"QuantumToolbox Ver. $(_get_pkg_version("QuantumToolbox"))\n",
"SciMLOperators Ver. $(_get_pkg_version("SciMLOperators"))\n",
"LinearSolve Ver. $(_get_pkg_version("LinearSolve"))\n",
"OrdinaryDiffEqCore Ver. $(_get_pkg_version("OrdinaryDiffEqCore"))\n",
)

# print System informations
# print System information
println(io, "System information:")
println(io, "====================================")
println(io, """OS : $(OS_name) ($(Sys.MACHINE))""")
Expand Down
Loading