Skip to content

Commit

Permalink
fix: deps for both 3.8 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-stoian-zama committed Oct 30, 2024
1 parent 3a75af8 commit a06d29c
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 48 deletions.
141 changes: 97 additions & 44 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 8 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ python = ">=3.8.1,<3.13"
concrete-ml-extensions = [
{version = "0.1.2", platform = "linux" }
]
concrete-python = {version="==2.8.1.dev20241026", source = "zama-pypi-cpu"}
setuptools = "65.6.3"
concrete-python = {version="==2.8.1.dev20241030", source = "zama-pypi-cpu"}
setuptools = "75.3.0"
skops = {version = "0.5.0"}
xgboost = "1.6.2"
skorch = "0.11.0"
Expand All @@ -53,7 +53,7 @@ torch = [
]
typing-extensions = "^4.5.0"
brevitas = "0.10.2"
onnx = "1.16.1"
onnx = "1.17.0"
onnxoptimizer = "0.3.13"
# onnxruntime versions supported by onnx versions and opsets can be found here :
# https://onnxruntime.ai/docs/reference/compatibility.html#onnx-opset-support
Expand All @@ -71,7 +71,10 @@ numpy = [
{version = "1.23.5", python = "<3.9" },
{version = "1.26.4", python = ">=3.9.0"}
]
protobuf = "3.20.3"
protobuf = [
{version = "^5.28.3", python = ">3.11"},
{version = "3.20.3", python = "<=3.11"}
]
pandas = "2.0.3"

# Zama sources
Expand Down Expand Up @@ -165,6 +168,7 @@ filterwarnings = [
"ignore:open_text is deprecated.*:DeprecationWarning",
"ignore:read_text is deprecated.*:DeprecationWarning",
"ignore:open_binary is deprecated.*:DeprecationWarning",
"ignore:pkg_resources is deprecated as an API.*:DeprecationWarning",
]

[tool.semantic_release]
Expand Down

0 comments on commit a06d29c

Please sign in to comment.