diff --git a/CHANGE.txt b/CHANGE.txt index d7ac69f..c047aea 100644 --- a/CHANGE.txt +++ b/CHANGE.txt @@ -2,6 +2,12 @@ LabKey Python Client API News +++++++++++ +What's New in the LabKey 4.0.1 package +============================== + +*Release date: 09/22/2025* +- Update the minimum required version of Python to 3.11. Correction from the 4.0.0 release. + What's New in the LabKey 4.0.0 package ============================== diff --git a/README.md b/README.md index 8fecdcb..0fcface 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ else: ``` ## Supported Versions -Python 3.10+ is fully supported. +Python 3.11+ is fully supported. LabKey Server v15.1 and later. ## Contributing diff --git a/labkey/__init__.py b/labkey/__init__.py index 95c7b77..435850d 100644 --- a/labkey/__init__.py +++ b/labkey/__init__.py @@ -14,6 +14,6 @@ # limitations under the License. # __title__ = "labkey" -__version__ = "4.0.0" +__version__ = "4.0.1" __author__ = "LabKey" __license__ = "Apache License 2.0" diff --git a/setup.py b/setup.py index 1fc9741..4db7d67 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ url="https://github.com/LabKey/labkey-api-python", packages=packages, package_data={}, - python_requires=">=3.10", # Note: update README.md supported versions if you change this + python_requires=">=3.11", # Note: update README.md supported versions if you change this install_requires=["requests"], extras_require={"test": tests_require, "dev": dev_require, "build": build_require}, keywords="labkey api client",