Skip to content

Commit

Permalink
feat: adding support for python3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
bcm-at-zama committed Aug 27, 2024
1 parent bc2393e commit fc8264f
Show file tree
Hide file tree
Showing 2 changed files with 111 additions and 4 deletions.
108 changes: 106 additions & 2 deletions poetry.lock

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

7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ readme = "README.md"
[tool.poetry.dependencies]
# Investigate if it is better to fix specific versions or use lower and upper bounds
# FIXME: https://github.com/zama-ai/concrete-ml-internal/issues/2665
python = ">=3.8.1,<3.12"
python = ">=3.8.1,<3.13"
# Based on the following link, explicitly indicating the source makes poetry only look for that
# source, so we should only use this for Concrete Python's non-public releases
# https://python-poetry.org/docs/1.7/repositories#project-configuration
Expand All @@ -57,7 +57,10 @@ onnxoptimizer = "0.3.13"
onnxruntime = "1.18"
hummingbird-ml = {version="0.4.11", extras = ["onnx"]}
scikit-learn = "1.1.3"
scipy = "1.10.1"
scipy = [
{version = "1.10.1", python = "3.8"},
{version = ">=1.10.1", python = ">3.8"}
]
numpy = "1.23.5"
protobuf = "3.20.3"
pandas = "2.0.3"
Expand Down

0 comments on commit fc8264f

Please sign in to comment.