Исправление CI-тестов

This commit is contained in:
2025-12-08 17:00:39 +07:00
parent 0f7364825a
commit 6cc5ea544e

View File

@@ -26,10 +26,15 @@ jobs:
with: with:
python-version: "3.13" python-version: "3.13"
- name: Install project (PEP 621) - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install . pip install \
"discord>=2.3.2,<3.0.0" \
"loguru>=0.7.3,<0.8.0" \
"email-validator>=2.3.0,<3.0.0" \
"pydantic>=2.12.5,<3.0.0" \
"pydantic-settings>=2.12.0,<3.0.0"
- name: Basic import checks - name: Basic import checks
run: | run: |