Skip to content

Commit

Permalink
allow PkgEval to try to load JET always
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk committed Feb 11, 2025
1 parent cc2a151 commit 96f3cd4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/JET.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ using Preferences: Preferences

const JET_DEV_MODE = Preferences.@load_preference("JET_DEV_MODE", false)

const JET_LOADABLE = JET_DEV_MODE || (get(VERSION.prerelease, 1, "") != "DEV")
const PKG_EVAL = Base.get_bool_env("JULIA_PKGEVAL", false)

const JET_LOADABLE = JET_DEV_MODE || PKG_EVAL || (get(VERSION.prerelease, 1, "") != "DEV")

# exports
# =======
Expand Down

0 comments on commit 96f3cd4

Please sign in to comment.