-
-
Notifications
You must be signed in to change notification settings - Fork 10
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 citation.cff #159
Add citation.cff #159
Conversation
@@ -21,7 +21,7 @@ SBML = "1.4.4" | |||
SBMLToolkitTestSuite = "0.0.3" | |||
SafeTestsets = "0.1" | |||
Sundials = "4.14" | |||
SymbolicUtils = "2" | |||
SymbolicUtils = "1, 2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why would we add back 1?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought the less restrictive we are with our compats, the less likely developers who may depend on SBMLtk have compatibility issues. Also because of a compatibility requirement with the latest Catalyst release. Looks like the next release will no longer have a SymbolicUtils requirement, tho.
src/reactions.jl
Outdated
@@ -163,7 +163,7 @@ Get rate constant of mass action kineticLaws | |||
function get_massaction(kl::Num, reactants::Union{Vector{Num}, Nothing}, | |||
stoich::Union{Vector{<:Real}, Nothing}) | |||
function check_args(x::SymbolicUtils.BasicSymbolic{Real}) | |||
check_args(Val(SymbolicUtils.istree(x)), x) | |||
check_args(Val(SymbolicUtils.TermInterface.iscall(x)), x) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, do you know why this does not fix this, but instead causes failure in Downgrade.yaml? And why does Downgrade julia-actions/julia-runtest@v1
, if it is already present in CI.yaml?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There might be more in ModelingToolkit to handle.
Adds citation information to readme. Updates tests so that they pass despite warnings.