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 819dca7 commit f26fea1
Show file tree
Hide file tree
Showing 8 changed files with 162 additions and 7 deletions.
2 changes: 1 addition & 1 deletion deps_licenses/licenses_linux_user.txt
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ python-dateutil, 2.9.0.post0, Apache Software License; BSD License
pytz, 2024.1, MIT License
requests, 2.32.3, Apache Software License
scikit-learn, 1.1.3, BSD License
scipy, 1.10.1, BSD License
scipy, 1.13.1, BSD License
six, 1.16.0, MIT License
skl2onnx, 1.12, Apache Software License
skops, 0.5.0, MIT
Expand Down
16 changes: 16 additions & 0 deletions deps_licenses/licenses_linux_user.txt.md5
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
eb83b0f0acb879e882947f38f5d0c8aa
=======
<<<<<<< HEAD
f07036c8072f32a26aa79e5e4bbd9c32
=======
ead3663b936227b3d224dc480933b084
>>>>>>> 8de97ea7 (feat: adding support for python3.11)
>>>>>>> bc2393ee (feat: adding support for python3.11)
=======
eb83b0f0acb879e882947f38f5d0c8aa
>>>>>>> ea6f0812 (chore: update licenses)
=======
e3848db8eda62bc7a88db65909ae3602
>>>>>>> 70e0e1f8 (chore: update licenses)
2 changes: 1 addition & 1 deletion deps_licenses/licenses_mac_intel_user.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ python-dateutil, 2.9.0.post0, Apache Software License; BSD License
pytz, 2024.1, MIT License
requests, 2.32.3, Apache Software License
scikit-learn, 1.1.3, BSD License
scipy, 1.10.1, BSD License
scipy, 1.13.1, BSD License
six, 1.16.0, MIT License
skl2onnx, 1.12, Apache Software License
skops, 0.5.0, MIT
Expand Down
16 changes: 16 additions & 0 deletions deps_licenses/licenses_mac_intel_user.txt.md5
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
eb83b0f0acb879e882947f38f5d0c8aa
=======
<<<<<<< HEAD
f07036c8072f32a26aa79e5e4bbd9c32
=======
ead3663b936227b3d224dc480933b084
>>>>>>> 8de97ea7 (feat: adding support for python3.11)
>>>>>>> bc2393ee (feat: adding support for python3.11)
=======
eb83b0f0acb879e882947f38f5d0c8aa
>>>>>>> ea6f0812 (chore: update licenses)
=======
e3848db8eda62bc7a88db65909ae3602
>>>>>>> 70e0e1f8 (chore: update licenses)
2 changes: 1 addition & 1 deletion deps_licenses/licenses_mac_silicon_user.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ python-dateutil, 2.9.0.post0, Apache Software License; BSD License
pytz, 2024.1, MIT License
requests, 2.32.3, Apache Software License
scikit-learn, 1.1.3, BSD License
scipy, 1.10.1, BSD License
scipy, 1.13.1, BSD License
six, 1.16.0, MIT License
skl2onnx, 1.12, Apache Software License
skops, 0.5.0, MIT
Expand Down
16 changes: 16 additions & 0 deletions deps_licenses/licenses_mac_silicon_user.txt.md5
Original file line number Diff line number Diff line change
@@ -1 +1,17 @@
<<<<<<< HEAD
<<<<<<< HEAD
<<<<<<< HEAD
eb83b0f0acb879e882947f38f5d0c8aa
=======
<<<<<<< HEAD
f07036c8072f32a26aa79e5e4bbd9c32
=======
ead3663b936227b3d224dc480933b084
>>>>>>> 8de97ea7 (feat: adding support for python3.11)
>>>>>>> bc2393ee (feat: adding support for python3.11)
=======
eb83b0f0acb879e882947f38f5d0c8aa
>>>>>>> ea6f0812 (chore: update licenses)
=======
e3848db8eda62bc7a88db65909ae3602
>>>>>>> 70e0e1f8 (chore: update licenses)
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 f26fea1

Please sign in to comment.