We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 454084e commit 1c1dd35Copy full SHA for 1c1dd35
Project.toml
@@ -19,14 +19,14 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
19
MomentaPlotsExt = "Plots"
20
21
[compat]
22
-julia = "1.9"
23
-BenchmarkTools = "1.6.3"
24
-CSV = "0.10.15"
25
-DataFrames = "1.7.0"
26
-Distributions = "0.25.117"
27
-LinearAlgebra = "1"
28
-Plots = "1.41.2"
29
-PrecompileTools = "1.3.3"
30
-PrettyTables = "2, 3"
+julia = "1.11" # 直接指定最新版,彻底解决旧版兼容问题
+BenchmarkTools = "1" # 不要写 "1.6.3" 这么细,写 "1" 代表允许 1.x 的任何版本
+CSV = "0.10" # CSV 0.10 是目前的稳定系
+DataFrames = "1" # 允许 DataFrames 1.x
+Distributions = "0.25"
+LinearAlgebra = "1" # 标准库
+Plots = "1" # 关键!写 "1" 可以让解析器自动找最合适的版本,别写死 "1.41.2"
+PrecompileTools = "1"
+PrettyTables = "2, 3" # 保持这个双版本兼容
31
Random = "1"
32
0 commit comments