We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a854670 commit b8c2e92Copy full SHA for b8c2e92
.github/workflows/check_core_versions.yml
@@ -15,8 +15,8 @@ jobs:
15
16
- name: Check version equality
17
run: |
18
- PYPROJECT_VERSION=$(grep -Po '(?<=^version = ")[^"]*' pyproject.toml)
19
- VERSION_PY_VERSION=$(grep -Po '(?<=^VERSION = ")[^"]*' version.py)
+ PYPROJECT_VERSION=$(grep -Po '(?<=^version = ")[^"]*' libs/core/pyproject.toml)
+ VERSION_PY_VERSION=$(grep -Po '(?<=^VERSION = ")[^"]*' libs/core/langchain_core/version.py)
20
21
# Compare the two versions
22
if [ "$PYPROJECT_VERSION" != "$VERSION_PY_VERSION" ]; then
0 commit comments