Skip to content

Commit 2c62218

Browse files
python312Packages.altair: 5.4.1 -> 5.5.0, disable flaky tests (#371464)
2 parents 5861228 + 987ccd5 commit 2c62218

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

pkgs/development/python-modules/altair/default.nix

+8-3
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@
2222

2323
buildPythonPackage rec {
2424
pname = "altair";
25-
version = "5.4.1";
25+
version = "5.5.0";
2626
pyproject = true;
2727

28-
disabled = pythonOlder "3.8";
28+
disabled = pythonOlder "3.9";
2929

3030
src = fetchFromGitHub {
3131
owner = "altair-viz";
3232
repo = "altair";
3333
tag = "v${version}";
34-
hash = "sha256-7C51ACaBuNtOSXqLpuCI5bnLyE9U64vNXlD4/msPq2k=";
34+
hash = "sha256-lrKC4FYRQEax5E0lQNhO9FLk5UOJ0TnYzqZjndlRpGI=";
3535
};
3636

3737
build-system = [ hatchling ];
@@ -60,6 +60,11 @@ buildPythonPackage rec {
6060
disabledTests = [
6161
# ValueError: Saving charts in 'svg' format requires the vl-convert-python or altair_saver package: see http://github.com/altair-viz/altair_saver/
6262
"test_renderer_with_none_embed_options"
63+
# Sometimes conflict due to parallelism
64+
"test_dataframe_to_csv[polars]"
65+
"test_dataframe_to_csv[pandas]"
66+
# Network access
67+
"test_theme_remote_lambda"
6368
];
6469

6570
disabledTestPaths = [

0 commit comments

Comments
 (0)