Skip to content

Commit

Permalink
Warn about using Julia version before 1.10 (#3049)
Browse files Browse the repository at this point in the history
  • Loading branch information
fonsp authored Oct 10, 2024
1 parent 26b88d4 commit 6197c79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webserver/WebServer.jl
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function run!(session::ServerSession)
@info "Loading..."
end

if VERSION < v"1.6.2"
if VERSION < v"1.10.0"
@warn("\nPluto is running on an old version of Julia ($(VERSION)) that is no longer supported. Visit https://julialang.org/downloads/ for more information about upgrading Julia.")
end

Expand Down

0 comments on commit 6197c79

Please sign in to comment.