Interestingly I found with Julia Version 1.7.2 (2022-02-06) for window the following side effect:
No Bug
using Dates
datenow=Dates.format(Dates.now(),“yyyymmddTHHMMSSZ”)
Buggy
using DSP
using Dates
datenow=Dates.format(Dates.now(),“yyyymmddTHHMMSSZ”)
Returns:
ERROR: type DateTime has no field zone
Note that the same effect is obtained by loading just one of the DSP module #using DSP
include(“remez_fir.jl”)
using Dates
datenow=Dates.format(Dates.now(),“yyyymmddTHHMMSSZ”)