From ac753e1a887207e71373cc4b4c910b235a64f297 Mon Sep 17 00:00:00 2001 From: Koen Van Daele Date: Thu, 21 Dec 2023 22:19:53 +0100 Subject: [PATCH] Add Python 3.12 support --- .travis.yml | 1 + CHANGES.rst | 2 ++ setup.py | 3 ++- 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 653b4d0d..8b43da0d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,7 @@ python: - 3.9 - 3.10 - 3.11 + - 3.12 before_install: - pip install --upgrade pip - pip install setuptools==59.6.0 #https://github.com/pypa/setuptools/issues/3293 diff --git a/CHANGES.rst b/CHANGES.rst index a2abb075..a8823b13 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,8 @@ ------------------ - Added a configuration file for ReadTheDocs. (#846) +- Initializedb script now generates providers in the database, where before they were + created in code and then migrated. (#848) - Update skosprovider_getty to get more robust services when dealing with the conceptscheme. diff --git a/setup.py b/setup.py index e58b1102..4c1b4e89 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ def run(self): ] setup(name='atramhasis', - version='2.0.0b1', + version='2.0.0', description='A web based editor for thesauri adhering to the SKOS specification.', long_description=README + '\n\n' + CHANGES, long_description_content_type='text/x-rst', @@ -85,6 +85,7 @@ def run(self): "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", ], author='Flanders Heritage Agency', author_email='ict@onroerenderfgoed.be',