Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
==============================

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ else:
```

## Supported Versions
Python 3.10+ is fully supported. <!-- Note: update setup.py python_requires if you change this -->
Python 3.11+ is fully supported. <!-- Note: update setup.py python_requires if you change this -->
LabKey Server v15.1 and later.

## Contributing
Expand Down
2 changes: 1 addition & 1 deletion labkey/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down