Skip to content

Commit

Permalink
Fixed incorrect hard coded version in __init.__py. Removed superfluou…
Browse files Browse the repository at this point in the history
…s check for third party dependency package. This dependency is correctly specified in pyproject.toml. (#109)
  • Loading branch information
coltonbh committed Jul 5, 2024
1 parent df7e001 commit 3dd8143
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions xtb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
# along with xtb. If not, see <https://www.gnu.org/licenses/>.
"""Python API of the extended tight binding program package"""

# make sure we have a CFFI available
import cffi
from importlib import metadata

__version__ = "20.2"
__version__ = metadata.version(__name__)
API_VERSION = "1.0.0"

0 comments on commit 3dd8143

Please sign in to comment.