-
Notifications
You must be signed in to change notification settings - Fork 0
Parapred environment #55
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
Changes from all commits
2f6fe6c
b7e8b28
99026a3
716c8f6
c07b015
b487d17
928b6ab
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 |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| --- | ||
| '@platforma-open/milaboratories.runenv-python-3.12.10-parapred': minor | ||
| 'runenv-python-builder': minor | ||
| --- | ||
|
|
||
| Support git dependencies in requirements, add new environment runenv-python-3.12.10-parapred |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "torch-2.7.0+cpu-cp312-cp312-manylinux_2_28_aarch64.whl": { | ||
| "functorch._C": "initialization failed" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "torch-2.7.0+cpu-cp312-cp312-manylinux_2_28_x86_64.whl": { | ||
| "functorch._C": "initialization failed" | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "torch-2.7.0-cp312-none-macosx_11_0_arm64.whl": { | ||
| "functorch._C": "initialization failed" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| { | ||
| "torch-2.7.0+cpu-cp312-cp312-win_amd64.whl": { | ||
| "functorch._C": "initialization failed" | ||
| } | ||
| } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| { | ||
| "registries": { | ||
| "additional": [ | ||
| "https://download.pytorch.org/whl/cpu" | ||
| ] | ||
| }, | ||
| "packages": { | ||
| "dependencies": [ | ||
| "pandas==2.2.3", | ||
| "numpy==2.2.6", | ||
| "polars-lts-cpu==1.33.1", | ||
| "polars-ds-lts-cpu==0.10.2", | ||
| "torch==2.7.0", | ||
| "click==8.1.8", | ||
| "git+https://github.com/alchemab/parapred-pytorch.git@e0548be" | ||
| ], | ||
| "noDeps": ["parapred-pytorch"], | ||
| "skip": {}, | ||
| "overrides": {}, | ||
| "platformSpecific": {}, | ||
| "resolution": { | ||
| "allowSourceList": ["parapred-pytorch"] | ||
|
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. The What happens: pip tries to fetch a binary wheel for Feels like a trap for the next person who adds a git dependency. They won't know they need to also add it to
Contributor
Author
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. added check |
||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| { | ||
| "name": "@platforma-open/milaboratories.runenv-python-3.12.10-parapred", | ||
| "version": "1.0.0", | ||
| "description": "Python 3.12.10 run environment for Platforma Backend with parapred-pytorch", | ||
| "scripts": { | ||
| "cleanup": "rm -rf ./pkg-*.tgz ./pydist ./dist/ ./build/", | ||
| "reset": "pnpm run cleanup && rm -rf ./node_modules ./.turbo", | ||
| "build": "pl-py-builder", | ||
| "after-prebuild": "pl-pkg publish packages", | ||
| "before-publish": "pl-pkg prepublish" | ||
| }, | ||
| "files": [ | ||
| "dist/" | ||
| ], | ||
| "block-software": { | ||
| "entrypoints": { | ||
| "main": { | ||
| "environment": { | ||
| "artifact": { | ||
| "type": "environment", | ||
| "runtime": "python", | ||
| "registry": "platforma-open", | ||
| "python-version": "3.12.10", | ||
| "roots": { | ||
| "linux-x64": "./pydist/linux-x64", | ||
| "linux-aarch64": "./pydist/linux-aarch64", | ||
| "macosx-x64": "./pydist/macosx-x64", | ||
| "macosx-aarch64": "./pydist/macosx-aarch64", | ||
| "windows-x64": "./pydist/windows-x64" | ||
| }, | ||
| "binDir": "bin" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| }, | ||
| "license": "UNLICENSED", | ||
| "devDependencies": { | ||
| "@platforma-sdk/package-builder": "catalog:", | ||
| "runenv-python-builder": "workspace:*", | ||
| "tsx": "catalog:" | ||
| } | ||
| } |
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.
What about
linux* ?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.
added