Perhaps that is my problem: Here’s the result of ] status DataFrames:
Status ~/.julia/environments/v1.9/Project.toml
⌅ [a93c6f00] DataFrames v0.21.8
Yours is a major version ahead of mine. This is strange, because I updated the packages (] up) only yesterday. It was after that update that the problem appeared.
Yes, DataFrames v0.22 is really old. You can see what’s holding it back with status --outdated. For a contrived example, you can see here that this very old version of CSV is what’s holding back DataFrames:
(@v1.10) pkg> status --outdated
Status `~/.julia/environments/v1.10/Project.toml`
⌃ [336ed68f] CSV v0.7.10 (<v0.10.14)
⌅ [a93c6f00] DataFrames v0.22.7 (<v1.6.1): CSV
It appears that I added a package that required many other packages to downgrade. There was no warning about this–at least none that I recall. Is there a setting that will cause Pkg to warn before downgrading in this fashion?