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: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Install dependencies
run: poetry install
- name: Compile
run: poetry run mypy . --exclude examples
run: poetry run mypy src/ --exclude tests
test:
runs-on: ubuntu-24.04
steps:
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: "3.10"
- name: Bootstrap poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y --version 1.8.3
Expand Down
74 changes: 51 additions & 23 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ python-dateutil = "^2.9.0"

[tool.poetry.group.dev.dependencies]
mypy = "==1.13.0"
pytest = "^7.4.0"
pytest-asyncio = "^0.23.5"
pytest = { version = "^9.0.3", python = ">=3.10,<4.0" }
pytest-asyncio = { version = "^1.4.0", python = ">=3.10,<4.0" }
Comment thread
devin-ai-integration[bot] marked this conversation as resolved.
python-dateutil = "^2.9.0"
types-python-dateutil = "^2.9.0.20240316"
ruff = "^0.5.0"
Expand Down
Loading