Skip to content

Commit

Permalink
Opendp v0.10.0 (#599)
Browse files Browse the repository at this point in the history
* Update to OpenDP v0.10.0

* Fix for numpy 2.0

* setup.py

* Loosen OpenDP required versions

---------

Co-authored-by: Joshua <joshua-oss@users.noreply.github.com>
  • Loading branch information
joshua-oss and joshua-oss authored Jun 28, 2024
1 parent 69d3a4d commit cad7d26
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sql/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ repository = "https://github.com/opendp/smartnoise-sdk"
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.8,<=3.12"
opendp = "^0.10.0"
python = ">=3.8,<3.13"
opendp = ">=0.8.0,<0.11.0"
antlr4-python3-runtime = "4.9.3"
PyYAML = "^6.0.1"
graphviz = "^0.17"
Expand Down
1 change: 1 addition & 0 deletions sql/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
'packages': packages,
'package_data': package_data,
'install_requires': install_requires,
'python_requires': '>=3.8,<3.13',
'python_requires': '>=3.8,<=3.12',
}

Expand Down
1 change: 0 additions & 1 deletion sql/snsql/_ast/expressions/numeric.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
from numpy.lib.arraysetops import isin
from snsql._ast.tokens import *
import numpy as np
import operator
Expand Down
1 change: 0 additions & 1 deletion sql/snsql/xpath/ast.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from typing import Union, Sequence, Iterable
import operator
import numpy as np
from numpy.lib.arraysetops import isin
from pandas.core.indexing import IndexSlice

ops = {
Expand Down

0 comments on commit cad7d26

Please sign in to comment.