From 8b671b1c34128d1de136e8009ce27eb5f016c094 Mon Sep 17 00:00:00 2001 From: Jesper Sandvig Mariegaard <34088801+jsmariegaard@users.noreply.github.com> Date: Fri, 15 Dec 2023 16:02:38 +0100 Subject: [PATCH] beta version --- modelskill/__init__.py | 2 +- pyproject.toml | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/modelskill/__init__.py b/modelskill/__init__.py index 0fa9bf9fb..5944d9208 100644 --- a/modelskill/__init__.py +++ b/modelskill/__init__.py @@ -19,7 +19,7 @@ # Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer. # 'X.Y.dev0' is the canonical version of 'X.Y.dev' # -__version__ = "1.0.a2" +__version__ = "1.0.b0" if "64" not in architecture()[0]: raise Exception("This library has not been tested for a 32 bit system.") diff --git a/pyproject.toml b/pyproject.toml index eb4b5497e..493e07340 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ exclude = ["notebooks", "tests"] [project] name="modelskill" -version="1.0.a2" +version="1.0.b0" dependencies = [ "numpy", "pandas", @@ -28,7 +28,7 @@ readme = "README.md" requires-python = ">=3.8" classifiers = [ "License :: OSI Approved :: MIT License", - "Development Status :: 3 - Alpha", # TODO: change to stable + "Development Status :: 4 - Beta", # TODO: change to stable #"Development Status :: 5 - Production/Stable", "Intended Audience :: Science/Research", "Programming Language :: Python", @@ -37,6 +37,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering", ]