Update Python version and dependency management
- Changed Python version to 3.12.4 in workflows - Switched to using 'uv' for dependency installation - Updated Dockerfile to reflect new base image and install method - Added package configuration in pyproject.toml
This commit is contained in:
@@ -14,11 +14,11 @@ jobs:
|
||||
- uses: actions/checkout@v4.2.2
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: '3.11'
|
||||
python-version: '3.12.4'
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txt
|
||||
pip install uv
|
||||
uv pip install -e .
|
||||
- name: Extract functionInputSchema
|
||||
id: extract_schema
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user