Skip to content

Commit 57e9562

Browse files
authored
Require Python 3.11+ (#86)
1 parent f97a314 commit 57e9562

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGE.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
LabKey Python Client API News
33
+++++++++++
44

5+
What's New in the LabKey 4.0.1 package
6+
==============================
7+
8+
*Release date: 09/22/2025*
9+
- Update the minimum required version of Python to 3.11. Correction from the 4.0.0 release.
10+
511
What's New in the LabKey 4.0.0 package
612
==============================
713

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ else:
113113
```
114114

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

119119
## Contributing

labkey/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@
1414
# limitations under the License.
1515
#
1616
__title__ = "labkey"
17-
__version__ = "4.0.0"
17+
__version__ = "4.0.1"
1818
__author__ = "LabKey"
1919
__license__ = "Apache License 2.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
url="https://github.com/LabKey/labkey-api-python",
5050
packages=packages,
5151
package_data={},
52-
python_requires=">=3.10", # Note: update README.md supported versions if you change this
52+
python_requires=">=3.11", # Note: update README.md supported versions if you change this
5353
install_requires=["requests"],
5454
extras_require={"test": tests_require, "dev": dev_require, "build": build_require},
5555
keywords="labkey api client",

0 commit comments

Comments
 (0)