Skip to content

Commit

Permalink
fix(vanna) (#5453)
Browse files Browse the repository at this point in the history
* fix(vanna)

closes #5427
closes #5447
closes #5213 (handled at 0.1.1's release)

* this can't be correct
  • Loading branch information
jhheider authored Mar 6, 2024
1 parent 663d37d commit 4b2c87c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
8 changes: 3 additions & 5 deletions projects/openmp.llvm.org/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,14 @@ versions:
github: llvm/llvm-project
strip: /^llvmorg-/

dependencies:
linux:
python.org: ~3.11
perl.org: '*'

build:
dependencies:
cmake.org: '*'
llvm.org: '*'
gnu.org/wget: '*'
linux:
python.org: ~3.11
perl.org: '*'
script: |
mkdir -p src
find . -maxdepth 1 ! -name '.' ! -name 'src' -exec mv {} ./src/ \;
Expand Down
24 changes: 17 additions & 7 deletions projects/vanna.ai/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,30 @@ versions:

dependencies:
python.org: ^3.12
linux:
openmp.llvm.org: 17 # needed by chromadb

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'
script:
- 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'
# additional requirements as of 0.2.0
- run: python -m pip install chromadb python-dotenv --prefix={{prefix}}
if: '>=0.2'

- run: ln -s python{{deps.python.org.version.marketing}} python{{deps.python.org.version.major}}
working-directory: ${{prefix}}/lib
- run: ln -s python{{deps.python.org.version.marketing}} python{{deps.python.org.version.major}}
working-directory: ${{prefix}}/lib
env:
linux:
CC: clang
CXX: clang++
LD: clang

test:
dependencies:
Expand All @@ -31,6 +42,5 @@ test:
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

0 comments on commit 4b2c87c

Please sign in to comment.