Skip to content

Commit

Permalink
Debug
Browse files Browse the repository at this point in the history
  • Loading branch information
dachengx committed Jul 30, 2024
1 parent 02118b8 commit 7f34fd4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appletree/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ def lineage_hash(self):
"llh_name": self.llh_name,
"method": self.method,
"file_path": os.path.basename(self.file_path),
"sha256": calculate_sha256(self.file_path),
"sha256": calculate_sha256(get_file_path(self.file_path)),
}
)

Expand Down
4 changes: 2 additions & 2 deletions tests/test_component.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest

import numpy as np
import pandas as pd
from jax import numpy as jnp

import appletree as apt
from appletree.utils import get_file_path
Expand All @@ -26,7 +26,7 @@
order=[0, 1],
x_clip=[0, 100],
y_clip=[1e2, 1e4],
which_np=jnp,
which_np=np,
)


Expand Down

0 comments on commit 7f34fd4

Please sign in to comment.