Skip to content

Commit

Permalink
Update python requirement to <3.13 (logicalclocks#234)
Browse files Browse the repository at this point in the history
* Update python requirement to <3.13

* Include hsml.*

* Fix circular dependency
  • Loading branch information
javierdlrm authored May 6, 2024
1 parent f7b78f4 commit 590f11c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions python/hsml/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@
# limitations under the License.
#

from __future__ import annotations

import datetime
import inspect
import os
Expand Down
4 changes: 2 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name="hsml"
dynamic = ["version"]
requires-python = ">=3.8,<=3.12"
requires-python = ">=3.8,<3.13"
readme = "README.md"
description = "HSML Python SDK to interact with Hopsworks Model Registry"
keywords = ["Hopsworks", "Model Registry", "hsml", "Models", "ML", "Machine Learning Models", "TensorFlow", "PyTorch", "Machine Learning", "MLOps", "DataOps"]
Expand Down Expand Up @@ -57,7 +57,7 @@ build-backend = "setuptools.build_meta"

[tool.setuptools.packages.find]
exclude = ["tests*"]
include = ["../Readme.md", "../LICENSE", "hsml"]
include = ["../Readme.md", "../LICENSE", "hsml", "hsml.*"]


[tool.setuptools.dynamic]
Expand Down

0 comments on commit 590f11c

Please sign in to comment.