Skip to content

Commit

Permalink
[fix] compat of dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ytdHuang committed Nov 8, 2023
1 parent 7cfdbea commit 1a90cd1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
3 changes: 3 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,15 @@ HierarchicalEOM_QOExt = "QuantumOptics"
Crayons = "4.1"
FastExpm = "1.1.0"
JLD2 = "0.4.31"
LinearAlgebra = "1.8"
LinearSolve = "2.4.2"
OrdinaryDiffEq = "6.53.4"
Pkg = "1.8"
PrecompileTools = "1"
ProgressMeter = "1.7"
Reexport = "1"
SciMLOperators = "0.3.5"
SparseArrays = "1.8"
SteadyStateDiffEq = "1.16.0"
julia = "1.8"

Expand Down
15 changes: 9 additions & 6 deletions src/HeomBase.jl
Original file line number Diff line number Diff line change
Expand Up @@ -133,12 +133,15 @@ function versioninfo(io::IO=stdout)
println(io,
"Package information:\n",
"====================================\n",
"HierarchicalEOM Version: $(_get_pkg_version("HierarchicalEOM"))\n",
"JLD2 Version: $(_get_pkg_version("JLD2"))\n",
"LinearSolve Version: $(_get_pkg_version("LinearSolve"))\n",
"OrdinaryDiffEq Version: $(_get_pkg_version("OrdinaryDiffEq"))\n",
"ProgressMeter Version: $(_get_pkg_version("ProgressMeter"))\n",
"PrecompileTools Version: $(_get_pkg_version("PrecompileTools"))\n"
"HierarchicalEOM Ver. $(_get_pkg_version("HierarchicalEOM"))\n",
"LinearSolve Ver. $(_get_pkg_version("LinearSolve"))\n",
"OrdinaryDiffEq Ver. $(_get_pkg_version("OrdinaryDiffEq"))\n",
"SteadyStateDiffEq Ver. $(_get_pkg_version("SteadyStateDiffEq"))\n",
"SciMLOperators Ver. $(_get_pkg_version("SciMLOperators"))\n",
"FastExpm Ver. $(_get_pkg_version("FastExpm"))\n",
"JLD2 Ver. $(_get_pkg_version("JLD2"))\n",
"ProgressMeter Ver. $(_get_pkg_version("ProgressMeter"))\n",
"PrecompileTools Ver. $(_get_pkg_version("PrecompileTools"))\n"
)

# print System informations
Expand Down

2 comments on commit 1a90cd1

@ytdHuang
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/94969

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.1.0 -m "<description of version>" 1a90cd1def01f296a64bce5dfb35fe1a96dcf0a5
git push origin v1.1.0

Please sign in to comment.