-
Notifications
You must be signed in to change notification settings - Fork 159
build: replace openbabel-wheel with openbabel #974
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -26,7 +26,7 @@ jobs: | |
| **/pyproject.toml | ||
| cache-suffix: "py${{ matrix.python-version }}" | ||
| - name: Install dependencies | ||
| run: uv pip install --system .[test,amber,ase,pymatgen] coverage ./tests/plugin rdkit openbabel-wheel | ||
| run: uv pip install --system .[test,amber,ase,pymatgen] coverage ./tests/plugin rdkit 'openbabel>=3.2.0' | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Critical: Package version This is the same blocking issue affecting all three workflows. The 🤖 Prompt for AI Agents |
||
| - name: Test | ||
| run: cd tests && coverage run --source=../dpdata -m unittest && cd .. && coverage combine tests/.coverage && coverage report | ||
| - name: Run codecov | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Critical: Package version
openbabel>=3.2.0does not exist on PyPI.This is the same issue as in
benchmark.yml. The latest availableopenbabelversion on PyPI is 3.1.1.1, which does not satisfy the>=3.2.0constraint. The Pyright type-checking workflow will fail at dependency installation.🤖 Prompt for AI Agents