From a218903a2da6401b7fa8d7719bfb1673f3f898a2 Mon Sep 17 00:00:00 2001 From: Inari Listenmaa Date: Sun, 3 Aug 2025 17:26:26 +0200 Subject: [PATCH] use setuptools (so it works for 3.12+) + bump version to 1.1 --- src/runtime/python/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/runtime/python/setup.py b/src/runtime/python/setup.py index fdc2fe8c5..3a1e6dc5c 100644 --- a/src/runtime/python/setup.py +++ b/src/runtime/python/setup.py @@ -1,4 +1,4 @@ -from distutils.core import setup, Extension +from setuptools import setup, Extension import os includes = os.getenv('EXTRA_INCLUDE_DIRS','').split(':') @@ -16,7 +16,7 @@ pgf_module = Extension('pgf', libraries = ['gu', 'pgf']) setup (name = 'pgf', - version = '1.0', + version = '1.1', description = 'Python bindings to the Grammatical Framework\'s PGF runtime', long_description="""\ Grammatical Framework (GF) is a programming language for multilingual grammar applications.