Skip to content

Commit

Permalink
Bump Python version used in beta workflow (#1875)
Browse files Browse the repository at this point in the history
* Bump Python version used in beta workflow

* Update an ignore
  • Loading branch information
mattwthompson authored May 13, 2024
1 parent 60abeb4 commit dd9734b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/beta_rc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- ubuntu-latest
- macos-latest
python-version:
- "3.10"
- "3.11"

env:
OE_LICENSE: ${{ github.workspace }}/oe_license.txt
Expand Down
2 changes: 1 addition & 1 deletion openff/toolkit/topology/molecule.py
Original file line number Diff line number Diff line change
Expand Up @@ -4187,7 +4187,7 @@ def to_file(self, file_path, file_format, toolkit_registry=GLOBAL_TOOLKIT_REGIST
)

if isinstance(file_path, (str, pathlib.Path)):
toolkit.to_file(self, file_path, file_format)
toolkit.to_file(self, file_path, file_format) # type: ignore[attr-defined]
else:
toolkit.to_file_obj(self, file_path, file_format) # type: ignore[attr-defined]

Expand Down

0 comments on commit dd9734b

Please sign in to comment.