Skip to content

Commit b8c2e92

Browse files
committed
fix version paths
1 parent a854670 commit b8c2e92

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/check_core_versions.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ jobs:
1515

1616
- name: Check version equality
1717
run: |
18-
PYPROJECT_VERSION=$(grep -Po '(?<=^version = ")[^"]*' pyproject.toml)
19-
VERSION_PY_VERSION=$(grep -Po '(?<=^VERSION = ")[^"]*' version.py)
18+
PYPROJECT_VERSION=$(grep -Po '(?<=^version = ")[^"]*' libs/core/pyproject.toml)
19+
VERSION_PY_VERSION=$(grep -Po '(?<=^VERSION = ")[^"]*' libs/core/langchain_core/version.py)
2020
2121
# Compare the two versions
2222
if [ "$PYPROJECT_VERSION" != "$VERSION_PY_VERSION" ]; then

0 commit comments

Comments
 (0)