diff --git a/Makefile b/Makefile index 4ab0c31..99e6dcc 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ build: pyproject-build clean: - rm -rf dist build pyswip.egg-info + rm -rf dist build pyswip.egg-info src/pyswip.egg-info/ coverage: PYTHONPATH=src py.test tests --verbose --cov=pyswip diff --git a/pyproject.toml b/pyproject.toml index d0fad86..fb169ed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pyswip" -version = "0.3.1" +version = "0.3.2" description = "PySwip enables querying SWI-Prolog in your Python programs." readme = "README.md" requires-python = ">=3.8" diff --git a/src/pyswip/__init__.py b/src/pyswip/__init__.py index 520d29f..2f5c6e7 100644 --- a/src/pyswip/__init__.py +++ b/src/pyswip/__init__.py @@ -19,7 +19,7 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -__VERSION__ = "0.3.1" +__VERSION__ = "0.3.2" from pyswip.prolog import Prolog as Prolog from pyswip.easy import *