From ff54d93221082d4ce22630ecdb8fbbccc60f3b62 Mon Sep 17 00:00:00 2001 From: Olivier Grisel Date: Tue, 14 Jan 2025 17:59:46 +0100 Subject: [PATCH] MAINT prepare bugfix release 3.1.1 (#553) --- CHANGES.md | 3 +++ cloudpickle/__init__.py | 2 +- pyproject.toml | 1 + 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 3349764d..b14f8a41 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,9 @@ In development ============== +3.1.1 +===== + - Various fixes to support for Python 3.14 ([PR #545]( https://github.com/cloudpipe/cloudpickle/pull/545)). diff --git a/cloudpickle/__init__.py b/cloudpickle/__init__.py index bc99dacd..3768a936 100644 --- a/cloudpickle/__init__.py +++ b/cloudpickle/__init__.py @@ -3,7 +3,7 @@ __doc__ = cloudpickle.__doc__ -__version__ = "3.2.0.dev0" +__version__ = "3.1.1" __all__ = [ # noqa "__version__", diff --git a/pyproject.toml b/pyproject.toml index 5cc85cc5..aaee1f0c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ classifiers = [ 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.13', + 'Programming Language :: Python :: 3.14', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development :: Libraries :: Python Modules',