From 3196d5d5a363705e78d61f525bc2ee32a45215a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Wed, 11 Oct 2023 16:38:37 +0200 Subject: [PATCH 1/2] MNT: bump dev version (->1.2) --- doc/source/conf.py | 4 ++-- pyproject.toml | 2 +- yt_astro_analysis/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index b69c923b..216e6abf 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -79,9 +79,9 @@ # built documents. # # The short X.Y version. -version = "1.1" +version = "1.2" # The full version, including alpha/beta/rc tags. -release = "1.1.3" +release = "1.2.dev2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/pyproject.toml b/pyproject.toml index d7fb936e..d5745d13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ requires = [ [project] name = "yt_astro_analysis" -version = "1.1.3" +version = "1.2.dev2" description = "yt astrophysical analysis modules extension" authors = [ { name = "The yt project", email = "yt-dev@python.org" }, diff --git a/yt_astro_analysis/__init__.py b/yt_astro_analysis/__init__.py index 8be9fda8..0254cf11 100644 --- a/yt_astro_analysis/__init__.py +++ b/yt_astro_analysis/__init__.py @@ -13,7 +13,7 @@ # The full license is in the file COPYING.txt, distributed with this software. # ----------------------------------------------------------------------------- -__version__ = "1.1.3" +__version__ = "1.2.dev2" from yt_astro_analysis import ( cosmological_observation, From 5792adc5dd1f0ebf68dc3251395f6ab02773252a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Wed, 11 Oct 2023 16:39:03 +0200 Subject: [PATCH 2/2] MNT: add missing trove classifier --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index d5745d13..5b2372f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,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 :: Astronomy", "Topic :: Scientific/Engineering :: Physics", "Topic :: Scientific/Engineering :: Visualization",