-
Notifications
You must be signed in to change notification settings - Fork 63
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue #74 - python 3.13 pip install now working #90
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,14 +14,21 @@ license = { file = "LICENSE" } | |
requires-python = ">=3.10" | ||
dependencies = [ | ||
"huggingface-hub>=0.24.5,<1.0", | ||
"mlx>=0.16.0,<1.0", | ||
"mlx>=0.20.0,<1.0", | ||
filipstrand marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"numpy>=2.0.1,<3.0", | ||
"opencv-python>=4.10.0,<5.0", | ||
"piexif>=1.1.3,<2.0", | ||
"pillow>=10.4.0,<11.0", | ||
"pillow>=10.4.0,<11.0; python_version<'3.13'", | ||
"pillow>=11.0,<12.0; python_version>='3.13'", | ||
filipstrand marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"safetensors>=0.4.4,<1.0", | ||
"sentencepiece>=0.2.0,<1.0", | ||
"torch>=2.3.1,<3.0", | ||
# python 3.13 workaround for now: | ||
# use temporary community build of py13 wheel, use until official project build | ||
# uv pip install https://github.com/anthonywu/sentencepiece/releases/download/0.2.1-py13dev/sentencepiece-0.2.1-cp313-cp313-macosx_11_0_arm64.whl | ||
"sentencepiece>=0.2.0,<1.0; python_version<'3.13'", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. sentencepiece: this did not receive an upgrade, but I notice |
||
"tokenizers>=0.20.3; python_version>='3.13'", # transformers -> tokenizers | ||
"torch>=2.3.1,<3.0; python_version<'3.13'", | ||
# torch dev builds: pip install --pre --index-url https://download.pytorch.org/whl/nightly | ||
"torch>=2.6.0.dev20241106; python_version>='3.13'", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💥 solved for devs |
||
"tqdm>=4.66.5,<5.0", | ||
"transformers>=4.44.0,<5.0", | ||
] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Think we need a new line here for the block to properly render.