Skip to content

Commit

Permalink
Merge pull request #713 from djhoese/bugfix-pkg-config
Browse files Browse the repository at this point in the history
Fix package config not being set properly in non-bundle environments
  • Loading branch information
djhoese authored Sep 21, 2024
2 parents 6024d1d + 1065e88 commit 1d50a94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion polar2grid/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def get_polar2grid_etc():
p2g_pkg_location = impr.files("polar2grid")
if _is_editable_installation():
return str(p2g_pkg_location / "etc")
return p2g_pkg_location / "etc" / "polar2grid"
return p2g_pkg_location / "etc"


def _is_editable_installation():
Expand Down

0 comments on commit 1d50a94

Please sign in to comment.