-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
python312Packages.altair: 5.4.1 -> 5.5.0, disable flaky tests #371464
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. This bump will also fix python313Packages.altair
build. 👍
@@ -22,7 +22,7 @@ | |||
|
|||
buildPythonPackage rec { | |||
pname = "altair"; | |||
version = "5.4.1"; | |||
version = "5.5.0"; | |||
pyproject = true; | |||
|
|||
disabled = pythonOlder "3.8"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
3.8 support was dropped in this version. See https://github.com/vega/altair/releases/tag/v5.5.0
So this should probably be pythonOlder "3.9"
? That said, I am not sure there's a reason to have this attribute set at all, since we only have python39Packages
and up. Maybe remove it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
By my understanding we keep these seemingly useless pythonOlder statements to benefit users who mix Python 3.8 (or older) from some pinned nixpkgs version, whilst still using (some) new packages.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@FliegendeWurst interesting. Maybe this should be clarified in python docs since it's not obvious.
146a862
to
987ccd5
Compare
Simple update
Things done