From f17b979076b0769713b3601c1bd1e0139c3a8b17 Mon Sep 17 00:00:00 2001 From: Alison Wu Date: Fri, 25 Oct 2024 15:38:47 -0400 Subject: [PATCH] update pyproject.toml for python 3.13 --- news/python313.rst | 23 +++++++++++++++++++++++ pyproject.toml | 4 ++-- 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 news/python313.rst diff --git a/news/python313.rst b/news/python313.rst new file mode 100644 index 0000000..4b34bb4 --- /dev/null +++ b/news/python313.rst @@ -0,0 +1,23 @@ +**Added:** + +* Support for Python 3.13 + +**Changed:** + +* + +**Deprecated:** + +* + +**Removed:** + +* Support for Python 3.10 + +**Fixed:** + +* + +**Security:** + +* diff --git a/pyproject.toml b/pyproject.toml index 421f888..41fe385 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ maintainers = [ description = "Shared utilities for diffpy packages" keywords = ['"text data parsers" "wx grid" "diffraction objects"'] readme = "README.rst" -requires-python = ">=3.10" +requires-python = ">=3.11, <3.14" classifiers = [ 'Development Status :: 5 - Production/Stable', 'Environment :: Console', @@ -25,9 +25,9 @@ classifiers = [ 'Operating System :: Microsoft :: Windows', 'Operating System :: POSIX', 'Operating System :: Unix', - 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.12', + 'Programming Language :: Python :: 3.13', 'Topic :: Scientific/Engineering :: Physics', 'Topic :: Scientific/Engineering :: Chemistry', ]