Skip to content

Commit 4ecfec0

Browse files
committed
Use different jinja loader to work with meson-python
1 parent 950b7e8 commit 4ecfec0

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

pandas/io/formats/style_render.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
Sequence,
77
)
88
from functools import partial
9+
import pathlib
910
import re
1011
from typing import (
1112
TYPE_CHECKING,
@@ -71,7 +72,9 @@ class StylerRenderer:
7172
Base class to process rendering a Styler with a specified jinja2 template.
7273
"""
7374

74-
loader = jinja2.PackageLoader("pandas", "io/formats/templates")
75+
thisdir = pathlib.Path(__file__).parent.resolve()
76+
template_dir = thisdir / "templates"
77+
loader = jinja2.FileSystemLoader(template_dir)
7578
env = jinja2.Environment(loader=loader, trim_blocks=True)
7679
template_html = env.get_template("html.tpl")
7780
template_html_table = env.get_template("html_table.tpl")

pandas/tests/io/formats/style/test_html.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import pathlib
12
from textwrap import (
23
dedent,
34
indent,
@@ -18,7 +19,9 @@
1819

1920
@pytest.fixture
2021
def env():
21-
loader = jinja2.PackageLoader("pandas", "io/formats/templates")
22+
project_dir = pathlib.Path(__file__).parent.parent.parent.parent.parent.resolve()
23+
template_dir = project_dir / "io" / "formats" / "templates"
24+
loader = jinja2.FileSystemLoader(template_dir)
2225
env = jinja2.Environment(loader=loader, trim_blocks=True)
2326
return env
2427

0 commit comments

Comments
 (0)