You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suggest to add some version constraints in the compat section of the Project.toml file to ensure that people are pulling the correct dependencies and use a compatible Julia version.
After installing version 0.1.0 of RelativisticDynamics.jl, the following dependencies were resolved in a Julia 1.9.3 session on an M1 mac:
I also ran an installation using the official Julia 1.6.7 Docker image (I had to apt install unzip in the container since it was needed for some of the dependencies) and the only difference is DifferentialEquations v7.10.0 (instead of 7.11.0, probably due to some upstream incompatibilities with Julia 1.6.7).
I assume that the following entry will work fine, but please amend ;)
[compat]
Combinatorics = "1"
DifferentialEquations = "7"
LaTeXStrings = "^1.3"
Parameters = "^0.12"
RecipesBase = "^1.3"
SciMLSensitivity = "7"
Tullio = "^0.3"
Zygote = "^0.6"
julia = "^1.6" # according to the CI
The text was updated successfully, but these errors were encountered:
I suggest to add some version constraints in the
compat
section of theProject.toml
file to ensure that people are pulling the correct dependencies and use a compatible Julia version.After installing version 0.1.0 of
RelativisticDynamics.jl
, the following dependencies were resolved in a Julia 1.9.3 session on an M1 mac:I also ran an installation using the official Julia 1.6.7 Docker image (I had to
apt install unzip
in the container since it was needed for some of the dependencies) and the only difference isDifferentialEquations v7.10.0
(instead of 7.11.0, probably due to some upstream incompatibilities with Julia 1.6.7).I assume that the following entry will work fine, but please amend ;)
The text was updated successfully, but these errors were encountered: