Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,8 @@ jobs:
env:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
SKLEARN_ALLOW_DEPRECATED_SKLEARN_PACKAGE_INSTALL: True
UV_PRERELEASE: allow
UV_SYSTEM_PYTHON: true

steps:

Expand All @@ -88,7 +90,7 @@ jobs:
- name: Set up project
run: |
# Install runtime and development requirements.
uv pip install --system --upgrade -r requirements.txt -r requirements-dev.txt
uv pip install --upgrade -r requirements.txt -r requirements-dev.txt

- name: Run linter and software tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion DEVELOP.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Install Python package and project manager [uv].
Set up Python environment and install requirements.
```shell
uv venv --python=python3.12
uv pip install --upgrade -r requirements.txt -r requirements-dev.txt
uv pip install --prerelease=allow --upgrade -r requirements.txt -r requirements-dev.txt
```

Invoke linters and software tests.
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ pycaret>=3,<3.4
pydantic<3
refinitiv-data<1.7
sqlalchemy<2.1
sqlalchemy-cratedb==0.40.1
sqlalchemy-cratedb==0.41.0.dev2
Loading