Commit 7b84457e authored by Wohlgemuth, Jason's avatar Wohlgemuth, Jason
Browse files

feat: Create python with conda example

parent 165677f8
Loading
Loading
Loading
Loading
Loading
+0 −0

Empty file added.

+24 −0
Original line number Diff line number Diff line
{
    "version": "0.0.1",
    "description": "Run Python (with conda) module example",
    "requirements": [],
    "modules": [
        {
            "name": "Conda Example",
            "uri": "file:./examples/python-with-conda/",
            "type": "script",
            "programmingLanguage": "python",
            "template": {
                "environment": {
                    "name": "example",
                    "manager": "conda"
                },
                "command": "python",
                "arguments": [
                    "-m",
                    "lib.run"
                ]
            }
        }
    ]
}
 No newline at end of file
+8 −0
Original line number Diff line number Diff line
name: example
channels:
  - conda-forge
  - nodefaults
dependencies:
  - polars
  - pyarrow
  - python=3.10
 No newline at end of file
+0 −0

Empty file added.

+154 B

File added.

No diff preview for this file type.

Loading