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 citation.cff #159

Merged
merged 5 commits into from
Jun 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ SBML = "1.4.4"
SBMLToolkitTestSuite = "0.0.3"
SafeTestsets = "0.1"
Sundials = "4.14"
SymbolicUtils = "2"
SymbolicUtils = "1, 2"
Copy link
Member

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?

Copy link
Member Author

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.

Test = "1"
julia = "1.10"

Expand Down
2 changes: 1 addition & 1 deletion src/reactions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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.iscall(x)), x)
check_args(Val(SymbolicUtils.TermInterface.iscall(x)), x)
Copy link
Member Author

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?

Copy link
Member

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.

end

function check_args(::Val{true}, x::SymbolicUtils.BasicSymbolic{Real})
Expand Down
Loading