diff --git a/docs/source/changelog.rst b/docs/source/changelog.rst index 54c2de81..b78b8de0 100644 --- a/docs/source/changelog.rst +++ b/docs/source/changelog.rst @@ -1,6 +1,10 @@ Changelog ######### +2023.10.2 +--------- +* Fix issues with Python 3.12 + 2023.10.1 --------- * Fill time series by linear interpolation. diff --git a/setup.py b/setup.py index 556d9f32..7dda9ef6 100755 --- a/setup.py +++ b/setup.py @@ -560,11 +560,11 @@ def main(): 'Operating System :: POSIX', 'Operating System :: MacOS', 'Operating System :: Microsoft :: Windows', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11', + 'Programming Language :: Python :: 3.12', ], cmdclass={ 'build_ext': BuildExt,