mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
9970beb526
more requirements in 0.1.0. closes #5305
37 lines
929 B
YAML
37 lines
929 B
YAML
distributable:
|
|
url: git+https://github.com/vanna-ai/vanna.git
|
|
ref: ${{version.tag}}
|
|
|
|
display-name: Vanna
|
|
|
|
versions:
|
|
github: vanna-ai/vanna
|
|
|
|
dependencies:
|
|
python.org: ^3.12
|
|
|
|
runtime:
|
|
env:
|
|
PYTHONPATH: ${{prefix}}/lib/python{{deps.python.org.version.major}}/site-packages:$PYTHONPATH
|
|
|
|
build:
|
|
- python -m pip install . --prefix={{prefix}}
|
|
# additional requirements as of 0.1.0
|
|
- run: python -m pip install openai mistralai --prefix={{prefix}}
|
|
if: '>=0.1'
|
|
|
|
- run: ln -s python{{deps.python.org.version.marketing}} python{{deps.python.org.version.major}}
|
|
working-directory: ${{prefix}}/lib
|
|
|
|
test:
|
|
dependencies:
|
|
curl.se: '*'
|
|
env:
|
|
VANNA_API_KEY: FAKE_API_KEY
|
|
OPENAI_API_KEY: FAKE_API_KEY
|
|
MISTRAL_API_KEY: FAKE_API_KEY
|
|
script:
|
|
- pip install pytest
|
|
- curl -L "https://raw.githubusercontent.com/vanna-ai/vanna/main/tests/test_vanna.py" -o test_vanna.py
|
|
- python test_vanna.py
|