Skip to content

Commit

Permalink
Disable pyberny version check
Browse files Browse the repository at this point in the history
  • Loading branch information
sunqm committed Oct 15, 2023
1 parent 7eb0247 commit 29993ff
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions pyscf/geomopt/berny_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,6 @@
Interface to geometry optimizer pyberny https://github.com/jhrmnn/pyberny
'''

import berny
from packaging.version import parse as _parse_version
if _parse_version(berny.__version__) < _parse_version('0.6.2'):
msg = ('Geometry optimizer Pyberny not found or outdated. Install or update '
'with:\n\n\tpip install -U pyberny')
raise ImportError(msg)


import numpy
import logging
from pyscf import lib
Expand Down

0 comments on commit 29993ff

Please sign in to comment.