Update dependency installation process

- Switched to using requirements.txt for installing dependencies.
- Removed the use of a specific package manager for syncing.
- Cleaned up the requirements file by removing autogenerated comments and unnecessary entries.
This commit is contained in:
Jonathon Broughton
2025-03-24 17:45:19 +00:00
parent dacdbaebda
commit 1452f38324
3 changed files with 4 additions and 64 deletions
+2 -2
View File
@@ -17,8 +17,8 @@ jobs:
python-version: '3.13'
- name: Install dependencies
run: |
pip install uv
uv sync --system uv.lock
pip install -r requirements.txt
pip install --no-deps -e .
- name: Extract functionInputSchema
id: extract_schema