Skip to content

Commit

Permalink
Merge pull request #16 from stevereiner/new_branch
Browse files Browse the repository at this point in the history
Fix overflow error on windows, go back to allow python 3.12
  • Loading branch information
Riccorl authored Sep 18, 2024
2 parents b168aaf + aa871fa commit 345672e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion relik/retriever/indexers/document.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from relik.common.log import get_logger
from relik.common.utils import JsonSerializable

csv.field_size_limit(sys.maxsize)
csv.field_size_limit(min(sys.maxsize, 2147483646))

logger = get_logger(__name__)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def fix_url_dependencies(req: str) -> str:
],
install_requires=install_requirements,
extras_require=extras,
python_requires=">=3.10,<3.12",
python_requires=">=3.10",
find_links=find_links,
entry_points={
"console_scripts": ["relik = relik.cli.cli:app"],
Expand Down

0 comments on commit 345672e

Please sign in to comment.