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',