diff --git a/CHANGELOG.rst b/CHANGELOG.rst index be9a82a7..2c9a55f7 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,22 @@ Release Notes .. current developments +3.2.3 +===== + +**Added:** + +* Use GitHub Actions to build, release, upload to PyPI +* Added issue template for PyPI/GitHub release +* Include GitHub Issues templates for bug report and feature request + +**Fixed:** + +* Add getting started section and re-arrange install success check instructions +* Added termial script for transtru app in pyproject.toml +* Changed requires-python to align with classifiers + + 3.2.2 ===== diff --git a/news/toml.rst b/news/3.13.rst similarity index 53% rename from news/toml.rst rename to news/3.13.rst index 600d0d47..afb325da 100644 --- a/news/toml.rst +++ b/news/3.13.rst @@ -1,6 +1,6 @@ **Added:** -* +* Support for Python 3.13 **Changed:** @@ -8,7 +8,7 @@ **Deprecated:** -* +* Support for Python 3.10 **Removed:** @@ -16,8 +16,7 @@ **Fixed:** -* Added termial script for transtru app in pyproject.toml -* Changed requires-python to align with classifiers +* **Security:** diff --git a/news/recut.rst b/news/recut.rst deleted file mode 100644 index 153d1bb0..00000000 --- a/news/recut.rst +++ /dev/null @@ -1,25 +0,0 @@ -**Added:** - -* Use GitHub Actions to build, release, upload to PyPI -* Added issue template for PyPI/GitHub release -* Include GitHub Issues templates for bug report and feature request - -**Changed:** - -* - -**Deprecated:** - -* - -**Removed:** - -* - -**Fixed:** - -* Add getting started section and re-arrange install success check instructions - -**Security:** - -* diff --git a/pyproject.toml b/pyproject.toml index 6076df58..dd1150c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,7 +14,7 @@ maintainers = [ description = "Crystal structure container and parsers for structure formats." keywords = ['diffpy', 'crystal structure data storage CIF PDB'] readme = "README.rst" -requires-python = ">=3.10, <3.13" +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', ]