Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- main

env:
MOPAC_VERSION: 23.2.1
MOPAC_VERSION: 23.2.2

jobs:
build-src:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sphinx.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- main

env:
MOPAC_VERSION: 23.2.1
MOPAC_VERSION: 23.2.2

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mopactools"
version = "0.1.2"
version = "0.1.3"
authors = [
{ name="Jonathan Moussa", email="jemoussa@vt.edu" },
]
Expand Down
2 changes: 1 addition & 1 deletion src/mopactools/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -647,7 +647,7 @@ def from_file(input_path):
binding.libmopac.get_mopac_version(buffer)
#: Semantic version number of the MOPAC shared library
VERSION = buffer.value.decode('utf-8')
MIN_VERSION = "23.2.1"
MIN_VERSION = "23.2.2"
try:
if Version(VERSION) < Version(MIN_VERSION):
raise ValueError(f"MOPAC shared library version ({VERSION}) is older than the minimum required version ({MIN_VERSION}).")
Expand Down